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 | |
Chris Wilson | f13d3f7 | 2010-09-20 17:36:15 +0100 | [diff] [blame] | 43 | enum { |
Chris Wilson | 69dc498 | 2010-10-19 10:36:51 +0100 | [diff] [blame] | 44 | ACTIVE_LIST, |
Chris Wilson | f13d3f7 | 2010-09-20 17:36:15 +0100 | [diff] [blame] | 45 | INACTIVE_LIST, |
Chris Wilson | d21d597 | 2010-09-26 11:19:33 +0100 | [diff] [blame] | 46 | PINNED_LIST, |
Chris Wilson | f13d3f7 | 2010-09-20 17:36:15 +0100 | [diff] [blame] | 47 | }; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 48 | |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 49 | static const char *yesno(int v) |
| 50 | { |
| 51 | return v ? "yes" : "no"; |
| 52 | } |
| 53 | |
Damien Lespiau | 497666d | 2013-10-15 18:55:39 +0100 | [diff] [blame] | 54 | /* As the drm_debugfs_init() routines are called before dev->dev_private is |
| 55 | * allocated we need to hook into the minor for release. */ |
| 56 | static int |
| 57 | drm_add_fake_info_node(struct drm_minor *minor, |
| 58 | struct dentry *ent, |
| 59 | const void *key) |
| 60 | { |
| 61 | struct drm_info_node *node; |
| 62 | |
| 63 | node = kmalloc(sizeof(*node), GFP_KERNEL); |
| 64 | if (node == NULL) { |
| 65 | debugfs_remove(ent); |
| 66 | return -ENOMEM; |
| 67 | } |
| 68 | |
| 69 | node->minor = minor; |
| 70 | node->dent = ent; |
| 71 | node->info_ent = (void *) key; |
| 72 | |
| 73 | mutex_lock(&minor->debugfs_lock); |
| 74 | list_add(&node->list, &minor->debugfs_list); |
| 75 | mutex_unlock(&minor->debugfs_lock); |
| 76 | |
| 77 | return 0; |
| 78 | } |
| 79 | |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 80 | static int i915_capabilities(struct seq_file *m, void *data) |
| 81 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 82 | struct drm_info_node *node = m->private; |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 83 | struct drm_device *dev = node->minor->dev; |
| 84 | const struct intel_device_info *info = INTEL_INFO(dev); |
| 85 | |
| 86 | seq_printf(m, "gen: %d\n", info->gen); |
Paulo Zanoni | 03d00ac | 2011-10-14 18:17:41 -0300 | [diff] [blame] | 87 | seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev)); |
Damien Lespiau | 79fc46d | 2013-04-23 16:37:17 +0100 | [diff] [blame] | 88 | #define PRINT_FLAG(x) seq_printf(m, #x ": %s\n", yesno(info->x)) |
| 89 | #define SEP_SEMICOLON ; |
| 90 | DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_SEMICOLON); |
| 91 | #undef PRINT_FLAG |
| 92 | #undef SEP_SEMICOLON |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 93 | |
| 94 | return 0; |
| 95 | } |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 96 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 97 | static const char *get_pin_flag(struct drm_i915_gem_object *obj) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 98 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 99 | if (obj->user_pin_count > 0) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 100 | return "P"; |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 101 | else if (i915_gem_obj_is_pinned(obj)) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 102 | return "p"; |
| 103 | else |
| 104 | return " "; |
| 105 | } |
| 106 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 107 | static const char *get_tiling_flag(struct drm_i915_gem_object *obj) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 108 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 109 | switch (obj->tiling_mode) { |
| 110 | default: |
| 111 | case I915_TILING_NONE: return " "; |
| 112 | case I915_TILING_X: return "X"; |
| 113 | case I915_TILING_Y: return "Y"; |
| 114 | } |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 117 | static inline const char *get_global_flag(struct drm_i915_gem_object *obj) |
| 118 | { |
Tvrtko Ursulin | aff4376 | 2014-10-24 12:42:33 +0100 | [diff] [blame] | 119 | return i915_gem_obj_to_ggtt(obj) ? "g" : " "; |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 122 | static void |
| 123 | describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj) |
| 124 | { |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 125 | struct i915_vma *vma; |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 126 | int pin_count = 0; |
| 127 | |
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, |
Chris Wilson | 0a4cd7c | 2014-08-22 14:41:39 +0100 | [diff] [blame] | 139 | i915_cache_level_str(to_i915(obj->base.dev), 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); |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 144 | list_for_each_entry(vma, &obj->vma_list, vma_link) |
| 145 | if (vma->pin_count > 0) |
| 146 | pin_count++; |
| 147 | seq_printf(m, " (pinned x %d)", pin_count); |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 148 | if (obj->pin_display) |
| 149 | seq_printf(m, " (display)"); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 150 | if (obj->fence_reg != I915_FENCE_REG_NONE) |
| 151 | seq_printf(m, " (fence: %d)", obj->fence_reg); |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 152 | list_for_each_entry(vma, &obj->vma_list, vma_link) { |
| 153 | if (!i915_is_ggtt(vma->vm)) |
| 154 | seq_puts(m, " (pp"); |
| 155 | else |
| 156 | seq_puts(m, " (g"); |
| 157 | seq_printf(m, "gtt offset: %08lx, size: %08lx)", |
| 158 | vma->node.start, vma->node.size); |
| 159 | } |
Chris Wilson | c1ad11f | 2012-11-15 11:32:21 +0000 | [diff] [blame] | 160 | if (obj->stolen) |
| 161 | seq_printf(m, " (stolen: %08lx)", obj->stolen->start); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 162 | if (obj->pin_mappable || obj->fault_mappable) { |
| 163 | char s[3], *t = s; |
| 164 | if (obj->pin_mappable) |
| 165 | *t++ = 'p'; |
| 166 | if (obj->fault_mappable) |
| 167 | *t++ = 'f'; |
| 168 | *t = '\0'; |
| 169 | seq_printf(m, " (%s mappable)", s); |
| 170 | } |
Chris Wilson | 69dc498 | 2010-10-19 10:36:51 +0100 | [diff] [blame] | 171 | if (obj->ring != NULL) |
| 172 | seq_printf(m, " (%s)", obj->ring->name); |
Daniel Vetter | d5a81ef | 2014-06-18 14:46:49 +0200 | [diff] [blame] | 173 | if (obj->frontbuffer_bits) |
| 174 | seq_printf(m, " (frontbuffer: 0x%03x)", obj->frontbuffer_bits); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 175 | } |
| 176 | |
Oscar Mateo | 273497e | 2014-05-22 14:13:37 +0100 | [diff] [blame] | 177 | static void describe_ctx(struct seq_file *m, struct intel_context *ctx) |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 178 | { |
Oscar Mateo | ea0c76f | 2014-07-03 16:27:59 +0100 | [diff] [blame] | 179 | seq_putc(m, ctx->legacy_hw_ctx.initialized ? 'I' : 'i'); |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 180 | seq_putc(m, ctx->remap_slice ? 'R' : 'r'); |
| 181 | seq_putc(m, ' '); |
| 182 | } |
| 183 | |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 184 | 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] | 185 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 186 | struct drm_info_node *node = m->private; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 187 | uintptr_t list = (uintptr_t) node->info_ent->data; |
| 188 | struct list_head *head; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 189 | struct drm_device *dev = node->minor->dev; |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 190 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 191 | struct i915_address_space *vm = &dev_priv->gtt.base; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 192 | struct i915_vma *vma; |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 193 | size_t total_obj_size, total_gtt_size; |
| 194 | int count, ret; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 195 | |
| 196 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 197 | if (ret) |
| 198 | return ret; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 199 | |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 200 | /* FIXME: the user of this interface might want more than just GGTT */ |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 201 | switch (list) { |
| 202 | case ACTIVE_LIST: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 203 | seq_puts(m, "Active:\n"); |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 204 | head = &vm->active_list; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 205 | break; |
| 206 | case INACTIVE_LIST: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 207 | seq_puts(m, "Inactive:\n"); |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 208 | head = &vm->inactive_list; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 209 | break; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 210 | default: |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 211 | mutex_unlock(&dev->struct_mutex); |
| 212 | return -EINVAL; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 213 | } |
| 214 | |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 215 | total_obj_size = total_gtt_size = count = 0; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 216 | list_for_each_entry(vma, head, mm_list) { |
| 217 | seq_printf(m, " "); |
| 218 | describe_obj(m, vma->obj); |
| 219 | seq_printf(m, "\n"); |
| 220 | total_obj_size += vma->obj->base.size; |
| 221 | total_gtt_size += vma->node.size; |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 222 | count++; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 223 | } |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 224 | mutex_unlock(&dev->struct_mutex); |
Carl Worth | 5e118f4 | 2009-03-20 11:54:25 -0700 | [diff] [blame] | 225 | |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 226 | seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n", |
| 227 | count, total_obj_size, total_gtt_size); |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 228 | return 0; |
| 229 | } |
| 230 | |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 231 | static int obj_rank_by_stolen(void *priv, |
| 232 | struct list_head *A, struct list_head *B) |
| 233 | { |
| 234 | struct drm_i915_gem_object *a = |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 235 | container_of(A, struct drm_i915_gem_object, obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 236 | struct drm_i915_gem_object *b = |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 237 | container_of(B, struct drm_i915_gem_object, obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 238 | |
| 239 | return a->stolen->start - b->stolen->start; |
| 240 | } |
| 241 | |
| 242 | static int i915_gem_stolen_list_info(struct seq_file *m, void *data) |
| 243 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 244 | struct drm_info_node *node = m->private; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 245 | struct drm_device *dev = node->minor->dev; |
| 246 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 247 | struct drm_i915_gem_object *obj; |
| 248 | size_t total_obj_size, total_gtt_size; |
| 249 | LIST_HEAD(stolen); |
| 250 | int count, ret; |
| 251 | |
| 252 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 253 | if (ret) |
| 254 | return ret; |
| 255 | |
| 256 | total_obj_size = total_gtt_size = count = 0; |
| 257 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) { |
| 258 | if (obj->stolen == NULL) |
| 259 | continue; |
| 260 | |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 261 | list_add(&obj->obj_exec_link, &stolen); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 262 | |
| 263 | total_obj_size += obj->base.size; |
| 264 | total_gtt_size += i915_gem_obj_ggtt_size(obj); |
| 265 | count++; |
| 266 | } |
| 267 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) { |
| 268 | if (obj->stolen == NULL) |
| 269 | continue; |
| 270 | |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 271 | list_add(&obj->obj_exec_link, &stolen); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 272 | |
| 273 | total_obj_size += obj->base.size; |
| 274 | count++; |
| 275 | } |
| 276 | list_sort(NULL, &stolen, obj_rank_by_stolen); |
| 277 | seq_puts(m, "Stolen:\n"); |
| 278 | while (!list_empty(&stolen)) { |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 279 | obj = list_first_entry(&stolen, typeof(*obj), obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 280 | seq_puts(m, " "); |
| 281 | describe_obj(m, obj); |
| 282 | seq_putc(m, '\n'); |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 283 | list_del_init(&obj->obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 284 | } |
| 285 | mutex_unlock(&dev->struct_mutex); |
| 286 | |
| 287 | seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n", |
| 288 | count, total_obj_size, total_gtt_size); |
| 289 | return 0; |
| 290 | } |
| 291 | |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 292 | #define count_objects(list, member) do { \ |
| 293 | list_for_each_entry(obj, list, member) { \ |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 294 | size += i915_gem_obj_ggtt_size(obj); \ |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 295 | ++count; \ |
| 296 | if (obj->map_and_fenceable) { \ |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 297 | mappable_size += i915_gem_obj_ggtt_size(obj); \ |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 298 | ++mappable_count; \ |
| 299 | } \ |
| 300 | } \ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 301 | } while (0) |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 302 | |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 303 | struct file_stats { |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 304 | struct drm_i915_file_private *file_priv; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 305 | int count; |
Chris Wilson | c67a17e | 2014-03-19 13:45:46 +0000 | [diff] [blame] | 306 | size_t total, unbound; |
| 307 | size_t global, shared; |
| 308 | size_t active, inactive; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 309 | }; |
| 310 | |
| 311 | static int per_file_stats(int id, void *ptr, void *data) |
| 312 | { |
| 313 | struct drm_i915_gem_object *obj = ptr; |
| 314 | struct file_stats *stats = data; |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 315 | struct i915_vma *vma; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 316 | |
| 317 | stats->count++; |
| 318 | stats->total += obj->base.size; |
| 319 | |
Chris Wilson | c67a17e | 2014-03-19 13:45:46 +0000 | [diff] [blame] | 320 | if (obj->base.name || obj->base.dma_buf) |
| 321 | stats->shared += obj->base.size; |
| 322 | |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 323 | if (USES_FULL_PPGTT(obj->base.dev)) { |
| 324 | list_for_each_entry(vma, &obj->vma_list, vma_link) { |
| 325 | struct i915_hw_ppgtt *ppgtt; |
| 326 | |
| 327 | if (!drm_mm_node_allocated(&vma->node)) |
| 328 | continue; |
| 329 | |
| 330 | if (i915_is_ggtt(vma->vm)) { |
| 331 | stats->global += obj->base.size; |
| 332 | continue; |
| 333 | } |
| 334 | |
| 335 | ppgtt = container_of(vma->vm, struct i915_hw_ppgtt, base); |
Daniel Vetter | 4d88470 | 2014-08-06 15:04:47 +0200 | [diff] [blame] | 336 | if (ppgtt->file_priv != stats->file_priv) |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 337 | continue; |
| 338 | |
| 339 | if (obj->ring) /* XXX per-vma statistic */ |
| 340 | stats->active += obj->base.size; |
| 341 | else |
| 342 | stats->inactive += obj->base.size; |
| 343 | |
| 344 | return 0; |
| 345 | } |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 346 | } else { |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 347 | if (i915_gem_obj_ggtt_bound(obj)) { |
| 348 | stats->global += obj->base.size; |
| 349 | if (obj->ring) |
| 350 | stats->active += obj->base.size; |
| 351 | else |
| 352 | stats->inactive += obj->base.size; |
| 353 | return 0; |
| 354 | } |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 355 | } |
| 356 | |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 357 | if (!list_empty(&obj->global_list)) |
| 358 | stats->unbound += obj->base.size; |
| 359 | |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 360 | return 0; |
| 361 | } |
| 362 | |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 363 | #define count_vmas(list, member) do { \ |
| 364 | list_for_each_entry(vma, list, member) { \ |
| 365 | size += i915_gem_obj_ggtt_size(vma->obj); \ |
| 366 | ++count; \ |
| 367 | if (vma->obj->map_and_fenceable) { \ |
| 368 | mappable_size += i915_gem_obj_ggtt_size(vma->obj); \ |
| 369 | ++mappable_count; \ |
| 370 | } \ |
| 371 | } \ |
| 372 | } while (0) |
| 373 | |
| 374 | static int i915_gem_object_info(struct seq_file *m, void* data) |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 375 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 376 | struct drm_info_node *node = m->private; |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 377 | struct drm_device *dev = node->minor->dev; |
| 378 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 379 | u32 count, mappable_count, purgeable_count; |
| 380 | size_t size, mappable_size, purgeable_size; |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 381 | struct drm_i915_gem_object *obj; |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 382 | struct i915_address_space *vm = &dev_priv->gtt.base; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 383 | struct drm_file *file; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 384 | struct i915_vma *vma; |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 385 | int ret; |
| 386 | |
| 387 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 388 | if (ret) |
| 389 | return ret; |
| 390 | |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 391 | seq_printf(m, "%u objects, %zu bytes\n", |
| 392 | dev_priv->mm.object_count, |
| 393 | dev_priv->mm.object_memory); |
| 394 | |
| 395 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 396 | count_objects(&dev_priv->mm.bound_list, global_list); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 397 | seq_printf(m, "%u [%u] objects, %zu [%zu] bytes in gtt\n", |
| 398 | count, mappable_count, size, mappable_size); |
| 399 | |
| 400 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 401 | count_vmas(&vm->active_list, mm_list); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 402 | seq_printf(m, " %u [%u] active objects, %zu [%zu] bytes\n", |
| 403 | count, mappable_count, size, mappable_size); |
| 404 | |
| 405 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 406 | count_vmas(&vm->inactive_list, mm_list); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 407 | seq_printf(m, " %u [%u] inactive objects, %zu [%zu] bytes\n", |
| 408 | count, mappable_count, size, mappable_size); |
| 409 | |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 410 | size = count = purgeable_size = purgeable_count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 411 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) { |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 412 | size += obj->base.size, ++count; |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 413 | if (obj->madv == I915_MADV_DONTNEED) |
| 414 | purgeable_size += obj->base.size, ++purgeable_count; |
| 415 | } |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 416 | seq_printf(m, "%u unbound objects, %zu bytes\n", count, size); |
| 417 | |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 418 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 419 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) { |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 420 | if (obj->fault_mappable) { |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 421 | size += i915_gem_obj_ggtt_size(obj); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 422 | ++count; |
| 423 | } |
| 424 | if (obj->pin_mappable) { |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 425 | mappable_size += i915_gem_obj_ggtt_size(obj); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 426 | ++mappable_count; |
| 427 | } |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 428 | if (obj->madv == I915_MADV_DONTNEED) { |
| 429 | purgeable_size += obj->base.size; |
| 430 | ++purgeable_count; |
| 431 | } |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 432 | } |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 433 | seq_printf(m, "%u purgeable objects, %zu bytes\n", |
| 434 | purgeable_count, purgeable_size); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 435 | seq_printf(m, "%u pinned mappable objects, %zu bytes\n", |
| 436 | mappable_count, mappable_size); |
| 437 | seq_printf(m, "%u fault mappable objects, %zu bytes\n", |
| 438 | count, size); |
| 439 | |
Ben Widawsky | 93d1879 | 2013-01-17 12:45:17 -0800 | [diff] [blame] | 440 | seq_printf(m, "%zu [%lu] gtt total\n", |
Ben Widawsky | 853ba5d | 2013-07-16 16:50:05 -0700 | [diff] [blame] | 441 | dev_priv->gtt.base.total, |
| 442 | dev_priv->gtt.mappable_end - dev_priv->gtt.base.start); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 443 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 444 | seq_putc(m, '\n'); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 445 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 446 | struct file_stats stats; |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 447 | struct task_struct *task; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 448 | |
| 449 | memset(&stats, 0, sizeof(stats)); |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 450 | stats.file_priv = file->driver_priv; |
Chris Wilson | 5b5ffff | 2014-06-17 09:56:24 +0100 | [diff] [blame] | 451 | spin_lock(&file->table_lock); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 452 | idr_for_each(&file->object_idr, per_file_stats, &stats); |
Chris Wilson | 5b5ffff | 2014-06-17 09:56:24 +0100 | [diff] [blame] | 453 | spin_unlock(&file->table_lock); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 454 | /* |
| 455 | * Although we have a valid reference on file->pid, that does |
| 456 | * not guarantee that the task_struct who called get_pid() is |
| 457 | * still alive (e.g. get_pid(current) => fork() => exit()). |
| 458 | * Therefore, we need to protect this ->comm access using RCU. |
| 459 | */ |
| 460 | rcu_read_lock(); |
| 461 | task = pid_task(file->pid, PIDTYPE_PID); |
Chris Wilson | c67a17e | 2014-03-19 13:45:46 +0000 | [diff] [blame] | 462 | seq_printf(m, "%s: %u objects, %zu bytes (%zu active, %zu inactive, %zu global, %zu shared, %zu unbound)\n", |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 463 | task ? task->comm : "<unknown>", |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 464 | stats.count, |
| 465 | stats.total, |
| 466 | stats.active, |
| 467 | stats.inactive, |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 468 | stats.global, |
Chris Wilson | c67a17e | 2014-03-19 13:45:46 +0000 | [diff] [blame] | 469 | stats.shared, |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 470 | stats.unbound); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 471 | rcu_read_unlock(); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 472 | } |
| 473 | |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 474 | mutex_unlock(&dev->struct_mutex); |
| 475 | |
| 476 | return 0; |
| 477 | } |
| 478 | |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 479 | static int i915_gem_gtt_info(struct seq_file *m, void *data) |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 480 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 481 | struct drm_info_node *node = m->private; |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 482 | struct drm_device *dev = node->minor->dev; |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 483 | uintptr_t list = (uintptr_t) node->info_ent->data; |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 484 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 485 | struct drm_i915_gem_object *obj; |
| 486 | size_t total_obj_size, total_gtt_size; |
| 487 | int count, ret; |
| 488 | |
| 489 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 490 | if (ret) |
| 491 | return ret; |
| 492 | |
| 493 | total_obj_size = total_gtt_size = count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 494 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) { |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 495 | if (list == PINNED_LIST && !i915_gem_obj_is_pinned(obj)) |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 496 | continue; |
| 497 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 498 | seq_puts(m, " "); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 499 | describe_obj(m, obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 500 | seq_putc(m, '\n'); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 501 | total_obj_size += obj->base.size; |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 502 | total_gtt_size += i915_gem_obj_ggtt_size(obj); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 503 | count++; |
| 504 | } |
| 505 | |
| 506 | mutex_unlock(&dev->struct_mutex); |
| 507 | |
| 508 | seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n", |
| 509 | count, total_obj_size, total_gtt_size); |
| 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 514 | static int i915_gem_pageflip_info(struct seq_file *m, void *data) |
| 515 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 516 | struct drm_info_node *node = m->private; |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 517 | struct drm_device *dev = node->minor->dev; |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 518 | struct drm_i915_private *dev_priv = dev->dev_private; |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 519 | struct intel_crtc *crtc; |
Daniel Vetter | 8a270eb | 2014-06-17 22:34:37 +0200 | [diff] [blame] | 520 | int ret; |
| 521 | |
| 522 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 523 | if (ret) |
| 524 | return ret; |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 525 | |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 526 | for_each_intel_crtc(dev, crtc) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 527 | const char pipe = pipe_name(crtc->pipe); |
| 528 | const char plane = plane_name(crtc->plane); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 529 | struct intel_unpin_work *work; |
| 530 | |
Daniel Vetter | 5e2d7af | 2014-09-15 14:55:22 +0200 | [diff] [blame] | 531 | spin_lock_irq(&dev->event_lock); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 532 | work = crtc->unpin_work; |
| 533 | if (work == NULL) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 534 | seq_printf(m, "No flip due on pipe %c (plane %c)\n", |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 535 | pipe, plane); |
| 536 | } else { |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 537 | u32 addr; |
| 538 | |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 539 | if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 540 | seq_printf(m, "Flip queued on pipe %c (plane %c)\n", |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 541 | pipe, plane); |
| 542 | } else { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 543 | 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] | 544 | pipe, plane); |
| 545 | } |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 546 | if (work->flip_queued_ring) { |
| 547 | seq_printf(m, "Flip queued on %s at seqno %u, next seqno %u [current breadcrumb %u], completed? %d\n", |
| 548 | work->flip_queued_ring->name, |
| 549 | work->flip_queued_seqno, |
| 550 | dev_priv->next_seqno, |
| 551 | work->flip_queued_ring->get_seqno(work->flip_queued_ring, true), |
| 552 | i915_seqno_passed(work->flip_queued_ring->get_seqno(work->flip_queued_ring, true), |
| 553 | work->flip_queued_seqno)); |
| 554 | } else |
| 555 | seq_printf(m, "Flip not associated with any ring\n"); |
| 556 | seq_printf(m, "Flip queued on frame %d, (was ready on frame %d), now %d\n", |
| 557 | work->flip_queued_vblank, |
| 558 | work->flip_ready_vblank, |
| 559 | drm_vblank_count(dev, crtc->pipe)); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 560 | if (work->enable_stall_check) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 561 | seq_puts(m, "Stall check enabled, "); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 562 | else |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 563 | seq_puts(m, "Stall check waiting for page flip ioctl, "); |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 564 | seq_printf(m, "%d prepares\n", atomic_read(&work->pending)); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 565 | |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 566 | if (INTEL_INFO(dev)->gen >= 4) |
| 567 | addr = I915_HI_DISPBASE(I915_READ(DSPSURF(crtc->plane))); |
| 568 | else |
| 569 | addr = I915_READ(DSPADDR(crtc->plane)); |
| 570 | seq_printf(m, "Current scanout address 0x%08x\n", addr); |
| 571 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 572 | if (work->pending_flip_obj) { |
Chris Wilson | d6bbafa | 2014-09-05 07:13:24 +0100 | [diff] [blame] | 573 | seq_printf(m, "New framebuffer address 0x%08lx\n", (long)work->gtt_offset); |
| 574 | seq_printf(m, "MMIO update completed? %d\n", addr == work->gtt_offset); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 575 | } |
| 576 | } |
Daniel Vetter | 5e2d7af | 2014-09-15 14:55:22 +0200 | [diff] [blame] | 577 | spin_unlock_irq(&dev->event_lock); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 578 | } |
| 579 | |
Daniel Vetter | 8a270eb | 2014-06-17 22:34:37 +0200 | [diff] [blame] | 580 | mutex_unlock(&dev->struct_mutex); |
| 581 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 582 | return 0; |
| 583 | } |
| 584 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 585 | static int i915_gem_request_info(struct seq_file *m, void *data) |
| 586 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 587 | struct drm_info_node *node = m->private; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 588 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 589 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 590 | struct intel_engine_cs *ring; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 591 | struct drm_i915_gem_request *gem_request; |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 592 | int ret, count, i; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 593 | |
| 594 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 595 | if (ret) |
| 596 | return ret; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 597 | |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 598 | count = 0; |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 599 | for_each_ring(ring, dev_priv, i) { |
| 600 | if (list_empty(&ring->request_list)) |
| 601 | continue; |
| 602 | |
| 603 | seq_printf(m, "%s requests:\n", ring->name); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 604 | list_for_each_entry(gem_request, |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 605 | &ring->request_list, |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 606 | list) { |
| 607 | seq_printf(m, " %d @ %d\n", |
| 608 | gem_request->seqno, |
| 609 | (int) (jiffies - gem_request->emitted_jiffies)); |
| 610 | } |
| 611 | count++; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 612 | } |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 613 | mutex_unlock(&dev->struct_mutex); |
| 614 | |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 615 | if (count == 0) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 616 | seq_puts(m, "No requests\n"); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 617 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 618 | return 0; |
| 619 | } |
| 620 | |
Chris Wilson | b222349 | 2010-10-27 15:27:33 +0100 | [diff] [blame] | 621 | static void i915_ring_seqno_info(struct seq_file *m, |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 622 | struct intel_engine_cs *ring) |
Chris Wilson | b222349 | 2010-10-27 15:27:33 +0100 | [diff] [blame] | 623 | { |
| 624 | if (ring->get_seqno) { |
Mika Kuoppala | 43a7b92 | 2012-12-04 15:12:01 +0200 | [diff] [blame] | 625 | seq_printf(m, "Current sequence (%s): %u\n", |
Chris Wilson | b2eadbc | 2012-08-09 10:58:30 +0100 | [diff] [blame] | 626 | ring->name, ring->get_seqno(ring, false)); |
Chris Wilson | b222349 | 2010-10-27 15:27:33 +0100 | [diff] [blame] | 627 | } |
| 628 | } |
| 629 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 630 | static int i915_gem_seqno_info(struct seq_file *m, void *data) |
| 631 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 632 | struct drm_info_node *node = m->private; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 633 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 634 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 635 | struct intel_engine_cs *ring; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 636 | int ret, i; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 637 | |
| 638 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 639 | if (ret) |
| 640 | return ret; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 641 | intel_runtime_pm_get(dev_priv); |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 642 | |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 643 | for_each_ring(ring, dev_priv, i) |
| 644 | i915_ring_seqno_info(m, ring); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 645 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 646 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 647 | mutex_unlock(&dev->struct_mutex); |
| 648 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 649 | return 0; |
| 650 | } |
| 651 | |
| 652 | |
| 653 | static int i915_interrupt_info(struct seq_file *m, void *data) |
| 654 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 655 | struct drm_info_node *node = m->private; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 656 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 657 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 658 | struct intel_engine_cs *ring; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 659 | int ret, i, pipe; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 660 | |
| 661 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 662 | if (ret) |
| 663 | return ret; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 664 | intel_runtime_pm_get(dev_priv); |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 665 | |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 666 | if (IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 667 | seq_printf(m, "Master Interrupt Control:\t%08x\n", |
| 668 | I915_READ(GEN8_MASTER_IRQ)); |
| 669 | |
| 670 | seq_printf(m, "Display IER:\t%08x\n", |
| 671 | I915_READ(VLV_IER)); |
| 672 | seq_printf(m, "Display IIR:\t%08x\n", |
| 673 | I915_READ(VLV_IIR)); |
| 674 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 675 | I915_READ(VLV_IIR_RW)); |
| 676 | seq_printf(m, "Display IMR:\t%08x\n", |
| 677 | I915_READ(VLV_IMR)); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 678 | for_each_pipe(dev_priv, pipe) |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 679 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 680 | pipe_name(pipe), |
| 681 | I915_READ(PIPESTAT(pipe))); |
| 682 | |
| 683 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 684 | I915_READ(PORT_HOTPLUG_EN)); |
| 685 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 686 | I915_READ(VLV_DPFLIPSTAT)); |
| 687 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 688 | I915_READ(DPINVGTT)); |
| 689 | |
| 690 | for (i = 0; i < 4; i++) { |
| 691 | seq_printf(m, "GT Interrupt IMR %d:\t%08x\n", |
| 692 | i, I915_READ(GEN8_GT_IMR(i))); |
| 693 | seq_printf(m, "GT Interrupt IIR %d:\t%08x\n", |
| 694 | i, I915_READ(GEN8_GT_IIR(i))); |
| 695 | seq_printf(m, "GT Interrupt IER %d:\t%08x\n", |
| 696 | i, I915_READ(GEN8_GT_IER(i))); |
| 697 | } |
| 698 | |
| 699 | seq_printf(m, "PCU interrupt mask:\t%08x\n", |
| 700 | I915_READ(GEN8_PCU_IMR)); |
| 701 | seq_printf(m, "PCU interrupt identity:\t%08x\n", |
| 702 | I915_READ(GEN8_PCU_IIR)); |
| 703 | seq_printf(m, "PCU interrupt enable:\t%08x\n", |
| 704 | I915_READ(GEN8_PCU_IER)); |
| 705 | } else if (INTEL_INFO(dev)->gen >= 8) { |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 706 | seq_printf(m, "Master Interrupt Control:\t%08x\n", |
| 707 | I915_READ(GEN8_MASTER_IRQ)); |
| 708 | |
| 709 | for (i = 0; i < 4; i++) { |
| 710 | seq_printf(m, "GT Interrupt IMR %d:\t%08x\n", |
| 711 | i, I915_READ(GEN8_GT_IMR(i))); |
| 712 | seq_printf(m, "GT Interrupt IIR %d:\t%08x\n", |
| 713 | i, I915_READ(GEN8_GT_IIR(i))); |
| 714 | seq_printf(m, "GT Interrupt IER %d:\t%08x\n", |
| 715 | i, I915_READ(GEN8_GT_IER(i))); |
| 716 | } |
| 717 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 718 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | f458ebb | 2014-09-30 10:56:39 +0200 | [diff] [blame] | 719 | if (!intel_display_power_is_enabled(dev_priv, |
Paulo Zanoni | 22c5996 | 2014-08-08 17:45:32 -0300 | [diff] [blame] | 720 | POWER_DOMAIN_PIPE(pipe))) { |
| 721 | seq_printf(m, "Pipe %c power disabled\n", |
| 722 | pipe_name(pipe)); |
| 723 | continue; |
| 724 | } |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 725 | seq_printf(m, "Pipe %c IMR:\t%08x\n", |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 726 | pipe_name(pipe), |
| 727 | I915_READ(GEN8_DE_PIPE_IMR(pipe))); |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 728 | seq_printf(m, "Pipe %c IIR:\t%08x\n", |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 729 | pipe_name(pipe), |
| 730 | I915_READ(GEN8_DE_PIPE_IIR(pipe))); |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 731 | seq_printf(m, "Pipe %c IER:\t%08x\n", |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 732 | pipe_name(pipe), |
| 733 | I915_READ(GEN8_DE_PIPE_IER(pipe))); |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | seq_printf(m, "Display Engine port interrupt mask:\t%08x\n", |
| 737 | I915_READ(GEN8_DE_PORT_IMR)); |
| 738 | seq_printf(m, "Display Engine port interrupt identity:\t%08x\n", |
| 739 | I915_READ(GEN8_DE_PORT_IIR)); |
| 740 | seq_printf(m, "Display Engine port interrupt enable:\t%08x\n", |
| 741 | I915_READ(GEN8_DE_PORT_IER)); |
| 742 | |
| 743 | seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n", |
| 744 | I915_READ(GEN8_DE_MISC_IMR)); |
| 745 | seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n", |
| 746 | I915_READ(GEN8_DE_MISC_IIR)); |
| 747 | seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n", |
| 748 | I915_READ(GEN8_DE_MISC_IER)); |
| 749 | |
| 750 | seq_printf(m, "PCU interrupt mask:\t%08x\n", |
| 751 | I915_READ(GEN8_PCU_IMR)); |
| 752 | seq_printf(m, "PCU interrupt identity:\t%08x\n", |
| 753 | I915_READ(GEN8_PCU_IIR)); |
| 754 | seq_printf(m, "PCU interrupt enable:\t%08x\n", |
| 755 | I915_READ(GEN8_PCU_IER)); |
| 756 | } else if (IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 757 | seq_printf(m, "Display IER:\t%08x\n", |
| 758 | I915_READ(VLV_IER)); |
| 759 | seq_printf(m, "Display IIR:\t%08x\n", |
| 760 | I915_READ(VLV_IIR)); |
| 761 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 762 | I915_READ(VLV_IIR_RW)); |
| 763 | seq_printf(m, "Display IMR:\t%08x\n", |
| 764 | I915_READ(VLV_IMR)); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 765 | for_each_pipe(dev_priv, pipe) |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 766 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 767 | pipe_name(pipe), |
| 768 | I915_READ(PIPESTAT(pipe))); |
| 769 | |
| 770 | seq_printf(m, "Master IER:\t%08x\n", |
| 771 | I915_READ(VLV_MASTER_IER)); |
| 772 | |
| 773 | seq_printf(m, "Render IER:\t%08x\n", |
| 774 | I915_READ(GTIER)); |
| 775 | seq_printf(m, "Render IIR:\t%08x\n", |
| 776 | I915_READ(GTIIR)); |
| 777 | seq_printf(m, "Render IMR:\t%08x\n", |
| 778 | I915_READ(GTIMR)); |
| 779 | |
| 780 | seq_printf(m, "PM IER:\t\t%08x\n", |
| 781 | I915_READ(GEN6_PMIER)); |
| 782 | seq_printf(m, "PM IIR:\t\t%08x\n", |
| 783 | I915_READ(GEN6_PMIIR)); |
| 784 | seq_printf(m, "PM IMR:\t\t%08x\n", |
| 785 | I915_READ(GEN6_PMIMR)); |
| 786 | |
| 787 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 788 | I915_READ(PORT_HOTPLUG_EN)); |
| 789 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 790 | I915_READ(VLV_DPFLIPSTAT)); |
| 791 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 792 | I915_READ(DPINVGTT)); |
| 793 | |
| 794 | } else if (!HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 795 | seq_printf(m, "Interrupt enable: %08x\n", |
| 796 | I915_READ(IER)); |
| 797 | seq_printf(m, "Interrupt identity: %08x\n", |
| 798 | I915_READ(IIR)); |
| 799 | seq_printf(m, "Interrupt mask: %08x\n", |
| 800 | I915_READ(IMR)); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 801 | for_each_pipe(dev_priv, pipe) |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 802 | seq_printf(m, "Pipe %c stat: %08x\n", |
| 803 | pipe_name(pipe), |
| 804 | I915_READ(PIPESTAT(pipe))); |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 805 | } else { |
| 806 | seq_printf(m, "North Display Interrupt enable: %08x\n", |
| 807 | I915_READ(DEIER)); |
| 808 | seq_printf(m, "North Display Interrupt identity: %08x\n", |
| 809 | I915_READ(DEIIR)); |
| 810 | seq_printf(m, "North Display Interrupt mask: %08x\n", |
| 811 | I915_READ(DEIMR)); |
| 812 | seq_printf(m, "South Display Interrupt enable: %08x\n", |
| 813 | I915_READ(SDEIER)); |
| 814 | seq_printf(m, "South Display Interrupt identity: %08x\n", |
| 815 | I915_READ(SDEIIR)); |
| 816 | seq_printf(m, "South Display Interrupt mask: %08x\n", |
| 817 | I915_READ(SDEIMR)); |
| 818 | seq_printf(m, "Graphics Interrupt enable: %08x\n", |
| 819 | I915_READ(GTIER)); |
| 820 | seq_printf(m, "Graphics Interrupt identity: %08x\n", |
| 821 | I915_READ(GTIIR)); |
| 822 | seq_printf(m, "Graphics Interrupt mask: %08x\n", |
| 823 | I915_READ(GTIMR)); |
| 824 | } |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 825 | for_each_ring(ring, dev_priv, i) { |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 826 | if (INTEL_INFO(dev)->gen >= 6) { |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 827 | seq_printf(m, |
| 828 | "Graphics Interrupt mask (%s): %08x\n", |
| 829 | ring->name, I915_READ_IMR(ring)); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 830 | } |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 831 | i915_ring_seqno_info(m, ring); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 832 | } |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 833 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 834 | mutex_unlock(&dev->struct_mutex); |
| 835 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 836 | return 0; |
| 837 | } |
| 838 | |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 839 | static int i915_gem_fence_regs_info(struct seq_file *m, void *data) |
| 840 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 841 | struct drm_info_node *node = m->private; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 842 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 843 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 844 | int i, ret; |
| 845 | |
| 846 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 847 | if (ret) |
| 848 | return ret; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 849 | |
| 850 | seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start); |
| 851 | seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs); |
| 852 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 853 | struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 854 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 855 | seq_printf(m, "Fence %d, pin count = %d, object = ", |
| 856 | i, dev_priv->fence_regs[i].pin_count); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 857 | if (obj == NULL) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 858 | seq_puts(m, "unused"); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 859 | else |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 860 | describe_obj(m, obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 861 | seq_putc(m, '\n'); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 862 | } |
| 863 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 864 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 865 | return 0; |
| 866 | } |
| 867 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 868 | static int i915_hws_info(struct seq_file *m, void *data) |
| 869 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 870 | struct drm_info_node *node = m->private; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 871 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 872 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 873 | struct intel_engine_cs *ring; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 874 | const u32 *hws; |
Chris Wilson | 4066c0a | 2010-10-29 21:00:54 +0100 | [diff] [blame] | 875 | int i; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 876 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 877 | ring = &dev_priv->ring[(uintptr_t)node->info_ent->data]; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 878 | hws = ring->status_page.page_addr; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 879 | if (hws == NULL) |
| 880 | return 0; |
| 881 | |
| 882 | for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) { |
| 883 | seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 884 | i * 4, |
| 885 | hws[i], hws[i + 1], hws[i + 2], hws[i + 3]); |
| 886 | } |
| 887 | return 0; |
| 888 | } |
| 889 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 890 | static ssize_t |
| 891 | i915_error_state_write(struct file *filp, |
| 892 | const char __user *ubuf, |
| 893 | size_t cnt, |
| 894 | loff_t *ppos) |
| 895 | { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 896 | struct i915_error_state_file_priv *error_priv = filp->private_data; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 897 | struct drm_device *dev = error_priv->dev; |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 898 | int ret; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 899 | |
| 900 | DRM_DEBUG_DRIVER("Resetting error state\n"); |
| 901 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 902 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 903 | if (ret) |
| 904 | return ret; |
| 905 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 906 | i915_destroy_error_state(dev); |
| 907 | mutex_unlock(&dev->struct_mutex); |
| 908 | |
| 909 | return cnt; |
| 910 | } |
| 911 | |
| 912 | static int i915_error_state_open(struct inode *inode, struct file *file) |
| 913 | { |
| 914 | struct drm_device *dev = inode->i_private; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 915 | struct i915_error_state_file_priv *error_priv; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 916 | |
| 917 | error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL); |
| 918 | if (!error_priv) |
| 919 | return -ENOMEM; |
| 920 | |
| 921 | error_priv->dev = dev; |
| 922 | |
Mika Kuoppala | 95d5bfb | 2013-06-06 15:18:40 +0300 | [diff] [blame] | 923 | i915_error_state_get(dev, error_priv); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 924 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 925 | file->private_data = error_priv; |
| 926 | |
| 927 | return 0; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | static int i915_error_state_release(struct inode *inode, struct file *file) |
| 931 | { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 932 | struct i915_error_state_file_priv *error_priv = file->private_data; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 933 | |
Mika Kuoppala | 95d5bfb | 2013-06-06 15:18:40 +0300 | [diff] [blame] | 934 | i915_error_state_put(error_priv); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 935 | kfree(error_priv); |
| 936 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 937 | return 0; |
| 938 | } |
| 939 | |
| 940 | static ssize_t i915_error_state_read(struct file *file, char __user *userbuf, |
| 941 | size_t count, loff_t *pos) |
| 942 | { |
| 943 | struct i915_error_state_file_priv *error_priv = file->private_data; |
| 944 | struct drm_i915_error_state_buf error_str; |
| 945 | loff_t tmp_pos = 0; |
| 946 | ssize_t ret_count = 0; |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 947 | int ret; |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 948 | |
Chris Wilson | 0a4cd7c | 2014-08-22 14:41:39 +0100 | [diff] [blame] | 949 | ret = i915_error_state_buf_init(&error_str, to_i915(error_priv->dev), count, *pos); |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 950 | if (ret) |
| 951 | return ret; |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 952 | |
Mika Kuoppala | fc16b48 | 2013-06-06 15:18:39 +0300 | [diff] [blame] | 953 | ret = i915_error_state_to_str(&error_str, error_priv); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 954 | if (ret) |
| 955 | goto out; |
| 956 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 957 | ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos, |
| 958 | error_str.buf, |
| 959 | error_str.bytes); |
| 960 | |
| 961 | if (ret_count < 0) |
| 962 | ret = ret_count; |
| 963 | else |
| 964 | *pos = error_str.start + ret_count; |
| 965 | out: |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 966 | i915_error_state_buf_release(&error_str); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 967 | return ret ?: ret_count; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | static const struct file_operations i915_error_state_fops = { |
| 971 | .owner = THIS_MODULE, |
| 972 | .open = i915_error_state_open, |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 973 | .read = i915_error_state_read, |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 974 | .write = i915_error_state_write, |
| 975 | .llseek = default_llseek, |
| 976 | .release = i915_error_state_release, |
| 977 | }; |
| 978 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 979 | static int |
| 980 | i915_next_seqno_get(void *data, u64 *val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 981 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 982 | struct drm_device *dev = data; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 983 | struct drm_i915_private *dev_priv = dev->dev_private; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 984 | int ret; |
| 985 | |
| 986 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 987 | if (ret) |
| 988 | return ret; |
| 989 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 990 | *val = dev_priv->next_seqno; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 991 | mutex_unlock(&dev->struct_mutex); |
| 992 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 993 | return 0; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 994 | } |
| 995 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 996 | static int |
| 997 | i915_next_seqno_set(void *data, u64 val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 998 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 999 | struct drm_device *dev = data; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1000 | int ret; |
| 1001 | |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1002 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1003 | if (ret) |
| 1004 | return ret; |
| 1005 | |
Mika Kuoppala | e94fbaa | 2012-12-19 11:13:09 +0200 | [diff] [blame] | 1006 | ret = i915_gem_set_seqno(dev, val); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1007 | mutex_unlock(&dev->struct_mutex); |
| 1008 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1009 | return ret; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1010 | } |
| 1011 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1012 | DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops, |
| 1013 | i915_next_seqno_get, i915_next_seqno_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 1014 | "0x%llx\n"); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1015 | |
Deepak S | adb4bd1 | 2014-03-31 11:30:02 +0530 | [diff] [blame] | 1016 | static int i915_frequency_info(struct seq_file *m, void *unused) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1017 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1018 | struct drm_info_node *node = m->private; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1019 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1020 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1021 | int ret = 0; |
| 1022 | |
| 1023 | intel_runtime_pm_get(dev_priv); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1024 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 1025 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 1026 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1027 | if (IS_GEN5(dev)) { |
| 1028 | u16 rgvswctl = I915_READ16(MEMSWCTL); |
| 1029 | u16 rgvstat = I915_READ16(MEMSTAT_ILK); |
| 1030 | |
| 1031 | seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf); |
| 1032 | seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f); |
| 1033 | seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >> |
| 1034 | MEMSTAT_VID_SHIFT); |
| 1035 | seq_printf(m, "Current P-state: %d\n", |
| 1036 | (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT); |
Tom O'Rourke | daa3afb | 2014-05-30 16:22:10 -0700 | [diff] [blame] | 1037 | } else if (IS_GEN6(dev) || (IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) || |
| 1038 | IS_BROADWELL(dev)) { |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1039 | u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS); |
| 1040 | u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS); |
| 1041 | u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1042 | u32 rpmodectl, rpinclimit, rpdeclimit; |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1043 | u32 rpstat, cagf, reqf; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1044 | u32 rpupei, rpcurup, rpprevup; |
| 1045 | u32 rpdownei, rpcurdown, rpprevdown; |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1046 | u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1047 | int max_freq; |
| 1048 | |
| 1049 | /* RPSTAT1 is in the GT power well */ |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 1050 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1051 | if (ret) |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1052 | goto out; |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 1053 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 1054 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1055 | |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1056 | reqf = I915_READ(GEN6_RPNSWREQ); |
| 1057 | reqf &= ~GEN6_TURBO_DISABLE; |
Tom O'Rourke | daa3afb | 2014-05-30 16:22:10 -0700 | [diff] [blame] | 1058 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1059 | reqf >>= 24; |
| 1060 | else |
| 1061 | reqf >>= 25; |
| 1062 | reqf *= GT_FREQUENCY_MULTIPLIER; |
| 1063 | |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1064 | rpmodectl = I915_READ(GEN6_RP_CONTROL); |
| 1065 | rpinclimit = I915_READ(GEN6_RP_UP_THRESHOLD); |
| 1066 | rpdeclimit = I915_READ(GEN6_RP_DOWN_THRESHOLD); |
| 1067 | |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1068 | rpstat = I915_READ(GEN6_RPSTAT1); |
| 1069 | rpupei = I915_READ(GEN6_RP_CUR_UP_EI); |
| 1070 | rpcurup = I915_READ(GEN6_RP_CUR_UP); |
| 1071 | rpprevup = I915_READ(GEN6_RP_PREV_UP); |
| 1072 | rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI); |
| 1073 | rpcurdown = I915_READ(GEN6_RP_CUR_DOWN); |
| 1074 | rpprevdown = I915_READ(GEN6_RP_PREV_DOWN); |
Tom O'Rourke | daa3afb | 2014-05-30 16:22:10 -0700 | [diff] [blame] | 1075 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 1076 | cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT; |
| 1077 | else |
| 1078 | cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT; |
| 1079 | cagf *= GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1080 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 1081 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 1082 | mutex_unlock(&dev->struct_mutex); |
| 1083 | |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1084 | if (IS_GEN6(dev) || IS_GEN7(dev)) { |
| 1085 | pm_ier = I915_READ(GEN6_PMIER); |
| 1086 | pm_imr = I915_READ(GEN6_PMIMR); |
| 1087 | pm_isr = I915_READ(GEN6_PMISR); |
| 1088 | pm_iir = I915_READ(GEN6_PMIIR); |
| 1089 | pm_mask = I915_READ(GEN6_PMINTRMSK); |
| 1090 | } else { |
| 1091 | pm_ier = I915_READ(GEN8_GT_IER(2)); |
| 1092 | pm_imr = I915_READ(GEN8_GT_IMR(2)); |
| 1093 | pm_isr = I915_READ(GEN8_GT_ISR(2)); |
| 1094 | pm_iir = I915_READ(GEN8_GT_IIR(2)); |
| 1095 | pm_mask = I915_READ(GEN6_PMINTRMSK); |
| 1096 | } |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1097 | seq_printf(m, "PM IER=0x%08x IMR=0x%08x ISR=0x%08x IIR=0x%08x, MASK=0x%08x\n", |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1098 | pm_ier, pm_imr, pm_isr, pm_iir, pm_mask); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1099 | seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1100 | seq_printf(m, "Render p-state ratio: %d\n", |
| 1101 | (gt_perf_status & 0xff00) >> 8); |
| 1102 | seq_printf(m, "Render p-state VID: %d\n", |
| 1103 | gt_perf_status & 0xff); |
| 1104 | seq_printf(m, "Render p-state limit: %d\n", |
| 1105 | rp_state_limits & 0xff); |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1106 | seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat); |
| 1107 | seq_printf(m, "RPMODECTL: 0x%08x\n", rpmodectl); |
| 1108 | seq_printf(m, "RPINCLIMIT: 0x%08x\n", rpinclimit); |
| 1109 | seq_printf(m, "RPDECLIMIT: 0x%08x\n", rpdeclimit); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1110 | seq_printf(m, "RPNSWREQ: %dMHz\n", reqf); |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 1111 | seq_printf(m, "CAGF: %dMHz\n", cagf); |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1112 | seq_printf(m, "RP CUR UP EI: %dus\n", rpupei & |
| 1113 | GEN6_CURICONT_MASK); |
| 1114 | seq_printf(m, "RP CUR UP: %dus\n", rpcurup & |
| 1115 | GEN6_CURBSYTAVG_MASK); |
| 1116 | seq_printf(m, "RP PREV UP: %dus\n", rpprevup & |
| 1117 | GEN6_CURBSYTAVG_MASK); |
| 1118 | seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei & |
| 1119 | GEN6_CURIAVG_MASK); |
| 1120 | seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown & |
| 1121 | GEN6_CURBSYTAVG_MASK); |
| 1122 | seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown & |
| 1123 | GEN6_CURBSYTAVG_MASK); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1124 | |
| 1125 | max_freq = (rp_state_cap & 0xff0000) >> 16; |
| 1126 | seq_printf(m, "Lowest (RPN) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 1127 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1128 | |
| 1129 | max_freq = (rp_state_cap & 0xff00) >> 8; |
| 1130 | seq_printf(m, "Nominal (RP1) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 1131 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1132 | |
| 1133 | max_freq = rp_state_cap & 0xff; |
| 1134 | seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 1135 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Ben Widawsky | 31c7738 | 2013-04-05 14:29:22 -0700 | [diff] [blame] | 1136 | |
| 1137 | seq_printf(m, "Max overclocked frequency: %dMHz\n", |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 1138 | dev_priv->rps.max_freq * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1139 | } else if (IS_VALLEYVIEW(dev)) { |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 1140 | u32 freq_sts; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1141 | |
Jesse Barnes | 259bd5d | 2013-04-22 15:59:30 -0700 | [diff] [blame] | 1142 | mutex_lock(&dev_priv->rps.hw_lock); |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 1143 | freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1144 | seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts); |
| 1145 | seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq); |
| 1146 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1147 | seq_printf(m, "max GPU freq: %d MHz\n", |
Deepak S | b2435c9 | 2014-07-17 14:21:14 +0530 | [diff] [blame] | 1148 | vlv_gpu_freq(dev_priv, dev_priv->rps.max_freq)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1149 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1150 | seq_printf(m, "min GPU freq: %d MHz\n", |
Deepak S | b2435c9 | 2014-07-17 14:21:14 +0530 | [diff] [blame] | 1151 | vlv_gpu_freq(dev_priv, dev_priv->rps.min_freq)); |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 1152 | |
| 1153 | seq_printf(m, "efficient (RPe) frequency: %d MHz\n", |
Deepak S | b2435c9 | 2014-07-17 14:21:14 +0530 | [diff] [blame] | 1154 | vlv_gpu_freq(dev_priv, dev_priv->rps.efficient_freq)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1155 | |
| 1156 | seq_printf(m, "current GPU freq: %d MHz\n", |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 1157 | vlv_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff)); |
Jesse Barnes | 259bd5d | 2013-04-22 15:59:30 -0700 | [diff] [blame] | 1158 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1159 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1160 | seq_puts(m, "no P-state info available\n"); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1161 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1162 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1163 | out: |
| 1164 | intel_runtime_pm_put(dev_priv); |
| 1165 | return ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1166 | } |
| 1167 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1168 | static int ironlake_drpc_info(struct seq_file *m) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1169 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1170 | struct drm_info_node *node = m->private; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1171 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1172 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1173 | u32 rgvmodectl, rstdbyctl; |
| 1174 | u16 crstandvid; |
| 1175 | int ret; |
| 1176 | |
| 1177 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1178 | if (ret) |
| 1179 | return ret; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1180 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1181 | |
| 1182 | rgvmodectl = I915_READ(MEMMODECTL); |
| 1183 | rstdbyctl = I915_READ(RSTDBYCTL); |
| 1184 | crstandvid = I915_READ16(CRSTANDVID); |
| 1185 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1186 | intel_runtime_pm_put(dev_priv); |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1187 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1188 | |
| 1189 | seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ? |
| 1190 | "yes" : "no"); |
| 1191 | seq_printf(m, "Boost freq: %d\n", |
| 1192 | (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >> |
| 1193 | MEMMODE_BOOST_FREQ_SHIFT); |
| 1194 | seq_printf(m, "HW control enabled: %s\n", |
| 1195 | rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no"); |
| 1196 | seq_printf(m, "SW control enabled: %s\n", |
| 1197 | rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no"); |
| 1198 | seq_printf(m, "Gated voltage change: %s\n", |
| 1199 | rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no"); |
| 1200 | seq_printf(m, "Starting frequency: P%d\n", |
| 1201 | (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1202 | seq_printf(m, "Max P-state: P%d\n", |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1203 | (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1204 | seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK)); |
| 1205 | seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f)); |
| 1206 | seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f)); |
| 1207 | seq_printf(m, "Render standby enabled: %s\n", |
| 1208 | (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes"); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1209 | seq_puts(m, "Current RS state: "); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1210 | switch (rstdbyctl & RSX_STATUS_MASK) { |
| 1211 | case RSX_STATUS_ON: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1212 | seq_puts(m, "on\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1213 | break; |
| 1214 | case RSX_STATUS_RC1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1215 | seq_puts(m, "RC1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1216 | break; |
| 1217 | case RSX_STATUS_RC1E: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1218 | seq_puts(m, "RC1E\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1219 | break; |
| 1220 | case RSX_STATUS_RS1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1221 | seq_puts(m, "RS1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1222 | break; |
| 1223 | case RSX_STATUS_RS2: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1224 | seq_puts(m, "RS2 (RC6)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1225 | break; |
| 1226 | case RSX_STATUS_RS3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1227 | seq_puts(m, "RC3 (RC6+)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1228 | break; |
| 1229 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1230 | seq_puts(m, "unknown\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1231 | break; |
| 1232 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1233 | |
| 1234 | return 0; |
| 1235 | } |
| 1236 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1237 | static int vlv_drpc_info(struct seq_file *m) |
| 1238 | { |
| 1239 | |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1240 | struct drm_info_node *node = m->private; |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1241 | struct drm_device *dev = node->minor->dev; |
| 1242 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1243 | u32 rpmodectl1, rcctl1; |
| 1244 | unsigned fw_rendercount = 0, fw_mediacount = 0; |
| 1245 | |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 1246 | intel_runtime_pm_get(dev_priv); |
| 1247 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1248 | rpmodectl1 = I915_READ(GEN6_RP_CONTROL); |
| 1249 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
| 1250 | |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 1251 | intel_runtime_pm_put(dev_priv); |
| 1252 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1253 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1254 | yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO)); |
| 1255 | seq_printf(m, "Turbo enabled: %s\n", |
| 1256 | yesno(rpmodectl1 & GEN6_RP_ENABLE)); |
| 1257 | seq_printf(m, "HW control enabled: %s\n", |
| 1258 | yesno(rpmodectl1 & GEN6_RP_ENABLE)); |
| 1259 | seq_printf(m, "SW control enabled: %s\n", |
| 1260 | yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) == |
| 1261 | GEN6_RP_MEDIA_SW_MODE)); |
| 1262 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1263 | yesno(rcctl1 & (GEN7_RC_CTL_TO_MODE | |
| 1264 | GEN6_RC_CTL_EI_MODE(1)))); |
| 1265 | seq_printf(m, "Render Power Well: %s\n", |
| 1266 | (I915_READ(VLV_GTLC_PW_STATUS) & |
| 1267 | VLV_GTLC_PW_RENDER_STATUS_MASK) ? "Up" : "Down"); |
| 1268 | seq_printf(m, "Media Power Well: %s\n", |
| 1269 | (I915_READ(VLV_GTLC_PW_STATUS) & |
| 1270 | VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down"); |
| 1271 | |
Imre Deak | 9cc19be | 2014-04-14 20:24:24 +0300 | [diff] [blame] | 1272 | seq_printf(m, "Render RC6 residency since boot: %u\n", |
| 1273 | I915_READ(VLV_GT_RENDER_RC6)); |
| 1274 | seq_printf(m, "Media RC6 residency since boot: %u\n", |
| 1275 | I915_READ(VLV_GT_MEDIA_RC6)); |
| 1276 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1277 | spin_lock_irq(&dev_priv->uncore.lock); |
| 1278 | fw_rendercount = dev_priv->uncore.fw_rendercount; |
| 1279 | fw_mediacount = dev_priv->uncore.fw_mediacount; |
| 1280 | spin_unlock_irq(&dev_priv->uncore.lock); |
| 1281 | |
| 1282 | seq_printf(m, "Forcewake Render Count = %u\n", fw_rendercount); |
| 1283 | seq_printf(m, "Forcewake Media Count = %u\n", fw_mediacount); |
| 1284 | |
| 1285 | |
| 1286 | return 0; |
| 1287 | } |
| 1288 | |
| 1289 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1290 | static int gen6_drpc_info(struct seq_file *m) |
| 1291 | { |
| 1292 | |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1293 | struct drm_info_node *node = m->private; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1294 | struct drm_device *dev = node->minor->dev; |
| 1295 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | ecd8fae | 2012-09-26 10:34:02 -0700 | [diff] [blame] | 1296 | u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0; |
Daniel Vetter | 93b525d | 2012-01-25 13:52:43 +0100 | [diff] [blame] | 1297 | unsigned forcewake_count; |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1298 | int count = 0, ret; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1299 | |
| 1300 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1301 | if (ret) |
| 1302 | return ret; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1303 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1304 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1305 | spin_lock_irq(&dev_priv->uncore.lock); |
| 1306 | forcewake_count = dev_priv->uncore.forcewake_count; |
| 1307 | spin_unlock_irq(&dev_priv->uncore.lock); |
Daniel Vetter | 93b525d | 2012-01-25 13:52:43 +0100 | [diff] [blame] | 1308 | |
| 1309 | if (forcewake_count) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1310 | seq_puts(m, "RC information inaccurate because somebody " |
| 1311 | "holds a forcewake reference \n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1312 | } else { |
| 1313 | /* NB: we cannot use forcewake, else we read the wrong values */ |
| 1314 | while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1)) |
| 1315 | udelay(10); |
| 1316 | seq_printf(m, "RC information accurate: %s\n", yesno(count < 51)); |
| 1317 | } |
| 1318 | |
| 1319 | gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS); |
Chris Wilson | ed71f1b | 2013-07-19 20:36:56 +0100 | [diff] [blame] | 1320 | 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] | 1321 | |
| 1322 | rpmodectl1 = I915_READ(GEN6_RP_CONTROL); |
| 1323 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
| 1324 | mutex_unlock(&dev->struct_mutex); |
Ben Widawsky | 44cbd33 | 2012-11-06 14:36:36 +0000 | [diff] [blame] | 1325 | mutex_lock(&dev_priv->rps.hw_lock); |
| 1326 | sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids); |
| 1327 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1328 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1329 | intel_runtime_pm_put(dev_priv); |
| 1330 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1331 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1332 | yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO)); |
| 1333 | seq_printf(m, "HW control enabled: %s\n", |
| 1334 | yesno(rpmodectl1 & GEN6_RP_ENABLE)); |
| 1335 | seq_printf(m, "SW control enabled: %s\n", |
| 1336 | yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) == |
| 1337 | GEN6_RP_MEDIA_SW_MODE)); |
Eric Anholt | fff24e2 | 2012-01-23 16:14:05 -0800 | [diff] [blame] | 1338 | seq_printf(m, "RC1e Enabled: %s\n", |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1339 | yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE)); |
| 1340 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1341 | yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE)); |
| 1342 | seq_printf(m, "Deep RC6 Enabled: %s\n", |
| 1343 | yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE)); |
| 1344 | seq_printf(m, "Deepest RC6 Enabled: %s\n", |
| 1345 | yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE)); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1346 | seq_puts(m, "Current RC state: "); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1347 | switch (gt_core_status & GEN6_RCn_MASK) { |
| 1348 | case GEN6_RC0: |
| 1349 | if (gt_core_status & GEN6_CORE_CPD_STATE_MASK) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1350 | seq_puts(m, "Core Power Down\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1351 | else |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1352 | seq_puts(m, "on\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1353 | break; |
| 1354 | case GEN6_RC3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1355 | seq_puts(m, "RC3\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1356 | break; |
| 1357 | case GEN6_RC6: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1358 | seq_puts(m, "RC6\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1359 | break; |
| 1360 | case GEN6_RC7: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1361 | seq_puts(m, "RC7\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1362 | break; |
| 1363 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1364 | seq_puts(m, "Unknown\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1365 | break; |
| 1366 | } |
| 1367 | |
| 1368 | seq_printf(m, "Core Power Down: %s\n", |
| 1369 | yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK)); |
Ben Widawsky | cce66a2 | 2012-03-27 18:59:38 -0700 | [diff] [blame] | 1370 | |
| 1371 | /* Not exactly sure what this is */ |
| 1372 | seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n", |
| 1373 | I915_READ(GEN6_GT_GFX_RC6_LOCKED)); |
| 1374 | seq_printf(m, "RC6 residency since boot: %u\n", |
| 1375 | I915_READ(GEN6_GT_GFX_RC6)); |
| 1376 | seq_printf(m, "RC6+ residency since boot: %u\n", |
| 1377 | I915_READ(GEN6_GT_GFX_RC6p)); |
| 1378 | seq_printf(m, "RC6++ residency since boot: %u\n", |
| 1379 | I915_READ(GEN6_GT_GFX_RC6pp)); |
| 1380 | |
Ben Widawsky | ecd8fae | 2012-09-26 10:34:02 -0700 | [diff] [blame] | 1381 | seq_printf(m, "RC6 voltage: %dmV\n", |
| 1382 | GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff))); |
| 1383 | seq_printf(m, "RC6+ voltage: %dmV\n", |
| 1384 | GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff))); |
| 1385 | seq_printf(m, "RC6++ voltage: %dmV\n", |
| 1386 | GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff))); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1387 | return 0; |
| 1388 | } |
| 1389 | |
| 1390 | static int i915_drpc_info(struct seq_file *m, void *unused) |
| 1391 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1392 | struct drm_info_node *node = m->private; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1393 | struct drm_device *dev = node->minor->dev; |
| 1394 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1395 | if (IS_VALLEYVIEW(dev)) |
| 1396 | return vlv_drpc_info(m); |
Vedang Patel | ac66cf4 | 2014-08-26 10:42:51 -0700 | [diff] [blame] | 1397 | else if (INTEL_INFO(dev)->gen >= 6) |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1398 | return gen6_drpc_info(m); |
| 1399 | else |
| 1400 | return ironlake_drpc_info(m); |
| 1401 | } |
| 1402 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1403 | static int i915_fbc_status(struct seq_file *m, void *unused) |
| 1404 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1405 | struct drm_info_node *node = m->private; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1406 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1407 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1408 | |
Daniel Vetter | 3a77c4c | 2014-01-10 08:50:12 +0100 | [diff] [blame] | 1409 | if (!HAS_FBC(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1410 | seq_puts(m, "FBC unsupported on this chipset\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1411 | return 0; |
| 1412 | } |
| 1413 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1414 | intel_runtime_pm_get(dev_priv); |
| 1415 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1416 | if (intel_fbc_enabled(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1417 | seq_puts(m, "FBC enabled\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1418 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1419 | seq_puts(m, "FBC disabled: "); |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 1420 | switch (dev_priv->fbc.no_fbc_reason) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 1421 | case FBC_OK: |
| 1422 | seq_puts(m, "FBC actived, but currently disabled in hardware"); |
| 1423 | break; |
| 1424 | case FBC_UNSUPPORTED: |
| 1425 | seq_puts(m, "unsupported by this chipset"); |
| 1426 | break; |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 1427 | case FBC_NO_OUTPUT: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1428 | seq_puts(m, "no outputs"); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 1429 | break; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1430 | case FBC_STOLEN_TOO_SMALL: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1431 | seq_puts(m, "not enough stolen memory"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1432 | break; |
| 1433 | case FBC_UNSUPPORTED_MODE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1434 | seq_puts(m, "mode not supported"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1435 | break; |
| 1436 | case FBC_MODE_TOO_LARGE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1437 | seq_puts(m, "mode too large"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1438 | break; |
| 1439 | case FBC_BAD_PLANE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1440 | seq_puts(m, "FBC unsupported on plane"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1441 | break; |
| 1442 | case FBC_NOT_TILED: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1443 | seq_puts(m, "scanout buffer not tiled"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1444 | break; |
Jesse Barnes | 9c928d1 | 2010-07-23 15:20:00 -0700 | [diff] [blame] | 1445 | case FBC_MULTIPLE_PIPES: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1446 | seq_puts(m, "multiple pipes are enabled"); |
Jesse Barnes | 9c928d1 | 2010-07-23 15:20:00 -0700 | [diff] [blame] | 1447 | break; |
Jesse Barnes | c1a9f04 | 2011-05-05 15:24:21 -0700 | [diff] [blame] | 1448 | case FBC_MODULE_PARAM: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1449 | seq_puts(m, "disabled per module param (default off)"); |
Jesse Barnes | c1a9f04 | 2011-05-05 15:24:21 -0700 | [diff] [blame] | 1450 | break; |
Damien Lespiau | 8a5729a | 2013-06-24 16:22:02 +0100 | [diff] [blame] | 1451 | case FBC_CHIP_DEFAULT: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1452 | seq_puts(m, "disabled per chip default"); |
Damien Lespiau | 8a5729a | 2013-06-24 16:22:02 +0100 | [diff] [blame] | 1453 | break; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1454 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1455 | seq_puts(m, "unknown reason"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1456 | } |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1457 | seq_putc(m, '\n'); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1458 | } |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1459 | |
| 1460 | intel_runtime_pm_put(dev_priv); |
| 1461 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1462 | return 0; |
| 1463 | } |
| 1464 | |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1465 | static int i915_fbc_fc_get(void *data, u64 *val) |
| 1466 | { |
| 1467 | struct drm_device *dev = data; |
| 1468 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1469 | |
| 1470 | if (INTEL_INFO(dev)->gen < 7 || !HAS_FBC(dev)) |
| 1471 | return -ENODEV; |
| 1472 | |
| 1473 | drm_modeset_lock_all(dev); |
| 1474 | *val = dev_priv->fbc.false_color; |
| 1475 | drm_modeset_unlock_all(dev); |
| 1476 | |
| 1477 | return 0; |
| 1478 | } |
| 1479 | |
| 1480 | static int i915_fbc_fc_set(void *data, u64 val) |
| 1481 | { |
| 1482 | struct drm_device *dev = data; |
| 1483 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1484 | u32 reg; |
| 1485 | |
| 1486 | if (INTEL_INFO(dev)->gen < 7 || !HAS_FBC(dev)) |
| 1487 | return -ENODEV; |
| 1488 | |
| 1489 | drm_modeset_lock_all(dev); |
| 1490 | |
| 1491 | reg = I915_READ(ILK_DPFC_CONTROL); |
| 1492 | dev_priv->fbc.false_color = val; |
| 1493 | |
| 1494 | I915_WRITE(ILK_DPFC_CONTROL, val ? |
| 1495 | (reg | FBC_CTL_FALSE_COLOR) : |
| 1496 | (reg & ~FBC_CTL_FALSE_COLOR)); |
| 1497 | |
| 1498 | drm_modeset_unlock_all(dev); |
| 1499 | return 0; |
| 1500 | } |
| 1501 | |
| 1502 | DEFINE_SIMPLE_ATTRIBUTE(i915_fbc_fc_fops, |
| 1503 | i915_fbc_fc_get, i915_fbc_fc_set, |
| 1504 | "%llu\n"); |
| 1505 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1506 | static int i915_ips_status(struct seq_file *m, void *unused) |
| 1507 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1508 | struct drm_info_node *node = m->private; |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1509 | struct drm_device *dev = node->minor->dev; |
| 1510 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1511 | |
Damien Lespiau | f5adf94 | 2013-06-24 18:29:34 +0100 | [diff] [blame] | 1512 | if (!HAS_IPS(dev)) { |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1513 | seq_puts(m, "not supported\n"); |
| 1514 | return 0; |
| 1515 | } |
| 1516 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1517 | intel_runtime_pm_get(dev_priv); |
| 1518 | |
Rodrigo Vivi | 0eaa53f | 2014-06-30 04:45:01 -0700 | [diff] [blame] | 1519 | seq_printf(m, "Enabled by kernel parameter: %s\n", |
| 1520 | yesno(i915.enable_ips)); |
| 1521 | |
| 1522 | if (INTEL_INFO(dev)->gen >= 8) { |
| 1523 | seq_puts(m, "Currently: unknown\n"); |
| 1524 | } else { |
| 1525 | if (I915_READ(IPS_CTL) & IPS_ENABLE) |
| 1526 | seq_puts(m, "Currently: enabled\n"); |
| 1527 | else |
| 1528 | seq_puts(m, "Currently: disabled\n"); |
| 1529 | } |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1530 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1531 | intel_runtime_pm_put(dev_priv); |
| 1532 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1533 | return 0; |
| 1534 | } |
| 1535 | |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1536 | static int i915_sr_status(struct seq_file *m, void *unused) |
| 1537 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1538 | struct drm_info_node *node = m->private; |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1539 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1540 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1541 | bool sr_enabled = false; |
| 1542 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1543 | intel_runtime_pm_get(dev_priv); |
| 1544 | |
Yuanhan Liu | 1398261 | 2010-12-15 15:42:31 +0800 | [diff] [blame] | 1545 | if (HAS_PCH_SPLIT(dev)) |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1546 | sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1547 | else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1548 | sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
| 1549 | else if (IS_I915GM(dev)) |
| 1550 | sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN; |
| 1551 | else if (IS_PINEVIEW(dev)) |
| 1552 | sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN; |
| 1553 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1554 | intel_runtime_pm_put(dev_priv); |
| 1555 | |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1556 | seq_printf(m, "self-refresh: %s\n", |
| 1557 | sr_enabled ? "enabled" : "disabled"); |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1558 | |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1562 | static int i915_emon_status(struct seq_file *m, void *unused) |
| 1563 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1564 | struct drm_info_node *node = m->private; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1565 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1566 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1567 | unsigned long temp, chipset, gfx; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1568 | int ret; |
| 1569 | |
Chris Wilson | 582be6b | 2012-04-30 19:35:02 +0100 | [diff] [blame] | 1570 | if (!IS_GEN5(dev)) |
| 1571 | return -ENODEV; |
| 1572 | |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1573 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1574 | if (ret) |
| 1575 | return ret; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1576 | |
| 1577 | temp = i915_mch_val(dev_priv); |
| 1578 | chipset = i915_chipset_val(dev_priv); |
| 1579 | gfx = i915_gfx_val(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1580 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1581 | |
| 1582 | seq_printf(m, "GMCH temp: %ld\n", temp); |
| 1583 | seq_printf(m, "Chipset power: %ld\n", chipset); |
| 1584 | seq_printf(m, "GFX power: %ld\n", gfx); |
| 1585 | seq_printf(m, "Total power: %ld\n", chipset + gfx); |
| 1586 | |
| 1587 | return 0; |
| 1588 | } |
| 1589 | |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1590 | static int i915_ring_freq_table(struct seq_file *m, void *unused) |
| 1591 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1592 | struct drm_info_node *node = m->private; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1593 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1594 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1595 | int ret = 0; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1596 | int gpu_freq, ia_freq; |
| 1597 | |
Jesse Barnes | 1c70c0c | 2011-06-29 13:34:36 -0700 | [diff] [blame] | 1598 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1599 | seq_puts(m, "unsupported on this chipset\n"); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1600 | return 0; |
| 1601 | } |
| 1602 | |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1603 | intel_runtime_pm_get(dev_priv); |
| 1604 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 1605 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 1606 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 1607 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1608 | if (ret) |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1609 | goto out; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1610 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1611 | 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] | 1612 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 1613 | for (gpu_freq = dev_priv->rps.min_freq_softlimit; |
| 1614 | gpu_freq <= dev_priv->rps.max_freq_softlimit; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1615 | gpu_freq++) { |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 1616 | ia_freq = gpu_freq; |
| 1617 | sandybridge_pcode_read(dev_priv, |
| 1618 | GEN6_PCODE_READ_MIN_FREQ_TABLE, |
| 1619 | &ia_freq); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 1620 | seq_printf(m, "%d\t\t%d\t\t\t\t%d\n", |
| 1621 | gpu_freq * GT_FREQUENCY_MULTIPLIER, |
| 1622 | ((ia_freq >> 0) & 0xff) * 100, |
| 1623 | ((ia_freq >> 8) & 0xff) * 100); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1624 | } |
| 1625 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 1626 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1627 | |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1628 | out: |
| 1629 | intel_runtime_pm_put(dev_priv); |
| 1630 | return ret; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1631 | } |
| 1632 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1633 | static int i915_opregion(struct seq_file *m, void *unused) |
| 1634 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1635 | struct drm_info_node *node = m->private; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1636 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1637 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1638 | struct intel_opregion *opregion = &dev_priv->opregion; |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1639 | void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1640 | int ret; |
| 1641 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1642 | if (data == NULL) |
| 1643 | return -ENOMEM; |
| 1644 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1645 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1646 | if (ret) |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1647 | goto out; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1648 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1649 | if (opregion->header) { |
| 1650 | memcpy_fromio(data, opregion->header, OPREGION_SIZE); |
| 1651 | seq_write(m, data, OPREGION_SIZE); |
| 1652 | } |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1653 | |
| 1654 | mutex_unlock(&dev->struct_mutex); |
| 1655 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1656 | out: |
| 1657 | kfree(data); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1658 | return 0; |
| 1659 | } |
| 1660 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1661 | static int i915_gem_framebuffer_info(struct seq_file *m, void *data) |
| 1662 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1663 | struct drm_info_node *node = m->private; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1664 | struct drm_device *dev = node->minor->dev; |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1665 | struct intel_fbdev *ifbdev = NULL; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1666 | struct intel_framebuffer *fb; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1667 | |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1668 | #ifdef CONFIG_DRM_I915_FBDEV |
| 1669 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1670 | |
| 1671 | ifbdev = dev_priv->fbdev; |
| 1672 | fb = to_intel_framebuffer(ifbdev->helper.fb); |
| 1673 | |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1674 | 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] | 1675 | fb->base.width, |
| 1676 | fb->base.height, |
| 1677 | fb->base.depth, |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1678 | fb->base.bits_per_pixel, |
| 1679 | atomic_read(&fb->base.refcount.refcount)); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1680 | describe_obj(m, fb->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1681 | seq_putc(m, '\n'); |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1682 | #endif |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1683 | |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1684 | mutex_lock(&dev->mode_config.fb_lock); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1685 | list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) { |
Daniel Vetter | 131a56d | 2013-10-17 14:35:31 +0200 | [diff] [blame] | 1686 | if (ifbdev && &fb->base == ifbdev->helper.fb) |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1687 | continue; |
| 1688 | |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1689 | 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] | 1690 | fb->base.width, |
| 1691 | fb->base.height, |
| 1692 | fb->base.depth, |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1693 | fb->base.bits_per_pixel, |
| 1694 | atomic_read(&fb->base.refcount.refcount)); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1695 | describe_obj(m, fb->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1696 | seq_putc(m, '\n'); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1697 | } |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1698 | mutex_unlock(&dev->mode_config.fb_lock); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1699 | |
| 1700 | return 0; |
| 1701 | } |
| 1702 | |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1703 | static void describe_ctx_ringbuf(struct seq_file *m, |
| 1704 | struct intel_ringbuffer *ringbuf) |
| 1705 | { |
| 1706 | seq_printf(m, " (ringbuffer, space: %d, head: %u, tail: %u, last head: %d)", |
| 1707 | ringbuf->space, ringbuf->head, ringbuf->tail, |
| 1708 | ringbuf->last_retired_head); |
| 1709 | } |
| 1710 | |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1711 | static int i915_context_status(struct seq_file *m, void *unused) |
| 1712 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1713 | struct drm_info_node *node = m->private; |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1714 | struct drm_device *dev = node->minor->dev; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 1715 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 1716 | struct intel_engine_cs *ring; |
Oscar Mateo | 273497e | 2014-05-22 14:13:37 +0100 | [diff] [blame] | 1717 | struct intel_context *ctx; |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1718 | int ret, i; |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1719 | |
Daniel Vetter | f3d2887 | 2014-05-29 23:23:08 +0200 | [diff] [blame] | 1720 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1721 | if (ret) |
| 1722 | return ret; |
| 1723 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1724 | if (dev_priv->ips.pwrctx) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1725 | seq_puts(m, "power context "); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1726 | describe_obj(m, dev_priv->ips.pwrctx); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1727 | seq_putc(m, '\n'); |
Ben Widawsky | dc501fb | 2011-06-29 11:41:51 -0700 | [diff] [blame] | 1728 | } |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1729 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1730 | if (dev_priv->ips.renderctx) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1731 | seq_puts(m, "render context "); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1732 | describe_obj(m, dev_priv->ips.renderctx); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1733 | seq_putc(m, '\n'); |
Ben Widawsky | dc501fb | 2011-06-29 11:41:51 -0700 | [diff] [blame] | 1734 | } |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1735 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1736 | list_for_each_entry(ctx, &dev_priv->context_list, link) { |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1737 | if (!i915.enable_execlists && |
| 1738 | ctx->legacy_hw_ctx.rcs_state == NULL) |
Chris Wilson | b77f699 | 2014-04-30 08:30:00 +0100 | [diff] [blame] | 1739 | continue; |
| 1740 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1741 | seq_puts(m, "HW context "); |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 1742 | describe_ctx(m, ctx); |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1743 | for_each_ring(ring, dev_priv, i) { |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1744 | if (ring->default_context == ctx) |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1745 | seq_printf(m, "(default context %s) ", |
| 1746 | ring->name); |
| 1747 | } |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1748 | |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1749 | if (i915.enable_execlists) { |
| 1750 | seq_putc(m, '\n'); |
| 1751 | for_each_ring(ring, dev_priv, i) { |
| 1752 | struct drm_i915_gem_object *ctx_obj = |
| 1753 | ctx->engine[i].state; |
| 1754 | struct intel_ringbuffer *ringbuf = |
| 1755 | ctx->engine[i].ringbuf; |
| 1756 | |
| 1757 | seq_printf(m, "%s: ", ring->name); |
| 1758 | if (ctx_obj) |
| 1759 | describe_obj(m, ctx_obj); |
| 1760 | if (ringbuf) |
| 1761 | describe_ctx_ringbuf(m, ringbuf); |
| 1762 | seq_putc(m, '\n'); |
| 1763 | } |
| 1764 | } else { |
| 1765 | describe_obj(m, ctx->legacy_hw_ctx.rcs_state); |
| 1766 | } |
| 1767 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1768 | seq_putc(m, '\n'); |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1769 | } |
| 1770 | |
Daniel Vetter | f3d2887 | 2014-05-29 23:23:08 +0200 | [diff] [blame] | 1771 | mutex_unlock(&dev->struct_mutex); |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1772 | |
| 1773 | return 0; |
| 1774 | } |
| 1775 | |
Ben Widawsky | c0ab1ae9 | 2014-08-07 13:24:26 +0100 | [diff] [blame] | 1776 | static int i915_dump_lrc(struct seq_file *m, void *unused) |
| 1777 | { |
| 1778 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1779 | struct drm_device *dev = node->minor->dev; |
| 1780 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1781 | struct intel_engine_cs *ring; |
| 1782 | struct intel_context *ctx; |
| 1783 | int ret, i; |
| 1784 | |
| 1785 | if (!i915.enable_execlists) { |
| 1786 | seq_printf(m, "Logical Ring Contexts are disabled\n"); |
| 1787 | return 0; |
| 1788 | } |
| 1789 | |
| 1790 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1791 | if (ret) |
| 1792 | return ret; |
| 1793 | |
| 1794 | list_for_each_entry(ctx, &dev_priv->context_list, link) { |
| 1795 | for_each_ring(ring, dev_priv, i) { |
| 1796 | struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state; |
| 1797 | |
| 1798 | if (ring->default_context == ctx) |
| 1799 | continue; |
| 1800 | |
| 1801 | if (ctx_obj) { |
| 1802 | struct page *page = i915_gem_object_get_page(ctx_obj, 1); |
| 1803 | uint32_t *reg_state = kmap_atomic(page); |
| 1804 | int j; |
| 1805 | |
| 1806 | seq_printf(m, "CONTEXT: %s %u\n", ring->name, |
| 1807 | intel_execlists_ctx_id(ctx_obj)); |
| 1808 | |
| 1809 | for (j = 0; j < 0x600 / sizeof(u32) / 4; j += 4) { |
| 1810 | seq_printf(m, "\t[0x%08lx] 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 1811 | i915_gem_obj_ggtt_offset(ctx_obj) + 4096 + (j * 4), |
| 1812 | reg_state[j], reg_state[j + 1], |
| 1813 | reg_state[j + 2], reg_state[j + 3]); |
| 1814 | } |
| 1815 | kunmap_atomic(reg_state); |
| 1816 | |
| 1817 | seq_putc(m, '\n'); |
| 1818 | } |
| 1819 | } |
| 1820 | } |
| 1821 | |
| 1822 | mutex_unlock(&dev->struct_mutex); |
| 1823 | |
| 1824 | return 0; |
| 1825 | } |
| 1826 | |
Oscar Mateo | 4ba70e4 | 2014-08-07 13:23:20 +0100 | [diff] [blame] | 1827 | static int i915_execlists(struct seq_file *m, void *data) |
| 1828 | { |
| 1829 | struct drm_info_node *node = (struct drm_info_node *)m->private; |
| 1830 | struct drm_device *dev = node->minor->dev; |
| 1831 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1832 | struct intel_engine_cs *ring; |
| 1833 | u32 status_pointer; |
| 1834 | u8 read_pointer; |
| 1835 | u8 write_pointer; |
| 1836 | u32 status; |
| 1837 | u32 ctx_id; |
| 1838 | struct list_head *cursor; |
| 1839 | int ring_id, i; |
| 1840 | int ret; |
| 1841 | |
| 1842 | if (!i915.enable_execlists) { |
| 1843 | seq_puts(m, "Logical Ring Contexts are disabled\n"); |
| 1844 | return 0; |
| 1845 | } |
| 1846 | |
| 1847 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1848 | if (ret) |
| 1849 | return ret; |
| 1850 | |
Michel Thierry | fc0412e | 2014-10-16 16:13:38 +0100 | [diff] [blame] | 1851 | intel_runtime_pm_get(dev_priv); |
| 1852 | |
Oscar Mateo | 4ba70e4 | 2014-08-07 13:23:20 +0100 | [diff] [blame] | 1853 | for_each_ring(ring, dev_priv, ring_id) { |
| 1854 | struct intel_ctx_submit_request *head_req = NULL; |
| 1855 | int count = 0; |
| 1856 | unsigned long flags; |
| 1857 | |
| 1858 | seq_printf(m, "%s\n", ring->name); |
| 1859 | |
| 1860 | status = I915_READ(RING_EXECLIST_STATUS(ring)); |
| 1861 | ctx_id = I915_READ(RING_EXECLIST_STATUS(ring) + 4); |
| 1862 | seq_printf(m, "\tExeclist status: 0x%08X, context: %u\n", |
| 1863 | status, ctx_id); |
| 1864 | |
| 1865 | status_pointer = I915_READ(RING_CONTEXT_STATUS_PTR(ring)); |
| 1866 | seq_printf(m, "\tStatus pointer: 0x%08X\n", status_pointer); |
| 1867 | |
| 1868 | read_pointer = ring->next_context_status_buffer; |
| 1869 | write_pointer = status_pointer & 0x07; |
| 1870 | if (read_pointer > write_pointer) |
| 1871 | write_pointer += 6; |
| 1872 | seq_printf(m, "\tRead pointer: 0x%08X, write pointer 0x%08X\n", |
| 1873 | read_pointer, write_pointer); |
| 1874 | |
| 1875 | for (i = 0; i < 6; i++) { |
| 1876 | status = I915_READ(RING_CONTEXT_STATUS_BUF(ring) + 8*i); |
| 1877 | ctx_id = I915_READ(RING_CONTEXT_STATUS_BUF(ring) + 8*i + 4); |
| 1878 | |
| 1879 | seq_printf(m, "\tStatus buffer %d: 0x%08X, context: %u\n", |
| 1880 | i, status, ctx_id); |
| 1881 | } |
| 1882 | |
| 1883 | spin_lock_irqsave(&ring->execlist_lock, flags); |
| 1884 | list_for_each(cursor, &ring->execlist_queue) |
| 1885 | count++; |
| 1886 | head_req = list_first_entry_or_null(&ring->execlist_queue, |
| 1887 | struct intel_ctx_submit_request, execlist_link); |
| 1888 | spin_unlock_irqrestore(&ring->execlist_lock, flags); |
| 1889 | |
| 1890 | seq_printf(m, "\t%d requests in queue\n", count); |
| 1891 | if (head_req) { |
| 1892 | struct drm_i915_gem_object *ctx_obj; |
| 1893 | |
| 1894 | ctx_obj = head_req->ctx->engine[ring_id].state; |
| 1895 | seq_printf(m, "\tHead request id: %u\n", |
| 1896 | intel_execlists_ctx_id(ctx_obj)); |
| 1897 | seq_printf(m, "\tHead request tail: %u\n", |
| 1898 | head_req->tail); |
| 1899 | } |
| 1900 | |
| 1901 | seq_putc(m, '\n'); |
| 1902 | } |
| 1903 | |
Michel Thierry | fc0412e | 2014-10-16 16:13:38 +0100 | [diff] [blame] | 1904 | intel_runtime_pm_put(dev_priv); |
Oscar Mateo | 4ba70e4 | 2014-08-07 13:23:20 +0100 | [diff] [blame] | 1905 | mutex_unlock(&dev->struct_mutex); |
| 1906 | |
| 1907 | return 0; |
| 1908 | } |
| 1909 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1910 | static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data) |
| 1911 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1912 | struct drm_info_node *node = m->private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1913 | struct drm_device *dev = node->minor->dev; |
| 1914 | struct drm_i915_private *dev_priv = dev->dev_private; |
Deepak S | 43709ba | 2013-11-23 14:55:44 +0530 | [diff] [blame] | 1915 | unsigned forcewake_count = 0, fw_rendercount = 0, fw_mediacount = 0; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1916 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1917 | spin_lock_irq(&dev_priv->uncore.lock); |
Deepak S | 43709ba | 2013-11-23 14:55:44 +0530 | [diff] [blame] | 1918 | if (IS_VALLEYVIEW(dev)) { |
| 1919 | fw_rendercount = dev_priv->uncore.fw_rendercount; |
| 1920 | fw_mediacount = dev_priv->uncore.fw_mediacount; |
| 1921 | } else |
| 1922 | forcewake_count = dev_priv->uncore.forcewake_count; |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1923 | spin_unlock_irq(&dev_priv->uncore.lock); |
Daniel Vetter | 9f1f46a | 2011-12-14 13:57:03 +0100 | [diff] [blame] | 1924 | |
Deepak S | 43709ba | 2013-11-23 14:55:44 +0530 | [diff] [blame] | 1925 | if (IS_VALLEYVIEW(dev)) { |
| 1926 | seq_printf(m, "fw_rendercount = %u\n", fw_rendercount); |
| 1927 | seq_printf(m, "fw_mediacount = %u\n", fw_mediacount); |
| 1928 | } else |
| 1929 | seq_printf(m, "forcewake count = %u\n", forcewake_count); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1930 | |
| 1931 | return 0; |
| 1932 | } |
| 1933 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1934 | static const char *swizzle_string(unsigned swizzle) |
| 1935 | { |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1936 | switch (swizzle) { |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1937 | case I915_BIT_6_SWIZZLE_NONE: |
| 1938 | return "none"; |
| 1939 | case I915_BIT_6_SWIZZLE_9: |
| 1940 | return "bit9"; |
| 1941 | case I915_BIT_6_SWIZZLE_9_10: |
| 1942 | return "bit9/bit10"; |
| 1943 | case I915_BIT_6_SWIZZLE_9_11: |
| 1944 | return "bit9/bit11"; |
| 1945 | case I915_BIT_6_SWIZZLE_9_10_11: |
| 1946 | return "bit9/bit10/bit11"; |
| 1947 | case I915_BIT_6_SWIZZLE_9_17: |
| 1948 | return "bit9/bit17"; |
| 1949 | case I915_BIT_6_SWIZZLE_9_10_17: |
| 1950 | return "bit9/bit10/bit17"; |
| 1951 | case I915_BIT_6_SWIZZLE_UNKNOWN: |
Masanari Iida | 8a168ca | 2012-12-29 02:00:09 +0900 | [diff] [blame] | 1952 | return "unknown"; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1953 | } |
| 1954 | |
| 1955 | return "bug"; |
| 1956 | } |
| 1957 | |
| 1958 | static int i915_swizzle_info(struct seq_file *m, void *data) |
| 1959 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 1960 | struct drm_info_node *node = m->private; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1961 | struct drm_device *dev = node->minor->dev; |
| 1962 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 1963 | int ret; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1964 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 1965 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1966 | if (ret) |
| 1967 | return ret; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1968 | intel_runtime_pm_get(dev_priv); |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 1969 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1970 | seq_printf(m, "bit6 swizzle for X-tiling = %s\n", |
| 1971 | swizzle_string(dev_priv->mm.bit_6_swizzle_x)); |
| 1972 | seq_printf(m, "bit6 swizzle for Y-tiling = %s\n", |
| 1973 | swizzle_string(dev_priv->mm.bit_6_swizzle_y)); |
| 1974 | |
| 1975 | if (IS_GEN3(dev) || IS_GEN4(dev)) { |
| 1976 | seq_printf(m, "DDC = 0x%08x\n", |
| 1977 | I915_READ(DCC)); |
| 1978 | seq_printf(m, "C0DRB3 = 0x%04x\n", |
| 1979 | I915_READ16(C0DRB3)); |
| 1980 | seq_printf(m, "C1DRB3 = 0x%04x\n", |
| 1981 | I915_READ16(C1DRB3)); |
Ben Widawsky | 9d3203e | 2013-11-02 21:07:14 -0700 | [diff] [blame] | 1982 | } else if (INTEL_INFO(dev)->gen >= 6) { |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 1983 | seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n", |
| 1984 | I915_READ(MAD_DIMM_C0)); |
| 1985 | seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n", |
| 1986 | I915_READ(MAD_DIMM_C1)); |
| 1987 | seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n", |
| 1988 | I915_READ(MAD_DIMM_C2)); |
| 1989 | seq_printf(m, "TILECTL = 0x%08x\n", |
| 1990 | I915_READ(TILECTL)); |
Robert Beckett | 5907f5f | 2014-01-23 14:23:14 +0000 | [diff] [blame] | 1991 | if (INTEL_INFO(dev)->gen >= 8) |
Ben Widawsky | 9d3203e | 2013-11-02 21:07:14 -0700 | [diff] [blame] | 1992 | seq_printf(m, "GAMTARBMODE = 0x%08x\n", |
| 1993 | I915_READ(GAMTARBMODE)); |
| 1994 | else |
| 1995 | seq_printf(m, "ARB_MODE = 0x%08x\n", |
| 1996 | I915_READ(ARB_MODE)); |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 1997 | seq_printf(m, "DISP_ARB_CTL = 0x%08x\n", |
| 1998 | I915_READ(DISP_ARB_CTL)); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1999 | } |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2000 | intel_runtime_pm_put(dev_priv); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2001 | mutex_unlock(&dev->struct_mutex); |
| 2002 | |
| 2003 | return 0; |
| 2004 | } |
| 2005 | |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2006 | static int per_file_ctx(int id, void *ptr, void *data) |
| 2007 | { |
Oscar Mateo | 273497e | 2014-05-22 14:13:37 +0100 | [diff] [blame] | 2008 | struct intel_context *ctx = ptr; |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2009 | struct seq_file *m = data; |
Daniel Vetter | ae6c480 | 2014-08-06 15:04:53 +0200 | [diff] [blame] | 2010 | struct i915_hw_ppgtt *ppgtt = ctx->ppgtt; |
| 2011 | |
| 2012 | if (!ppgtt) { |
| 2013 | seq_printf(m, " no ppgtt for context %d\n", |
| 2014 | ctx->user_handle); |
| 2015 | return 0; |
| 2016 | } |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2017 | |
Oscar Mateo | f83d651 | 2014-05-22 14:13:38 +0100 | [diff] [blame] | 2018 | if (i915_gem_context_is_default(ctx)) |
| 2019 | seq_puts(m, " default context:\n"); |
| 2020 | else |
Oscar Mateo | 821d66d | 2014-07-03 16:28:00 +0100 | [diff] [blame] | 2021 | seq_printf(m, " context %d:\n", ctx->user_handle); |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2022 | ppgtt->debug_dump(ppgtt, m); |
| 2023 | |
| 2024 | return 0; |
| 2025 | } |
| 2026 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2027 | static void gen8_ppgtt_info(struct seq_file *m, struct drm_device *dev) |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2028 | { |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2029 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2030 | struct intel_engine_cs *ring; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2031 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 2032 | int unused, i; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2033 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2034 | if (!ppgtt) |
| 2035 | return; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2036 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2037 | seq_printf(m, "Page directories: %d\n", ppgtt->num_pd_pages); |
Ben Widawsky | 5abbcca | 2014-02-21 13:06:34 -0800 | [diff] [blame] | 2038 | seq_printf(m, "Page tables: %d\n", ppgtt->num_pd_entries); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2039 | for_each_ring(ring, dev_priv, unused) { |
| 2040 | seq_printf(m, "%s\n", ring->name); |
| 2041 | for (i = 0; i < 4; i++) { |
| 2042 | u32 offset = 0x270 + i * 8; |
| 2043 | u64 pdp = I915_READ(ring->mmio_base + offset + 4); |
| 2044 | pdp <<= 32; |
| 2045 | pdp |= I915_READ(ring->mmio_base + offset); |
Ville Syrjälä | a2a5b15 | 2014-03-31 18:17:16 +0300 | [diff] [blame] | 2046 | seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2047 | } |
| 2048 | } |
| 2049 | } |
| 2050 | |
| 2051 | static void gen6_ppgtt_info(struct seq_file *m, struct drm_device *dev) |
| 2052 | { |
| 2053 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 2054 | struct intel_engine_cs *ring; |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2055 | struct drm_file *file; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2056 | int i; |
| 2057 | |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2058 | if (INTEL_INFO(dev)->gen == 6) |
| 2059 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE)); |
| 2060 | |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 2061 | for_each_ring(ring, dev_priv, i) { |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2062 | seq_printf(m, "%s\n", ring->name); |
| 2063 | if (INTEL_INFO(dev)->gen == 7) |
| 2064 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring))); |
| 2065 | seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring))); |
| 2066 | seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring))); |
| 2067 | seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring))); |
| 2068 | } |
| 2069 | if (dev_priv->mm.aliasing_ppgtt) { |
| 2070 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 2071 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 2072 | seq_puts(m, "aliasing PPGTT:\n"); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2073 | seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset); |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2074 | |
Ben Widawsky | 87d60b6 | 2013-12-06 14:11:29 -0800 | [diff] [blame] | 2075 | ppgtt->debug_dump(ppgtt, m); |
Daniel Vetter | ae6c480 | 2014-08-06 15:04:53 +0200 | [diff] [blame] | 2076 | } |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2077 | |
| 2078 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 2079 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2080 | |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2081 | seq_printf(m, "proc: %s\n", |
| 2082 | get_pid_task(file->pid, PIDTYPE_PID)->comm); |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2083 | idr_for_each(&file_priv->context_idr, per_file_ctx, m); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2084 | } |
| 2085 | seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK)); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2086 | } |
| 2087 | |
| 2088 | static int i915_ppgtt_info(struct seq_file *m, void *data) |
| 2089 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 2090 | struct drm_info_node *node = m->private; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2091 | struct drm_device *dev = node->minor->dev; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2092 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2093 | |
| 2094 | int ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2095 | if (ret) |
| 2096 | return ret; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2097 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2098 | |
| 2099 | if (INTEL_INFO(dev)->gen >= 8) |
| 2100 | gen8_ppgtt_info(m, dev); |
| 2101 | else if (INTEL_INFO(dev)->gen >= 6) |
| 2102 | gen6_ppgtt_info(m, dev); |
| 2103 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2104 | intel_runtime_pm_put(dev_priv); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2105 | mutex_unlock(&dev->struct_mutex); |
| 2106 | |
| 2107 | return 0; |
| 2108 | } |
| 2109 | |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2110 | static int i915_llc(struct seq_file *m, void *data) |
| 2111 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 2112 | struct drm_info_node *node = m->private; |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2113 | struct drm_device *dev = node->minor->dev; |
| 2114 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2115 | |
| 2116 | /* Size calculation for LLC is a bit of a pain. Ignore for now. */ |
| 2117 | seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev))); |
| 2118 | seq_printf(m, "eLLC: %zuMB\n", dev_priv->ellc_size); |
| 2119 | |
| 2120 | return 0; |
| 2121 | } |
| 2122 | |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2123 | static int i915_edp_psr_status(struct seq_file *m, void *data) |
| 2124 | { |
| 2125 | struct drm_info_node *node = m->private; |
| 2126 | struct drm_device *dev = node->minor->dev; |
| 2127 | struct drm_i915_private *dev_priv = dev->dev_private; |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2128 | u32 psrperf = 0; |
| 2129 | bool enabled = false; |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2130 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2131 | intel_runtime_pm_get(dev_priv); |
| 2132 | |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2133 | mutex_lock(&dev_priv->psr.lock); |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2134 | seq_printf(m, "Sink_Support: %s\n", yesno(dev_priv->psr.sink_support)); |
| 2135 | seq_printf(m, "Source_OK: %s\n", yesno(dev_priv->psr.source_ok)); |
Daniel Vetter | 2807cf6 | 2014-07-11 10:30:11 -0700 | [diff] [blame] | 2136 | seq_printf(m, "Enabled: %s\n", yesno((bool)dev_priv->psr.enabled)); |
Rodrigo Vivi | 5755c78 | 2014-06-12 10:16:45 -0700 | [diff] [blame] | 2137 | seq_printf(m, "Active: %s\n", yesno(dev_priv->psr.active)); |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2138 | seq_printf(m, "Busy frontbuffer bits: 0x%03x\n", |
| 2139 | dev_priv->psr.busy_frontbuffer_bits); |
| 2140 | seq_printf(m, "Re-enable work scheduled: %s\n", |
| 2141 | yesno(work_busy(&dev_priv->psr.work.work))); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2142 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2143 | enabled = HAS_PSR(dev) && |
| 2144 | I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE; |
Rodrigo Vivi | 5755c78 | 2014-06-12 10:16:45 -0700 | [diff] [blame] | 2145 | seq_printf(m, "HW Enabled & Active bit: %s\n", yesno(enabled)); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2146 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2147 | if (HAS_PSR(dev)) |
| 2148 | psrperf = I915_READ(EDP_PSR_PERF_CNT(dev)) & |
| 2149 | EDP_PSR_PERF_CNT_MASK; |
| 2150 | seq_printf(m, "Performance_Counter: %u\n", psrperf); |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2151 | mutex_unlock(&dev_priv->psr.lock); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2152 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2153 | intel_runtime_pm_put(dev_priv); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2154 | return 0; |
| 2155 | } |
| 2156 | |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2157 | static int i915_sink_crc(struct seq_file *m, void *data) |
| 2158 | { |
| 2159 | struct drm_info_node *node = m->private; |
| 2160 | struct drm_device *dev = node->minor->dev; |
| 2161 | struct intel_encoder *encoder; |
| 2162 | struct intel_connector *connector; |
| 2163 | struct intel_dp *intel_dp = NULL; |
| 2164 | int ret; |
| 2165 | u8 crc[6]; |
| 2166 | |
| 2167 | drm_modeset_lock_all(dev); |
| 2168 | list_for_each_entry(connector, &dev->mode_config.connector_list, |
| 2169 | base.head) { |
| 2170 | |
| 2171 | if (connector->base.dpms != DRM_MODE_DPMS_ON) |
| 2172 | continue; |
| 2173 | |
Paulo Zanoni | b6ae3c7 | 2014-02-13 17:51:33 -0200 | [diff] [blame] | 2174 | if (!connector->base.encoder) |
| 2175 | continue; |
| 2176 | |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2177 | encoder = to_intel_encoder(connector->base.encoder); |
| 2178 | if (encoder->type != INTEL_OUTPUT_EDP) |
| 2179 | continue; |
| 2180 | |
| 2181 | intel_dp = enc_to_intel_dp(&encoder->base); |
| 2182 | |
| 2183 | ret = intel_dp_sink_crc(intel_dp, crc); |
| 2184 | if (ret) |
| 2185 | goto out; |
| 2186 | |
| 2187 | seq_printf(m, "%02x%02x%02x%02x%02x%02x\n", |
| 2188 | crc[0], crc[1], crc[2], |
| 2189 | crc[3], crc[4], crc[5]); |
| 2190 | goto out; |
| 2191 | } |
| 2192 | ret = -ENODEV; |
| 2193 | out: |
| 2194 | drm_modeset_unlock_all(dev); |
| 2195 | return ret; |
| 2196 | } |
| 2197 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2198 | static int i915_energy_uJ(struct seq_file *m, void *data) |
| 2199 | { |
| 2200 | struct drm_info_node *node = m->private; |
| 2201 | struct drm_device *dev = node->minor->dev; |
| 2202 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2203 | u64 power; |
| 2204 | u32 units; |
| 2205 | |
| 2206 | if (INTEL_INFO(dev)->gen < 6) |
| 2207 | return -ENODEV; |
| 2208 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 2209 | intel_runtime_pm_get(dev_priv); |
| 2210 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2211 | rdmsrl(MSR_RAPL_POWER_UNIT, power); |
| 2212 | power = (power & 0x1f00) >> 8; |
| 2213 | units = 1000000 / (1 << power); /* convert to uJ */ |
| 2214 | power = I915_READ(MCH_SECP_NRG_STTS); |
| 2215 | power *= units; |
| 2216 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 2217 | intel_runtime_pm_put(dev_priv); |
| 2218 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2219 | seq_printf(m, "%llu", (long long unsigned)power); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2220 | |
| 2221 | return 0; |
| 2222 | } |
| 2223 | |
| 2224 | static int i915_pc8_status(struct seq_file *m, void *unused) |
| 2225 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 2226 | struct drm_info_node *node = m->private; |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2227 | struct drm_device *dev = node->minor->dev; |
| 2228 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2229 | |
Zhenyu Wang | 85b8d5c | 2014-04-01 19:39:48 -0300 | [diff] [blame] | 2230 | if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) { |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2231 | seq_puts(m, "not supported\n"); |
| 2232 | return 0; |
| 2233 | } |
| 2234 | |
Paulo Zanoni | 86c4ec0 | 2014-02-21 13:52:24 -0300 | [diff] [blame] | 2235 | seq_printf(m, "GPU idle: %s\n", yesno(!dev_priv->mm.busy)); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2236 | seq_printf(m, "IRQs disabled: %s\n", |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 2237 | yesno(!intel_irqs_enabled(dev_priv))); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2238 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2239 | return 0; |
| 2240 | } |
| 2241 | |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2242 | static const char *power_domain_str(enum intel_display_power_domain domain) |
| 2243 | { |
| 2244 | switch (domain) { |
| 2245 | case POWER_DOMAIN_PIPE_A: |
| 2246 | return "PIPE_A"; |
| 2247 | case POWER_DOMAIN_PIPE_B: |
| 2248 | return "PIPE_B"; |
| 2249 | case POWER_DOMAIN_PIPE_C: |
| 2250 | return "PIPE_C"; |
| 2251 | case POWER_DOMAIN_PIPE_A_PANEL_FITTER: |
| 2252 | return "PIPE_A_PANEL_FITTER"; |
| 2253 | case POWER_DOMAIN_PIPE_B_PANEL_FITTER: |
| 2254 | return "PIPE_B_PANEL_FITTER"; |
| 2255 | case POWER_DOMAIN_PIPE_C_PANEL_FITTER: |
| 2256 | return "PIPE_C_PANEL_FITTER"; |
| 2257 | case POWER_DOMAIN_TRANSCODER_A: |
| 2258 | return "TRANSCODER_A"; |
| 2259 | case POWER_DOMAIN_TRANSCODER_B: |
| 2260 | return "TRANSCODER_B"; |
| 2261 | case POWER_DOMAIN_TRANSCODER_C: |
| 2262 | return "TRANSCODER_C"; |
| 2263 | case POWER_DOMAIN_TRANSCODER_EDP: |
| 2264 | return "TRANSCODER_EDP"; |
Imre Deak | 319be8a | 2014-03-04 19:22:57 +0200 | [diff] [blame] | 2265 | case POWER_DOMAIN_PORT_DDI_A_2_LANES: |
| 2266 | return "PORT_DDI_A_2_LANES"; |
| 2267 | case POWER_DOMAIN_PORT_DDI_A_4_LANES: |
| 2268 | return "PORT_DDI_A_4_LANES"; |
| 2269 | case POWER_DOMAIN_PORT_DDI_B_2_LANES: |
| 2270 | return "PORT_DDI_B_2_LANES"; |
| 2271 | case POWER_DOMAIN_PORT_DDI_B_4_LANES: |
| 2272 | return "PORT_DDI_B_4_LANES"; |
| 2273 | case POWER_DOMAIN_PORT_DDI_C_2_LANES: |
| 2274 | return "PORT_DDI_C_2_LANES"; |
| 2275 | case POWER_DOMAIN_PORT_DDI_C_4_LANES: |
| 2276 | return "PORT_DDI_C_4_LANES"; |
| 2277 | case POWER_DOMAIN_PORT_DDI_D_2_LANES: |
| 2278 | return "PORT_DDI_D_2_LANES"; |
| 2279 | case POWER_DOMAIN_PORT_DDI_D_4_LANES: |
| 2280 | return "PORT_DDI_D_4_LANES"; |
| 2281 | case POWER_DOMAIN_PORT_DSI: |
| 2282 | return "PORT_DSI"; |
| 2283 | case POWER_DOMAIN_PORT_CRT: |
| 2284 | return "PORT_CRT"; |
| 2285 | case POWER_DOMAIN_PORT_OTHER: |
| 2286 | return "PORT_OTHER"; |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2287 | case POWER_DOMAIN_VGA: |
| 2288 | return "VGA"; |
| 2289 | case POWER_DOMAIN_AUDIO: |
| 2290 | return "AUDIO"; |
Paulo Zanoni | bd2bb1b | 2014-07-04 11:27:38 -0300 | [diff] [blame] | 2291 | case POWER_DOMAIN_PLLS: |
| 2292 | return "PLLS"; |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2293 | case POWER_DOMAIN_INIT: |
| 2294 | return "INIT"; |
| 2295 | default: |
| 2296 | WARN_ON(1); |
| 2297 | return "?"; |
| 2298 | } |
| 2299 | } |
| 2300 | |
| 2301 | static int i915_power_domain_info(struct seq_file *m, void *unused) |
| 2302 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 2303 | struct drm_info_node *node = m->private; |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2304 | struct drm_device *dev = node->minor->dev; |
| 2305 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2306 | struct i915_power_domains *power_domains = &dev_priv->power_domains; |
| 2307 | int i; |
| 2308 | |
| 2309 | mutex_lock(&power_domains->lock); |
| 2310 | |
| 2311 | seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count"); |
| 2312 | for (i = 0; i < power_domains->power_well_count; i++) { |
| 2313 | struct i915_power_well *power_well; |
| 2314 | enum intel_display_power_domain power_domain; |
| 2315 | |
| 2316 | power_well = &power_domains->power_wells[i]; |
| 2317 | seq_printf(m, "%-25s %d\n", power_well->name, |
| 2318 | power_well->count); |
| 2319 | |
| 2320 | for (power_domain = 0; power_domain < POWER_DOMAIN_NUM; |
| 2321 | power_domain++) { |
| 2322 | if (!(BIT(power_domain) & power_well->domains)) |
| 2323 | continue; |
| 2324 | |
| 2325 | seq_printf(m, " %-23s %d\n", |
| 2326 | power_domain_str(power_domain), |
| 2327 | power_domains->domain_use_count[power_domain]); |
| 2328 | } |
| 2329 | } |
| 2330 | |
| 2331 | mutex_unlock(&power_domains->lock); |
| 2332 | |
| 2333 | return 0; |
| 2334 | } |
| 2335 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2336 | static void intel_seq_print_mode(struct seq_file *m, int tabs, |
| 2337 | struct drm_display_mode *mode) |
| 2338 | { |
| 2339 | int i; |
| 2340 | |
| 2341 | for (i = 0; i < tabs; i++) |
| 2342 | seq_putc(m, '\t'); |
| 2343 | |
| 2344 | seq_printf(m, "id %d:\"%s\" freq %d clock %d hdisp %d hss %d hse %d htot %d vdisp %d vss %d vse %d vtot %d type 0x%x flags 0x%x\n", |
| 2345 | mode->base.id, mode->name, |
| 2346 | mode->vrefresh, mode->clock, |
| 2347 | mode->hdisplay, mode->hsync_start, |
| 2348 | mode->hsync_end, mode->htotal, |
| 2349 | mode->vdisplay, mode->vsync_start, |
| 2350 | mode->vsync_end, mode->vtotal, |
| 2351 | mode->type, mode->flags); |
| 2352 | } |
| 2353 | |
| 2354 | static void intel_encoder_info(struct seq_file *m, |
| 2355 | struct intel_crtc *intel_crtc, |
| 2356 | struct intel_encoder *intel_encoder) |
| 2357 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 2358 | struct drm_info_node *node = m->private; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2359 | struct drm_device *dev = node->minor->dev; |
| 2360 | struct drm_crtc *crtc = &intel_crtc->base; |
| 2361 | struct intel_connector *intel_connector; |
| 2362 | struct drm_encoder *encoder; |
| 2363 | |
| 2364 | encoder = &intel_encoder->base; |
| 2365 | seq_printf(m, "\tencoder %d: type: %s, connectors:\n", |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 2366 | encoder->base.id, encoder->name); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2367 | for_each_connector_on_encoder(dev, encoder, intel_connector) { |
| 2368 | struct drm_connector *connector = &intel_connector->base; |
| 2369 | seq_printf(m, "\t\tconnector %d: type: %s, status: %s", |
| 2370 | connector->base.id, |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 2371 | connector->name, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2372 | drm_get_connector_status_name(connector->status)); |
| 2373 | if (connector->status == connector_status_connected) { |
| 2374 | struct drm_display_mode *mode = &crtc->mode; |
| 2375 | seq_printf(m, ", mode:\n"); |
| 2376 | intel_seq_print_mode(m, 2, mode); |
| 2377 | } else { |
| 2378 | seq_putc(m, '\n'); |
| 2379 | } |
| 2380 | } |
| 2381 | } |
| 2382 | |
| 2383 | static void intel_crtc_info(struct seq_file *m, struct intel_crtc *intel_crtc) |
| 2384 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 2385 | struct drm_info_node *node = m->private; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2386 | struct drm_device *dev = node->minor->dev; |
| 2387 | struct drm_crtc *crtc = &intel_crtc->base; |
| 2388 | struct intel_encoder *intel_encoder; |
| 2389 | |
Matt Roper | 5aa8a93 | 2014-06-16 10:12:55 -0700 | [diff] [blame] | 2390 | if (crtc->primary->fb) |
| 2391 | seq_printf(m, "\tfb: %d, pos: %dx%d, size: %dx%d\n", |
| 2392 | crtc->primary->fb->base.id, crtc->x, crtc->y, |
| 2393 | crtc->primary->fb->width, crtc->primary->fb->height); |
| 2394 | else |
| 2395 | seq_puts(m, "\tprimary plane disabled\n"); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2396 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) |
| 2397 | intel_encoder_info(m, intel_crtc, intel_encoder); |
| 2398 | } |
| 2399 | |
| 2400 | static void intel_panel_info(struct seq_file *m, struct intel_panel *panel) |
| 2401 | { |
| 2402 | struct drm_display_mode *mode = panel->fixed_mode; |
| 2403 | |
| 2404 | seq_printf(m, "\tfixed mode:\n"); |
| 2405 | intel_seq_print_mode(m, 2, mode); |
| 2406 | } |
| 2407 | |
| 2408 | static void intel_dp_info(struct seq_file *m, |
| 2409 | struct intel_connector *intel_connector) |
| 2410 | { |
| 2411 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 2412 | struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base); |
| 2413 | |
| 2414 | seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]); |
| 2415 | seq_printf(m, "\taudio support: %s\n", intel_dp->has_audio ? "yes" : |
| 2416 | "no"); |
| 2417 | if (intel_encoder->type == INTEL_OUTPUT_EDP) |
| 2418 | intel_panel_info(m, &intel_connector->panel); |
| 2419 | } |
| 2420 | |
| 2421 | static void intel_hdmi_info(struct seq_file *m, |
| 2422 | struct intel_connector *intel_connector) |
| 2423 | { |
| 2424 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 2425 | struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base); |
| 2426 | |
| 2427 | seq_printf(m, "\taudio support: %s\n", intel_hdmi->has_audio ? "yes" : |
| 2428 | "no"); |
| 2429 | } |
| 2430 | |
| 2431 | static void intel_lvds_info(struct seq_file *m, |
| 2432 | struct intel_connector *intel_connector) |
| 2433 | { |
| 2434 | intel_panel_info(m, &intel_connector->panel); |
| 2435 | } |
| 2436 | |
| 2437 | static void intel_connector_info(struct seq_file *m, |
| 2438 | struct drm_connector *connector) |
| 2439 | { |
| 2440 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 2441 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
Jesse Barnes | f103fc7 | 2014-02-20 12:39:57 -0800 | [diff] [blame] | 2442 | struct drm_display_mode *mode; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2443 | |
| 2444 | seq_printf(m, "connector %d: type %s, status: %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 2445 | connector->base.id, connector->name, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2446 | drm_get_connector_status_name(connector->status)); |
| 2447 | if (connector->status == connector_status_connected) { |
| 2448 | seq_printf(m, "\tname: %s\n", connector->display_info.name); |
| 2449 | seq_printf(m, "\tphysical dimensions: %dx%dmm\n", |
| 2450 | connector->display_info.width_mm, |
| 2451 | connector->display_info.height_mm); |
| 2452 | seq_printf(m, "\tsubpixel order: %s\n", |
| 2453 | drm_get_subpixel_order_name(connector->display_info.subpixel_order)); |
| 2454 | seq_printf(m, "\tCEA rev: %d\n", |
| 2455 | connector->display_info.cea_rev); |
| 2456 | } |
Dave Airlie | 36cd744 | 2014-05-02 13:44:18 +1000 | [diff] [blame] | 2457 | if (intel_encoder) { |
| 2458 | if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT || |
| 2459 | intel_encoder->type == INTEL_OUTPUT_EDP) |
| 2460 | intel_dp_info(m, intel_connector); |
| 2461 | else if (intel_encoder->type == INTEL_OUTPUT_HDMI) |
| 2462 | intel_hdmi_info(m, intel_connector); |
| 2463 | else if (intel_encoder->type == INTEL_OUTPUT_LVDS) |
| 2464 | intel_lvds_info(m, intel_connector); |
| 2465 | } |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2466 | |
Jesse Barnes | f103fc7 | 2014-02-20 12:39:57 -0800 | [diff] [blame] | 2467 | seq_printf(m, "\tmodes:\n"); |
| 2468 | list_for_each_entry(mode, &connector->modes, head) |
| 2469 | intel_seq_print_mode(m, 2, mode); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2470 | } |
| 2471 | |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2472 | static bool cursor_active(struct drm_device *dev, int pipe) |
| 2473 | { |
| 2474 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2475 | u32 state; |
| 2476 | |
| 2477 | if (IS_845G(dev) || IS_I865G(dev)) |
| 2478 | state = I915_READ(_CURACNTR) & CURSOR_ENABLE; |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2479 | else |
Ville Syrjälä | 5efb3e2 | 2014-04-09 13:28:53 +0300 | [diff] [blame] | 2480 | state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE; |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2481 | |
| 2482 | return state; |
| 2483 | } |
| 2484 | |
| 2485 | static bool cursor_position(struct drm_device *dev, int pipe, int *x, int *y) |
| 2486 | { |
| 2487 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2488 | u32 pos; |
| 2489 | |
Ville Syrjälä | 5efb3e2 | 2014-04-09 13:28:53 +0300 | [diff] [blame] | 2490 | pos = I915_READ(CURPOS(pipe)); |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2491 | |
| 2492 | *x = (pos >> CURSOR_X_SHIFT) & CURSOR_POS_MASK; |
| 2493 | if (pos & (CURSOR_POS_SIGN << CURSOR_X_SHIFT)) |
| 2494 | *x = -*x; |
| 2495 | |
| 2496 | *y = (pos >> CURSOR_Y_SHIFT) & CURSOR_POS_MASK; |
| 2497 | if (pos & (CURSOR_POS_SIGN << CURSOR_Y_SHIFT)) |
| 2498 | *y = -*y; |
| 2499 | |
| 2500 | return cursor_active(dev, pipe); |
| 2501 | } |
| 2502 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2503 | static int i915_display_info(struct seq_file *m, void *unused) |
| 2504 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 2505 | struct drm_info_node *node = m->private; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2506 | struct drm_device *dev = node->minor->dev; |
Paulo Zanoni | b0e5ddf | 2014-04-01 14:55:10 -0300 | [diff] [blame] | 2507 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2508 | struct intel_crtc *crtc; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2509 | struct drm_connector *connector; |
| 2510 | |
Paulo Zanoni | b0e5ddf | 2014-04-01 14:55:10 -0300 | [diff] [blame] | 2511 | intel_runtime_pm_get(dev_priv); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2512 | drm_modeset_lock_all(dev); |
| 2513 | seq_printf(m, "CRTC info\n"); |
| 2514 | seq_printf(m, "---------\n"); |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 2515 | for_each_intel_crtc(dev, crtc) { |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2516 | bool active; |
| 2517 | int x, y; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2518 | |
Chris Wilson | 57127ef | 2014-07-04 08:20:11 +0100 | [diff] [blame] | 2519 | seq_printf(m, "CRTC %d: pipe: %c, active=%s (size=%dx%d)\n", |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2520 | crtc->base.base.id, pipe_name(crtc->pipe), |
Chris Wilson | 57127ef | 2014-07-04 08:20:11 +0100 | [diff] [blame] | 2521 | yesno(crtc->active), crtc->config.pipe_src_w, crtc->config.pipe_src_h); |
Paulo Zanoni | a23dc65 | 2014-04-01 14:55:11 -0300 | [diff] [blame] | 2522 | if (crtc->active) { |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 2523 | intel_crtc_info(m, crtc); |
| 2524 | |
Paulo Zanoni | a23dc65 | 2014-04-01 14:55:11 -0300 | [diff] [blame] | 2525 | active = cursor_position(dev, crtc->pipe, &x, &y); |
Chris Wilson | 57127ef | 2014-07-04 08:20:11 +0100 | [diff] [blame] | 2526 | seq_printf(m, "\tcursor visible? %s, position (%d, %d), size %dx%d, addr 0x%08x, active? %s\n", |
Chris Wilson | 4b0e333 | 2014-05-30 16:35:26 +0300 | [diff] [blame] | 2527 | yesno(crtc->cursor_base), |
Chris Wilson | 57127ef | 2014-07-04 08:20:11 +0100 | [diff] [blame] | 2528 | x, y, crtc->cursor_width, crtc->cursor_height, |
| 2529 | crtc->cursor_addr, yesno(active)); |
Paulo Zanoni | a23dc65 | 2014-04-01 14:55:11 -0300 | [diff] [blame] | 2530 | } |
Daniel Vetter | cace841 | 2014-05-22 17:56:31 +0200 | [diff] [blame] | 2531 | |
| 2532 | seq_printf(m, "\tunderrun reporting: cpu=%s pch=%s \n", |
| 2533 | yesno(!crtc->cpu_fifo_underrun_disabled), |
| 2534 | yesno(!crtc->pch_fifo_underrun_disabled)); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2535 | } |
| 2536 | |
| 2537 | seq_printf(m, "\n"); |
| 2538 | seq_printf(m, "Connector info\n"); |
| 2539 | seq_printf(m, "--------------\n"); |
| 2540 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 2541 | intel_connector_info(m, connector); |
| 2542 | } |
| 2543 | drm_modeset_unlock_all(dev); |
Paulo Zanoni | b0e5ddf | 2014-04-01 14:55:10 -0300 | [diff] [blame] | 2544 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2545 | |
| 2546 | return 0; |
| 2547 | } |
| 2548 | |
Ben Widawsky | e04934c | 2014-06-30 09:53:42 -0700 | [diff] [blame] | 2549 | static int i915_semaphore_status(struct seq_file *m, void *unused) |
| 2550 | { |
| 2551 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 2552 | struct drm_device *dev = node->minor->dev; |
| 2553 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2554 | struct intel_engine_cs *ring; |
| 2555 | int num_rings = hweight32(INTEL_INFO(dev)->ring_mask); |
| 2556 | int i, j, ret; |
| 2557 | |
| 2558 | if (!i915_semaphore_is_enabled(dev)) { |
| 2559 | seq_puts(m, "Semaphores are disabled\n"); |
| 2560 | return 0; |
| 2561 | } |
| 2562 | |
| 2563 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2564 | if (ret) |
| 2565 | return ret; |
Paulo Zanoni | 0387206 | 2014-07-09 14:31:57 -0300 | [diff] [blame] | 2566 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | e04934c | 2014-06-30 09:53:42 -0700 | [diff] [blame] | 2567 | |
| 2568 | if (IS_BROADWELL(dev)) { |
| 2569 | struct page *page; |
| 2570 | uint64_t *seqno; |
| 2571 | |
| 2572 | page = i915_gem_object_get_page(dev_priv->semaphore_obj, 0); |
| 2573 | |
| 2574 | seqno = (uint64_t *)kmap_atomic(page); |
| 2575 | for_each_ring(ring, dev_priv, i) { |
| 2576 | uint64_t offset; |
| 2577 | |
| 2578 | seq_printf(m, "%s\n", ring->name); |
| 2579 | |
| 2580 | seq_puts(m, " Last signal:"); |
| 2581 | for (j = 0; j < num_rings; j++) { |
| 2582 | offset = i * I915_NUM_RINGS + j; |
| 2583 | seq_printf(m, "0x%08llx (0x%02llx) ", |
| 2584 | seqno[offset], offset * 8); |
| 2585 | } |
| 2586 | seq_putc(m, '\n'); |
| 2587 | |
| 2588 | seq_puts(m, " Last wait: "); |
| 2589 | for (j = 0; j < num_rings; j++) { |
| 2590 | offset = i + (j * I915_NUM_RINGS); |
| 2591 | seq_printf(m, "0x%08llx (0x%02llx) ", |
| 2592 | seqno[offset], offset * 8); |
| 2593 | } |
| 2594 | seq_putc(m, '\n'); |
| 2595 | |
| 2596 | } |
| 2597 | kunmap_atomic(seqno); |
| 2598 | } else { |
| 2599 | seq_puts(m, " Last signal:"); |
| 2600 | for_each_ring(ring, dev_priv, i) |
| 2601 | for (j = 0; j < num_rings; j++) |
| 2602 | seq_printf(m, "0x%08x\n", |
| 2603 | I915_READ(ring->semaphore.mbox.signal[j])); |
| 2604 | seq_putc(m, '\n'); |
| 2605 | } |
| 2606 | |
| 2607 | seq_puts(m, "\nSync seqno:\n"); |
| 2608 | for_each_ring(ring, dev_priv, i) { |
| 2609 | for (j = 0; j < num_rings; j++) { |
| 2610 | seq_printf(m, " 0x%08x ", ring->semaphore.sync_seqno[j]); |
| 2611 | } |
| 2612 | seq_putc(m, '\n'); |
| 2613 | } |
| 2614 | seq_putc(m, '\n'); |
| 2615 | |
Paulo Zanoni | 0387206 | 2014-07-09 14:31:57 -0300 | [diff] [blame] | 2616 | intel_runtime_pm_put(dev_priv); |
Ben Widawsky | e04934c | 2014-06-30 09:53:42 -0700 | [diff] [blame] | 2617 | mutex_unlock(&dev->struct_mutex); |
| 2618 | return 0; |
| 2619 | } |
| 2620 | |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 2621 | static int i915_shared_dplls_info(struct seq_file *m, void *unused) |
| 2622 | { |
| 2623 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 2624 | struct drm_device *dev = node->minor->dev; |
| 2625 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2626 | int i; |
| 2627 | |
| 2628 | drm_modeset_lock_all(dev); |
| 2629 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
| 2630 | struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i]; |
| 2631 | |
| 2632 | seq_printf(m, "DPLL%i: %s, id: %i\n", i, pll->name, pll->id); |
Ander Conselvan de Oliveira | 1e6f2dd | 2014-10-29 11:32:31 +0200 | [diff] [blame] | 2633 | seq_printf(m, " crtc_mask: 0x%08x, active: %d, on: %s\n", |
Ander Conselvan de Oliveira | 3e369b7 | 2014-10-29 11:32:32 +0200 | [diff] [blame] | 2634 | pll->config.crtc_mask, pll->active, yesno(pll->on)); |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 2635 | seq_printf(m, " tracked hardware state:\n"); |
Ander Conselvan de Oliveira | 3e369b7 | 2014-10-29 11:32:32 +0200 | [diff] [blame] | 2636 | seq_printf(m, " dpll: 0x%08x\n", pll->config.hw_state.dpll); |
| 2637 | seq_printf(m, " dpll_md: 0x%08x\n", |
| 2638 | pll->config.hw_state.dpll_md); |
| 2639 | seq_printf(m, " fp0: 0x%08x\n", pll->config.hw_state.fp0); |
| 2640 | seq_printf(m, " fp1: 0x%08x\n", pll->config.hw_state.fp1); |
| 2641 | seq_printf(m, " wrpll: 0x%08x\n", pll->config.hw_state.wrpll); |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 2642 | } |
| 2643 | drm_modeset_unlock_all(dev); |
| 2644 | |
| 2645 | return 0; |
| 2646 | } |
| 2647 | |
Damien Lespiau | 1ed1ef9 | 2014-08-30 16:50:59 +0100 | [diff] [blame] | 2648 | static int i915_wa_registers(struct seq_file *m, void *unused) |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 2649 | { |
| 2650 | int i; |
| 2651 | int ret; |
| 2652 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 2653 | struct drm_device *dev = node->minor->dev; |
| 2654 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2655 | |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 2656 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2657 | if (ret) |
| 2658 | return ret; |
| 2659 | |
| 2660 | intel_runtime_pm_get(dev_priv); |
| 2661 | |
Mika Kuoppala | 7225342 | 2014-10-07 17:21:26 +0300 | [diff] [blame] | 2662 | seq_printf(m, "Workarounds applied: %d\n", dev_priv->workarounds.count); |
| 2663 | for (i = 0; i < dev_priv->workarounds.count; ++i) { |
Mika Kuoppala | 2fa60f6 | 2014-10-07 17:21:27 +0300 | [diff] [blame] | 2664 | u32 addr, mask, value, read; |
| 2665 | bool ok; |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 2666 | |
Mika Kuoppala | 7225342 | 2014-10-07 17:21:26 +0300 | [diff] [blame] | 2667 | addr = dev_priv->workarounds.reg[i].addr; |
| 2668 | mask = dev_priv->workarounds.reg[i].mask; |
Mika Kuoppala | 2fa60f6 | 2014-10-07 17:21:27 +0300 | [diff] [blame] | 2669 | value = dev_priv->workarounds.reg[i].value; |
| 2670 | read = I915_READ(addr); |
| 2671 | ok = (value & mask) == (read & mask); |
| 2672 | seq_printf(m, "0x%X: 0x%08X, mask: 0x%08X, read: 0x%08x, status: %s\n", |
| 2673 | addr, value, mask, read, ok ? "OK" : "FAIL"); |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 2674 | } |
| 2675 | |
| 2676 | intel_runtime_pm_put(dev_priv); |
| 2677 | mutex_unlock(&dev->struct_mutex); |
| 2678 | |
| 2679 | return 0; |
| 2680 | } |
| 2681 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2682 | struct pipe_crc_info { |
| 2683 | const char *name; |
| 2684 | struct drm_device *dev; |
| 2685 | enum pipe pipe; |
| 2686 | }; |
| 2687 | |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 2688 | static int i915_dp_mst_info(struct seq_file *m, void *unused) |
| 2689 | { |
| 2690 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 2691 | struct drm_device *dev = node->minor->dev; |
| 2692 | struct drm_encoder *encoder; |
| 2693 | struct intel_encoder *intel_encoder; |
| 2694 | struct intel_digital_port *intel_dig_port; |
| 2695 | drm_modeset_lock_all(dev); |
| 2696 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { |
| 2697 | intel_encoder = to_intel_encoder(encoder); |
| 2698 | if (intel_encoder->type != INTEL_OUTPUT_DISPLAYPORT) |
| 2699 | continue; |
| 2700 | intel_dig_port = enc_to_dig_port(encoder); |
| 2701 | if (!intel_dig_port->dp.can_mst) |
| 2702 | continue; |
| 2703 | |
| 2704 | drm_dp_mst_dump_topology(m, &intel_dig_port->dp.mst_mgr); |
| 2705 | } |
| 2706 | drm_modeset_unlock_all(dev); |
| 2707 | return 0; |
| 2708 | } |
| 2709 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2710 | static int i915_pipe_crc_open(struct inode *inode, struct file *filep) |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 2711 | { |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 2712 | struct pipe_crc_info *info = inode->i_private; |
| 2713 | struct drm_i915_private *dev_priv = info->dev->dev_private; |
| 2714 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 2715 | |
Daniel Vetter | 7eb1c49 | 2013-11-14 11:30:43 +0100 | [diff] [blame] | 2716 | if (info->pipe >= INTEL_INFO(info->dev)->num_pipes) |
| 2717 | return -ENODEV; |
| 2718 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2719 | spin_lock_irq(&pipe_crc->lock); |
| 2720 | |
| 2721 | if (pipe_crc->opened) { |
| 2722 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 2723 | return -EBUSY; /* already open */ |
| 2724 | } |
| 2725 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2726 | pipe_crc->opened = true; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2727 | filep->private_data = inode->i_private; |
| 2728 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2729 | spin_unlock_irq(&pipe_crc->lock); |
| 2730 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2731 | return 0; |
| 2732 | } |
| 2733 | |
| 2734 | static int i915_pipe_crc_release(struct inode *inode, struct file *filep) |
| 2735 | { |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 2736 | struct pipe_crc_info *info = inode->i_private; |
| 2737 | struct drm_i915_private *dev_priv = info->dev->dev_private; |
| 2738 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 2739 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2740 | spin_lock_irq(&pipe_crc->lock); |
| 2741 | pipe_crc->opened = false; |
| 2742 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 2743 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2744 | return 0; |
| 2745 | } |
| 2746 | |
| 2747 | /* (6 fields, 8 chars each, space separated (5) + '\n') */ |
| 2748 | #define PIPE_CRC_LINE_LEN (6 * 8 + 5 + 1) |
| 2749 | /* account for \'0' */ |
| 2750 | #define PIPE_CRC_BUFFER_LEN (PIPE_CRC_LINE_LEN + 1) |
| 2751 | |
| 2752 | static int pipe_crc_data_count(struct intel_pipe_crc *pipe_crc) |
| 2753 | { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2754 | assert_spin_locked(&pipe_crc->lock); |
| 2755 | return CIRC_CNT(pipe_crc->head, pipe_crc->tail, |
| 2756 | INTEL_PIPE_CRC_ENTRIES_NR); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2757 | } |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 2758 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2759 | static ssize_t |
| 2760 | i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count, |
| 2761 | loff_t *pos) |
| 2762 | { |
| 2763 | struct pipe_crc_info *info = filep->private_data; |
| 2764 | struct drm_device *dev = info->dev; |
| 2765 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2766 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 2767 | char buf[PIPE_CRC_BUFFER_LEN]; |
| 2768 | int head, tail, n_entries, n; |
| 2769 | ssize_t bytes_read; |
| 2770 | |
| 2771 | /* |
| 2772 | * Don't allow user space to provide buffers not big enough to hold |
| 2773 | * a line of data. |
| 2774 | */ |
| 2775 | if (count < PIPE_CRC_LINE_LEN) |
| 2776 | return -EINVAL; |
| 2777 | |
| 2778 | if (pipe_crc->source == INTEL_PIPE_CRC_SOURCE_NONE) |
| 2779 | return 0; |
| 2780 | |
| 2781 | /* nothing to read */ |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2782 | spin_lock_irq(&pipe_crc->lock); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2783 | while (pipe_crc_data_count(pipe_crc) == 0) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2784 | int ret; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2785 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2786 | if (filep->f_flags & O_NONBLOCK) { |
| 2787 | spin_unlock_irq(&pipe_crc->lock); |
| 2788 | return -EAGAIN; |
| 2789 | } |
| 2790 | |
| 2791 | ret = wait_event_interruptible_lock_irq(pipe_crc->wq, |
| 2792 | pipe_crc_data_count(pipe_crc), pipe_crc->lock); |
| 2793 | if (ret) { |
| 2794 | spin_unlock_irq(&pipe_crc->lock); |
| 2795 | return ret; |
| 2796 | } |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2797 | } |
| 2798 | |
| 2799 | /* We now have one or more entries to read */ |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2800 | head = pipe_crc->head; |
| 2801 | tail = pipe_crc->tail; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2802 | n_entries = min((size_t)CIRC_CNT(head, tail, INTEL_PIPE_CRC_ENTRIES_NR), |
| 2803 | count / PIPE_CRC_LINE_LEN); |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2804 | spin_unlock_irq(&pipe_crc->lock); |
| 2805 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2806 | bytes_read = 0; |
| 2807 | n = 0; |
| 2808 | do { |
| 2809 | struct intel_pipe_crc_entry *entry = &pipe_crc->entries[tail]; |
| 2810 | int ret; |
| 2811 | |
| 2812 | bytes_read += snprintf(buf, PIPE_CRC_BUFFER_LEN, |
| 2813 | "%8u %8x %8x %8x %8x %8x\n", |
| 2814 | entry->frame, entry->crc[0], |
| 2815 | entry->crc[1], entry->crc[2], |
| 2816 | entry->crc[3], entry->crc[4]); |
| 2817 | |
| 2818 | ret = copy_to_user(user_buf + n * PIPE_CRC_LINE_LEN, |
| 2819 | buf, PIPE_CRC_LINE_LEN); |
| 2820 | if (ret == PIPE_CRC_LINE_LEN) |
| 2821 | return -EFAULT; |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 2822 | |
| 2823 | BUILD_BUG_ON_NOT_POWER_OF_2(INTEL_PIPE_CRC_ENTRIES_NR); |
| 2824 | tail = (tail + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2825 | n++; |
| 2826 | } while (--n_entries); |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 2827 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2828 | spin_lock_irq(&pipe_crc->lock); |
| 2829 | pipe_crc->tail = tail; |
| 2830 | spin_unlock_irq(&pipe_crc->lock); |
| 2831 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2832 | return bytes_read; |
| 2833 | } |
| 2834 | |
| 2835 | static const struct file_operations i915_pipe_crc_fops = { |
| 2836 | .owner = THIS_MODULE, |
| 2837 | .open = i915_pipe_crc_open, |
| 2838 | .read = i915_pipe_crc_read, |
| 2839 | .release = i915_pipe_crc_release, |
| 2840 | }; |
| 2841 | |
| 2842 | static struct pipe_crc_info i915_pipe_crc_data[I915_MAX_PIPES] = { |
| 2843 | { |
| 2844 | .name = "i915_pipe_A_crc", |
| 2845 | .pipe = PIPE_A, |
| 2846 | }, |
| 2847 | { |
| 2848 | .name = "i915_pipe_B_crc", |
| 2849 | .pipe = PIPE_B, |
| 2850 | }, |
| 2851 | { |
| 2852 | .name = "i915_pipe_C_crc", |
| 2853 | .pipe = PIPE_C, |
| 2854 | }, |
| 2855 | }; |
| 2856 | |
| 2857 | static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor, |
| 2858 | enum pipe pipe) |
| 2859 | { |
| 2860 | struct drm_device *dev = minor->dev; |
| 2861 | struct dentry *ent; |
| 2862 | struct pipe_crc_info *info = &i915_pipe_crc_data[pipe]; |
| 2863 | |
| 2864 | info->dev = dev; |
| 2865 | ent = debugfs_create_file(info->name, S_IRUGO, root, info, |
| 2866 | &i915_pipe_crc_fops); |
Wei Yongjun | f3c5fe9 | 2013-12-16 14:13:25 +0800 | [diff] [blame] | 2867 | if (!ent) |
| 2868 | return -ENOMEM; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2869 | |
| 2870 | return drm_add_fake_info_node(minor, ent, info); |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 2871 | } |
| 2872 | |
Daniel Vetter | e8dfcf7 | 2013-10-16 11:51:54 +0200 | [diff] [blame] | 2873 | static const char * const pipe_crc_sources[] = { |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2874 | "none", |
| 2875 | "plane1", |
| 2876 | "plane2", |
| 2877 | "pf", |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2878 | "pipe", |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2879 | "TV", |
| 2880 | "DP-B", |
| 2881 | "DP-C", |
| 2882 | "DP-D", |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2883 | "auto", |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2884 | }; |
| 2885 | |
| 2886 | static const char *pipe_crc_source_name(enum intel_pipe_crc_source source) |
| 2887 | { |
| 2888 | BUILD_BUG_ON(ARRAY_SIZE(pipe_crc_sources) != INTEL_PIPE_CRC_SOURCE_MAX); |
| 2889 | return pipe_crc_sources[source]; |
| 2890 | } |
| 2891 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2892 | static int display_crc_ctl_show(struct seq_file *m, void *data) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2893 | { |
| 2894 | struct drm_device *dev = m->private; |
| 2895 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2896 | int i; |
| 2897 | |
| 2898 | for (i = 0; i < I915_MAX_PIPES; i++) |
| 2899 | seq_printf(m, "%c %s\n", pipe_name(i), |
| 2900 | pipe_crc_source_name(dev_priv->pipe_crc[i].source)); |
| 2901 | |
| 2902 | return 0; |
| 2903 | } |
| 2904 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2905 | static int display_crc_ctl_open(struct inode *inode, struct file *file) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2906 | { |
| 2907 | struct drm_device *dev = inode->i_private; |
| 2908 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2909 | return single_open(file, display_crc_ctl_show, dev); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2910 | } |
| 2911 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2912 | 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] | 2913 | uint32_t *val) |
| 2914 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2915 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 2916 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 2917 | |
| 2918 | switch (*source) { |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 2919 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2920 | *val = PIPE_CRC_ENABLE | PIPE_CRC_INCLUDE_BORDER_I8XX; |
| 2921 | break; |
| 2922 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 2923 | *val = 0; |
| 2924 | break; |
| 2925 | default: |
| 2926 | return -EINVAL; |
| 2927 | } |
| 2928 | |
| 2929 | return 0; |
| 2930 | } |
| 2931 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2932 | static int i9xx_pipe_crc_auto_source(struct drm_device *dev, enum pipe pipe, |
| 2933 | enum intel_pipe_crc_source *source) |
| 2934 | { |
| 2935 | struct intel_encoder *encoder; |
| 2936 | struct intel_crtc *crtc; |
Daniel Vetter | 2675680 | 2013-11-01 10:50:23 +0100 | [diff] [blame] | 2937 | struct intel_digital_port *dig_port; |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2938 | int ret = 0; |
| 2939 | |
| 2940 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 2941 | |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 2942 | drm_modeset_lock_all(dev); |
Damien Lespiau | b2784e1 | 2014-08-05 11:29:37 +0100 | [diff] [blame] | 2943 | for_each_intel_encoder(dev, encoder) { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2944 | if (!encoder->base.crtc) |
| 2945 | continue; |
| 2946 | |
| 2947 | crtc = to_intel_crtc(encoder->base.crtc); |
| 2948 | |
| 2949 | if (crtc->pipe != pipe) |
| 2950 | continue; |
| 2951 | |
| 2952 | switch (encoder->type) { |
| 2953 | case INTEL_OUTPUT_TVOUT: |
| 2954 | *source = INTEL_PIPE_CRC_SOURCE_TV; |
| 2955 | break; |
| 2956 | case INTEL_OUTPUT_DISPLAYPORT: |
| 2957 | case INTEL_OUTPUT_EDP: |
Daniel Vetter | 2675680 | 2013-11-01 10:50:23 +0100 | [diff] [blame] | 2958 | dig_port = enc_to_dig_port(&encoder->base); |
| 2959 | switch (dig_port->port) { |
| 2960 | case PORT_B: |
| 2961 | *source = INTEL_PIPE_CRC_SOURCE_DP_B; |
| 2962 | break; |
| 2963 | case PORT_C: |
| 2964 | *source = INTEL_PIPE_CRC_SOURCE_DP_C; |
| 2965 | break; |
| 2966 | case PORT_D: |
| 2967 | *source = INTEL_PIPE_CRC_SOURCE_DP_D; |
| 2968 | break; |
| 2969 | default: |
| 2970 | WARN(1, "nonexisting DP port %c\n", |
| 2971 | port_name(dig_port->port)); |
| 2972 | break; |
| 2973 | } |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2974 | break; |
Paulo Zanoni | 6847d71b | 2014-10-27 17:47:52 -0200 | [diff] [blame] | 2975 | default: |
| 2976 | break; |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2977 | } |
| 2978 | } |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 2979 | drm_modeset_unlock_all(dev); |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2980 | |
| 2981 | return ret; |
| 2982 | } |
| 2983 | |
| 2984 | static int vlv_pipe_crc_ctl_reg(struct drm_device *dev, |
| 2985 | enum pipe pipe, |
| 2986 | enum intel_pipe_crc_source *source, |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2987 | uint32_t *val) |
| 2988 | { |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2989 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2990 | bool need_stable_symbols = false; |
| 2991 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2992 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) { |
| 2993 | int ret = i9xx_pipe_crc_auto_source(dev, pipe, source); |
| 2994 | if (ret) |
| 2995 | return ret; |
| 2996 | } |
| 2997 | |
| 2998 | switch (*source) { |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2999 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 3000 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_VLV; |
| 3001 | break; |
| 3002 | case INTEL_PIPE_CRC_SOURCE_DP_B: |
| 3003 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_VLV; |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 3004 | need_stable_symbols = true; |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 3005 | break; |
| 3006 | case INTEL_PIPE_CRC_SOURCE_DP_C: |
| 3007 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_VLV; |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 3008 | need_stable_symbols = true; |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 3009 | break; |
| 3010 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 3011 | *val = 0; |
| 3012 | break; |
| 3013 | default: |
| 3014 | return -EINVAL; |
| 3015 | } |
| 3016 | |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 3017 | /* |
| 3018 | * When the pipe CRC tap point is after the transcoders we need |
| 3019 | * to tweak symbol-level features to produce a deterministic series of |
| 3020 | * symbols for a given frame. We need to reset those features only once |
| 3021 | * a frame (instead of every nth symbol): |
| 3022 | * - DC-balance: used to ensure a better clock recovery from the data |
| 3023 | * link (SDVO) |
| 3024 | * - DisplayPort scrambling: used for EMI reduction |
| 3025 | */ |
| 3026 | if (need_stable_symbols) { |
| 3027 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 3028 | |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 3029 | tmp |= DC_BALANCE_RESET_VLV; |
| 3030 | if (pipe == PIPE_A) |
| 3031 | tmp |= PIPE_A_SCRAMBLE_RESET; |
| 3032 | else |
| 3033 | tmp |= PIPE_B_SCRAMBLE_RESET; |
| 3034 | |
| 3035 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 3036 | } |
| 3037 | |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 3038 | return 0; |
| 3039 | } |
| 3040 | |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3041 | static int i9xx_pipe_crc_ctl_reg(struct drm_device *dev, |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3042 | enum pipe pipe, |
| 3043 | enum intel_pipe_crc_source *source, |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3044 | uint32_t *val) |
| 3045 | { |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 3046 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3047 | bool need_stable_symbols = false; |
| 3048 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3049 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) { |
| 3050 | int ret = i9xx_pipe_crc_auto_source(dev, pipe, source); |
| 3051 | if (ret) |
| 3052 | return ret; |
| 3053 | } |
| 3054 | |
| 3055 | switch (*source) { |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3056 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 3057 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_I9XX; |
| 3058 | break; |
| 3059 | case INTEL_PIPE_CRC_SOURCE_TV: |
| 3060 | if (!SUPPORTS_TV(dev)) |
| 3061 | return -EINVAL; |
| 3062 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_TV_PRE; |
| 3063 | break; |
| 3064 | case INTEL_PIPE_CRC_SOURCE_DP_B: |
| 3065 | if (!IS_G4X(dev)) |
| 3066 | return -EINVAL; |
| 3067 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 3068 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3069 | break; |
| 3070 | case INTEL_PIPE_CRC_SOURCE_DP_C: |
| 3071 | if (!IS_G4X(dev)) |
| 3072 | return -EINVAL; |
| 3073 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 3074 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3075 | break; |
| 3076 | case INTEL_PIPE_CRC_SOURCE_DP_D: |
| 3077 | if (!IS_G4X(dev)) |
| 3078 | return -EINVAL; |
| 3079 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 3080 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3081 | break; |
| 3082 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 3083 | *val = 0; |
| 3084 | break; |
| 3085 | default: |
| 3086 | return -EINVAL; |
| 3087 | } |
| 3088 | |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 3089 | /* |
| 3090 | * When the pipe CRC tap point is after the transcoders we need |
| 3091 | * to tweak symbol-level features to produce a deterministic series of |
| 3092 | * symbols for a given frame. We need to reset those features only once |
| 3093 | * a frame (instead of every nth symbol): |
| 3094 | * - DC-balance: used to ensure a better clock recovery from the data |
| 3095 | * link (SDVO) |
| 3096 | * - DisplayPort scrambling: used for EMI reduction |
| 3097 | */ |
| 3098 | if (need_stable_symbols) { |
| 3099 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 3100 | |
| 3101 | WARN_ON(!IS_G4X(dev)); |
| 3102 | |
| 3103 | I915_WRITE(PORT_DFT_I9XX, |
| 3104 | I915_READ(PORT_DFT_I9XX) | DC_BALANCE_RESET); |
| 3105 | |
| 3106 | if (pipe == PIPE_A) |
| 3107 | tmp |= PIPE_A_SCRAMBLE_RESET; |
| 3108 | else |
| 3109 | tmp |= PIPE_B_SCRAMBLE_RESET; |
| 3110 | |
| 3111 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 3112 | } |
| 3113 | |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3114 | return 0; |
| 3115 | } |
| 3116 | |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 3117 | static void vlv_undo_pipe_scramble_reset(struct drm_device *dev, |
| 3118 | enum pipe pipe) |
| 3119 | { |
| 3120 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3121 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 3122 | |
| 3123 | if (pipe == PIPE_A) |
| 3124 | tmp &= ~PIPE_A_SCRAMBLE_RESET; |
| 3125 | else |
| 3126 | tmp &= ~PIPE_B_SCRAMBLE_RESET; |
| 3127 | if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) |
| 3128 | tmp &= ~DC_BALANCE_RESET_VLV; |
| 3129 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 3130 | |
| 3131 | } |
| 3132 | |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 3133 | static void g4x_undo_pipe_scramble_reset(struct drm_device *dev, |
| 3134 | enum pipe pipe) |
| 3135 | { |
| 3136 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3137 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 3138 | |
| 3139 | if (pipe == PIPE_A) |
| 3140 | tmp &= ~PIPE_A_SCRAMBLE_RESET; |
| 3141 | else |
| 3142 | tmp &= ~PIPE_B_SCRAMBLE_RESET; |
| 3143 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 3144 | |
| 3145 | if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) { |
| 3146 | I915_WRITE(PORT_DFT_I9XX, |
| 3147 | I915_READ(PORT_DFT_I9XX) & ~DC_BALANCE_RESET); |
| 3148 | } |
| 3149 | } |
| 3150 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3151 | 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] | 3152 | uint32_t *val) |
| 3153 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3154 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 3155 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 3156 | |
| 3157 | switch (*source) { |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3158 | case INTEL_PIPE_CRC_SOURCE_PLANE1: |
| 3159 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_ILK; |
| 3160 | break; |
| 3161 | case INTEL_PIPE_CRC_SOURCE_PLANE2: |
| 3162 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK; |
| 3163 | break; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3164 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 3165 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK; |
| 3166 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 3167 | case INTEL_PIPE_CRC_SOURCE_NONE: |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3168 | *val = 0; |
| 3169 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 3170 | default: |
| 3171 | return -EINVAL; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3172 | } |
| 3173 | |
| 3174 | return 0; |
| 3175 | } |
| 3176 | |
Daniel Vetter | fabf6e5 | 2014-05-29 14:10:22 +0200 | [diff] [blame] | 3177 | static void hsw_trans_edp_pipe_A_crc_wa(struct drm_device *dev) |
| 3178 | { |
| 3179 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3180 | struct intel_crtc *crtc = |
| 3181 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_A]); |
| 3182 | |
| 3183 | drm_modeset_lock_all(dev); |
| 3184 | /* |
| 3185 | * If we use the eDP transcoder we need to make sure that we don't |
| 3186 | * bypass the pfit, since otherwise the pipe CRC source won't work. Only |
| 3187 | * relevant on hsw with pipe A when using the always-on power well |
| 3188 | * routing. |
| 3189 | */ |
| 3190 | if (crtc->config.cpu_transcoder == TRANSCODER_EDP && |
| 3191 | !crtc->config.pch_pfit.enabled) { |
| 3192 | crtc->config.pch_pfit.force_thru = true; |
| 3193 | |
| 3194 | intel_display_power_get(dev_priv, |
| 3195 | POWER_DOMAIN_PIPE_PANEL_FITTER(PIPE_A)); |
| 3196 | |
| 3197 | dev_priv->display.crtc_disable(&crtc->base); |
| 3198 | dev_priv->display.crtc_enable(&crtc->base); |
| 3199 | } |
| 3200 | drm_modeset_unlock_all(dev); |
| 3201 | } |
| 3202 | |
| 3203 | static void hsw_undo_trans_edp_pipe_A_crc_wa(struct drm_device *dev) |
| 3204 | { |
| 3205 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3206 | struct intel_crtc *crtc = |
| 3207 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_A]); |
| 3208 | |
| 3209 | drm_modeset_lock_all(dev); |
| 3210 | /* |
| 3211 | * If we use the eDP transcoder we need to make sure that we don't |
| 3212 | * bypass the pfit, since otherwise the pipe CRC source won't work. Only |
| 3213 | * relevant on hsw with pipe A when using the always-on power well |
| 3214 | * routing. |
| 3215 | */ |
| 3216 | if (crtc->config.pch_pfit.force_thru) { |
| 3217 | crtc->config.pch_pfit.force_thru = false; |
| 3218 | |
| 3219 | dev_priv->display.crtc_disable(&crtc->base); |
| 3220 | dev_priv->display.crtc_enable(&crtc->base); |
| 3221 | |
| 3222 | intel_display_power_put(dev_priv, |
| 3223 | POWER_DOMAIN_PIPE_PANEL_FITTER(PIPE_A)); |
| 3224 | } |
| 3225 | drm_modeset_unlock_all(dev); |
| 3226 | } |
| 3227 | |
| 3228 | static int ivb_pipe_crc_ctl_reg(struct drm_device *dev, |
| 3229 | enum pipe pipe, |
| 3230 | enum intel_pipe_crc_source *source, |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3231 | uint32_t *val) |
| 3232 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3233 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 3234 | *source = INTEL_PIPE_CRC_SOURCE_PF; |
| 3235 | |
| 3236 | switch (*source) { |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3237 | case INTEL_PIPE_CRC_SOURCE_PLANE1: |
| 3238 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_IVB; |
| 3239 | break; |
| 3240 | case INTEL_PIPE_CRC_SOURCE_PLANE2: |
| 3241 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_IVB; |
| 3242 | break; |
| 3243 | case INTEL_PIPE_CRC_SOURCE_PF: |
Daniel Vetter | fabf6e5 | 2014-05-29 14:10:22 +0200 | [diff] [blame] | 3244 | if (IS_HASWELL(dev) && pipe == PIPE_A) |
| 3245 | hsw_trans_edp_pipe_A_crc_wa(dev); |
| 3246 | |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3247 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB; |
| 3248 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 3249 | case INTEL_PIPE_CRC_SOURCE_NONE: |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3250 | *val = 0; |
| 3251 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 3252 | default: |
| 3253 | return -EINVAL; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3254 | } |
| 3255 | |
| 3256 | return 0; |
| 3257 | } |
| 3258 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3259 | static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe, |
| 3260 | enum intel_pipe_crc_source source) |
| 3261 | { |
| 3262 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 3263 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; |
Paulo Zanoni | 8c740dc | 2014-10-17 18:42:03 -0300 | [diff] [blame] | 3264 | struct intel_crtc *crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, |
| 3265 | pipe)); |
Borislav Petkov | 432f334 | 2013-11-21 16:49:46 +0100 | [diff] [blame] | 3266 | u32 val = 0; /* shut up gcc */ |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3267 | int ret; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3268 | |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 3269 | if (pipe_crc->source == source) |
| 3270 | return 0; |
| 3271 | |
Damien Lespiau | ae676fc | 2013-10-15 18:55:32 +0100 | [diff] [blame] | 3272 | /* forbid changing the source without going back to 'none' */ |
| 3273 | if (pipe_crc->source && source) |
| 3274 | return -EINVAL; |
| 3275 | |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 3276 | if (IS_GEN2(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3277 | ret = i8xx_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 3278 | else if (INTEL_INFO(dev)->gen < 5) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3279 | ret = i9xx_pipe_crc_ctl_reg(dev, pipe, &source, &val); |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 3280 | else if (IS_VALLEYVIEW(dev)) |
Daniel Vetter | fabf6e5 | 2014-05-29 14:10:22 +0200 | [diff] [blame] | 3281 | ret = vlv_pipe_crc_ctl_reg(dev, pipe, &source, &val); |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 3282 | else if (IS_GEN5(dev) || IS_GEN6(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 3283 | ret = ilk_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3284 | else |
Daniel Vetter | fabf6e5 | 2014-05-29 14:10:22 +0200 | [diff] [blame] | 3285 | ret = ivb_pipe_crc_ctl_reg(dev, pipe, &source, &val); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 3286 | |
| 3287 | if (ret != 0) |
| 3288 | return ret; |
| 3289 | |
Damien Lespiau | 4b58436 | 2013-10-15 18:55:33 +0100 | [diff] [blame] | 3290 | /* none -> real source transition */ |
| 3291 | if (source) { |
Damien Lespiau | 7cd6ccf | 2013-10-15 18:55:38 +0100 | [diff] [blame] | 3292 | DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n", |
| 3293 | pipe_name(pipe), pipe_crc_source_name(source)); |
| 3294 | |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 3295 | pipe_crc->entries = kzalloc(sizeof(*pipe_crc->entries) * |
| 3296 | INTEL_PIPE_CRC_ENTRIES_NR, |
| 3297 | GFP_KERNEL); |
| 3298 | if (!pipe_crc->entries) |
| 3299 | return -ENOMEM; |
| 3300 | |
Paulo Zanoni | 8c740dc | 2014-10-17 18:42:03 -0300 | [diff] [blame] | 3301 | /* |
| 3302 | * When IPS gets enabled, the pipe CRC changes. Since IPS gets |
| 3303 | * enabled and disabled dynamically based on package C states, |
| 3304 | * user space can't make reliable use of the CRCs, so let's just |
| 3305 | * completely disable it. |
| 3306 | */ |
| 3307 | hsw_disable_ips(crtc); |
| 3308 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 3309 | spin_lock_irq(&pipe_crc->lock); |
| 3310 | pipe_crc->head = 0; |
| 3311 | pipe_crc->tail = 0; |
| 3312 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | 4b58436 | 2013-10-15 18:55:33 +0100 | [diff] [blame] | 3313 | } |
| 3314 | |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 3315 | pipe_crc->source = source; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3316 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3317 | I915_WRITE(PIPE_CRC_CTL(pipe), val); |
| 3318 | POSTING_READ(PIPE_CRC_CTL(pipe)); |
| 3319 | |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 3320 | /* real source -> none transition */ |
| 3321 | if (source == INTEL_PIPE_CRC_SOURCE_NONE) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 3322 | struct intel_pipe_crc_entry *entries; |
Daniel Vetter | a33d710 | 2014-06-06 08:22:08 +0200 | [diff] [blame] | 3323 | struct intel_crtc *crtc = |
| 3324 | to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]); |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 3325 | |
Damien Lespiau | 7cd6ccf | 2013-10-15 18:55:38 +0100 | [diff] [blame] | 3326 | DRM_DEBUG_DRIVER("stopping CRCs for pipe %c\n", |
| 3327 | pipe_name(pipe)); |
| 3328 | |
Daniel Vetter | a33d710 | 2014-06-06 08:22:08 +0200 | [diff] [blame] | 3329 | drm_modeset_lock(&crtc->base.mutex, NULL); |
| 3330 | if (crtc->active) |
| 3331 | intel_wait_for_vblank(dev, pipe); |
| 3332 | drm_modeset_unlock(&crtc->base.mutex); |
Daniel Vetter | bcf17ab | 2013-10-16 22:55:50 +0200 | [diff] [blame] | 3333 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 3334 | spin_lock_irq(&pipe_crc->lock); |
| 3335 | entries = pipe_crc->entries; |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 3336 | pipe_crc->entries = NULL; |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 3337 | spin_unlock_irq(&pipe_crc->lock); |
| 3338 | |
| 3339 | kfree(entries); |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 3340 | |
| 3341 | if (IS_G4X(dev)) |
| 3342 | g4x_undo_pipe_scramble_reset(dev, pipe); |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 3343 | else if (IS_VALLEYVIEW(dev)) |
| 3344 | vlv_undo_pipe_scramble_reset(dev, pipe); |
Daniel Vetter | fabf6e5 | 2014-05-29 14:10:22 +0200 | [diff] [blame] | 3345 | else if (IS_HASWELL(dev) && pipe == PIPE_A) |
| 3346 | hsw_undo_trans_edp_pipe_A_crc_wa(dev); |
Paulo Zanoni | 8c740dc | 2014-10-17 18:42:03 -0300 | [diff] [blame] | 3347 | |
| 3348 | hsw_enable_ips(crtc); |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 3349 | } |
| 3350 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3351 | return 0; |
| 3352 | } |
| 3353 | |
| 3354 | /* |
| 3355 | * Parse pipe CRC command strings: |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3356 | * command: wsp* object wsp+ name wsp+ source wsp* |
| 3357 | * object: 'pipe' |
| 3358 | * name: (A | B | C) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3359 | * source: (none | plane1 | plane2 | pf) |
| 3360 | * wsp: (#0x20 | #0x9 | #0xA)+ |
| 3361 | * |
| 3362 | * eg.: |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3363 | * "pipe A plane1" -> Start CRC computations on plane1 of pipe A |
| 3364 | * "pipe A none" -> Stop CRC |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3365 | */ |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3366 | 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] | 3367 | { |
| 3368 | int n_words = 0; |
| 3369 | |
| 3370 | while (*buf) { |
| 3371 | char *end; |
| 3372 | |
| 3373 | /* skip leading white space */ |
| 3374 | buf = skip_spaces(buf); |
| 3375 | if (!*buf) |
| 3376 | break; /* end of buffer */ |
| 3377 | |
| 3378 | /* find end of word */ |
| 3379 | for (end = buf; *end && !isspace(*end); end++) |
| 3380 | ; |
| 3381 | |
| 3382 | if (n_words == max_words) { |
| 3383 | DRM_DEBUG_DRIVER("too many words, allowed <= %d\n", |
| 3384 | max_words); |
| 3385 | return -EINVAL; /* ran out of words[] before bytes */ |
| 3386 | } |
| 3387 | |
| 3388 | if (*end) |
| 3389 | *end++ = '\0'; |
| 3390 | words[n_words++] = buf; |
| 3391 | buf = end; |
| 3392 | } |
| 3393 | |
| 3394 | return n_words; |
| 3395 | } |
| 3396 | |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3397 | enum intel_pipe_crc_object { |
| 3398 | PIPE_CRC_OBJECT_PIPE, |
| 3399 | }; |
| 3400 | |
Daniel Vetter | e8dfcf7 | 2013-10-16 11:51:54 +0200 | [diff] [blame] | 3401 | static const char * const pipe_crc_objects[] = { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3402 | "pipe", |
| 3403 | }; |
| 3404 | |
| 3405 | static int |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3406 | 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] | 3407 | { |
| 3408 | int i; |
| 3409 | |
| 3410 | for (i = 0; i < ARRAY_SIZE(pipe_crc_objects); i++) |
| 3411 | if (!strcmp(buf, pipe_crc_objects[i])) { |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3412 | *o = i; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3413 | return 0; |
| 3414 | } |
| 3415 | |
| 3416 | return -EINVAL; |
| 3417 | } |
| 3418 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3419 | 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] | 3420 | { |
| 3421 | const char name = buf[0]; |
| 3422 | |
| 3423 | if (name < 'A' || name >= pipe_name(I915_MAX_PIPES)) |
| 3424 | return -EINVAL; |
| 3425 | |
| 3426 | *pipe = name - 'A'; |
| 3427 | |
| 3428 | return 0; |
| 3429 | } |
| 3430 | |
| 3431 | static int |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3432 | 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] | 3433 | { |
| 3434 | int i; |
| 3435 | |
| 3436 | for (i = 0; i < ARRAY_SIZE(pipe_crc_sources); i++) |
| 3437 | if (!strcmp(buf, pipe_crc_sources[i])) { |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3438 | *s = i; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3439 | return 0; |
| 3440 | } |
| 3441 | |
| 3442 | return -EINVAL; |
| 3443 | } |
| 3444 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3445 | 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] | 3446 | { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3447 | #define N_WORDS 3 |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3448 | int n_words; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3449 | char *words[N_WORDS]; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3450 | enum pipe pipe; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3451 | enum intel_pipe_crc_object object; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3452 | enum intel_pipe_crc_source source; |
| 3453 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3454 | n_words = display_crc_ctl_tokenize(buf, words, N_WORDS); |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3455 | if (n_words != N_WORDS) { |
| 3456 | DRM_DEBUG_DRIVER("tokenize failed, a command is %d words\n", |
| 3457 | N_WORDS); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3458 | return -EINVAL; |
| 3459 | } |
| 3460 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3461 | if (display_crc_ctl_parse_object(words[0], &object) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3462 | DRM_DEBUG_DRIVER("unknown object %s\n", words[0]); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3463 | return -EINVAL; |
| 3464 | } |
| 3465 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3466 | if (display_crc_ctl_parse_pipe(words[1], &pipe) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3467 | DRM_DEBUG_DRIVER("unknown pipe %s\n", words[1]); |
| 3468 | return -EINVAL; |
| 3469 | } |
| 3470 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3471 | if (display_crc_ctl_parse_source(words[2], &source) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 3472 | DRM_DEBUG_DRIVER("unknown source %s\n", words[2]); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3473 | return -EINVAL; |
| 3474 | } |
| 3475 | |
| 3476 | return pipe_crc_set_source(dev, pipe, source); |
| 3477 | } |
| 3478 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3479 | static ssize_t display_crc_ctl_write(struct file *file, const char __user *ubuf, |
| 3480 | size_t len, loff_t *offp) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3481 | { |
| 3482 | struct seq_file *m = file->private_data; |
| 3483 | struct drm_device *dev = m->private; |
| 3484 | char *tmpbuf; |
| 3485 | int ret; |
| 3486 | |
| 3487 | if (len == 0) |
| 3488 | return 0; |
| 3489 | |
| 3490 | if (len > PAGE_SIZE - 1) { |
| 3491 | DRM_DEBUG_DRIVER("expected <%lu bytes into pipe crc control\n", |
| 3492 | PAGE_SIZE); |
| 3493 | return -E2BIG; |
| 3494 | } |
| 3495 | |
| 3496 | tmpbuf = kmalloc(len + 1, GFP_KERNEL); |
| 3497 | if (!tmpbuf) |
| 3498 | return -ENOMEM; |
| 3499 | |
| 3500 | if (copy_from_user(tmpbuf, ubuf, len)) { |
| 3501 | ret = -EFAULT; |
| 3502 | goto out; |
| 3503 | } |
| 3504 | tmpbuf[len] = '\0'; |
| 3505 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3506 | ret = display_crc_ctl_parse(dev, tmpbuf, len); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3507 | |
| 3508 | out: |
| 3509 | kfree(tmpbuf); |
| 3510 | if (ret < 0) |
| 3511 | return ret; |
| 3512 | |
| 3513 | *offp += len; |
| 3514 | return len; |
| 3515 | } |
| 3516 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3517 | static const struct file_operations i915_display_crc_ctl_fops = { |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3518 | .owner = THIS_MODULE, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3519 | .open = display_crc_ctl_open, |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3520 | .read = seq_read, |
| 3521 | .llseek = seq_lseek, |
| 3522 | .release = single_release, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3523 | .write = display_crc_ctl_write |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 3524 | }; |
| 3525 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3526 | static void wm_latency_show(struct seq_file *m, const uint16_t wm[8]) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3527 | { |
| 3528 | struct drm_device *dev = m->private; |
Damien Lespiau | 546c81f | 2014-05-13 15:30:26 +0100 | [diff] [blame] | 3529 | int num_levels = ilk_wm_max_level(dev) + 1; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3530 | int level; |
| 3531 | |
| 3532 | drm_modeset_lock_all(dev); |
| 3533 | |
| 3534 | for (level = 0; level < num_levels; level++) { |
| 3535 | unsigned int latency = wm[level]; |
| 3536 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3537 | /* |
| 3538 | * - WM1+ latency values in 0.5us units |
| 3539 | * - latencies are in us on gen9 |
| 3540 | */ |
| 3541 | if (INTEL_INFO(dev)->gen >= 9) |
| 3542 | latency *= 10; |
| 3543 | else if (level > 0) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3544 | latency *= 5; |
| 3545 | |
| 3546 | seq_printf(m, "WM%d %u (%u.%u usec)\n", |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3547 | level, wm[level], latency / 10, latency % 10); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3548 | } |
| 3549 | |
| 3550 | drm_modeset_unlock_all(dev); |
| 3551 | } |
| 3552 | |
| 3553 | static int pri_wm_latency_show(struct seq_file *m, void *data) |
| 3554 | { |
| 3555 | struct drm_device *dev = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3556 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3557 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3558 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3559 | if (INTEL_INFO(dev)->gen >= 9) |
| 3560 | latencies = dev_priv->wm.skl_latency; |
| 3561 | else |
| 3562 | latencies = to_i915(dev)->wm.pri_latency; |
| 3563 | |
| 3564 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3565 | |
| 3566 | return 0; |
| 3567 | } |
| 3568 | |
| 3569 | static int spr_wm_latency_show(struct seq_file *m, void *data) |
| 3570 | { |
| 3571 | struct drm_device *dev = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3572 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3573 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3574 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3575 | if (INTEL_INFO(dev)->gen >= 9) |
| 3576 | latencies = dev_priv->wm.skl_latency; |
| 3577 | else |
| 3578 | latencies = to_i915(dev)->wm.spr_latency; |
| 3579 | |
| 3580 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3581 | |
| 3582 | return 0; |
| 3583 | } |
| 3584 | |
| 3585 | static int cur_wm_latency_show(struct seq_file *m, void *data) |
| 3586 | { |
| 3587 | struct drm_device *dev = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3588 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3589 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3590 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3591 | if (INTEL_INFO(dev)->gen >= 9) |
| 3592 | latencies = dev_priv->wm.skl_latency; |
| 3593 | else |
| 3594 | latencies = to_i915(dev)->wm.cur_latency; |
| 3595 | |
| 3596 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3597 | |
| 3598 | return 0; |
| 3599 | } |
| 3600 | |
| 3601 | static int pri_wm_latency_open(struct inode *inode, struct file *file) |
| 3602 | { |
| 3603 | struct drm_device *dev = inode->i_private; |
| 3604 | |
Sonika Jindal | 9ad0257 | 2014-07-21 15:23:39 +0530 | [diff] [blame] | 3605 | if (HAS_GMCH_DISPLAY(dev)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3606 | return -ENODEV; |
| 3607 | |
| 3608 | return single_open(file, pri_wm_latency_show, dev); |
| 3609 | } |
| 3610 | |
| 3611 | static int spr_wm_latency_open(struct inode *inode, struct file *file) |
| 3612 | { |
| 3613 | struct drm_device *dev = inode->i_private; |
| 3614 | |
Sonika Jindal | 9ad0257 | 2014-07-21 15:23:39 +0530 | [diff] [blame] | 3615 | if (HAS_GMCH_DISPLAY(dev)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3616 | return -ENODEV; |
| 3617 | |
| 3618 | return single_open(file, spr_wm_latency_show, dev); |
| 3619 | } |
| 3620 | |
| 3621 | static int cur_wm_latency_open(struct inode *inode, struct file *file) |
| 3622 | { |
| 3623 | struct drm_device *dev = inode->i_private; |
| 3624 | |
Sonika Jindal | 9ad0257 | 2014-07-21 15:23:39 +0530 | [diff] [blame] | 3625 | if (HAS_GMCH_DISPLAY(dev)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3626 | return -ENODEV; |
| 3627 | |
| 3628 | return single_open(file, cur_wm_latency_show, dev); |
| 3629 | } |
| 3630 | |
| 3631 | static ssize_t wm_latency_write(struct file *file, const char __user *ubuf, |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3632 | size_t len, loff_t *offp, uint16_t wm[8]) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3633 | { |
| 3634 | struct seq_file *m = file->private_data; |
| 3635 | struct drm_device *dev = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3636 | uint16_t new[8] = { 0 }; |
Damien Lespiau | 546c81f | 2014-05-13 15:30:26 +0100 | [diff] [blame] | 3637 | int num_levels = ilk_wm_max_level(dev) + 1; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3638 | int level; |
| 3639 | int ret; |
| 3640 | char tmp[32]; |
| 3641 | |
| 3642 | if (len >= sizeof(tmp)) |
| 3643 | return -EINVAL; |
| 3644 | |
| 3645 | if (copy_from_user(tmp, ubuf, len)) |
| 3646 | return -EFAULT; |
| 3647 | |
| 3648 | tmp[len] = '\0'; |
| 3649 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3650 | ret = sscanf(tmp, "%hu %hu %hu %hu %hu %hu %hu %hu", |
| 3651 | &new[0], &new[1], &new[2], &new[3], |
| 3652 | &new[4], &new[5], &new[6], &new[7]); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3653 | if (ret != num_levels) |
| 3654 | return -EINVAL; |
| 3655 | |
| 3656 | drm_modeset_lock_all(dev); |
| 3657 | |
| 3658 | for (level = 0; level < num_levels; level++) |
| 3659 | wm[level] = new[level]; |
| 3660 | |
| 3661 | drm_modeset_unlock_all(dev); |
| 3662 | |
| 3663 | return len; |
| 3664 | } |
| 3665 | |
| 3666 | |
| 3667 | static ssize_t pri_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3668 | size_t len, loff_t *offp) |
| 3669 | { |
| 3670 | struct seq_file *m = file->private_data; |
| 3671 | struct drm_device *dev = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3672 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3673 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3674 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3675 | if (INTEL_INFO(dev)->gen >= 9) |
| 3676 | latencies = dev_priv->wm.skl_latency; |
| 3677 | else |
| 3678 | latencies = to_i915(dev)->wm.pri_latency; |
| 3679 | |
| 3680 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3681 | } |
| 3682 | |
| 3683 | static ssize_t spr_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3684 | size_t len, loff_t *offp) |
| 3685 | { |
| 3686 | struct seq_file *m = file->private_data; |
| 3687 | struct drm_device *dev = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3688 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3689 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3690 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3691 | if (INTEL_INFO(dev)->gen >= 9) |
| 3692 | latencies = dev_priv->wm.skl_latency; |
| 3693 | else |
| 3694 | latencies = to_i915(dev)->wm.spr_latency; |
| 3695 | |
| 3696 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3697 | } |
| 3698 | |
| 3699 | static ssize_t cur_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3700 | size_t len, loff_t *offp) |
| 3701 | { |
| 3702 | struct seq_file *m = file->private_data; |
| 3703 | struct drm_device *dev = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3704 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3705 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3706 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame^] | 3707 | if (INTEL_INFO(dev)->gen >= 9) |
| 3708 | latencies = dev_priv->wm.skl_latency; |
| 3709 | else |
| 3710 | latencies = to_i915(dev)->wm.cur_latency; |
| 3711 | |
| 3712 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3713 | } |
| 3714 | |
| 3715 | static const struct file_operations i915_pri_wm_latency_fops = { |
| 3716 | .owner = THIS_MODULE, |
| 3717 | .open = pri_wm_latency_open, |
| 3718 | .read = seq_read, |
| 3719 | .llseek = seq_lseek, |
| 3720 | .release = single_release, |
| 3721 | .write = pri_wm_latency_write |
| 3722 | }; |
| 3723 | |
| 3724 | static const struct file_operations i915_spr_wm_latency_fops = { |
| 3725 | .owner = THIS_MODULE, |
| 3726 | .open = spr_wm_latency_open, |
| 3727 | .read = seq_read, |
| 3728 | .llseek = seq_lseek, |
| 3729 | .release = single_release, |
| 3730 | .write = spr_wm_latency_write |
| 3731 | }; |
| 3732 | |
| 3733 | static const struct file_operations i915_cur_wm_latency_fops = { |
| 3734 | .owner = THIS_MODULE, |
| 3735 | .open = cur_wm_latency_open, |
| 3736 | .read = seq_read, |
| 3737 | .llseek = seq_lseek, |
| 3738 | .release = single_release, |
| 3739 | .write = cur_wm_latency_write |
| 3740 | }; |
| 3741 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3742 | static int |
| 3743 | i915_wedged_get(void *data, u64 *val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3744 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3745 | struct drm_device *dev = data; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 3746 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3747 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3748 | *val = atomic_read(&dev_priv->gpu_error.reset_counter); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3749 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3750 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3751 | } |
| 3752 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3753 | static int |
| 3754 | i915_wedged_set(void *data, u64 val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3755 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3756 | struct drm_device *dev = data; |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 3757 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3758 | |
| 3759 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3760 | |
Mika Kuoppala | 5817446 | 2014-02-25 17:11:26 +0200 | [diff] [blame] | 3761 | i915_handle_error(dev, val, |
| 3762 | "Manually setting wedged to %llu", val); |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 3763 | |
| 3764 | intel_runtime_pm_put(dev_priv); |
| 3765 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3766 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3767 | } |
| 3768 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3769 | DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops, |
| 3770 | i915_wedged_get, i915_wedged_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 3771 | "%llu\n"); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3772 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3773 | static int |
| 3774 | i915_ring_stop_get(void *data, u64 *val) |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3775 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3776 | struct drm_device *dev = data; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 3777 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3778 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3779 | *val = dev_priv->gpu_error.stop_rings; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3780 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3781 | return 0; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3782 | } |
| 3783 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3784 | static int |
| 3785 | i915_ring_stop_set(void *data, u64 val) |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3786 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3787 | struct drm_device *dev = data; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3788 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3789 | int ret; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3790 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3791 | DRM_DEBUG_DRIVER("Stopping rings 0x%08llx\n", val); |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3792 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 3793 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 3794 | if (ret) |
| 3795 | return ret; |
| 3796 | |
Daniel Vetter | 99584db | 2012-11-14 17:14:04 +0100 | [diff] [blame] | 3797 | dev_priv->gpu_error.stop_rings = val; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3798 | mutex_unlock(&dev->struct_mutex); |
| 3799 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3800 | return 0; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 3801 | } |
| 3802 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3803 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_stop_fops, |
| 3804 | i915_ring_stop_get, i915_ring_stop_set, |
| 3805 | "0x%08llx\n"); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 3806 | |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 3807 | static int |
| 3808 | i915_ring_missed_irq_get(void *data, u64 *val) |
| 3809 | { |
| 3810 | struct drm_device *dev = data; |
| 3811 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3812 | |
| 3813 | *val = dev_priv->gpu_error.missed_irq_rings; |
| 3814 | return 0; |
| 3815 | } |
| 3816 | |
| 3817 | static int |
| 3818 | i915_ring_missed_irq_set(void *data, u64 val) |
| 3819 | { |
| 3820 | struct drm_device *dev = data; |
| 3821 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3822 | int ret; |
| 3823 | |
| 3824 | /* Lock against concurrent debugfs callers */ |
| 3825 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 3826 | if (ret) |
| 3827 | return ret; |
| 3828 | dev_priv->gpu_error.missed_irq_rings = val; |
| 3829 | mutex_unlock(&dev->struct_mutex); |
| 3830 | |
| 3831 | return 0; |
| 3832 | } |
| 3833 | |
| 3834 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops, |
| 3835 | i915_ring_missed_irq_get, i915_ring_missed_irq_set, |
| 3836 | "0x%08llx\n"); |
| 3837 | |
| 3838 | static int |
| 3839 | i915_ring_test_irq_get(void *data, u64 *val) |
| 3840 | { |
| 3841 | struct drm_device *dev = data; |
| 3842 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3843 | |
| 3844 | *val = dev_priv->gpu_error.test_irq_rings; |
| 3845 | |
| 3846 | return 0; |
| 3847 | } |
| 3848 | |
| 3849 | static int |
| 3850 | i915_ring_test_irq_set(void *data, u64 val) |
| 3851 | { |
| 3852 | struct drm_device *dev = data; |
| 3853 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3854 | int ret; |
| 3855 | |
| 3856 | DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val); |
| 3857 | |
| 3858 | /* Lock against concurrent debugfs callers */ |
| 3859 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 3860 | if (ret) |
| 3861 | return ret; |
| 3862 | |
| 3863 | dev_priv->gpu_error.test_irq_rings = val; |
| 3864 | mutex_unlock(&dev->struct_mutex); |
| 3865 | |
| 3866 | return 0; |
| 3867 | } |
| 3868 | |
| 3869 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops, |
| 3870 | i915_ring_test_irq_get, i915_ring_test_irq_set, |
| 3871 | "0x%08llx\n"); |
| 3872 | |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3873 | #define DROP_UNBOUND 0x1 |
| 3874 | #define DROP_BOUND 0x2 |
| 3875 | #define DROP_RETIRE 0x4 |
| 3876 | #define DROP_ACTIVE 0x8 |
| 3877 | #define DROP_ALL (DROP_UNBOUND | \ |
| 3878 | DROP_BOUND | \ |
| 3879 | DROP_RETIRE | \ |
| 3880 | DROP_ACTIVE) |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3881 | static int |
| 3882 | i915_drop_caches_get(void *data, u64 *val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3883 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3884 | *val = DROP_ALL; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3885 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3886 | return 0; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3887 | } |
| 3888 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3889 | static int |
| 3890 | i915_drop_caches_set(void *data, u64 val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3891 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3892 | struct drm_device *dev = data; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3893 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3894 | int ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3895 | |
Ben Widawsky | 2f9fe5f | 2013-11-25 09:54:37 -0800 | [diff] [blame] | 3896 | DRM_DEBUG("Dropping caches: 0x%08llx\n", val); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3897 | |
| 3898 | /* No need to check and wait for gpu resets, only libdrm auto-restarts |
| 3899 | * on ioctls on -EAGAIN. */ |
| 3900 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 3901 | if (ret) |
| 3902 | return ret; |
| 3903 | |
| 3904 | if (val & DROP_ACTIVE) { |
| 3905 | ret = i915_gpu_idle(dev); |
| 3906 | if (ret) |
| 3907 | goto unlock; |
| 3908 | } |
| 3909 | |
| 3910 | if (val & (DROP_RETIRE | DROP_ACTIVE)) |
| 3911 | i915_gem_retire_requests(dev); |
| 3912 | |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 3913 | if (val & DROP_BOUND) |
| 3914 | i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_BOUND); |
Chris Wilson | 4ad72b7 | 2014-09-03 19:23:37 +0100 | [diff] [blame] | 3915 | |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 3916 | if (val & DROP_UNBOUND) |
| 3917 | i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_UNBOUND); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3918 | |
| 3919 | unlock: |
| 3920 | mutex_unlock(&dev->struct_mutex); |
| 3921 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3922 | return ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3923 | } |
| 3924 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3925 | DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops, |
| 3926 | i915_drop_caches_get, i915_drop_caches_set, |
| 3927 | "0x%08llx\n"); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 3928 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3929 | static int |
| 3930 | i915_max_freq_get(void *data, u64 *val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3931 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3932 | struct drm_device *dev = data; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 3933 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3934 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3935 | |
Tom O'Rourke | daa3afb | 2014-05-30 16:22:10 -0700 | [diff] [blame] | 3936 | if (INTEL_INFO(dev)->gen < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3937 | return -ENODEV; |
| 3938 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 3939 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 3940 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 3941 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3942 | if (ret) |
| 3943 | return ret; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3944 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 3945 | if (IS_VALLEYVIEW(dev)) |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3946 | *val = vlv_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 3947 | else |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3948 | *val = dev_priv->rps.max_freq_softlimit * GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 3949 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3950 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3951 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3952 | } |
| 3953 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3954 | static int |
| 3955 | i915_max_freq_set(void *data, u64 val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3956 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3957 | struct drm_device *dev = data; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3958 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 3959 | u32 rp_state_cap, hw_max, hw_min; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3960 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3961 | |
Tom O'Rourke | daa3afb | 2014-05-30 16:22:10 -0700 | [diff] [blame] | 3962 | if (INTEL_INFO(dev)->gen < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3963 | return -ENODEV; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3964 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 3965 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 3966 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3967 | DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3968 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 3969 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3970 | if (ret) |
| 3971 | return ret; |
| 3972 | |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3973 | /* |
| 3974 | * Turbo will still be enabled, but won't go above the set value. |
| 3975 | */ |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 3976 | if (IS_VALLEYVIEW(dev)) { |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 3977 | val = vlv_freq_opcode(dev_priv, val); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 3978 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 3979 | hw_max = dev_priv->rps.max_freq; |
| 3980 | hw_min = dev_priv->rps.min_freq; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 3981 | } else { |
| 3982 | do_div(val, GT_FREQUENCY_MULTIPLIER); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 3983 | |
| 3984 | rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3985 | hw_max = dev_priv->rps.max_freq; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 3986 | hw_min = (rp_state_cap >> 16) & 0xff; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 3987 | } |
| 3988 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3989 | if (val < hw_min || val > hw_max || val < dev_priv->rps.min_freq_softlimit) { |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 3990 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 3991 | return -EINVAL; |
| 3992 | } |
| 3993 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3994 | dev_priv->rps.max_freq_softlimit = val; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 3995 | |
| 3996 | if (IS_VALLEYVIEW(dev)) |
| 3997 | valleyview_set_rps(dev, val); |
| 3998 | else |
| 3999 | gen6_set_rps(dev, val); |
| 4000 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4001 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4002 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4003 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4004 | } |
| 4005 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4006 | DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops, |
| 4007 | i915_max_freq_get, i915_max_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 4008 | "%llu\n"); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4009 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4010 | static int |
| 4011 | i915_min_freq_get(void *data, u64 *val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4012 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4013 | struct drm_device *dev = data; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 4014 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4015 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4016 | |
Tom O'Rourke | daa3afb | 2014-05-30 16:22:10 -0700 | [diff] [blame] | 4017 | if (INTEL_INFO(dev)->gen < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4018 | return -ENODEV; |
| 4019 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 4020 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 4021 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4022 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4023 | if (ret) |
| 4024 | return ret; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4025 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4026 | if (IS_VALLEYVIEW(dev)) |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4027 | *val = vlv_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4028 | else |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4029 | *val = dev_priv->rps.min_freq_softlimit * GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4030 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4031 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4032 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4033 | } |
| 4034 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4035 | static int |
| 4036 | i915_min_freq_set(void *data, u64 val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4037 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4038 | struct drm_device *dev = data; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4039 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4040 | u32 rp_state_cap, hw_max, hw_min; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4041 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4042 | |
Tom O'Rourke | daa3afb | 2014-05-30 16:22:10 -0700 | [diff] [blame] | 4043 | if (INTEL_INFO(dev)->gen < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4044 | return -ENODEV; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4045 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 4046 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 4047 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4048 | DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4049 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4050 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4051 | if (ret) |
| 4052 | return ret; |
| 4053 | |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4054 | /* |
| 4055 | * Turbo will still be enabled, but won't go below the set value. |
| 4056 | */ |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4057 | if (IS_VALLEYVIEW(dev)) { |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 4058 | val = vlv_freq_opcode(dev_priv, val); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4059 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 4060 | hw_max = dev_priv->rps.max_freq; |
| 4061 | hw_min = dev_priv->rps.min_freq; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4062 | } else { |
| 4063 | do_div(val, GT_FREQUENCY_MULTIPLIER); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4064 | |
| 4065 | rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4066 | hw_max = dev_priv->rps.max_freq; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4067 | hw_min = (rp_state_cap >> 16) & 0xff; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4068 | } |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4069 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4070 | if (val < hw_min || val > hw_max || val > dev_priv->rps.max_freq_softlimit) { |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4071 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 4072 | return -EINVAL; |
| 4073 | } |
| 4074 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4075 | dev_priv->rps.min_freq_softlimit = val; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4076 | |
| 4077 | if (IS_VALLEYVIEW(dev)) |
| 4078 | valleyview_set_rps(dev, val); |
| 4079 | else |
| 4080 | gen6_set_rps(dev, val); |
| 4081 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4082 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4083 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4084 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4085 | } |
| 4086 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4087 | DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops, |
| 4088 | i915_min_freq_get, i915_min_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 4089 | "%llu\n"); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4090 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4091 | static int |
| 4092 | i915_cache_sharing_get(void *data, u64 *val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4093 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4094 | struct drm_device *dev = data; |
Jani Nikula | e277a1f | 2014-03-31 14:27:14 +0300 | [diff] [blame] | 4095 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4096 | u32 snpcr; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4097 | int ret; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4098 | |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4099 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 4100 | return -ENODEV; |
| 4101 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 4102 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 4103 | if (ret) |
| 4104 | return ret; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4105 | intel_runtime_pm_get(dev_priv); |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 4106 | |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4107 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4108 | |
| 4109 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4110 | mutex_unlock(&dev_priv->dev->struct_mutex); |
| 4111 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4112 | *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4113 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4114 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4115 | } |
| 4116 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4117 | static int |
| 4118 | i915_cache_sharing_set(void *data, u64 val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4119 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4120 | struct drm_device *dev = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4121 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4122 | u32 snpcr; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4123 | |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4124 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 4125 | return -ENODEV; |
| 4126 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4127 | if (val > 3) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4128 | return -EINVAL; |
| 4129 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4130 | intel_runtime_pm_get(dev_priv); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4131 | DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4132 | |
| 4133 | /* Update the cache sharing policy here as well */ |
| 4134 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 4135 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 4136 | snpcr |= (val << GEN6_MBC_SNPCR_SHIFT); |
| 4137 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
| 4138 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4139 | intel_runtime_pm_put(dev_priv); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4140 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4141 | } |
| 4142 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4143 | DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops, |
| 4144 | i915_cache_sharing_get, i915_cache_sharing_set, |
| 4145 | "%llu\n"); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4146 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4147 | static int i915_forcewake_open(struct inode *inode, struct file *file) |
| 4148 | { |
| 4149 | struct drm_device *dev = inode->i_private; |
| 4150 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4151 | |
Daniel Vetter | 075edca | 2012-01-24 09:44:28 +0100 | [diff] [blame] | 4152 | if (INTEL_INFO(dev)->gen < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4153 | return 0; |
| 4154 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 4155 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4156 | |
| 4157 | return 0; |
| 4158 | } |
| 4159 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 4160 | static int i915_forcewake_release(struct inode *inode, struct file *file) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4161 | { |
| 4162 | struct drm_device *dev = inode->i_private; |
| 4163 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4164 | |
Daniel Vetter | 075edca | 2012-01-24 09:44:28 +0100 | [diff] [blame] | 4165 | if (INTEL_INFO(dev)->gen < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4166 | return 0; |
| 4167 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 4168 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4169 | |
| 4170 | return 0; |
| 4171 | } |
| 4172 | |
| 4173 | static const struct file_operations i915_forcewake_fops = { |
| 4174 | .owner = THIS_MODULE, |
| 4175 | .open = i915_forcewake_open, |
| 4176 | .release = i915_forcewake_release, |
| 4177 | }; |
| 4178 | |
| 4179 | static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor) |
| 4180 | { |
| 4181 | struct drm_device *dev = minor->dev; |
| 4182 | struct dentry *ent; |
| 4183 | |
| 4184 | ent = debugfs_create_file("i915_forcewake_user", |
Ben Widawsky | 8eb5729 | 2011-05-11 15:10:58 -0700 | [diff] [blame] | 4185 | S_IRUSR, |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4186 | root, dev, |
| 4187 | &i915_forcewake_fops); |
Wei Yongjun | f3c5fe9 | 2013-12-16 14:13:25 +0800 | [diff] [blame] | 4188 | if (!ent) |
| 4189 | return -ENOMEM; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4190 | |
Ben Widawsky | 8eb5729 | 2011-05-11 15:10:58 -0700 | [diff] [blame] | 4191 | return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4192 | } |
| 4193 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 4194 | static int i915_debugfs_create(struct dentry *root, |
| 4195 | struct drm_minor *minor, |
| 4196 | const char *name, |
| 4197 | const struct file_operations *fops) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4198 | { |
| 4199 | struct drm_device *dev = minor->dev; |
| 4200 | struct dentry *ent; |
| 4201 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 4202 | ent = debugfs_create_file(name, |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4203 | S_IRUGO | S_IWUSR, |
| 4204 | root, dev, |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 4205 | fops); |
Wei Yongjun | f3c5fe9 | 2013-12-16 14:13:25 +0800 | [diff] [blame] | 4206 | if (!ent) |
| 4207 | return -ENOMEM; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4208 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 4209 | return drm_add_fake_info_node(minor, ent, fops); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4210 | } |
| 4211 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 4212 | static const struct drm_info_list i915_debugfs_list[] = { |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 4213 | {"i915_capabilities", i915_capabilities, 0}, |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 4214 | {"i915_gem_objects", i915_gem_object_info, 0}, |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 4215 | {"i915_gem_gtt", i915_gem_gtt_info, 0}, |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 4216 | {"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST}, |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 4217 | {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST}, |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 4218 | {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST}, |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 4219 | {"i915_gem_stolen", i915_gem_stolen_list_info }, |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 4220 | {"i915_gem_pageflip", i915_gem_pageflip_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4221 | {"i915_gem_request", i915_gem_request_info, 0}, |
| 4222 | {"i915_gem_seqno", i915_gem_seqno_info, 0}, |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 4223 | {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4224 | {"i915_gem_interrupt", i915_interrupt_info, 0}, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 4225 | {"i915_gem_hws", i915_hws_info, 0, (void *)RCS}, |
| 4226 | {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS}, |
| 4227 | {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS}, |
Xiang, Haihao | 9010ebf | 2013-05-29 09:22:36 -0700 | [diff] [blame] | 4228 | {"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS}, |
Deepak S | adb4bd1 | 2014-03-31 11:30:02 +0530 | [diff] [blame] | 4229 | {"i915_frequency_info", i915_frequency_info, 0}, |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 4230 | {"i915_drpc_info", i915_drpc_info, 0}, |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 4231 | {"i915_emon_status", i915_emon_status, 0}, |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 4232 | {"i915_ring_freq_table", i915_ring_freq_table, 0}, |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 4233 | {"i915_fbc_status", i915_fbc_status, 0}, |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 4234 | {"i915_ips_status", i915_ips_status, 0}, |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 4235 | {"i915_sr_status", i915_sr_status, 0}, |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 4236 | {"i915_opregion", i915_opregion, 0}, |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 4237 | {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0}, |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 4238 | {"i915_context_status", i915_context_status, 0}, |
Ben Widawsky | c0ab1ae9 | 2014-08-07 13:24:26 +0100 | [diff] [blame] | 4239 | {"i915_dump_lrc", i915_dump_lrc, 0}, |
Oscar Mateo | 4ba70e4 | 2014-08-07 13:23:20 +0100 | [diff] [blame] | 4240 | {"i915_execlists", i915_execlists, 0}, |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4241 | {"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0}, |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 4242 | {"i915_swizzle_info", i915_swizzle_info, 0}, |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 4243 | {"i915_ppgtt_info", i915_ppgtt_info, 0}, |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 4244 | {"i915_llc", i915_llc, 0}, |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 4245 | {"i915_edp_psr_status", i915_edp_psr_status, 0}, |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 4246 | {"i915_sink_crc_eDP1", i915_sink_crc, 0}, |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 4247 | {"i915_energy_uJ", i915_energy_uJ, 0}, |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 4248 | {"i915_pc8_status", i915_pc8_status, 0}, |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 4249 | {"i915_power_domain_info", i915_power_domain_info, 0}, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 4250 | {"i915_display_info", i915_display_info, 0}, |
Ben Widawsky | e04934c | 2014-06-30 09:53:42 -0700 | [diff] [blame] | 4251 | {"i915_semaphore_status", i915_semaphore_status, 0}, |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 4252 | {"i915_shared_dplls_info", i915_shared_dplls_info, 0}, |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 4253 | {"i915_dp_mst_info", i915_dp_mst_info, 0}, |
Damien Lespiau | 1ed1ef9 | 2014-08-30 16:50:59 +0100 | [diff] [blame] | 4254 | {"i915_wa_registers", i915_wa_registers, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4255 | }; |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4256 | #define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4257 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 4258 | static const struct i915_debugfs_files { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4259 | const char *name; |
| 4260 | const struct file_operations *fops; |
| 4261 | } i915_debugfs_files[] = { |
| 4262 | {"i915_wedged", &i915_wedged_fops}, |
| 4263 | {"i915_max_freq", &i915_max_freq_fops}, |
| 4264 | {"i915_min_freq", &i915_min_freq_fops}, |
| 4265 | {"i915_cache_sharing", &i915_cache_sharing_fops}, |
| 4266 | {"i915_ring_stop", &i915_ring_stop_fops}, |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4267 | {"i915_ring_missed_irq", &i915_ring_missed_irq_fops}, |
| 4268 | {"i915_ring_test_irq", &i915_ring_test_irq_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4269 | {"i915_gem_drop_caches", &i915_drop_caches_fops}, |
| 4270 | {"i915_error_state", &i915_error_state_fops}, |
| 4271 | {"i915_next_seqno", &i915_next_seqno_fops}, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 4272 | {"i915_display_crc_ctl", &i915_display_crc_ctl_fops}, |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 4273 | {"i915_pri_wm_latency", &i915_pri_wm_latency_fops}, |
| 4274 | {"i915_spr_wm_latency", &i915_spr_wm_latency_fops}, |
| 4275 | {"i915_cur_wm_latency", &i915_cur_wm_latency_fops}, |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 4276 | {"i915_fbc_false_color", &i915_fbc_fc_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4277 | }; |
| 4278 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4279 | void intel_display_crc_init(struct drm_device *dev) |
| 4280 | { |
| 4281 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | b378360 | 2013-11-14 11:30:42 +0100 | [diff] [blame] | 4282 | enum pipe pipe; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4283 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 4284 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | b378360 | 2013-11-14 11:30:42 +0100 | [diff] [blame] | 4285 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4286 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 4287 | pipe_crc->opened = false; |
| 4288 | spin_lock_init(&pipe_crc->lock); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4289 | init_waitqueue_head(&pipe_crc->wq); |
| 4290 | } |
| 4291 | } |
| 4292 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4293 | int i915_debugfs_init(struct drm_minor *minor) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4294 | { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4295 | int ret, i; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4296 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4297 | ret = i915_forcewake_create(minor->debugfs_root, minor); |
| 4298 | if (ret) |
| 4299 | return ret; |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 4300 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4301 | for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) { |
| 4302 | ret = i915_pipe_crc_create(minor->debugfs_root, minor, i); |
| 4303 | if (ret) |
| 4304 | return ret; |
| 4305 | } |
| 4306 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4307 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
| 4308 | ret = i915_debugfs_create(minor->debugfs_root, minor, |
| 4309 | i915_debugfs_files[i].name, |
| 4310 | i915_debugfs_files[i].fops); |
| 4311 | if (ret) |
| 4312 | return ret; |
| 4313 | } |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 4314 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4315 | return drm_debugfs_create_files(i915_debugfs_list, |
| 4316 | I915_DEBUGFS_ENTRIES, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4317 | minor->debugfs_root, minor); |
| 4318 | } |
| 4319 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4320 | void i915_debugfs_cleanup(struct drm_minor *minor) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4321 | { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4322 | int i; |
| 4323 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4324 | drm_debugfs_remove_files(i915_debugfs_list, |
| 4325 | I915_DEBUGFS_ENTRIES, minor); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4326 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4327 | drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops, |
| 4328 | 1, minor); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4329 | |
Daniel Vetter | e309a99 | 2013-10-16 22:55:51 +0200 | [diff] [blame] | 4330 | for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) { |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4331 | struct drm_info_list *info_list = |
| 4332 | (struct drm_info_list *)&i915_pipe_crc_data[i]; |
| 4333 | |
| 4334 | drm_debugfs_remove_files(info_list, 1, minor); |
| 4335 | } |
| 4336 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4337 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
| 4338 | struct drm_info_list *info_list = |
| 4339 | (struct drm_info_list *) i915_debugfs_files[i].fops; |
| 4340 | |
| 4341 | drm_debugfs_remove_files(info_list, 1, minor); |
| 4342 | } |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4343 | } |