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 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 589 | if (IS_VALLEYVIEW(dev)) { |
| 590 | seq_printf(m, "Display IER:\t%08x\n", |
| 591 | I915_READ(VLV_IER)); |
| 592 | seq_printf(m, "Display IIR:\t%08x\n", |
| 593 | I915_READ(VLV_IIR)); |
| 594 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 595 | I915_READ(VLV_IIR_RW)); |
| 596 | seq_printf(m, "Display IMR:\t%08x\n", |
| 597 | I915_READ(VLV_IMR)); |
| 598 | for_each_pipe(pipe) |
| 599 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 600 | pipe_name(pipe), |
| 601 | I915_READ(PIPESTAT(pipe))); |
| 602 | |
| 603 | seq_printf(m, "Master IER:\t%08x\n", |
| 604 | I915_READ(VLV_MASTER_IER)); |
| 605 | |
| 606 | seq_printf(m, "Render IER:\t%08x\n", |
| 607 | I915_READ(GTIER)); |
| 608 | seq_printf(m, "Render IIR:\t%08x\n", |
| 609 | I915_READ(GTIIR)); |
| 610 | seq_printf(m, "Render IMR:\t%08x\n", |
| 611 | I915_READ(GTIMR)); |
| 612 | |
| 613 | seq_printf(m, "PM IER:\t\t%08x\n", |
| 614 | I915_READ(GEN6_PMIER)); |
| 615 | seq_printf(m, "PM IIR:\t\t%08x\n", |
| 616 | I915_READ(GEN6_PMIIR)); |
| 617 | seq_printf(m, "PM IMR:\t\t%08x\n", |
| 618 | I915_READ(GEN6_PMIMR)); |
| 619 | |
| 620 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 621 | I915_READ(PORT_HOTPLUG_EN)); |
| 622 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 623 | I915_READ(VLV_DPFLIPSTAT)); |
| 624 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 625 | I915_READ(DPINVGTT)); |
| 626 | |
| 627 | } else if (!HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 628 | seq_printf(m, "Interrupt enable: %08x\n", |
| 629 | I915_READ(IER)); |
| 630 | seq_printf(m, "Interrupt identity: %08x\n", |
| 631 | I915_READ(IIR)); |
| 632 | seq_printf(m, "Interrupt mask: %08x\n", |
| 633 | I915_READ(IMR)); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 634 | for_each_pipe(pipe) |
| 635 | seq_printf(m, "Pipe %c stat: %08x\n", |
| 636 | pipe_name(pipe), |
| 637 | I915_READ(PIPESTAT(pipe))); |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 638 | } else { |
| 639 | seq_printf(m, "North Display Interrupt enable: %08x\n", |
| 640 | I915_READ(DEIER)); |
| 641 | seq_printf(m, "North Display Interrupt identity: %08x\n", |
| 642 | I915_READ(DEIIR)); |
| 643 | seq_printf(m, "North Display Interrupt mask: %08x\n", |
| 644 | I915_READ(DEIMR)); |
| 645 | seq_printf(m, "South Display Interrupt enable: %08x\n", |
| 646 | I915_READ(SDEIER)); |
| 647 | seq_printf(m, "South Display Interrupt identity: %08x\n", |
| 648 | I915_READ(SDEIIR)); |
| 649 | seq_printf(m, "South Display Interrupt mask: %08x\n", |
| 650 | I915_READ(SDEIMR)); |
| 651 | seq_printf(m, "Graphics Interrupt enable: %08x\n", |
| 652 | I915_READ(GTIER)); |
| 653 | seq_printf(m, "Graphics Interrupt identity: %08x\n", |
| 654 | I915_READ(GTIIR)); |
| 655 | seq_printf(m, "Graphics Interrupt mask: %08x\n", |
| 656 | I915_READ(GTIMR)); |
| 657 | } |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 658 | seq_printf(m, "Interrupts received: %d\n", |
| 659 | atomic_read(&dev_priv->irq_received)); |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 660 | for_each_ring(ring, dev_priv, i) { |
Jesse Barnes | da64c6f | 2011-08-09 09:17:46 -0700 | [diff] [blame] | 661 | if (IS_GEN6(dev) || IS_GEN7(dev)) { |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 662 | seq_printf(m, |
| 663 | "Graphics Interrupt mask (%s): %08x\n", |
| 664 | ring->name, I915_READ_IMR(ring)); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 665 | } |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 666 | i915_ring_seqno_info(m, ring); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 667 | } |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 668 | mutex_unlock(&dev->struct_mutex); |
| 669 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 670 | return 0; |
| 671 | } |
| 672 | |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 673 | static int i915_gem_fence_regs_info(struct seq_file *m, void *data) |
| 674 | { |
| 675 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 676 | struct drm_device *dev = node->minor->dev; |
| 677 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 678 | int i, ret; |
| 679 | |
| 680 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 681 | if (ret) |
| 682 | return ret; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 683 | |
| 684 | seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start); |
| 685 | seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs); |
| 686 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 687 | struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 688 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 689 | seq_printf(m, "Fence %d, pin count = %d, object = ", |
| 690 | i, dev_priv->fence_regs[i].pin_count); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 691 | if (obj == NULL) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 692 | seq_puts(m, "unused"); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 693 | else |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 694 | describe_obj(m, obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 695 | seq_putc(m, '\n'); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 696 | } |
| 697 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 698 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 699 | return 0; |
| 700 | } |
| 701 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 702 | static int i915_hws_info(struct seq_file *m, void *data) |
| 703 | { |
| 704 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 705 | struct drm_device *dev = node->minor->dev; |
| 706 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 4066c0a | 2010-10-29 21:00:54 +0100 | [diff] [blame] | 707 | struct intel_ring_buffer *ring; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 708 | const u32 *hws; |
Chris Wilson | 4066c0a | 2010-10-29 21:00:54 +0100 | [diff] [blame] | 709 | int i; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 710 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 711 | ring = &dev_priv->ring[(uintptr_t)node->info_ent->data]; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 712 | hws = ring->status_page.page_addr; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 713 | if (hws == NULL) |
| 714 | return 0; |
| 715 | |
| 716 | for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) { |
| 717 | seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 718 | i * 4, |
| 719 | hws[i], hws[i + 1], hws[i + 2], hws[i + 3]); |
| 720 | } |
| 721 | return 0; |
| 722 | } |
| 723 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 724 | static ssize_t |
| 725 | i915_error_state_write(struct file *filp, |
| 726 | const char __user *ubuf, |
| 727 | size_t cnt, |
| 728 | loff_t *ppos) |
| 729 | { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 730 | struct i915_error_state_file_priv *error_priv = filp->private_data; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 731 | struct drm_device *dev = error_priv->dev; |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 732 | int ret; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 733 | |
| 734 | DRM_DEBUG_DRIVER("Resetting error state\n"); |
| 735 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 736 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 737 | if (ret) |
| 738 | return ret; |
| 739 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 740 | i915_destroy_error_state(dev); |
| 741 | mutex_unlock(&dev->struct_mutex); |
| 742 | |
| 743 | return cnt; |
| 744 | } |
| 745 | |
| 746 | static int i915_error_state_open(struct inode *inode, struct file *file) |
| 747 | { |
| 748 | struct drm_device *dev = inode->i_private; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 749 | struct i915_error_state_file_priv *error_priv; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 750 | |
| 751 | error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL); |
| 752 | if (!error_priv) |
| 753 | return -ENOMEM; |
| 754 | |
| 755 | error_priv->dev = dev; |
| 756 | |
Mika Kuoppala | 95d5bfb3 | 2013-06-06 15:18:40 +0300 | [diff] [blame] | 757 | i915_error_state_get(dev, error_priv); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 758 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 759 | file->private_data = error_priv; |
| 760 | |
| 761 | return 0; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | static int i915_error_state_release(struct inode *inode, struct file *file) |
| 765 | { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 766 | struct i915_error_state_file_priv *error_priv = file->private_data; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 767 | |
Mika Kuoppala | 95d5bfb3 | 2013-06-06 15:18:40 +0300 | [diff] [blame] | 768 | i915_error_state_put(error_priv); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 769 | kfree(error_priv); |
| 770 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 771 | return 0; |
| 772 | } |
| 773 | |
| 774 | static ssize_t i915_error_state_read(struct file *file, char __user *userbuf, |
| 775 | size_t count, loff_t *pos) |
| 776 | { |
| 777 | struct i915_error_state_file_priv *error_priv = file->private_data; |
| 778 | struct drm_i915_error_state_buf error_str; |
| 779 | loff_t tmp_pos = 0; |
| 780 | ssize_t ret_count = 0; |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 781 | int ret; |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 782 | |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 783 | ret = i915_error_state_buf_init(&error_str, count, *pos); |
| 784 | if (ret) |
| 785 | return ret; |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 786 | |
Mika Kuoppala | fc16b48 | 2013-06-06 15:18:39 +0300 | [diff] [blame] | 787 | ret = i915_error_state_to_str(&error_str, error_priv); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 788 | if (ret) |
| 789 | goto out; |
| 790 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 791 | ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos, |
| 792 | error_str.buf, |
| 793 | error_str.bytes); |
| 794 | |
| 795 | if (ret_count < 0) |
| 796 | ret = ret_count; |
| 797 | else |
| 798 | *pos = error_str.start + ret_count; |
| 799 | out: |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 800 | i915_error_state_buf_release(&error_str); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 801 | return ret ?: ret_count; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | static const struct file_operations i915_error_state_fops = { |
| 805 | .owner = THIS_MODULE, |
| 806 | .open = i915_error_state_open, |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 807 | .read = i915_error_state_read, |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 808 | .write = i915_error_state_write, |
| 809 | .llseek = default_llseek, |
| 810 | .release = i915_error_state_release, |
| 811 | }; |
| 812 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 813 | static int |
| 814 | i915_next_seqno_get(void *data, u64 *val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 815 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 816 | struct drm_device *dev = data; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 817 | drm_i915_private_t *dev_priv = dev->dev_private; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 818 | int ret; |
| 819 | |
| 820 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 821 | if (ret) |
| 822 | return ret; |
| 823 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 824 | *val = dev_priv->next_seqno; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 825 | mutex_unlock(&dev->struct_mutex); |
| 826 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 827 | return 0; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 828 | } |
| 829 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 830 | static int |
| 831 | i915_next_seqno_set(void *data, u64 val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 832 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 833 | struct drm_device *dev = data; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 834 | int ret; |
| 835 | |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 836 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 837 | if (ret) |
| 838 | return ret; |
| 839 | |
Mika Kuoppala | e94fbaa | 2012-12-19 11:13:09 +0200 | [diff] [blame] | 840 | ret = i915_gem_set_seqno(dev, val); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 841 | mutex_unlock(&dev->struct_mutex); |
| 842 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 843 | return ret; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 844 | } |
| 845 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 846 | DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops, |
| 847 | i915_next_seqno_get, i915_next_seqno_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 848 | "0x%llx\n"); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 849 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 850 | static int i915_rstdby_delays(struct seq_file *m, void *unused) |
| 851 | { |
| 852 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 853 | struct drm_device *dev = node->minor->dev; |
| 854 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 855 | u16 crstanddelay; |
| 856 | int ret; |
| 857 | |
| 858 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 859 | if (ret) |
| 860 | return ret; |
| 861 | |
| 862 | crstanddelay = I915_READ16(CRSTANDVID); |
| 863 | |
| 864 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 865 | |
| 866 | seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f)); |
| 867 | |
| 868 | return 0; |
| 869 | } |
| 870 | |
| 871 | static int i915_cur_delayinfo(struct seq_file *m, void *unused) |
| 872 | { |
| 873 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 874 | struct drm_device *dev = node->minor->dev; |
| 875 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 876 | int ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 877 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 878 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 879 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 880 | if (IS_GEN5(dev)) { |
| 881 | u16 rgvswctl = I915_READ16(MEMSWCTL); |
| 882 | u16 rgvstat = I915_READ16(MEMSTAT_ILK); |
| 883 | |
| 884 | seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf); |
| 885 | seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f); |
| 886 | seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >> |
| 887 | MEMSTAT_VID_SHIFT); |
| 888 | seq_printf(m, "Current P-state: %d\n", |
| 889 | (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 890 | } else if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 891 | u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS); |
| 892 | u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS); |
| 893 | u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 894 | u32 rpstat, cagf, reqf; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 895 | u32 rpupei, rpcurup, rpprevup; |
| 896 | u32 rpdownei, rpcurdown, rpprevdown; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 897 | int max_freq; |
| 898 | |
| 899 | /* RPSTAT1 is in the GT power well */ |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 900 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 901 | if (ret) |
| 902 | return ret; |
| 903 | |
Ben Widawsky | fcca792 | 2011-04-25 11:23:07 -0700 | [diff] [blame] | 904 | gen6_gt_force_wake_get(dev_priv); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 905 | |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 906 | reqf = I915_READ(GEN6_RPNSWREQ); |
| 907 | reqf &= ~GEN6_TURBO_DISABLE; |
| 908 | if (IS_HASWELL(dev)) |
| 909 | reqf >>= 24; |
| 910 | else |
| 911 | reqf >>= 25; |
| 912 | reqf *= GT_FREQUENCY_MULTIPLIER; |
| 913 | |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 914 | rpstat = I915_READ(GEN6_RPSTAT1); |
| 915 | rpupei = I915_READ(GEN6_RP_CUR_UP_EI); |
| 916 | rpcurup = I915_READ(GEN6_RP_CUR_UP); |
| 917 | rpprevup = I915_READ(GEN6_RP_PREV_UP); |
| 918 | rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI); |
| 919 | rpcurdown = I915_READ(GEN6_RP_CUR_DOWN); |
| 920 | rpprevdown = I915_READ(GEN6_RP_PREV_DOWN); |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 921 | if (IS_HASWELL(dev)) |
| 922 | cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT; |
| 923 | else |
| 924 | cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT; |
| 925 | cagf *= GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 926 | |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 927 | gen6_gt_force_wake_put(dev_priv); |
| 928 | mutex_unlock(&dev->struct_mutex); |
| 929 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 930 | seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status); |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 931 | seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 932 | seq_printf(m, "Render p-state ratio: %d\n", |
| 933 | (gt_perf_status & 0xff00) >> 8); |
| 934 | seq_printf(m, "Render p-state VID: %d\n", |
| 935 | gt_perf_status & 0xff); |
| 936 | seq_printf(m, "Render p-state limit: %d\n", |
| 937 | rp_state_limits & 0xff); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 938 | seq_printf(m, "RPNSWREQ: %dMHz\n", reqf); |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 939 | seq_printf(m, "CAGF: %dMHz\n", cagf); |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 940 | seq_printf(m, "RP CUR UP EI: %dus\n", rpupei & |
| 941 | GEN6_CURICONT_MASK); |
| 942 | seq_printf(m, "RP CUR UP: %dus\n", rpcurup & |
| 943 | GEN6_CURBSYTAVG_MASK); |
| 944 | seq_printf(m, "RP PREV UP: %dus\n", rpprevup & |
| 945 | GEN6_CURBSYTAVG_MASK); |
| 946 | seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei & |
| 947 | GEN6_CURIAVG_MASK); |
| 948 | seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown & |
| 949 | GEN6_CURBSYTAVG_MASK); |
| 950 | seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown & |
| 951 | GEN6_CURBSYTAVG_MASK); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 952 | |
| 953 | max_freq = (rp_state_cap & 0xff0000) >> 16; |
| 954 | seq_printf(m, "Lowest (RPN) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 955 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 956 | |
| 957 | max_freq = (rp_state_cap & 0xff00) >> 8; |
| 958 | seq_printf(m, "Nominal (RP1) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 959 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 960 | |
| 961 | max_freq = rp_state_cap & 0xff; |
| 962 | seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 963 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Ben Widawsky | 31c7738 | 2013-04-05 14:29:22 -0700 | [diff] [blame] | 964 | |
| 965 | seq_printf(m, "Max overclocked frequency: %dMHz\n", |
| 966 | dev_priv->rps.hw_max * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 967 | } else if (IS_VALLEYVIEW(dev)) { |
| 968 | u32 freq_sts, val; |
| 969 | |
Jesse Barnes | 259bd5d | 2013-04-22 15:59:30 -0700 | [diff] [blame] | 970 | mutex_lock(&dev_priv->rps.hw_lock); |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 971 | freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 972 | seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts); |
| 973 | seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq); |
| 974 | |
Chon Ming Lee | c5bd2bf | 2013-11-07 15:23:27 +0800 | [diff] [blame^] | 975 | val = valleyview_rps_max_freq(dev_priv); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 976 | seq_printf(m, "max GPU freq: %d MHz\n", |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 977 | vlv_gpu_freq(dev_priv, val)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 978 | |
Chon Ming Lee | c5bd2bf | 2013-11-07 15:23:27 +0800 | [diff] [blame^] | 979 | val = valleyview_rps_min_freq(dev_priv); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 980 | seq_printf(m, "min GPU freq: %d MHz\n", |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 981 | vlv_gpu_freq(dev_priv, val)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 982 | |
| 983 | seq_printf(m, "current GPU freq: %d MHz\n", |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 984 | vlv_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff)); |
Jesse Barnes | 259bd5d | 2013-04-22 15:59:30 -0700 | [diff] [blame] | 985 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 986 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 987 | seq_puts(m, "no P-state info available\n"); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 988 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 989 | |
| 990 | return 0; |
| 991 | } |
| 992 | |
| 993 | static int i915_delayfreq_table(struct seq_file *m, void *unused) |
| 994 | { |
| 995 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 996 | struct drm_device *dev = node->minor->dev; |
| 997 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 998 | u32 delayfreq; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 999 | int ret, i; |
| 1000 | |
| 1001 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1002 | if (ret) |
| 1003 | return ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1004 | |
| 1005 | for (i = 0; i < 16; i++) { |
| 1006 | delayfreq = I915_READ(PXVFREQ_BASE + i * 4); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1007 | seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq, |
| 1008 | (delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1009 | } |
| 1010 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1011 | mutex_unlock(&dev->struct_mutex); |
| 1012 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1013 | return 0; |
| 1014 | } |
| 1015 | |
| 1016 | static inline int MAP_TO_MV(int map) |
| 1017 | { |
| 1018 | return 1250 - (map * 25); |
| 1019 | } |
| 1020 | |
| 1021 | static int i915_inttoext_table(struct seq_file *m, void *unused) |
| 1022 | { |
| 1023 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1024 | struct drm_device *dev = node->minor->dev; |
| 1025 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1026 | u32 inttoext; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1027 | int ret, i; |
| 1028 | |
| 1029 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1030 | if (ret) |
| 1031 | return ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1032 | |
| 1033 | for (i = 1; i <= 32; i++) { |
| 1034 | inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4); |
| 1035 | seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext); |
| 1036 | } |
| 1037 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1038 | mutex_unlock(&dev->struct_mutex); |
| 1039 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1040 | return 0; |
| 1041 | } |
| 1042 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1043 | static int ironlake_drpc_info(struct seq_file *m) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1044 | { |
| 1045 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1046 | struct drm_device *dev = node->minor->dev; |
| 1047 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1048 | u32 rgvmodectl, rstdbyctl; |
| 1049 | u16 crstandvid; |
| 1050 | int ret; |
| 1051 | |
| 1052 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1053 | if (ret) |
| 1054 | return ret; |
| 1055 | |
| 1056 | rgvmodectl = I915_READ(MEMMODECTL); |
| 1057 | rstdbyctl = I915_READ(RSTDBYCTL); |
| 1058 | crstandvid = I915_READ16(CRSTANDVID); |
| 1059 | |
| 1060 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1061 | |
| 1062 | seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ? |
| 1063 | "yes" : "no"); |
| 1064 | seq_printf(m, "Boost freq: %d\n", |
| 1065 | (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >> |
| 1066 | MEMMODE_BOOST_FREQ_SHIFT); |
| 1067 | seq_printf(m, "HW control enabled: %s\n", |
| 1068 | rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no"); |
| 1069 | seq_printf(m, "SW control enabled: %s\n", |
| 1070 | rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no"); |
| 1071 | seq_printf(m, "Gated voltage change: %s\n", |
| 1072 | rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no"); |
| 1073 | seq_printf(m, "Starting frequency: P%d\n", |
| 1074 | (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1075 | seq_printf(m, "Max P-state: P%d\n", |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1076 | (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1077 | seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK)); |
| 1078 | seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f)); |
| 1079 | seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f)); |
| 1080 | seq_printf(m, "Render standby enabled: %s\n", |
| 1081 | (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes"); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1082 | seq_puts(m, "Current RS state: "); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1083 | switch (rstdbyctl & RSX_STATUS_MASK) { |
| 1084 | case RSX_STATUS_ON: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1085 | seq_puts(m, "on\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1086 | break; |
| 1087 | case RSX_STATUS_RC1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1088 | seq_puts(m, "RC1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1089 | break; |
| 1090 | case RSX_STATUS_RC1E: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1091 | seq_puts(m, "RC1E\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1092 | break; |
| 1093 | case RSX_STATUS_RS1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1094 | seq_puts(m, "RS1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1095 | break; |
| 1096 | case RSX_STATUS_RS2: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1097 | seq_puts(m, "RS2 (RC6)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1098 | break; |
| 1099 | case RSX_STATUS_RS3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1100 | seq_puts(m, "RC3 (RC6+)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1101 | break; |
| 1102 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1103 | seq_puts(m, "unknown\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1104 | break; |
| 1105 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1106 | |
| 1107 | return 0; |
| 1108 | } |
| 1109 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1110 | static int gen6_drpc_info(struct seq_file *m) |
| 1111 | { |
| 1112 | |
| 1113 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1114 | struct drm_device *dev = node->minor->dev; |
| 1115 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | ecd8fae | 2012-09-26 10:34:02 -0700 | [diff] [blame] | 1116 | u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0; |
Daniel Vetter | 93b525d | 2012-01-25 13:52:43 +0100 | [diff] [blame] | 1117 | unsigned forcewake_count; |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1118 | int count = 0, ret; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1119 | |
| 1120 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1121 | if (ret) |
| 1122 | return ret; |
| 1123 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1124 | spin_lock_irq(&dev_priv->uncore.lock); |
| 1125 | forcewake_count = dev_priv->uncore.forcewake_count; |
| 1126 | spin_unlock_irq(&dev_priv->uncore.lock); |
Daniel Vetter | 93b525d | 2012-01-25 13:52:43 +0100 | [diff] [blame] | 1127 | |
| 1128 | if (forcewake_count) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1129 | seq_puts(m, "RC information inaccurate because somebody " |
| 1130 | "holds a forcewake reference \n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1131 | } else { |
| 1132 | /* NB: we cannot use forcewake, else we read the wrong values */ |
| 1133 | while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1)) |
| 1134 | udelay(10); |
| 1135 | seq_printf(m, "RC information accurate: %s\n", yesno(count < 51)); |
| 1136 | } |
| 1137 | |
| 1138 | gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS); |
Chris Wilson | ed71f1b | 2013-07-19 20:36:56 +0100 | [diff] [blame] | 1139 | 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] | 1140 | |
| 1141 | rpmodectl1 = I915_READ(GEN6_RP_CONTROL); |
| 1142 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
| 1143 | mutex_unlock(&dev->struct_mutex); |
Ben Widawsky | 44cbd33 | 2012-11-06 14:36:36 +0000 | [diff] [blame] | 1144 | mutex_lock(&dev_priv->rps.hw_lock); |
| 1145 | sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids); |
| 1146 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1147 | |
| 1148 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1149 | yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO)); |
| 1150 | seq_printf(m, "HW control enabled: %s\n", |
| 1151 | yesno(rpmodectl1 & GEN6_RP_ENABLE)); |
| 1152 | seq_printf(m, "SW control enabled: %s\n", |
| 1153 | yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) == |
| 1154 | GEN6_RP_MEDIA_SW_MODE)); |
Eric Anholt | fff24e2 | 2012-01-23 16:14:05 -0800 | [diff] [blame] | 1155 | seq_printf(m, "RC1e Enabled: %s\n", |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1156 | yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE)); |
| 1157 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1158 | yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE)); |
| 1159 | seq_printf(m, "Deep RC6 Enabled: %s\n", |
| 1160 | yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE)); |
| 1161 | seq_printf(m, "Deepest RC6 Enabled: %s\n", |
| 1162 | yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE)); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1163 | seq_puts(m, "Current RC state: "); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1164 | switch (gt_core_status & GEN6_RCn_MASK) { |
| 1165 | case GEN6_RC0: |
| 1166 | if (gt_core_status & GEN6_CORE_CPD_STATE_MASK) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1167 | seq_puts(m, "Core Power Down\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1168 | else |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1169 | seq_puts(m, "on\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1170 | break; |
| 1171 | case GEN6_RC3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1172 | seq_puts(m, "RC3\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1173 | break; |
| 1174 | case GEN6_RC6: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1175 | seq_puts(m, "RC6\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1176 | break; |
| 1177 | case GEN6_RC7: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1178 | seq_puts(m, "RC7\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1179 | break; |
| 1180 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1181 | seq_puts(m, "Unknown\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1182 | break; |
| 1183 | } |
| 1184 | |
| 1185 | seq_printf(m, "Core Power Down: %s\n", |
| 1186 | yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK)); |
Ben Widawsky | cce66a2 | 2012-03-27 18:59:38 -0700 | [diff] [blame] | 1187 | |
| 1188 | /* Not exactly sure what this is */ |
| 1189 | seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n", |
| 1190 | I915_READ(GEN6_GT_GFX_RC6_LOCKED)); |
| 1191 | seq_printf(m, "RC6 residency since boot: %u\n", |
| 1192 | I915_READ(GEN6_GT_GFX_RC6)); |
| 1193 | seq_printf(m, "RC6+ residency since boot: %u\n", |
| 1194 | I915_READ(GEN6_GT_GFX_RC6p)); |
| 1195 | seq_printf(m, "RC6++ residency since boot: %u\n", |
| 1196 | I915_READ(GEN6_GT_GFX_RC6pp)); |
| 1197 | |
Ben Widawsky | ecd8fae | 2012-09-26 10:34:02 -0700 | [diff] [blame] | 1198 | seq_printf(m, "RC6 voltage: %dmV\n", |
| 1199 | GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff))); |
| 1200 | seq_printf(m, "RC6+ voltage: %dmV\n", |
| 1201 | GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff))); |
| 1202 | seq_printf(m, "RC6++ voltage: %dmV\n", |
| 1203 | GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff))); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1204 | return 0; |
| 1205 | } |
| 1206 | |
| 1207 | static int i915_drpc_info(struct seq_file *m, void *unused) |
| 1208 | { |
| 1209 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1210 | struct drm_device *dev = node->minor->dev; |
| 1211 | |
| 1212 | if (IS_GEN6(dev) || IS_GEN7(dev)) |
| 1213 | return gen6_drpc_info(m); |
| 1214 | else |
| 1215 | return ironlake_drpc_info(m); |
| 1216 | } |
| 1217 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1218 | static int i915_fbc_status(struct seq_file *m, void *unused) |
| 1219 | { |
| 1220 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1221 | struct drm_device *dev = node->minor->dev; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1222 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1223 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1224 | if (!I915_HAS_FBC(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1225 | seq_puts(m, "FBC unsupported on this chipset\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1226 | return 0; |
| 1227 | } |
| 1228 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1229 | if (intel_fbc_enabled(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1230 | seq_puts(m, "FBC enabled\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1231 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1232 | seq_puts(m, "FBC disabled: "); |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 1233 | switch (dev_priv->fbc.no_fbc_reason) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 1234 | case FBC_OK: |
| 1235 | seq_puts(m, "FBC actived, but currently disabled in hardware"); |
| 1236 | break; |
| 1237 | case FBC_UNSUPPORTED: |
| 1238 | seq_puts(m, "unsupported by this chipset"); |
| 1239 | break; |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 1240 | case FBC_NO_OUTPUT: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1241 | seq_puts(m, "no outputs"); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 1242 | break; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1243 | case FBC_STOLEN_TOO_SMALL: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1244 | seq_puts(m, "not enough stolen memory"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1245 | break; |
| 1246 | case FBC_UNSUPPORTED_MODE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1247 | seq_puts(m, "mode not supported"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1248 | break; |
| 1249 | case FBC_MODE_TOO_LARGE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1250 | seq_puts(m, "mode too large"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1251 | break; |
| 1252 | case FBC_BAD_PLANE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1253 | seq_puts(m, "FBC unsupported on plane"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1254 | break; |
| 1255 | case FBC_NOT_TILED: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1256 | seq_puts(m, "scanout buffer not tiled"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1257 | break; |
Jesse Barnes | 9c928d1 | 2010-07-23 15:20:00 -0700 | [diff] [blame] | 1258 | case FBC_MULTIPLE_PIPES: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1259 | seq_puts(m, "multiple pipes are enabled"); |
Jesse Barnes | 9c928d1 | 2010-07-23 15:20:00 -0700 | [diff] [blame] | 1260 | break; |
Jesse Barnes | c1a9f04 | 2011-05-05 15:24:21 -0700 | [diff] [blame] | 1261 | case FBC_MODULE_PARAM: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1262 | seq_puts(m, "disabled per module param (default off)"); |
Jesse Barnes | c1a9f04 | 2011-05-05 15:24:21 -0700 | [diff] [blame] | 1263 | break; |
Damien Lespiau | 8a5729a | 2013-06-24 16:22:02 +0100 | [diff] [blame] | 1264 | case FBC_CHIP_DEFAULT: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1265 | seq_puts(m, "disabled per chip default"); |
Damien Lespiau | 8a5729a | 2013-06-24 16:22:02 +0100 | [diff] [blame] | 1266 | break; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1267 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1268 | seq_puts(m, "unknown reason"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1269 | } |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1270 | seq_putc(m, '\n'); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1271 | } |
| 1272 | return 0; |
| 1273 | } |
| 1274 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1275 | static int i915_ips_status(struct seq_file *m, void *unused) |
| 1276 | { |
| 1277 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1278 | struct drm_device *dev = node->minor->dev; |
| 1279 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1280 | |
Damien Lespiau | f5adf94 | 2013-06-24 18:29:34 +0100 | [diff] [blame] | 1281 | if (!HAS_IPS(dev)) { |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1282 | seq_puts(m, "not supported\n"); |
| 1283 | return 0; |
| 1284 | } |
| 1285 | |
| 1286 | if (I915_READ(IPS_CTL) & IPS_ENABLE) |
| 1287 | seq_puts(m, "enabled\n"); |
| 1288 | else |
| 1289 | seq_puts(m, "disabled\n"); |
| 1290 | |
| 1291 | return 0; |
| 1292 | } |
| 1293 | |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1294 | static int i915_sr_status(struct seq_file *m, void *unused) |
| 1295 | { |
| 1296 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1297 | struct drm_device *dev = node->minor->dev; |
| 1298 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1299 | bool sr_enabled = false; |
| 1300 | |
Yuanhan Liu | 1398261 | 2010-12-15 15:42:31 +0800 | [diff] [blame] | 1301 | if (HAS_PCH_SPLIT(dev)) |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1302 | sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1303 | else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1304 | sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
| 1305 | else if (IS_I915GM(dev)) |
| 1306 | sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN; |
| 1307 | else if (IS_PINEVIEW(dev)) |
| 1308 | sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN; |
| 1309 | |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1310 | seq_printf(m, "self-refresh: %s\n", |
| 1311 | sr_enabled ? "enabled" : "disabled"); |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1312 | |
| 1313 | return 0; |
| 1314 | } |
| 1315 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1316 | static int i915_emon_status(struct seq_file *m, void *unused) |
| 1317 | { |
| 1318 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1319 | struct drm_device *dev = node->minor->dev; |
| 1320 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1321 | unsigned long temp, chipset, gfx; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1322 | int ret; |
| 1323 | |
Chris Wilson | 582be6b | 2012-04-30 19:35:02 +0100 | [diff] [blame] | 1324 | if (!IS_GEN5(dev)) |
| 1325 | return -ENODEV; |
| 1326 | |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1327 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1328 | if (ret) |
| 1329 | return ret; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1330 | |
| 1331 | temp = i915_mch_val(dev_priv); |
| 1332 | chipset = i915_chipset_val(dev_priv); |
| 1333 | gfx = i915_gfx_val(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1334 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1335 | |
| 1336 | seq_printf(m, "GMCH temp: %ld\n", temp); |
| 1337 | seq_printf(m, "Chipset power: %ld\n", chipset); |
| 1338 | seq_printf(m, "GFX power: %ld\n", gfx); |
| 1339 | seq_printf(m, "Total power: %ld\n", chipset + gfx); |
| 1340 | |
| 1341 | return 0; |
| 1342 | } |
| 1343 | |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1344 | static int i915_ring_freq_table(struct seq_file *m, void *unused) |
| 1345 | { |
| 1346 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1347 | struct drm_device *dev = node->minor->dev; |
| 1348 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1349 | int ret; |
| 1350 | int gpu_freq, ia_freq; |
| 1351 | |
Jesse Barnes | 1c70c0c | 2011-06-29 13:34:36 -0700 | [diff] [blame] | 1352 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1353 | seq_puts(m, "unsupported on this chipset\n"); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1354 | return 0; |
| 1355 | } |
| 1356 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 1357 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 1358 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 1359 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1360 | if (ret) |
| 1361 | return ret; |
| 1362 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1363 | 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] | 1364 | |
Daniel Vetter | c6a828d | 2012-08-08 23:35:35 +0200 | [diff] [blame] | 1365 | for (gpu_freq = dev_priv->rps.min_delay; |
| 1366 | gpu_freq <= dev_priv->rps.max_delay; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1367 | gpu_freq++) { |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 1368 | ia_freq = gpu_freq; |
| 1369 | sandybridge_pcode_read(dev_priv, |
| 1370 | GEN6_PCODE_READ_MIN_FREQ_TABLE, |
| 1371 | &ia_freq); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 1372 | seq_printf(m, "%d\t\t%d\t\t\t\t%d\n", |
| 1373 | gpu_freq * GT_FREQUENCY_MULTIPLIER, |
| 1374 | ((ia_freq >> 0) & 0xff) * 100, |
| 1375 | ((ia_freq >> 8) & 0xff) * 100); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1376 | } |
| 1377 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 1378 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1379 | |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1383 | static int i915_gfxec(struct seq_file *m, void *unused) |
| 1384 | { |
| 1385 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1386 | struct drm_device *dev = node->minor->dev; |
| 1387 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1388 | int ret; |
| 1389 | |
| 1390 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1391 | if (ret) |
| 1392 | return ret; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1393 | |
| 1394 | seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4)); |
| 1395 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1396 | mutex_unlock(&dev->struct_mutex); |
| 1397 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1398 | return 0; |
| 1399 | } |
| 1400 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1401 | static int i915_opregion(struct seq_file *m, void *unused) |
| 1402 | { |
| 1403 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1404 | struct drm_device *dev = node->minor->dev; |
| 1405 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1406 | struct intel_opregion *opregion = &dev_priv->opregion; |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1407 | void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1408 | int ret; |
| 1409 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1410 | if (data == NULL) |
| 1411 | return -ENOMEM; |
| 1412 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1413 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1414 | if (ret) |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1415 | goto out; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1416 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1417 | if (opregion->header) { |
| 1418 | memcpy_fromio(data, opregion->header, OPREGION_SIZE); |
| 1419 | seq_write(m, data, OPREGION_SIZE); |
| 1420 | } |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1421 | |
| 1422 | mutex_unlock(&dev->struct_mutex); |
| 1423 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1424 | out: |
| 1425 | kfree(data); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1426 | return 0; |
| 1427 | } |
| 1428 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1429 | static int i915_gem_framebuffer_info(struct seq_file *m, void *data) |
| 1430 | { |
| 1431 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1432 | struct drm_device *dev = node->minor->dev; |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1433 | struct intel_fbdev *ifbdev = NULL; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1434 | struct intel_framebuffer *fb; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1435 | |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1436 | #ifdef CONFIG_DRM_I915_FBDEV |
| 1437 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1438 | int ret = mutex_lock_interruptible(&dev->mode_config.mutex); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1439 | if (ret) |
| 1440 | return ret; |
| 1441 | |
| 1442 | ifbdev = dev_priv->fbdev; |
| 1443 | fb = to_intel_framebuffer(ifbdev->helper.fb); |
| 1444 | |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1445 | 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] | 1446 | fb->base.width, |
| 1447 | fb->base.height, |
| 1448 | fb->base.depth, |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1449 | fb->base.bits_per_pixel, |
| 1450 | atomic_read(&fb->base.refcount.refcount)); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1451 | describe_obj(m, fb->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1452 | seq_putc(m, '\n'); |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1453 | mutex_unlock(&dev->mode_config.mutex); |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1454 | #endif |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1455 | |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1456 | mutex_lock(&dev->mode_config.fb_lock); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1457 | list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) { |
Daniel Vetter | 131a56d | 2013-10-17 14:35:31 +0200 | [diff] [blame] | 1458 | if (ifbdev && &fb->base == ifbdev->helper.fb) |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1459 | continue; |
| 1460 | |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1461 | 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] | 1462 | fb->base.width, |
| 1463 | fb->base.height, |
| 1464 | fb->base.depth, |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1465 | fb->base.bits_per_pixel, |
| 1466 | atomic_read(&fb->base.refcount.refcount)); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1467 | describe_obj(m, fb->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1468 | seq_putc(m, '\n'); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1469 | } |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1470 | mutex_unlock(&dev->mode_config.fb_lock); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1471 | |
| 1472 | return 0; |
| 1473 | } |
| 1474 | |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1475 | static int i915_context_status(struct seq_file *m, void *unused) |
| 1476 | { |
| 1477 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1478 | struct drm_device *dev = node->minor->dev; |
| 1479 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1480 | struct intel_ring_buffer *ring; |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1481 | struct i915_hw_context *ctx; |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1482 | int ret, i; |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1483 | |
| 1484 | ret = mutex_lock_interruptible(&dev->mode_config.mutex); |
| 1485 | if (ret) |
| 1486 | return ret; |
| 1487 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1488 | if (dev_priv->ips.pwrctx) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1489 | seq_puts(m, "power context "); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1490 | describe_obj(m, dev_priv->ips.pwrctx); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1491 | seq_putc(m, '\n'); |
Ben Widawsky | dc501fb | 2011-06-29 11:41:51 -0700 | [diff] [blame] | 1492 | } |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1493 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1494 | if (dev_priv->ips.renderctx) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1495 | seq_puts(m, "render context "); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1496 | describe_obj(m, dev_priv->ips.renderctx); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1497 | seq_putc(m, '\n'); |
Ben Widawsky | dc501fb | 2011-06-29 11:41:51 -0700 | [diff] [blame] | 1498 | } |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1499 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1500 | list_for_each_entry(ctx, &dev_priv->context_list, link) { |
| 1501 | seq_puts(m, "HW context "); |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 1502 | describe_ctx(m, ctx); |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1503 | for_each_ring(ring, dev_priv, i) |
| 1504 | if (ring->default_context == ctx) |
| 1505 | seq_printf(m, "(default context %s) ", ring->name); |
| 1506 | |
| 1507 | describe_obj(m, ctx->obj); |
| 1508 | seq_putc(m, '\n'); |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1509 | } |
| 1510 | |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1511 | mutex_unlock(&dev->mode_config.mutex); |
| 1512 | |
| 1513 | return 0; |
| 1514 | } |
| 1515 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1516 | static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data) |
| 1517 | { |
| 1518 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1519 | struct drm_device *dev = node->minor->dev; |
| 1520 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9f1f46a | 2011-12-14 13:57:03 +0100 | [diff] [blame] | 1521 | unsigned forcewake_count; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1522 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1523 | spin_lock_irq(&dev_priv->uncore.lock); |
| 1524 | forcewake_count = dev_priv->uncore.forcewake_count; |
| 1525 | spin_unlock_irq(&dev_priv->uncore.lock); |
Daniel Vetter | 9f1f46a | 2011-12-14 13:57:03 +0100 | [diff] [blame] | 1526 | |
| 1527 | seq_printf(m, "forcewake count = %u\n", forcewake_count); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1528 | |
| 1529 | return 0; |
| 1530 | } |
| 1531 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1532 | static const char *swizzle_string(unsigned swizzle) |
| 1533 | { |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1534 | switch (swizzle) { |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1535 | case I915_BIT_6_SWIZZLE_NONE: |
| 1536 | return "none"; |
| 1537 | case I915_BIT_6_SWIZZLE_9: |
| 1538 | return "bit9"; |
| 1539 | case I915_BIT_6_SWIZZLE_9_10: |
| 1540 | return "bit9/bit10"; |
| 1541 | case I915_BIT_6_SWIZZLE_9_11: |
| 1542 | return "bit9/bit11"; |
| 1543 | case I915_BIT_6_SWIZZLE_9_10_11: |
| 1544 | return "bit9/bit10/bit11"; |
| 1545 | case I915_BIT_6_SWIZZLE_9_17: |
| 1546 | return "bit9/bit17"; |
| 1547 | case I915_BIT_6_SWIZZLE_9_10_17: |
| 1548 | return "bit9/bit10/bit17"; |
| 1549 | case I915_BIT_6_SWIZZLE_UNKNOWN: |
Masanari Iida | 8a168ca | 2012-12-29 02:00:09 +0900 | [diff] [blame] | 1550 | return "unknown"; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1551 | } |
| 1552 | |
| 1553 | return "bug"; |
| 1554 | } |
| 1555 | |
| 1556 | static int i915_swizzle_info(struct seq_file *m, void *data) |
| 1557 | { |
| 1558 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1559 | struct drm_device *dev = node->minor->dev; |
| 1560 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 1561 | int ret; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1562 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 1563 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1564 | if (ret) |
| 1565 | return ret; |
| 1566 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1567 | seq_printf(m, "bit6 swizzle for X-tiling = %s\n", |
| 1568 | swizzle_string(dev_priv->mm.bit_6_swizzle_x)); |
| 1569 | seq_printf(m, "bit6 swizzle for Y-tiling = %s\n", |
| 1570 | swizzle_string(dev_priv->mm.bit_6_swizzle_y)); |
| 1571 | |
| 1572 | if (IS_GEN3(dev) || IS_GEN4(dev)) { |
| 1573 | seq_printf(m, "DDC = 0x%08x\n", |
| 1574 | I915_READ(DCC)); |
| 1575 | seq_printf(m, "C0DRB3 = 0x%04x\n", |
| 1576 | I915_READ16(C0DRB3)); |
| 1577 | seq_printf(m, "C1DRB3 = 0x%04x\n", |
| 1578 | I915_READ16(C1DRB3)); |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 1579 | } else if (IS_GEN6(dev) || IS_GEN7(dev)) { |
| 1580 | seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n", |
| 1581 | I915_READ(MAD_DIMM_C0)); |
| 1582 | seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n", |
| 1583 | I915_READ(MAD_DIMM_C1)); |
| 1584 | seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n", |
| 1585 | I915_READ(MAD_DIMM_C2)); |
| 1586 | seq_printf(m, "TILECTL = 0x%08x\n", |
| 1587 | I915_READ(TILECTL)); |
| 1588 | seq_printf(m, "ARB_MODE = 0x%08x\n", |
| 1589 | I915_READ(ARB_MODE)); |
| 1590 | seq_printf(m, "DISP_ARB_CTL = 0x%08x\n", |
| 1591 | I915_READ(DISP_ARB_CTL)); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1592 | } |
| 1593 | mutex_unlock(&dev->struct_mutex); |
| 1594 | |
| 1595 | return 0; |
| 1596 | } |
| 1597 | |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1598 | static int i915_ppgtt_info(struct seq_file *m, void *data) |
| 1599 | { |
| 1600 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1601 | struct drm_device *dev = node->minor->dev; |
| 1602 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1603 | struct intel_ring_buffer *ring; |
| 1604 | int i, ret; |
| 1605 | |
| 1606 | |
| 1607 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1608 | if (ret) |
| 1609 | return ret; |
| 1610 | if (INTEL_INFO(dev)->gen == 6) |
| 1611 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE)); |
| 1612 | |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 1613 | for_each_ring(ring, dev_priv, i) { |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1614 | seq_printf(m, "%s\n", ring->name); |
| 1615 | if (INTEL_INFO(dev)->gen == 7) |
| 1616 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring))); |
| 1617 | seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring))); |
| 1618 | seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring))); |
| 1619 | seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring))); |
| 1620 | } |
| 1621 | if (dev_priv->mm.aliasing_ppgtt) { |
| 1622 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 1623 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1624 | seq_puts(m, "aliasing PPGTT:\n"); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1625 | seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset); |
| 1626 | } |
| 1627 | seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK)); |
| 1628 | mutex_unlock(&dev->struct_mutex); |
| 1629 | |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1633 | static int i915_dpio_info(struct seq_file *m, void *data) |
| 1634 | { |
| 1635 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1636 | struct drm_device *dev = node->minor->dev; |
| 1637 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1638 | int ret; |
| 1639 | |
| 1640 | |
| 1641 | if (!IS_VALLEYVIEW(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1642 | seq_puts(m, "unsupported\n"); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1643 | return 0; |
| 1644 | } |
| 1645 | |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 1646 | ret = mutex_lock_interruptible(&dev_priv->dpio_lock); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1647 | if (ret) |
| 1648 | return ret; |
| 1649 | |
| 1650 | seq_printf(m, "DPIO_CTL: 0x%08x\n", I915_READ(DPIO_CTL)); |
| 1651 | |
| 1652 | seq_printf(m, "DPIO_DIV_A: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1653 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_DIV_A)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1654 | seq_printf(m, "DPIO_DIV_B: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1655 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_DIV_B)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1656 | |
| 1657 | seq_printf(m, "DPIO_REFSFR_A: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1658 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_REFSFR_A)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1659 | seq_printf(m, "DPIO_REFSFR_B: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1660 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_REFSFR_B)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1661 | |
| 1662 | seq_printf(m, "DPIO_CORE_CLK_A: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1663 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_CORE_CLK_A)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1664 | seq_printf(m, "DPIO_CORE_CLK_B: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1665 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_CORE_CLK_B)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1666 | |
Ville Syrjälä | 4abb2c3 | 2013-06-14 14:02:53 +0300 | [diff] [blame] | 1667 | seq_printf(m, "DPIO_LPF_COEFF_A: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1668 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_LPF_COEFF_A)); |
Ville Syrjälä | 4abb2c3 | 2013-06-14 14:02:53 +0300 | [diff] [blame] | 1669 | seq_printf(m, "DPIO_LPF_COEFF_B: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1670 | vlv_dpio_read(dev_priv, PIPE_A, _DPIO_LPF_COEFF_B)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1671 | |
| 1672 | seq_printf(m, "DPIO_FASTCLK_DISABLE: 0x%08x\n", |
Chon Ming Lee | 5e69f97 | 2013-09-05 20:41:49 +0800 | [diff] [blame] | 1673 | vlv_dpio_read(dev_priv, PIPE_A, DPIO_FASTCLK_DISABLE)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1674 | |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 1675 | mutex_unlock(&dev_priv->dpio_lock); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1676 | |
| 1677 | return 0; |
| 1678 | } |
| 1679 | |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 1680 | static int i915_llc(struct seq_file *m, void *data) |
| 1681 | { |
| 1682 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1683 | struct drm_device *dev = node->minor->dev; |
| 1684 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1685 | |
| 1686 | /* Size calculation for LLC is a bit of a pain. Ignore for now. */ |
| 1687 | seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev))); |
| 1688 | seq_printf(m, "eLLC: %zuMB\n", dev_priv->ellc_size); |
| 1689 | |
| 1690 | return 0; |
| 1691 | } |
| 1692 | |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1693 | static int i915_edp_psr_status(struct seq_file *m, void *data) |
| 1694 | { |
| 1695 | struct drm_info_node *node = m->private; |
| 1696 | struct drm_device *dev = node->minor->dev; |
| 1697 | struct drm_i915_private *dev_priv = dev->dev_private; |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1698 | u32 psrperf = 0; |
| 1699 | bool enabled = false; |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1700 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1701 | seq_printf(m, "Sink_Support: %s\n", yesno(dev_priv->psr.sink_support)); |
| 1702 | 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] | 1703 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1704 | enabled = HAS_PSR(dev) && |
| 1705 | I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE; |
| 1706 | seq_printf(m, "Enabled: %s\n", yesno(enabled)); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1707 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1708 | if (HAS_PSR(dev)) |
| 1709 | psrperf = I915_READ(EDP_PSR_PERF_CNT(dev)) & |
| 1710 | EDP_PSR_PERF_CNT_MASK; |
| 1711 | seq_printf(m, "Performance_Counter: %u\n", psrperf); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1712 | |
| 1713 | return 0; |
| 1714 | } |
| 1715 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 1716 | static int i915_energy_uJ(struct seq_file *m, void *data) |
| 1717 | { |
| 1718 | struct drm_info_node *node = m->private; |
| 1719 | struct drm_device *dev = node->minor->dev; |
| 1720 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1721 | u64 power; |
| 1722 | u32 units; |
| 1723 | |
| 1724 | if (INTEL_INFO(dev)->gen < 6) |
| 1725 | return -ENODEV; |
| 1726 | |
| 1727 | rdmsrl(MSR_RAPL_POWER_UNIT, power); |
| 1728 | power = (power & 0x1f00) >> 8; |
| 1729 | units = 1000000 / (1 << power); /* convert to uJ */ |
| 1730 | power = I915_READ(MCH_SECP_NRG_STTS); |
| 1731 | power *= units; |
| 1732 | |
| 1733 | seq_printf(m, "%llu", (long long unsigned)power); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 1734 | |
| 1735 | return 0; |
| 1736 | } |
| 1737 | |
| 1738 | static int i915_pc8_status(struct seq_file *m, void *unused) |
| 1739 | { |
| 1740 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1741 | struct drm_device *dev = node->minor->dev; |
| 1742 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1743 | |
| 1744 | if (!IS_HASWELL(dev)) { |
| 1745 | seq_puts(m, "not supported\n"); |
| 1746 | return 0; |
| 1747 | } |
| 1748 | |
| 1749 | mutex_lock(&dev_priv->pc8.lock); |
| 1750 | seq_printf(m, "Requirements met: %s\n", |
| 1751 | yesno(dev_priv->pc8.requirements_met)); |
| 1752 | seq_printf(m, "GPU idle: %s\n", yesno(dev_priv->pc8.gpu_idle)); |
| 1753 | seq_printf(m, "Disable count: %d\n", dev_priv->pc8.disable_count); |
| 1754 | seq_printf(m, "IRQs disabled: %s\n", |
| 1755 | yesno(dev_priv->pc8.irqs_disabled)); |
| 1756 | seq_printf(m, "Enabled: %s\n", yesno(dev_priv->pc8.enabled)); |
| 1757 | mutex_unlock(&dev_priv->pc8.lock); |
| 1758 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 1759 | return 0; |
| 1760 | } |
| 1761 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1762 | struct pipe_crc_info { |
| 1763 | const char *name; |
| 1764 | struct drm_device *dev; |
| 1765 | enum pipe pipe; |
| 1766 | }; |
| 1767 | |
| 1768 | static int i915_pipe_crc_open(struct inode *inode, struct file *filep) |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1769 | { |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1770 | struct pipe_crc_info *info = inode->i_private; |
| 1771 | struct drm_i915_private *dev_priv = info->dev->dev_private; |
| 1772 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 1773 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1774 | spin_lock_irq(&pipe_crc->lock); |
| 1775 | |
| 1776 | if (pipe_crc->opened) { |
| 1777 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1778 | return -EBUSY; /* already open */ |
| 1779 | } |
| 1780 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1781 | pipe_crc->opened = true; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1782 | filep->private_data = inode->i_private; |
| 1783 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1784 | spin_unlock_irq(&pipe_crc->lock); |
| 1785 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1786 | return 0; |
| 1787 | } |
| 1788 | |
| 1789 | static int i915_pipe_crc_release(struct inode *inode, struct file *filep) |
| 1790 | { |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1791 | struct pipe_crc_info *info = inode->i_private; |
| 1792 | struct drm_i915_private *dev_priv = info->dev->dev_private; |
| 1793 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 1794 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1795 | spin_lock_irq(&pipe_crc->lock); |
| 1796 | pipe_crc->opened = false; |
| 1797 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1798 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1799 | return 0; |
| 1800 | } |
| 1801 | |
| 1802 | /* (6 fields, 8 chars each, space separated (5) + '\n') */ |
| 1803 | #define PIPE_CRC_LINE_LEN (6 * 8 + 5 + 1) |
| 1804 | /* account for \'0' */ |
| 1805 | #define PIPE_CRC_BUFFER_LEN (PIPE_CRC_LINE_LEN + 1) |
| 1806 | |
| 1807 | static int pipe_crc_data_count(struct intel_pipe_crc *pipe_crc) |
| 1808 | { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1809 | assert_spin_locked(&pipe_crc->lock); |
| 1810 | return CIRC_CNT(pipe_crc->head, pipe_crc->tail, |
| 1811 | INTEL_PIPE_CRC_ENTRIES_NR); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1812 | } |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1813 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1814 | static ssize_t |
| 1815 | i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count, |
| 1816 | loff_t *pos) |
| 1817 | { |
| 1818 | struct pipe_crc_info *info = filep->private_data; |
| 1819 | struct drm_device *dev = info->dev; |
| 1820 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1821 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 1822 | char buf[PIPE_CRC_BUFFER_LEN]; |
| 1823 | int head, tail, n_entries, n; |
| 1824 | ssize_t bytes_read; |
| 1825 | |
| 1826 | /* |
| 1827 | * Don't allow user space to provide buffers not big enough to hold |
| 1828 | * a line of data. |
| 1829 | */ |
| 1830 | if (count < PIPE_CRC_LINE_LEN) |
| 1831 | return -EINVAL; |
| 1832 | |
| 1833 | if (pipe_crc->source == INTEL_PIPE_CRC_SOURCE_NONE) |
| 1834 | return 0; |
| 1835 | |
| 1836 | /* nothing to read */ |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1837 | spin_lock_irq(&pipe_crc->lock); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1838 | while (pipe_crc_data_count(pipe_crc) == 0) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1839 | int ret; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1840 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1841 | if (filep->f_flags & O_NONBLOCK) { |
| 1842 | spin_unlock_irq(&pipe_crc->lock); |
| 1843 | return -EAGAIN; |
| 1844 | } |
| 1845 | |
| 1846 | ret = wait_event_interruptible_lock_irq(pipe_crc->wq, |
| 1847 | pipe_crc_data_count(pipe_crc), pipe_crc->lock); |
| 1848 | if (ret) { |
| 1849 | spin_unlock_irq(&pipe_crc->lock); |
| 1850 | return ret; |
| 1851 | } |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1852 | } |
| 1853 | |
| 1854 | /* We now have one or more entries to read */ |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1855 | head = pipe_crc->head; |
| 1856 | tail = pipe_crc->tail; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1857 | n_entries = min((size_t)CIRC_CNT(head, tail, INTEL_PIPE_CRC_ENTRIES_NR), |
| 1858 | count / PIPE_CRC_LINE_LEN); |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1859 | spin_unlock_irq(&pipe_crc->lock); |
| 1860 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1861 | bytes_read = 0; |
| 1862 | n = 0; |
| 1863 | do { |
| 1864 | struct intel_pipe_crc_entry *entry = &pipe_crc->entries[tail]; |
| 1865 | int ret; |
| 1866 | |
| 1867 | bytes_read += snprintf(buf, PIPE_CRC_BUFFER_LEN, |
| 1868 | "%8u %8x %8x %8x %8x %8x\n", |
| 1869 | entry->frame, entry->crc[0], |
| 1870 | entry->crc[1], entry->crc[2], |
| 1871 | entry->crc[3], entry->crc[4]); |
| 1872 | |
| 1873 | ret = copy_to_user(user_buf + n * PIPE_CRC_LINE_LEN, |
| 1874 | buf, PIPE_CRC_LINE_LEN); |
| 1875 | if (ret == PIPE_CRC_LINE_LEN) |
| 1876 | return -EFAULT; |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 1877 | |
| 1878 | BUILD_BUG_ON_NOT_POWER_OF_2(INTEL_PIPE_CRC_ENTRIES_NR); |
| 1879 | tail = (tail + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1880 | n++; |
| 1881 | } while (--n_entries); |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1882 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1883 | spin_lock_irq(&pipe_crc->lock); |
| 1884 | pipe_crc->tail = tail; |
| 1885 | spin_unlock_irq(&pipe_crc->lock); |
| 1886 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1887 | return bytes_read; |
| 1888 | } |
| 1889 | |
| 1890 | static const struct file_operations i915_pipe_crc_fops = { |
| 1891 | .owner = THIS_MODULE, |
| 1892 | .open = i915_pipe_crc_open, |
| 1893 | .read = i915_pipe_crc_read, |
| 1894 | .release = i915_pipe_crc_release, |
| 1895 | }; |
| 1896 | |
| 1897 | static struct pipe_crc_info i915_pipe_crc_data[I915_MAX_PIPES] = { |
| 1898 | { |
| 1899 | .name = "i915_pipe_A_crc", |
| 1900 | .pipe = PIPE_A, |
| 1901 | }, |
| 1902 | { |
| 1903 | .name = "i915_pipe_B_crc", |
| 1904 | .pipe = PIPE_B, |
| 1905 | }, |
| 1906 | { |
| 1907 | .name = "i915_pipe_C_crc", |
| 1908 | .pipe = PIPE_C, |
| 1909 | }, |
| 1910 | }; |
| 1911 | |
| 1912 | static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor, |
| 1913 | enum pipe pipe) |
| 1914 | { |
| 1915 | struct drm_device *dev = minor->dev; |
| 1916 | struct dentry *ent; |
| 1917 | struct pipe_crc_info *info = &i915_pipe_crc_data[pipe]; |
| 1918 | |
| 1919 | info->dev = dev; |
| 1920 | ent = debugfs_create_file(info->name, S_IRUGO, root, info, |
| 1921 | &i915_pipe_crc_fops); |
| 1922 | if (IS_ERR(ent)) |
| 1923 | return PTR_ERR(ent); |
| 1924 | |
| 1925 | return drm_add_fake_info_node(minor, ent, info); |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1926 | } |
| 1927 | |
Daniel Vetter | e8dfcf7 | 2013-10-16 11:51:54 +0200 | [diff] [blame] | 1928 | static const char * const pipe_crc_sources[] = { |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 1929 | "none", |
| 1930 | "plane1", |
| 1931 | "plane2", |
| 1932 | "pf", |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 1933 | "pipe", |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 1934 | "TV", |
| 1935 | "DP-B", |
| 1936 | "DP-C", |
| 1937 | "DP-D", |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 1938 | "auto", |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 1939 | }; |
| 1940 | |
| 1941 | static const char *pipe_crc_source_name(enum intel_pipe_crc_source source) |
| 1942 | { |
| 1943 | BUILD_BUG_ON(ARRAY_SIZE(pipe_crc_sources) != INTEL_PIPE_CRC_SOURCE_MAX); |
| 1944 | return pipe_crc_sources[source]; |
| 1945 | } |
| 1946 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 1947 | static int display_crc_ctl_show(struct seq_file *m, void *data) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 1948 | { |
| 1949 | struct drm_device *dev = m->private; |
| 1950 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1951 | int i; |
| 1952 | |
| 1953 | for (i = 0; i < I915_MAX_PIPES; i++) |
| 1954 | seq_printf(m, "%c %s\n", pipe_name(i), |
| 1955 | pipe_crc_source_name(dev_priv->pipe_crc[i].source)); |
| 1956 | |
| 1957 | return 0; |
| 1958 | } |
| 1959 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 1960 | static int display_crc_ctl_open(struct inode *inode, struct file *file) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 1961 | { |
| 1962 | struct drm_device *dev = inode->i_private; |
| 1963 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 1964 | return single_open(file, display_crc_ctl_show, dev); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 1965 | } |
| 1966 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 1967 | 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] | 1968 | uint32_t *val) |
| 1969 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 1970 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 1971 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 1972 | |
| 1973 | switch (*source) { |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 1974 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 1975 | *val = PIPE_CRC_ENABLE | PIPE_CRC_INCLUDE_BORDER_I8XX; |
| 1976 | break; |
| 1977 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 1978 | *val = 0; |
| 1979 | break; |
| 1980 | default: |
| 1981 | return -EINVAL; |
| 1982 | } |
| 1983 | |
| 1984 | return 0; |
| 1985 | } |
| 1986 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 1987 | static int i9xx_pipe_crc_auto_source(struct drm_device *dev, enum pipe pipe, |
| 1988 | enum intel_pipe_crc_source *source) |
| 1989 | { |
| 1990 | struct intel_encoder *encoder; |
| 1991 | struct intel_crtc *crtc; |
Daniel Vetter | 2675680 | 2013-11-01 10:50:23 +0100 | [diff] [blame] | 1992 | struct intel_digital_port *dig_port; |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 1993 | int ret = 0; |
| 1994 | |
| 1995 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 1996 | |
| 1997 | mutex_lock(&dev->mode_config.mutex); |
| 1998 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 1999 | base.head) { |
| 2000 | if (!encoder->base.crtc) |
| 2001 | continue; |
| 2002 | |
| 2003 | crtc = to_intel_crtc(encoder->base.crtc); |
| 2004 | |
| 2005 | if (crtc->pipe != pipe) |
| 2006 | continue; |
| 2007 | |
| 2008 | switch (encoder->type) { |
| 2009 | case INTEL_OUTPUT_TVOUT: |
| 2010 | *source = INTEL_PIPE_CRC_SOURCE_TV; |
| 2011 | break; |
| 2012 | case INTEL_OUTPUT_DISPLAYPORT: |
| 2013 | case INTEL_OUTPUT_EDP: |
Daniel Vetter | 2675680 | 2013-11-01 10:50:23 +0100 | [diff] [blame] | 2014 | dig_port = enc_to_dig_port(&encoder->base); |
| 2015 | switch (dig_port->port) { |
| 2016 | case PORT_B: |
| 2017 | *source = INTEL_PIPE_CRC_SOURCE_DP_B; |
| 2018 | break; |
| 2019 | case PORT_C: |
| 2020 | *source = INTEL_PIPE_CRC_SOURCE_DP_C; |
| 2021 | break; |
| 2022 | case PORT_D: |
| 2023 | *source = INTEL_PIPE_CRC_SOURCE_DP_D; |
| 2024 | break; |
| 2025 | default: |
| 2026 | WARN(1, "nonexisting DP port %c\n", |
| 2027 | port_name(dig_port->port)); |
| 2028 | break; |
| 2029 | } |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2030 | break; |
| 2031 | } |
| 2032 | } |
| 2033 | mutex_unlock(&dev->mode_config.mutex); |
| 2034 | |
| 2035 | return ret; |
| 2036 | } |
| 2037 | |
| 2038 | static int vlv_pipe_crc_ctl_reg(struct drm_device *dev, |
| 2039 | enum pipe pipe, |
| 2040 | enum intel_pipe_crc_source *source, |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2041 | uint32_t *val) |
| 2042 | { |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2043 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2044 | bool need_stable_symbols = false; |
| 2045 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2046 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) { |
| 2047 | int ret = i9xx_pipe_crc_auto_source(dev, pipe, source); |
| 2048 | if (ret) |
| 2049 | return ret; |
| 2050 | } |
| 2051 | |
| 2052 | switch (*source) { |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2053 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2054 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_VLV; |
| 2055 | break; |
| 2056 | case INTEL_PIPE_CRC_SOURCE_DP_B: |
| 2057 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_VLV; |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2058 | need_stable_symbols = true; |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2059 | break; |
| 2060 | case INTEL_PIPE_CRC_SOURCE_DP_C: |
| 2061 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_VLV; |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2062 | need_stable_symbols = true; |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2063 | break; |
| 2064 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 2065 | *val = 0; |
| 2066 | break; |
| 2067 | default: |
| 2068 | return -EINVAL; |
| 2069 | } |
| 2070 | |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2071 | /* |
| 2072 | * When the pipe CRC tap point is after the transcoders we need |
| 2073 | * to tweak symbol-level features to produce a deterministic series of |
| 2074 | * symbols for a given frame. We need to reset those features only once |
| 2075 | * a frame (instead of every nth symbol): |
| 2076 | * - DC-balance: used to ensure a better clock recovery from the data |
| 2077 | * link (SDVO) |
| 2078 | * - DisplayPort scrambling: used for EMI reduction |
| 2079 | */ |
| 2080 | if (need_stable_symbols) { |
| 2081 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2082 | |
| 2083 | WARN_ON(!IS_G4X(dev)); |
| 2084 | |
| 2085 | tmp |= DC_BALANCE_RESET_VLV; |
| 2086 | if (pipe == PIPE_A) |
| 2087 | tmp |= PIPE_A_SCRAMBLE_RESET; |
| 2088 | else |
| 2089 | tmp |= PIPE_B_SCRAMBLE_RESET; |
| 2090 | |
| 2091 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2092 | } |
| 2093 | |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2094 | return 0; |
| 2095 | } |
| 2096 | |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2097 | static int i9xx_pipe_crc_ctl_reg(struct drm_device *dev, |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2098 | enum pipe pipe, |
| 2099 | enum intel_pipe_crc_source *source, |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2100 | uint32_t *val) |
| 2101 | { |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2102 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2103 | bool need_stable_symbols = false; |
| 2104 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2105 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) { |
| 2106 | int ret = i9xx_pipe_crc_auto_source(dev, pipe, source); |
| 2107 | if (ret) |
| 2108 | return ret; |
| 2109 | } |
| 2110 | |
| 2111 | switch (*source) { |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2112 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2113 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_I9XX; |
| 2114 | break; |
| 2115 | case INTEL_PIPE_CRC_SOURCE_TV: |
| 2116 | if (!SUPPORTS_TV(dev)) |
| 2117 | return -EINVAL; |
| 2118 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_TV_PRE; |
| 2119 | break; |
| 2120 | case INTEL_PIPE_CRC_SOURCE_DP_B: |
| 2121 | if (!IS_G4X(dev)) |
| 2122 | return -EINVAL; |
| 2123 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2124 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2125 | break; |
| 2126 | case INTEL_PIPE_CRC_SOURCE_DP_C: |
| 2127 | if (!IS_G4X(dev)) |
| 2128 | return -EINVAL; |
| 2129 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2130 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2131 | break; |
| 2132 | case INTEL_PIPE_CRC_SOURCE_DP_D: |
| 2133 | if (!IS_G4X(dev)) |
| 2134 | return -EINVAL; |
| 2135 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2136 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2137 | break; |
| 2138 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 2139 | *val = 0; |
| 2140 | break; |
| 2141 | default: |
| 2142 | return -EINVAL; |
| 2143 | } |
| 2144 | |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2145 | /* |
| 2146 | * When the pipe CRC tap point is after the transcoders we need |
| 2147 | * to tweak symbol-level features to produce a deterministic series of |
| 2148 | * symbols for a given frame. We need to reset those features only once |
| 2149 | * a frame (instead of every nth symbol): |
| 2150 | * - DC-balance: used to ensure a better clock recovery from the data |
| 2151 | * link (SDVO) |
| 2152 | * - DisplayPort scrambling: used for EMI reduction |
| 2153 | */ |
| 2154 | if (need_stable_symbols) { |
| 2155 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2156 | |
| 2157 | WARN_ON(!IS_G4X(dev)); |
| 2158 | |
| 2159 | I915_WRITE(PORT_DFT_I9XX, |
| 2160 | I915_READ(PORT_DFT_I9XX) | DC_BALANCE_RESET); |
| 2161 | |
| 2162 | if (pipe == PIPE_A) |
| 2163 | tmp |= PIPE_A_SCRAMBLE_RESET; |
| 2164 | else |
| 2165 | tmp |= PIPE_B_SCRAMBLE_RESET; |
| 2166 | |
| 2167 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2168 | } |
| 2169 | |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2170 | return 0; |
| 2171 | } |
| 2172 | |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2173 | static void vlv_undo_pipe_scramble_reset(struct drm_device *dev, |
| 2174 | enum pipe pipe) |
| 2175 | { |
| 2176 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2177 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2178 | |
| 2179 | if (pipe == PIPE_A) |
| 2180 | tmp &= ~PIPE_A_SCRAMBLE_RESET; |
| 2181 | else |
| 2182 | tmp &= ~PIPE_B_SCRAMBLE_RESET; |
| 2183 | if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) |
| 2184 | tmp &= ~DC_BALANCE_RESET_VLV; |
| 2185 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2186 | |
| 2187 | } |
| 2188 | |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2189 | static void g4x_undo_pipe_scramble_reset(struct drm_device *dev, |
| 2190 | enum pipe pipe) |
| 2191 | { |
| 2192 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2193 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2194 | |
| 2195 | if (pipe == PIPE_A) |
| 2196 | tmp &= ~PIPE_A_SCRAMBLE_RESET; |
| 2197 | else |
| 2198 | tmp &= ~PIPE_B_SCRAMBLE_RESET; |
| 2199 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2200 | |
| 2201 | if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) { |
| 2202 | I915_WRITE(PORT_DFT_I9XX, |
| 2203 | I915_READ(PORT_DFT_I9XX) & ~DC_BALANCE_RESET); |
| 2204 | } |
| 2205 | } |
| 2206 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2207 | 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] | 2208 | uint32_t *val) |
| 2209 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2210 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 2211 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 2212 | |
| 2213 | switch (*source) { |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2214 | case INTEL_PIPE_CRC_SOURCE_PLANE1: |
| 2215 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_ILK; |
| 2216 | break; |
| 2217 | case INTEL_PIPE_CRC_SOURCE_PLANE2: |
| 2218 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK; |
| 2219 | break; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2220 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2221 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK; |
| 2222 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2223 | case INTEL_PIPE_CRC_SOURCE_NONE: |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2224 | *val = 0; |
| 2225 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2226 | default: |
| 2227 | return -EINVAL; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2228 | } |
| 2229 | |
| 2230 | return 0; |
| 2231 | } |
| 2232 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2233 | 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] | 2234 | uint32_t *val) |
| 2235 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2236 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 2237 | *source = INTEL_PIPE_CRC_SOURCE_PF; |
| 2238 | |
| 2239 | switch (*source) { |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2240 | case INTEL_PIPE_CRC_SOURCE_PLANE1: |
| 2241 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_IVB; |
| 2242 | break; |
| 2243 | case INTEL_PIPE_CRC_SOURCE_PLANE2: |
| 2244 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_IVB; |
| 2245 | break; |
| 2246 | case INTEL_PIPE_CRC_SOURCE_PF: |
| 2247 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB; |
| 2248 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2249 | case INTEL_PIPE_CRC_SOURCE_NONE: |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2250 | *val = 0; |
| 2251 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2252 | default: |
| 2253 | return -EINVAL; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2254 | } |
| 2255 | |
| 2256 | return 0; |
| 2257 | } |
| 2258 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2259 | static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe, |
| 2260 | enum intel_pipe_crc_source source) |
| 2261 | { |
| 2262 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 2263 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2264 | u32 val; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2265 | int ret; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2266 | |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 2267 | if (pipe_crc->source == source) |
| 2268 | return 0; |
| 2269 | |
Damien Lespiau | ae676fc | 2013-10-15 18:55:32 +0100 | [diff] [blame] | 2270 | /* forbid changing the source without going back to 'none' */ |
| 2271 | if (pipe_crc->source && source) |
| 2272 | return -EINVAL; |
| 2273 | |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 2274 | if (IS_GEN2(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2275 | ret = i8xx_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 2276 | else if (INTEL_INFO(dev)->gen < 5) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2277 | ret = i9xx_pipe_crc_ctl_reg(dev, pipe, &source, &val); |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2278 | else if (IS_VALLEYVIEW(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2279 | ret = vlv_pipe_crc_ctl_reg(dev,pipe, &source, &val); |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2280 | else if (IS_GEN5(dev) || IS_GEN6(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2281 | ret = ilk_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2282 | else |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2283 | ret = ivb_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2284 | |
| 2285 | if (ret != 0) |
| 2286 | return ret; |
| 2287 | |
Damien Lespiau | 4b58436 | 2013-10-15 18:55:33 +0100 | [diff] [blame] | 2288 | /* none -> real source transition */ |
| 2289 | if (source) { |
Damien Lespiau | 7cd6ccf | 2013-10-15 18:55:38 +0100 | [diff] [blame] | 2290 | DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n", |
| 2291 | pipe_name(pipe), pipe_crc_source_name(source)); |
| 2292 | |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2293 | pipe_crc->entries = kzalloc(sizeof(*pipe_crc->entries) * |
| 2294 | INTEL_PIPE_CRC_ENTRIES_NR, |
| 2295 | GFP_KERNEL); |
| 2296 | if (!pipe_crc->entries) |
| 2297 | return -ENOMEM; |
| 2298 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2299 | spin_lock_irq(&pipe_crc->lock); |
| 2300 | pipe_crc->head = 0; |
| 2301 | pipe_crc->tail = 0; |
| 2302 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | 4b58436 | 2013-10-15 18:55:33 +0100 | [diff] [blame] | 2303 | } |
| 2304 | |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 2305 | pipe_crc->source = source; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2306 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2307 | I915_WRITE(PIPE_CRC_CTL(pipe), val); |
| 2308 | POSTING_READ(PIPE_CRC_CTL(pipe)); |
| 2309 | |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2310 | /* real source -> none transition */ |
| 2311 | if (source == INTEL_PIPE_CRC_SOURCE_NONE) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2312 | struct intel_pipe_crc_entry *entries; |
| 2313 | |
Damien Lespiau | 7cd6ccf | 2013-10-15 18:55:38 +0100 | [diff] [blame] | 2314 | DRM_DEBUG_DRIVER("stopping CRCs for pipe %c\n", |
| 2315 | pipe_name(pipe)); |
| 2316 | |
Daniel Vetter | bcf17ab | 2013-10-16 22:55:50 +0200 | [diff] [blame] | 2317 | intel_wait_for_vblank(dev, pipe); |
| 2318 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2319 | spin_lock_irq(&pipe_crc->lock); |
| 2320 | entries = pipe_crc->entries; |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2321 | pipe_crc->entries = NULL; |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2322 | spin_unlock_irq(&pipe_crc->lock); |
| 2323 | |
| 2324 | kfree(entries); |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2325 | |
| 2326 | if (IS_G4X(dev)) |
| 2327 | g4x_undo_pipe_scramble_reset(dev, pipe); |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2328 | else if (IS_VALLEYVIEW(dev)) |
| 2329 | vlv_undo_pipe_scramble_reset(dev, pipe); |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2330 | } |
| 2331 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2332 | return 0; |
| 2333 | } |
| 2334 | |
| 2335 | /* |
| 2336 | * Parse pipe CRC command strings: |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2337 | * command: wsp* object wsp+ name wsp+ source wsp* |
| 2338 | * object: 'pipe' |
| 2339 | * name: (A | B | C) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2340 | * source: (none | plane1 | plane2 | pf) |
| 2341 | * wsp: (#0x20 | #0x9 | #0xA)+ |
| 2342 | * |
| 2343 | * eg.: |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2344 | * "pipe A plane1" -> Start CRC computations on plane1 of pipe A |
| 2345 | * "pipe A none" -> Stop CRC |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2346 | */ |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2347 | 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] | 2348 | { |
| 2349 | int n_words = 0; |
| 2350 | |
| 2351 | while (*buf) { |
| 2352 | char *end; |
| 2353 | |
| 2354 | /* skip leading white space */ |
| 2355 | buf = skip_spaces(buf); |
| 2356 | if (!*buf) |
| 2357 | break; /* end of buffer */ |
| 2358 | |
| 2359 | /* find end of word */ |
| 2360 | for (end = buf; *end && !isspace(*end); end++) |
| 2361 | ; |
| 2362 | |
| 2363 | if (n_words == max_words) { |
| 2364 | DRM_DEBUG_DRIVER("too many words, allowed <= %d\n", |
| 2365 | max_words); |
| 2366 | return -EINVAL; /* ran out of words[] before bytes */ |
| 2367 | } |
| 2368 | |
| 2369 | if (*end) |
| 2370 | *end++ = '\0'; |
| 2371 | words[n_words++] = buf; |
| 2372 | buf = end; |
| 2373 | } |
| 2374 | |
| 2375 | return n_words; |
| 2376 | } |
| 2377 | |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2378 | enum intel_pipe_crc_object { |
| 2379 | PIPE_CRC_OBJECT_PIPE, |
| 2380 | }; |
| 2381 | |
Daniel Vetter | e8dfcf7 | 2013-10-16 11:51:54 +0200 | [diff] [blame] | 2382 | static const char * const pipe_crc_objects[] = { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2383 | "pipe", |
| 2384 | }; |
| 2385 | |
| 2386 | static int |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2387 | 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] | 2388 | { |
| 2389 | int i; |
| 2390 | |
| 2391 | for (i = 0; i < ARRAY_SIZE(pipe_crc_objects); i++) |
| 2392 | if (!strcmp(buf, pipe_crc_objects[i])) { |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2393 | *o = i; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2394 | return 0; |
| 2395 | } |
| 2396 | |
| 2397 | return -EINVAL; |
| 2398 | } |
| 2399 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2400 | 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] | 2401 | { |
| 2402 | const char name = buf[0]; |
| 2403 | |
| 2404 | if (name < 'A' || name >= pipe_name(I915_MAX_PIPES)) |
| 2405 | return -EINVAL; |
| 2406 | |
| 2407 | *pipe = name - 'A'; |
| 2408 | |
| 2409 | return 0; |
| 2410 | } |
| 2411 | |
| 2412 | static int |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2413 | 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] | 2414 | { |
| 2415 | int i; |
| 2416 | |
| 2417 | for (i = 0; i < ARRAY_SIZE(pipe_crc_sources); i++) |
| 2418 | if (!strcmp(buf, pipe_crc_sources[i])) { |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2419 | *s = i; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2420 | return 0; |
| 2421 | } |
| 2422 | |
| 2423 | return -EINVAL; |
| 2424 | } |
| 2425 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2426 | 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] | 2427 | { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2428 | #define N_WORDS 3 |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2429 | int n_words; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2430 | char *words[N_WORDS]; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2431 | enum pipe pipe; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2432 | enum intel_pipe_crc_object object; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2433 | enum intel_pipe_crc_source source; |
| 2434 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2435 | n_words = display_crc_ctl_tokenize(buf, words, N_WORDS); |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2436 | if (n_words != N_WORDS) { |
| 2437 | DRM_DEBUG_DRIVER("tokenize failed, a command is %d words\n", |
| 2438 | N_WORDS); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2439 | return -EINVAL; |
| 2440 | } |
| 2441 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2442 | if (display_crc_ctl_parse_object(words[0], &object) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2443 | DRM_DEBUG_DRIVER("unknown object %s\n", words[0]); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2444 | return -EINVAL; |
| 2445 | } |
| 2446 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2447 | if (display_crc_ctl_parse_pipe(words[1], &pipe) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2448 | DRM_DEBUG_DRIVER("unknown pipe %s\n", words[1]); |
| 2449 | return -EINVAL; |
| 2450 | } |
| 2451 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2452 | if (display_crc_ctl_parse_source(words[2], &source) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2453 | DRM_DEBUG_DRIVER("unknown source %s\n", words[2]); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2454 | return -EINVAL; |
| 2455 | } |
| 2456 | |
| 2457 | return pipe_crc_set_source(dev, pipe, source); |
| 2458 | } |
| 2459 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2460 | static ssize_t display_crc_ctl_write(struct file *file, const char __user *ubuf, |
| 2461 | size_t len, loff_t *offp) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2462 | { |
| 2463 | struct seq_file *m = file->private_data; |
| 2464 | struct drm_device *dev = m->private; |
| 2465 | char *tmpbuf; |
| 2466 | int ret; |
| 2467 | |
| 2468 | if (len == 0) |
| 2469 | return 0; |
| 2470 | |
| 2471 | if (len > PAGE_SIZE - 1) { |
| 2472 | DRM_DEBUG_DRIVER("expected <%lu bytes into pipe crc control\n", |
| 2473 | PAGE_SIZE); |
| 2474 | return -E2BIG; |
| 2475 | } |
| 2476 | |
| 2477 | tmpbuf = kmalloc(len + 1, GFP_KERNEL); |
| 2478 | if (!tmpbuf) |
| 2479 | return -ENOMEM; |
| 2480 | |
| 2481 | if (copy_from_user(tmpbuf, ubuf, len)) { |
| 2482 | ret = -EFAULT; |
| 2483 | goto out; |
| 2484 | } |
| 2485 | tmpbuf[len] = '\0'; |
| 2486 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2487 | ret = display_crc_ctl_parse(dev, tmpbuf, len); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2488 | |
| 2489 | out: |
| 2490 | kfree(tmpbuf); |
| 2491 | if (ret < 0) |
| 2492 | return ret; |
| 2493 | |
| 2494 | *offp += len; |
| 2495 | return len; |
| 2496 | } |
| 2497 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2498 | static const struct file_operations i915_display_crc_ctl_fops = { |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2499 | .owner = THIS_MODULE, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2500 | .open = display_crc_ctl_open, |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2501 | .read = seq_read, |
| 2502 | .llseek = seq_lseek, |
| 2503 | .release = single_release, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2504 | .write = display_crc_ctl_write |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2505 | }; |
| 2506 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2507 | static int |
| 2508 | i915_wedged_get(void *data, u64 *val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2509 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2510 | struct drm_device *dev = data; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2511 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2512 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2513 | *val = atomic_read(&dev_priv->gpu_error.reset_counter); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2514 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2515 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2516 | } |
| 2517 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2518 | static int |
| 2519 | i915_wedged_set(void *data, u64 val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2520 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2521 | struct drm_device *dev = data; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2522 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2523 | DRM_INFO("Manually setting wedged to %llu\n", val); |
Chris Wilson | 527f9e9 | 2010-11-11 01:16:58 +0000 | [diff] [blame] | 2524 | i915_handle_error(dev, val); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2525 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2526 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2527 | } |
| 2528 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2529 | DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops, |
| 2530 | i915_wedged_get, i915_wedged_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 2531 | "%llu\n"); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2532 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2533 | static int |
| 2534 | i915_ring_stop_get(void *data, u64 *val) |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2535 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2536 | struct drm_device *dev = data; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2537 | drm_i915_private_t *dev_priv = dev->dev_private; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2538 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2539 | *val = dev_priv->gpu_error.stop_rings; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2540 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2541 | return 0; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2542 | } |
| 2543 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2544 | static int |
| 2545 | i915_ring_stop_set(void *data, u64 val) |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2546 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2547 | struct drm_device *dev = data; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2548 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2549 | int ret; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2550 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2551 | DRM_DEBUG_DRIVER("Stopping rings 0x%08llx\n", val); |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2552 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 2553 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2554 | if (ret) |
| 2555 | return ret; |
| 2556 | |
Daniel Vetter | 99584db | 2012-11-14 17:14:04 +0100 | [diff] [blame] | 2557 | dev_priv->gpu_error.stop_rings = val; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2558 | mutex_unlock(&dev->struct_mutex); |
| 2559 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2560 | return 0; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2561 | } |
| 2562 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2563 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_stop_fops, |
| 2564 | i915_ring_stop_get, i915_ring_stop_set, |
| 2565 | "0x%08llx\n"); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 2566 | |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 2567 | static int |
| 2568 | i915_ring_missed_irq_get(void *data, u64 *val) |
| 2569 | { |
| 2570 | struct drm_device *dev = data; |
| 2571 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2572 | |
| 2573 | *val = dev_priv->gpu_error.missed_irq_rings; |
| 2574 | return 0; |
| 2575 | } |
| 2576 | |
| 2577 | static int |
| 2578 | i915_ring_missed_irq_set(void *data, u64 val) |
| 2579 | { |
| 2580 | struct drm_device *dev = data; |
| 2581 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2582 | int ret; |
| 2583 | |
| 2584 | /* Lock against concurrent debugfs callers */ |
| 2585 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2586 | if (ret) |
| 2587 | return ret; |
| 2588 | dev_priv->gpu_error.missed_irq_rings = val; |
| 2589 | mutex_unlock(&dev->struct_mutex); |
| 2590 | |
| 2591 | return 0; |
| 2592 | } |
| 2593 | |
| 2594 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops, |
| 2595 | i915_ring_missed_irq_get, i915_ring_missed_irq_set, |
| 2596 | "0x%08llx\n"); |
| 2597 | |
| 2598 | static int |
| 2599 | i915_ring_test_irq_get(void *data, u64 *val) |
| 2600 | { |
| 2601 | struct drm_device *dev = data; |
| 2602 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2603 | |
| 2604 | *val = dev_priv->gpu_error.test_irq_rings; |
| 2605 | |
| 2606 | return 0; |
| 2607 | } |
| 2608 | |
| 2609 | static int |
| 2610 | i915_ring_test_irq_set(void *data, u64 val) |
| 2611 | { |
| 2612 | struct drm_device *dev = data; |
| 2613 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2614 | int ret; |
| 2615 | |
| 2616 | DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val); |
| 2617 | |
| 2618 | /* Lock against concurrent debugfs callers */ |
| 2619 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2620 | if (ret) |
| 2621 | return ret; |
| 2622 | |
| 2623 | dev_priv->gpu_error.test_irq_rings = val; |
| 2624 | mutex_unlock(&dev->struct_mutex); |
| 2625 | |
| 2626 | return 0; |
| 2627 | } |
| 2628 | |
| 2629 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops, |
| 2630 | i915_ring_test_irq_get, i915_ring_test_irq_set, |
| 2631 | "0x%08llx\n"); |
| 2632 | |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2633 | #define DROP_UNBOUND 0x1 |
| 2634 | #define DROP_BOUND 0x2 |
| 2635 | #define DROP_RETIRE 0x4 |
| 2636 | #define DROP_ACTIVE 0x8 |
| 2637 | #define DROP_ALL (DROP_UNBOUND | \ |
| 2638 | DROP_BOUND | \ |
| 2639 | DROP_RETIRE | \ |
| 2640 | DROP_ACTIVE) |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2641 | static int |
| 2642 | i915_drop_caches_get(void *data, u64 *val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2643 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2644 | *val = DROP_ALL; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2645 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2646 | return 0; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2647 | } |
| 2648 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2649 | static int |
| 2650 | i915_drop_caches_set(void *data, u64 val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2651 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2652 | struct drm_device *dev = data; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2653 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2654 | struct drm_i915_gem_object *obj, *next; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 2655 | struct i915_address_space *vm; |
| 2656 | struct i915_vma *vma, *x; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2657 | int ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2658 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2659 | DRM_DEBUG_DRIVER("Dropping caches: 0x%08llx\n", val); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2660 | |
| 2661 | /* No need to check and wait for gpu resets, only libdrm auto-restarts |
| 2662 | * on ioctls on -EAGAIN. */ |
| 2663 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2664 | if (ret) |
| 2665 | return ret; |
| 2666 | |
| 2667 | if (val & DROP_ACTIVE) { |
| 2668 | ret = i915_gpu_idle(dev); |
| 2669 | if (ret) |
| 2670 | goto unlock; |
| 2671 | } |
| 2672 | |
| 2673 | if (val & (DROP_RETIRE | DROP_ACTIVE)) |
| 2674 | i915_gem_retire_requests(dev); |
| 2675 | |
| 2676 | if (val & DROP_BOUND) { |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 2677 | list_for_each_entry(vm, &dev_priv->vm_list, global_link) { |
| 2678 | list_for_each_entry_safe(vma, x, &vm->inactive_list, |
| 2679 | mm_list) { |
| 2680 | if (vma->obj->pin_count) |
| 2681 | continue; |
Ben Widawsky | 31a46c9 | 2013-07-31 16:59:55 -0700 | [diff] [blame] | 2682 | |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 2683 | ret = i915_vma_unbind(vma); |
| 2684 | if (ret) |
| 2685 | goto unlock; |
| 2686 | } |
Ben Widawsky | 31a46c9 | 2013-07-31 16:59:55 -0700 | [diff] [blame] | 2687 | } |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2688 | } |
| 2689 | |
| 2690 | if (val & DROP_UNBOUND) { |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 2691 | list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list, |
| 2692 | global_list) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2693 | if (obj->pages_pin_count == 0) { |
| 2694 | ret = i915_gem_object_put_pages(obj); |
| 2695 | if (ret) |
| 2696 | goto unlock; |
| 2697 | } |
| 2698 | } |
| 2699 | |
| 2700 | unlock: |
| 2701 | mutex_unlock(&dev->struct_mutex); |
| 2702 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2703 | return ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2704 | } |
| 2705 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2706 | DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops, |
| 2707 | i915_drop_caches_get, i915_drop_caches_set, |
| 2708 | "0x%08llx\n"); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2709 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2710 | static int |
| 2711 | i915_max_freq_get(void *data, u64 *val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2712 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2713 | struct drm_device *dev = data; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2714 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2715 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2716 | |
| 2717 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2718 | return -ENODEV; |
| 2719 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2720 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2721 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2722 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2723 | if (ret) |
| 2724 | return ret; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2725 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2726 | if (IS_VALLEYVIEW(dev)) |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2727 | *val = vlv_gpu_freq(dev_priv, dev_priv->rps.max_delay); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2728 | else |
| 2729 | *val = dev_priv->rps.max_delay * GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2730 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2731 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2732 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2733 | } |
| 2734 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2735 | static int |
| 2736 | i915_max_freq_set(void *data, u64 val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2737 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2738 | struct drm_device *dev = data; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2739 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2740 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2741 | |
| 2742 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2743 | return -ENODEV; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2744 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2745 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2746 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2747 | DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2748 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2749 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2750 | if (ret) |
| 2751 | return ret; |
| 2752 | |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2753 | /* |
| 2754 | * Turbo will still be enabled, but won't go above the set value. |
| 2755 | */ |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2756 | if (IS_VALLEYVIEW(dev)) { |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2757 | val = vlv_freq_opcode(dev_priv, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2758 | dev_priv->rps.max_delay = val; |
| 2759 | gen6_set_rps(dev, val); |
| 2760 | } else { |
| 2761 | do_div(val, GT_FREQUENCY_MULTIPLIER); |
| 2762 | dev_priv->rps.max_delay = val; |
| 2763 | gen6_set_rps(dev, val); |
| 2764 | } |
| 2765 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2766 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2767 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2768 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2769 | } |
| 2770 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2771 | DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops, |
| 2772 | i915_max_freq_get, i915_max_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 2773 | "%llu\n"); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2774 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2775 | static int |
| 2776 | i915_min_freq_get(void *data, u64 *val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2777 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2778 | struct drm_device *dev = data; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2779 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2780 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2781 | |
| 2782 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2783 | return -ENODEV; |
| 2784 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2785 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2786 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2787 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2788 | if (ret) |
| 2789 | return ret; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2790 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2791 | if (IS_VALLEYVIEW(dev)) |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2792 | *val = vlv_gpu_freq(dev_priv, dev_priv->rps.min_delay); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2793 | else |
| 2794 | *val = dev_priv->rps.min_delay * GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2795 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2796 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2797 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2798 | } |
| 2799 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2800 | static int |
| 2801 | i915_min_freq_set(void *data, u64 val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2802 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2803 | struct drm_device *dev = data; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2804 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2805 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2806 | |
| 2807 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2808 | return -ENODEV; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2809 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2810 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2811 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2812 | DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2813 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2814 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2815 | if (ret) |
| 2816 | return ret; |
| 2817 | |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2818 | /* |
| 2819 | * Turbo will still be enabled, but won't go below the set value. |
| 2820 | */ |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2821 | if (IS_VALLEYVIEW(dev)) { |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2822 | val = vlv_freq_opcode(dev_priv, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2823 | dev_priv->rps.min_delay = val; |
| 2824 | valleyview_set_rps(dev, val); |
| 2825 | } else { |
| 2826 | do_div(val, GT_FREQUENCY_MULTIPLIER); |
| 2827 | dev_priv->rps.min_delay = val; |
| 2828 | gen6_set_rps(dev, val); |
| 2829 | } |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2830 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2831 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2832 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2833 | } |
| 2834 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2835 | DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops, |
| 2836 | i915_min_freq_get, i915_min_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 2837 | "%llu\n"); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2838 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2839 | static int |
| 2840 | i915_cache_sharing_get(void *data, u64 *val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2841 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2842 | struct drm_device *dev = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2843 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2844 | u32 snpcr; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2845 | int ret; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2846 | |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2847 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2848 | return -ENODEV; |
| 2849 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 2850 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2851 | if (ret) |
| 2852 | return ret; |
| 2853 | |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2854 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 2855 | mutex_unlock(&dev_priv->dev->struct_mutex); |
| 2856 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2857 | *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2858 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2859 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2860 | } |
| 2861 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2862 | static int |
| 2863 | i915_cache_sharing_set(void *data, u64 val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2864 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2865 | struct drm_device *dev = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2866 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2867 | u32 snpcr; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2868 | |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2869 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2870 | return -ENODEV; |
| 2871 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2872 | if (val > 3) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2873 | return -EINVAL; |
| 2874 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2875 | DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2876 | |
| 2877 | /* Update the cache sharing policy here as well */ |
| 2878 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 2879 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 2880 | snpcr |= (val << GEN6_MBC_SNPCR_SHIFT); |
| 2881 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
| 2882 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2883 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2884 | } |
| 2885 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2886 | DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops, |
| 2887 | i915_cache_sharing_get, i915_cache_sharing_set, |
| 2888 | "%llu\n"); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2889 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2890 | static int i915_forcewake_open(struct inode *inode, struct file *file) |
| 2891 | { |
| 2892 | struct drm_device *dev = inode->i_private; |
| 2893 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2894 | |
Daniel Vetter | 075edca | 2012-01-24 09:44:28 +0100 | [diff] [blame] | 2895 | if (INTEL_INFO(dev)->gen < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2896 | return 0; |
| 2897 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2898 | gen6_gt_force_wake_get(dev_priv); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2899 | |
| 2900 | return 0; |
| 2901 | } |
| 2902 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 2903 | static int i915_forcewake_release(struct inode *inode, struct file *file) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2904 | { |
| 2905 | struct drm_device *dev = inode->i_private; |
| 2906 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2907 | |
Daniel Vetter | 075edca | 2012-01-24 09:44:28 +0100 | [diff] [blame] | 2908 | if (INTEL_INFO(dev)->gen < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2909 | return 0; |
| 2910 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2911 | gen6_gt_force_wake_put(dev_priv); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2912 | |
| 2913 | return 0; |
| 2914 | } |
| 2915 | |
| 2916 | static const struct file_operations i915_forcewake_fops = { |
| 2917 | .owner = THIS_MODULE, |
| 2918 | .open = i915_forcewake_open, |
| 2919 | .release = i915_forcewake_release, |
| 2920 | }; |
| 2921 | |
| 2922 | static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor) |
| 2923 | { |
| 2924 | struct drm_device *dev = minor->dev; |
| 2925 | struct dentry *ent; |
| 2926 | |
| 2927 | ent = debugfs_create_file("i915_forcewake_user", |
Ben Widawsky | 8eb5729 | 2011-05-11 15:10:58 -0700 | [diff] [blame] | 2928 | S_IRUSR, |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2929 | root, dev, |
| 2930 | &i915_forcewake_fops); |
| 2931 | if (IS_ERR(ent)) |
| 2932 | return PTR_ERR(ent); |
| 2933 | |
Ben Widawsky | 8eb5729 | 2011-05-11 15:10:58 -0700 | [diff] [blame] | 2934 | return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2935 | } |
| 2936 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 2937 | static int i915_debugfs_create(struct dentry *root, |
| 2938 | struct drm_minor *minor, |
| 2939 | const char *name, |
| 2940 | const struct file_operations *fops) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2941 | { |
| 2942 | struct drm_device *dev = minor->dev; |
| 2943 | struct dentry *ent; |
| 2944 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 2945 | ent = debugfs_create_file(name, |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2946 | S_IRUGO | S_IWUSR, |
| 2947 | root, dev, |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 2948 | fops); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2949 | if (IS_ERR(ent)) |
| 2950 | return PTR_ERR(ent); |
| 2951 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 2952 | return drm_add_fake_info_node(minor, ent, fops); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2953 | } |
| 2954 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 2955 | static struct drm_info_list i915_debugfs_list[] = { |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 2956 | {"i915_capabilities", i915_capabilities, 0}, |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 2957 | {"i915_gem_objects", i915_gem_object_info, 0}, |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 2958 | {"i915_gem_gtt", i915_gem_gtt_info, 0}, |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 2959 | {"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST}, |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 2960 | {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST}, |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 2961 | {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST}, |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 2962 | {"i915_gem_stolen", i915_gem_stolen_list_info }, |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 2963 | {"i915_gem_pageflip", i915_gem_pageflip_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 2964 | {"i915_gem_request", i915_gem_request_info, 0}, |
| 2965 | {"i915_gem_seqno", i915_gem_seqno_info, 0}, |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 2966 | {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 2967 | {"i915_gem_interrupt", i915_interrupt_info, 0}, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 2968 | {"i915_gem_hws", i915_hws_info, 0, (void *)RCS}, |
| 2969 | {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS}, |
| 2970 | {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS}, |
Xiang, Haihao | 9010ebf | 2013-05-29 09:22:36 -0700 | [diff] [blame] | 2971 | {"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS}, |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 2972 | {"i915_rstdby_delays", i915_rstdby_delays, 0}, |
| 2973 | {"i915_cur_delayinfo", i915_cur_delayinfo, 0}, |
| 2974 | {"i915_delayfreq_table", i915_delayfreq_table, 0}, |
| 2975 | {"i915_inttoext_table", i915_inttoext_table, 0}, |
| 2976 | {"i915_drpc_info", i915_drpc_info, 0}, |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 2977 | {"i915_emon_status", i915_emon_status, 0}, |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 2978 | {"i915_ring_freq_table", i915_ring_freq_table, 0}, |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 2979 | {"i915_gfxec", i915_gfxec, 0}, |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 2980 | {"i915_fbc_status", i915_fbc_status, 0}, |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 2981 | {"i915_ips_status", i915_ips_status, 0}, |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 2982 | {"i915_sr_status", i915_sr_status, 0}, |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 2983 | {"i915_opregion", i915_opregion, 0}, |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 2984 | {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0}, |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 2985 | {"i915_context_status", i915_context_status, 0}, |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 2986 | {"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0}, |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2987 | {"i915_swizzle_info", i915_swizzle_info, 0}, |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2988 | {"i915_ppgtt_info", i915_ppgtt_info, 0}, |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 2989 | {"i915_dpio", i915_dpio_info, 0}, |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2990 | {"i915_llc", i915_llc, 0}, |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2991 | {"i915_edp_psr_status", i915_edp_psr_status, 0}, |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2992 | {"i915_energy_uJ", i915_energy_uJ, 0}, |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2993 | {"i915_pc8_status", i915_pc8_status, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 2994 | }; |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 2995 | #define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 2996 | |
Ville Syrjälä | 2b4bd0e | 2013-08-07 15:11:52 +0300 | [diff] [blame] | 2997 | static struct i915_debugfs_files { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 2998 | const char *name; |
| 2999 | const struct file_operations *fops; |
| 3000 | } i915_debugfs_files[] = { |
| 3001 | {"i915_wedged", &i915_wedged_fops}, |
| 3002 | {"i915_max_freq", &i915_max_freq_fops}, |
| 3003 | {"i915_min_freq", &i915_min_freq_fops}, |
| 3004 | {"i915_cache_sharing", &i915_cache_sharing_fops}, |
| 3005 | {"i915_ring_stop", &i915_ring_stop_fops}, |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 3006 | {"i915_ring_missed_irq", &i915_ring_missed_irq_fops}, |
| 3007 | {"i915_ring_test_irq", &i915_ring_test_irq_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3008 | {"i915_gem_drop_caches", &i915_drop_caches_fops}, |
| 3009 | {"i915_error_state", &i915_error_state_fops}, |
| 3010 | {"i915_next_seqno", &i915_next_seqno_fops}, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3011 | {"i915_display_crc_ctl", &i915_display_crc_ctl_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3012 | }; |
| 3013 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3014 | void intel_display_crc_init(struct drm_device *dev) |
| 3015 | { |
| 3016 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3017 | int i; |
| 3018 | |
| 3019 | for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) { |
| 3020 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[i]; |
| 3021 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 3022 | pipe_crc->opened = false; |
| 3023 | spin_lock_init(&pipe_crc->lock); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3024 | init_waitqueue_head(&pipe_crc->wq); |
| 3025 | } |
| 3026 | } |
| 3027 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3028 | int i915_debugfs_init(struct drm_minor *minor) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3029 | { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3030 | int ret, i; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3031 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3032 | ret = i915_forcewake_create(minor->debugfs_root, minor); |
| 3033 | if (ret) |
| 3034 | return ret; |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 3035 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3036 | for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) { |
| 3037 | ret = i915_pipe_crc_create(minor->debugfs_root, minor, i); |
| 3038 | if (ret) |
| 3039 | return ret; |
| 3040 | } |
| 3041 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3042 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
| 3043 | ret = i915_debugfs_create(minor->debugfs_root, minor, |
| 3044 | i915_debugfs_files[i].name, |
| 3045 | i915_debugfs_files[i].fops); |
| 3046 | if (ret) |
| 3047 | return ret; |
| 3048 | } |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 3049 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3050 | return drm_debugfs_create_files(i915_debugfs_list, |
| 3051 | I915_DEBUGFS_ENTRIES, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3052 | minor->debugfs_root, minor); |
| 3053 | } |
| 3054 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3055 | void i915_debugfs_cleanup(struct drm_minor *minor) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3056 | { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3057 | int i; |
| 3058 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3059 | drm_debugfs_remove_files(i915_debugfs_list, |
| 3060 | I915_DEBUGFS_ENTRIES, minor); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3061 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3062 | drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops, |
| 3063 | 1, minor); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3064 | |
Daniel Vetter | e309a99 | 2013-10-16 22:55:51 +0200 | [diff] [blame] | 3065 | for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) { |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3066 | struct drm_info_list *info_list = |
| 3067 | (struct drm_info_list *)&i915_pipe_crc_data[i]; |
| 3068 | |
| 3069 | drm_debugfs_remove_files(info_list, 1, minor); |
| 3070 | } |
| 3071 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3072 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
| 3073 | struct drm_info_list *info_list = |
| 3074 | (struct drm_info_list *) i915_debugfs_files[i].fops; |
| 3075 | |
| 3076 | drm_debugfs_remove_files(info_list, 1, minor); |
| 3077 | } |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3078 | } |
| 3079 | |
| 3080 | #endif /* CONFIG_DEBUG_FS */ |