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