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 | |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 29 | #include <linux/debugfs.h> |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 30 | #include <linux/sort.h> |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 31 | #include <linux/sched/mm.h> |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 32 | #include "intel_drv.h" |
Sagar Arun Kamble | a269574 | 2017-11-16 19:02:41 +0530 | [diff] [blame] | 33 | #include "intel_guc_submission.h" |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 34 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 35 | static inline struct drm_i915_private *node_to_i915(struct drm_info_node *node) |
| 36 | { |
| 37 | return to_i915(node->minor->dev); |
| 38 | } |
| 39 | |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 40 | static int i915_capabilities(struct seq_file *m, void *data) |
| 41 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 42 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 43 | const struct intel_device_info *info = INTEL_INFO(dev_priv); |
Michal Wajdeczko | a8c9b84 | 2017-12-19 11:43:44 +0000 | [diff] [blame] | 44 | struct drm_printer p = drm_seq_file_printer(m); |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 45 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 46 | seq_printf(m, "gen: %d\n", INTEL_GEN(dev_priv)); |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 47 | seq_printf(m, "platform: %s\n", intel_platform_name(info->platform)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 48 | seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev_priv)); |
Chris Wilson | 418e3cd | 2017-02-06 21:36:08 +0000 | [diff] [blame] | 49 | |
Michal Wajdeczko | a8c9b84 | 2017-12-19 11:43:44 +0000 | [diff] [blame] | 50 | intel_device_info_dump_flags(info, &p); |
Michal Wajdeczko | 5fbbe8d | 2017-12-21 21:57:34 +0000 | [diff] [blame] | 51 | intel_device_info_dump_runtime(info, &p); |
Chris Wilson | 3fed180 | 2018-02-07 21:05:43 +0000 | [diff] [blame] | 52 | intel_driver_caps_print(&dev_priv->caps, &p); |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 53 | |
Chris Wilson | 418e3cd | 2017-02-06 21:36:08 +0000 | [diff] [blame] | 54 | kernel_param_lock(THIS_MODULE); |
Michal Wajdeczko | acfb997 | 2017-12-19 11:43:46 +0000 | [diff] [blame] | 55 | i915_params_dump(&i915_modparams, &p); |
Chris Wilson | 418e3cd | 2017-02-06 21:36:08 +0000 | [diff] [blame] | 56 | kernel_param_unlock(THIS_MODULE); |
| 57 | |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 58 | return 0; |
| 59 | } |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 60 | |
Imre Deak | a7363de | 2016-05-12 16:18:52 +0300 | [diff] [blame] | 61 | static char get_active_flag(struct drm_i915_gem_object *obj) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 62 | { |
Chris Wilson | 573adb3 | 2016-08-04 16:32:39 +0100 | [diff] [blame] | 63 | return i915_gem_object_is_active(obj) ? '*' : ' '; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Imre Deak | a7363de | 2016-05-12 16:18:52 +0300 | [diff] [blame] | 66 | static char get_pin_flag(struct drm_i915_gem_object *obj) |
Tvrtko Ursulin | be12a86 | 2016-04-15 11:34:52 +0100 | [diff] [blame] | 67 | { |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 68 | return obj->pin_global ? 'p' : ' '; |
Tvrtko Ursulin | be12a86 | 2016-04-15 11:34:52 +0100 | [diff] [blame] | 69 | } |
| 70 | |
Imre Deak | a7363de | 2016-05-12 16:18:52 +0300 | [diff] [blame] | 71 | static char get_tiling_flag(struct drm_i915_gem_object *obj) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 72 | { |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 73 | switch (i915_gem_object_get_tiling(obj)) { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 74 | default: |
Tvrtko Ursulin | be12a86 | 2016-04-15 11:34:52 +0100 | [diff] [blame] | 75 | case I915_TILING_NONE: return ' '; |
| 76 | case I915_TILING_X: return 'X'; |
| 77 | case I915_TILING_Y: return 'Y'; |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 78 | } |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Imre Deak | a7363de | 2016-05-12 16:18:52 +0300 | [diff] [blame] | 81 | static char get_global_flag(struct drm_i915_gem_object *obj) |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 82 | { |
Chris Wilson | a65adaf | 2017-10-09 09:43:57 +0100 | [diff] [blame] | 83 | return obj->userfault_count ? 'g' : ' '; |
Tvrtko Ursulin | be12a86 | 2016-04-15 11:34:52 +0100 | [diff] [blame] | 84 | } |
| 85 | |
Imre Deak | a7363de | 2016-05-12 16:18:52 +0300 | [diff] [blame] | 86 | static char get_pin_mapped_flag(struct drm_i915_gem_object *obj) |
Tvrtko Ursulin | be12a86 | 2016-04-15 11:34:52 +0100 | [diff] [blame] | 87 | { |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 88 | return obj->mm.mapping ? 'M' : ' '; |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 91 | static u64 i915_gem_obj_total_ggtt_size(struct drm_i915_gem_object *obj) |
| 92 | { |
| 93 | u64 size = 0; |
| 94 | struct i915_vma *vma; |
| 95 | |
Chris Wilson | e2189dd | 2017-12-07 21:14:07 +0000 | [diff] [blame] | 96 | for_each_ggtt_vma(vma, obj) { |
| 97 | if (drm_mm_node_allocated(&vma->node)) |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 98 | size += vma->node.size; |
| 99 | } |
| 100 | |
| 101 | return size; |
| 102 | } |
| 103 | |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 104 | static const char * |
| 105 | stringify_page_sizes(unsigned int page_sizes, char *buf, size_t len) |
| 106 | { |
| 107 | size_t x = 0; |
| 108 | |
| 109 | switch (page_sizes) { |
| 110 | case 0: |
| 111 | return ""; |
| 112 | case I915_GTT_PAGE_SIZE_4K: |
| 113 | return "4K"; |
| 114 | case I915_GTT_PAGE_SIZE_64K: |
| 115 | return "64K"; |
| 116 | case I915_GTT_PAGE_SIZE_2M: |
| 117 | return "2M"; |
| 118 | default: |
| 119 | if (!buf) |
| 120 | return "M"; |
| 121 | |
| 122 | if (page_sizes & I915_GTT_PAGE_SIZE_2M) |
| 123 | x += snprintf(buf + x, len - x, "2M, "); |
| 124 | if (page_sizes & I915_GTT_PAGE_SIZE_64K) |
| 125 | x += snprintf(buf + x, len - x, "64K, "); |
| 126 | if (page_sizes & I915_GTT_PAGE_SIZE_4K) |
| 127 | x += snprintf(buf + x, len - x, "4K, "); |
| 128 | buf[x-2] = '\0'; |
| 129 | |
| 130 | return buf; |
| 131 | } |
| 132 | } |
| 133 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 134 | static void |
| 135 | describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj) |
| 136 | { |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 137 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 138 | struct intel_engine_cs *engine; |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 139 | struct i915_vma *vma; |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 140 | unsigned int frontbuffer_bits; |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 141 | int pin_count = 0; |
| 142 | |
Chris Wilson | 188c1ab | 2016-04-03 14:14:20 +0100 | [diff] [blame] | 143 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 144 | |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 145 | seq_printf(m, "%pK: %c%c%c%c%c %8zdKiB %02x %02x %s%s%s", |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 146 | &obj->base, |
Tvrtko Ursulin | be12a86 | 2016-04-15 11:34:52 +0100 | [diff] [blame] | 147 | get_active_flag(obj), |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 148 | get_pin_flag(obj), |
| 149 | get_tiling_flag(obj), |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 150 | get_global_flag(obj), |
Tvrtko Ursulin | be12a86 | 2016-04-15 11:34:52 +0100 | [diff] [blame] | 151 | get_pin_mapped_flag(obj), |
Eric Anholt | a05a586 | 2011-12-20 08:54:15 -0800 | [diff] [blame] | 152 | obj->base.size / 1024, |
Christian König | c0a51fd | 2018-02-16 13:43:38 +0100 | [diff] [blame] | 153 | obj->read_domains, |
| 154 | obj->write_domain, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 155 | i915_cache_level_str(dev_priv, obj->cache_level), |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 156 | obj->mm.dirty ? " dirty" : "", |
| 157 | obj->mm.madv == I915_MADV_DONTNEED ? " purgeable" : ""); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 158 | if (obj->base.name) |
| 159 | seq_printf(m, " (name: %d)", obj->base.name); |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 160 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 161 | if (i915_vma_is_pinned(vma)) |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 162 | pin_count++; |
Dan Carpenter | ba0635ff | 2015-02-25 16:17:48 +0300 | [diff] [blame] | 163 | } |
| 164 | seq_printf(m, " (pinned x %d)", pin_count); |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 165 | if (obj->pin_global) |
| 166 | seq_printf(m, " (global)"); |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 167 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 168 | if (!drm_mm_node_allocated(&vma->node)) |
| 169 | continue; |
| 170 | |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 171 | seq_printf(m, " (%sgtt offset: %08llx, size: %08llx, pages: %s", |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 172 | i915_vma_is_ggtt(vma) ? "g" : "pp", |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 173 | vma->node.start, vma->node.size, |
| 174 | stringify_page_sizes(vma->page_sizes.gtt, NULL, 0)); |
Chris Wilson | 2197685 | 2017-01-12 11:21:08 +0000 | [diff] [blame] | 175 | if (i915_vma_is_ggtt(vma)) { |
| 176 | switch (vma->ggtt_view.type) { |
| 177 | case I915_GGTT_VIEW_NORMAL: |
| 178 | seq_puts(m, ", normal"); |
| 179 | break; |
| 180 | |
| 181 | case I915_GGTT_VIEW_PARTIAL: |
| 182 | seq_printf(m, ", partial [%08llx+%x]", |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 183 | vma->ggtt_view.partial.offset << PAGE_SHIFT, |
| 184 | vma->ggtt_view.partial.size << PAGE_SHIFT); |
Chris Wilson | 2197685 | 2017-01-12 11:21:08 +0000 | [diff] [blame] | 185 | break; |
| 186 | |
| 187 | case I915_GGTT_VIEW_ROTATED: |
| 188 | seq_printf(m, ", rotated [(%ux%u, stride=%u, offset=%u), (%ux%u, stride=%u, offset=%u)]", |
Chris Wilson | 8bab1193 | 2017-01-14 00:28:25 +0000 | [diff] [blame] | 189 | vma->ggtt_view.rotated.plane[0].width, |
| 190 | vma->ggtt_view.rotated.plane[0].height, |
| 191 | vma->ggtt_view.rotated.plane[0].stride, |
| 192 | vma->ggtt_view.rotated.plane[0].offset, |
| 193 | vma->ggtt_view.rotated.plane[1].width, |
| 194 | vma->ggtt_view.rotated.plane[1].height, |
| 195 | vma->ggtt_view.rotated.plane[1].stride, |
| 196 | vma->ggtt_view.rotated.plane[1].offset); |
Chris Wilson | 2197685 | 2017-01-12 11:21:08 +0000 | [diff] [blame] | 197 | break; |
| 198 | |
| 199 | default: |
| 200 | MISSING_CASE(vma->ggtt_view.type); |
| 201 | break; |
| 202 | } |
| 203 | } |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 204 | if (vma->fence) |
| 205 | seq_printf(m, " , fence: %d%s", |
| 206 | vma->fence->id, |
| 207 | i915_gem_active_isset(&vma->last_fence) ? "*" : ""); |
Chris Wilson | 596c592 | 2016-02-26 11:03:20 +0000 | [diff] [blame] | 208 | seq_puts(m, ")"); |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 209 | } |
Chris Wilson | c1ad11f | 2012-11-15 11:32:21 +0000 | [diff] [blame] | 210 | if (obj->stolen) |
Thierry Reding | 440fd52 | 2015-01-23 09:05:06 +0100 | [diff] [blame] | 211 | seq_printf(m, " (stolen: %08llx)", obj->stolen->start); |
Chris Wilson | 27c01aa | 2016-08-04 07:52:30 +0100 | [diff] [blame] | 212 | |
Chris Wilson | d07f0e5 | 2016-10-28 13:58:44 +0100 | [diff] [blame] | 213 | engine = i915_gem_object_last_write_engine(obj); |
Chris Wilson | 27c01aa | 2016-08-04 07:52:30 +0100 | [diff] [blame] | 214 | if (engine) |
| 215 | seq_printf(m, " (%s)", engine->name); |
| 216 | |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 217 | frontbuffer_bits = atomic_read(&obj->frontbuffer_bits); |
| 218 | if (frontbuffer_bits) |
| 219 | seq_printf(m, " (frontbuffer: 0x%03x)", frontbuffer_bits); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 220 | } |
| 221 | |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 222 | static int obj_rank_by_stolen(const void *A, const void *B) |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 223 | { |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 224 | const struct drm_i915_gem_object *a = |
| 225 | *(const struct drm_i915_gem_object **)A; |
| 226 | const struct drm_i915_gem_object *b = |
| 227 | *(const struct drm_i915_gem_object **)B; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 228 | |
Rasmus Villemoes | 2d05fa1 | 2015-09-28 23:08:50 +0200 | [diff] [blame] | 229 | if (a->stolen->start < b->stolen->start) |
| 230 | return -1; |
| 231 | if (a->stolen->start > b->stolen->start) |
| 232 | return 1; |
| 233 | return 0; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | static int i915_gem_stolen_list_info(struct seq_file *m, void *data) |
| 237 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 238 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 239 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 240 | struct drm_i915_gem_object **objects; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 241 | struct drm_i915_gem_object *obj; |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 242 | u64 total_obj_size, total_gtt_size; |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 243 | unsigned long total, count, n; |
| 244 | int ret; |
| 245 | |
| 246 | total = READ_ONCE(dev_priv->mm.object_count); |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 247 | objects = kvmalloc_array(total, sizeof(*objects), GFP_KERNEL); |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 248 | if (!objects) |
| 249 | return -ENOMEM; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 250 | |
| 251 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 252 | if (ret) |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 253 | goto out; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 254 | |
| 255 | total_obj_size = total_gtt_size = count = 0; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 256 | |
| 257 | spin_lock(&dev_priv->mm.obj_lock); |
| 258 | list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) { |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 259 | if (count == total) |
| 260 | break; |
| 261 | |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 262 | if (obj->stolen == NULL) |
| 263 | continue; |
| 264 | |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 265 | objects[count++] = obj; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 266 | total_obj_size += obj->base.size; |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 267 | total_gtt_size += i915_gem_obj_total_ggtt_size(obj); |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 268 | |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 269 | } |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 270 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, mm.link) { |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 271 | if (count == total) |
| 272 | break; |
| 273 | |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 274 | if (obj->stolen == NULL) |
| 275 | continue; |
| 276 | |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 277 | objects[count++] = obj; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 278 | total_obj_size += obj->base.size; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 279 | } |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 280 | spin_unlock(&dev_priv->mm.obj_lock); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 281 | |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 282 | sort(objects, count, sizeof(*objects), obj_rank_by_stolen, NULL); |
| 283 | |
| 284 | seq_puts(m, "Stolen:\n"); |
| 285 | for (n = 0; n < count; n++) { |
| 286 | seq_puts(m, " "); |
| 287 | describe_obj(m, objects[n]); |
| 288 | seq_putc(m, '\n'); |
| 289 | } |
| 290 | seq_printf(m, "Total %lu objects, %llu bytes, %llu GTT size\n", |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 291 | count, total_obj_size, total_gtt_size); |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 292 | |
| 293 | mutex_unlock(&dev->struct_mutex); |
| 294 | out: |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 295 | kvfree(objects); |
Chris Wilson | e637d2c | 2017-03-16 13:19:57 +0000 | [diff] [blame] | 296 | return ret; |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 297 | } |
| 298 | |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 299 | struct file_stats { |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 300 | struct drm_i915_file_private *file_priv; |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 301 | unsigned long count; |
| 302 | u64 total, unbound; |
| 303 | u64 global, shared; |
| 304 | u64 active, inactive; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | static int per_file_stats(int id, void *ptr, void *data) |
| 308 | { |
| 309 | struct drm_i915_gem_object *obj = ptr; |
| 310 | struct file_stats *stats = data; |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 311 | struct i915_vma *vma; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 312 | |
Chris Wilson | 0caf81b | 2017-06-17 12:57:44 +0100 | [diff] [blame] | 313 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 314 | |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 315 | stats->count++; |
| 316 | stats->total += obj->base.size; |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 317 | if (!obj->bind_count) |
| 318 | stats->unbound += obj->base.size; |
Chris Wilson | c67a17e | 2014-03-19 13:45:46 +0000 | [diff] [blame] | 319 | if (obj->base.name || obj->base.dma_buf) |
| 320 | stats->shared += obj->base.size; |
| 321 | |
Chris Wilson | 894eeec | 2016-08-04 07:52:20 +0100 | [diff] [blame] | 322 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
| 323 | if (!drm_mm_node_allocated(&vma->node)) |
| 324 | continue; |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 325 | |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 326 | if (i915_vma_is_ggtt(vma)) { |
Chris Wilson | 894eeec | 2016-08-04 07:52:20 +0100 | [diff] [blame] | 327 | stats->global += vma->node.size; |
| 328 | } else { |
| 329 | struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vma->vm); |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 330 | |
Chris Wilson | 82ad644 | 2018-06-05 16:37:58 +0100 | [diff] [blame] | 331 | if (ppgtt->vm.file != stats->file_priv) |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 332 | continue; |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 333 | } |
Chris Wilson | 894eeec | 2016-08-04 07:52:20 +0100 | [diff] [blame] | 334 | |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 335 | if (i915_vma_is_active(vma)) |
Chris Wilson | 894eeec | 2016-08-04 07:52:20 +0100 | [diff] [blame] | 336 | stats->active += vma->node.size; |
| 337 | else |
| 338 | stats->inactive += vma->node.size; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | return 0; |
| 342 | } |
| 343 | |
Chris Wilson | b0da1b7 | 2015-04-07 16:20:40 +0100 | [diff] [blame] | 344 | #define print_file_stats(m, name, stats) do { \ |
| 345 | if (stats.count) \ |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 346 | seq_printf(m, "%s: %lu objects, %llu bytes (%llu active, %llu inactive, %llu global, %llu shared, %llu unbound)\n", \ |
Chris Wilson | b0da1b7 | 2015-04-07 16:20:40 +0100 | [diff] [blame] | 347 | name, \ |
| 348 | stats.count, \ |
| 349 | stats.total, \ |
| 350 | stats.active, \ |
| 351 | stats.inactive, \ |
| 352 | stats.global, \ |
| 353 | stats.shared, \ |
| 354 | stats.unbound); \ |
| 355 | } while (0) |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 356 | |
| 357 | static void print_batch_pool_stats(struct seq_file *m, |
| 358 | struct drm_i915_private *dev_priv) |
| 359 | { |
| 360 | struct drm_i915_gem_object *obj; |
| 361 | struct file_stats stats; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 362 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 363 | enum intel_engine_id id; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 364 | int j; |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 365 | |
| 366 | memset(&stats, 0, sizeof(stats)); |
| 367 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 368 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 369 | for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) { |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 370 | list_for_each_entry(obj, |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 371 | &engine->batch_pool.cache_list[j], |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 372 | batch_pool_link) |
| 373 | per_file_stats(0, obj, &stats); |
| 374 | } |
Chris Wilson | 06fbca7 | 2015-04-07 16:20:36 +0100 | [diff] [blame] | 375 | } |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 376 | |
Chris Wilson | b0da1b7 | 2015-04-07 16:20:40 +0100 | [diff] [blame] | 377 | print_file_stats(m, "[k]batch pool", stats); |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 378 | } |
| 379 | |
Chris Wilson | ab82a06 | 2018-04-30 14:15:01 +0100 | [diff] [blame] | 380 | static int per_file_ctx_stats(int idx, void *ptr, void *data) |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 381 | { |
| 382 | struct i915_gem_context *ctx = ptr; |
Chris Wilson | ab82a06 | 2018-04-30 14:15:01 +0100 | [diff] [blame] | 383 | struct intel_engine_cs *engine; |
| 384 | enum intel_engine_id id; |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 385 | |
Chris Wilson | ab82a06 | 2018-04-30 14:15:01 +0100 | [diff] [blame] | 386 | for_each_engine(engine, ctx->i915, id) { |
| 387 | struct intel_context *ce = to_intel_context(ctx, engine); |
| 388 | |
| 389 | if (ce->state) |
| 390 | per_file_stats(0, ce->state->obj, data); |
| 391 | if (ce->ring) |
| 392 | per_file_stats(0, ce->ring->vma->obj, data); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | static void print_context_stats(struct seq_file *m, |
| 399 | struct drm_i915_private *dev_priv) |
| 400 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 401 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 402 | struct file_stats stats; |
| 403 | struct drm_file *file; |
| 404 | |
| 405 | memset(&stats, 0, sizeof(stats)); |
| 406 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 407 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 408 | if (dev_priv->kernel_context) |
| 409 | per_file_ctx_stats(0, dev_priv->kernel_context, &stats); |
| 410 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 411 | list_for_each_entry(file, &dev->filelist, lhead) { |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 412 | struct drm_i915_file_private *fpriv = file->driver_priv; |
| 413 | idr_for_each(&fpriv->context_idr, per_file_ctx_stats, &stats); |
| 414 | } |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 415 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 416 | |
| 417 | print_file_stats(m, "[k]contexts", stats); |
| 418 | } |
| 419 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 420 | static int i915_gem_object_info(struct seq_file *m, void *data) |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 421 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 422 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 423 | struct drm_device *dev = &dev_priv->drm; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 424 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 425 | u32 count, mapped_count, purgeable_count, dpy_count, huge_count; |
| 426 | u64 size, mapped_size, purgeable_size, dpy_size, huge_size; |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 427 | struct drm_i915_gem_object *obj; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 428 | unsigned int page_sizes = 0; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 429 | struct drm_file *file; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 430 | char buf[80]; |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 431 | int ret; |
| 432 | |
| 433 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 434 | if (ret) |
| 435 | return ret; |
| 436 | |
Chris Wilson | 3ef7f22 | 2016-10-18 13:02:48 +0100 | [diff] [blame] | 437 | seq_printf(m, "%u objects, %llu bytes\n", |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 438 | dev_priv->mm.object_count, |
| 439 | dev_priv->mm.object_memory); |
| 440 | |
Chris Wilson | 1544c42 | 2016-08-15 13:18:16 +0100 | [diff] [blame] | 441 | size = count = 0; |
| 442 | mapped_size = mapped_count = 0; |
| 443 | purgeable_size = purgeable_count = 0; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 444 | huge_size = huge_count = 0; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 445 | |
| 446 | spin_lock(&dev_priv->mm.obj_lock); |
| 447 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, mm.link) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 448 | size += obj->base.size; |
| 449 | ++count; |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 450 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 451 | if (obj->mm.madv == I915_MADV_DONTNEED) { |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 452 | purgeable_size += obj->base.size; |
| 453 | ++purgeable_count; |
| 454 | } |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 455 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 456 | if (obj->mm.mapping) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 457 | mapped_count++; |
| 458 | mapped_size += obj->base.size; |
Tvrtko Ursulin | be19b10 | 2016-04-15 11:34:53 +0100 | [diff] [blame] | 459 | } |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 460 | |
| 461 | if (obj->mm.page_sizes.sg > I915_GTT_PAGE_SIZE) { |
| 462 | huge_count++; |
| 463 | huge_size += obj->base.size; |
| 464 | page_sizes |= obj->mm.page_sizes.sg; |
| 465 | } |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 466 | } |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 467 | seq_printf(m, "%u unbound objects, %llu bytes\n", count, size); |
| 468 | |
| 469 | size = count = dpy_size = dpy_count = 0; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 470 | list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 471 | size += obj->base.size; |
| 472 | ++count; |
| 473 | |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 474 | if (obj->pin_global) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 475 | dpy_size += obj->base.size; |
| 476 | ++dpy_count; |
| 477 | } |
| 478 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 479 | if (obj->mm.madv == I915_MADV_DONTNEED) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 480 | purgeable_size += obj->base.size; |
| 481 | ++purgeable_count; |
| 482 | } |
| 483 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 484 | if (obj->mm.mapping) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 485 | mapped_count++; |
| 486 | mapped_size += obj->base.size; |
| 487 | } |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 488 | |
| 489 | if (obj->mm.page_sizes.sg > I915_GTT_PAGE_SIZE) { |
| 490 | huge_count++; |
| 491 | huge_size += obj->base.size; |
| 492 | page_sizes |= obj->mm.page_sizes.sg; |
| 493 | } |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 494 | } |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 495 | spin_unlock(&dev_priv->mm.obj_lock); |
| 496 | |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 497 | seq_printf(m, "%u bound objects, %llu bytes\n", |
| 498 | count, size); |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 499 | seq_printf(m, "%u purgeable objects, %llu bytes\n", |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 500 | purgeable_count, purgeable_size); |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 501 | seq_printf(m, "%u mapped objects, %llu bytes\n", |
| 502 | mapped_count, mapped_size); |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 503 | seq_printf(m, "%u huge-paged objects (%s) %llu bytes\n", |
| 504 | huge_count, |
| 505 | stringify_page_sizes(page_sizes, buf, sizeof(buf)), |
| 506 | huge_size); |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 507 | seq_printf(m, "%u display objects (globally pinned), %llu bytes\n", |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 508 | dpy_count, dpy_size); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 509 | |
Matthew Auld | b7128ef | 2017-12-11 15:18:22 +0000 | [diff] [blame] | 510 | seq_printf(m, "%llu [%pa] gtt total\n", |
Chris Wilson | 82ad644 | 2018-06-05 16:37:58 +0100 | [diff] [blame] | 511 | ggtt->vm.total, &ggtt->mappable_end); |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 512 | seq_printf(m, "Supported page sizes: %s\n", |
| 513 | stringify_page_sizes(INTEL_INFO(dev_priv)->page_sizes, |
| 514 | buf, sizeof(buf))); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 515 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 516 | seq_putc(m, '\n'); |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 517 | print_batch_pool_stats(m, dev_priv); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 518 | mutex_unlock(&dev->struct_mutex); |
| 519 | |
| 520 | mutex_lock(&dev->filelist_mutex); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 521 | print_context_stats(m, dev_priv); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 522 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 523 | struct file_stats stats; |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 524 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 525 | struct i915_request *request; |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 526 | struct task_struct *task; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 527 | |
Chris Wilson | 0caf81b | 2017-06-17 12:57:44 +0100 | [diff] [blame] | 528 | mutex_lock(&dev->struct_mutex); |
| 529 | |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 530 | memset(&stats, 0, sizeof(stats)); |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 531 | stats.file_priv = file->driver_priv; |
Chris Wilson | 5b5ffff | 2014-06-17 09:56:24 +0100 | [diff] [blame] | 532 | spin_lock(&file->table_lock); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 533 | idr_for_each(&file->object_idr, per_file_stats, &stats); |
Chris Wilson | 5b5ffff | 2014-06-17 09:56:24 +0100 | [diff] [blame] | 534 | spin_unlock(&file->table_lock); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 535 | /* |
| 536 | * Although we have a valid reference on file->pid, that does |
| 537 | * not guarantee that the task_struct who called get_pid() is |
| 538 | * still alive (e.g. get_pid(current) => fork() => exit()). |
| 539 | * Therefore, we need to protect this ->comm access using RCU. |
| 540 | */ |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 541 | request = list_first_entry_or_null(&file_priv->mm.request_list, |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 542 | struct i915_request, |
Chris Wilson | c8659ef | 2017-03-02 12:25:25 +0000 | [diff] [blame] | 543 | client_link); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 544 | rcu_read_lock(); |
Chris Wilson | 4e0d64d | 2018-05-17 22:26:30 +0100 | [diff] [blame] | 545 | task = pid_task(request && request->gem_context->pid ? |
| 546 | request->gem_context->pid : file->pid, |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 547 | PIDTYPE_PID); |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 548 | print_file_stats(m, task ? task->comm : "<unknown>", stats); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 549 | rcu_read_unlock(); |
Chris Wilson | 0caf81b | 2017-06-17 12:57:44 +0100 | [diff] [blame] | 550 | |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 551 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 552 | } |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 553 | mutex_unlock(&dev->filelist_mutex); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 554 | |
| 555 | return 0; |
| 556 | } |
| 557 | |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 558 | static int i915_gem_gtt_info(struct seq_file *m, void *data) |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 559 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 560 | struct drm_info_node *node = m->private; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 561 | struct drm_i915_private *dev_priv = node_to_i915(node); |
| 562 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 563 | struct drm_i915_gem_object **objects; |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 564 | struct drm_i915_gem_object *obj; |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 565 | u64 total_obj_size, total_gtt_size; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 566 | unsigned long nobject, n; |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 567 | int count, ret; |
| 568 | |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 569 | nobject = READ_ONCE(dev_priv->mm.object_count); |
| 570 | objects = kvmalloc_array(nobject, sizeof(*objects), GFP_KERNEL); |
| 571 | if (!objects) |
| 572 | return -ENOMEM; |
| 573 | |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 574 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 575 | if (ret) |
| 576 | return ret; |
| 577 | |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 578 | count = 0; |
| 579 | spin_lock(&dev_priv->mm.obj_lock); |
| 580 | list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) { |
| 581 | objects[count++] = obj; |
| 582 | if (count == nobject) |
| 583 | break; |
| 584 | } |
| 585 | spin_unlock(&dev_priv->mm.obj_lock); |
| 586 | |
| 587 | total_obj_size = total_gtt_size = 0; |
| 588 | for (n = 0; n < count; n++) { |
| 589 | obj = objects[n]; |
| 590 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 591 | seq_puts(m, " "); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 592 | describe_obj(m, obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 593 | seq_putc(m, '\n'); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 594 | total_obj_size += obj->base.size; |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 595 | total_gtt_size += i915_gem_obj_total_ggtt_size(obj); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | mutex_unlock(&dev->struct_mutex); |
| 599 | |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 600 | seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n", |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 601 | count, total_obj_size, total_gtt_size); |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 602 | kvfree(objects); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 603 | |
| 604 | return 0; |
| 605 | } |
| 606 | |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 607 | static int i915_gem_batch_pool_info(struct seq_file *m, void *data) |
| 608 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 609 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 610 | struct drm_device *dev = &dev_priv->drm; |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 611 | struct drm_i915_gem_object *obj; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 612 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 613 | enum intel_engine_id id; |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 614 | int total = 0; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 615 | int ret, j; |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 616 | |
| 617 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 618 | if (ret) |
| 619 | return ret; |
| 620 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 621 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 622 | for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) { |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 623 | int count; |
| 624 | |
| 625 | count = 0; |
| 626 | list_for_each_entry(obj, |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 627 | &engine->batch_pool.cache_list[j], |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 628 | batch_pool_link) |
| 629 | count++; |
| 630 | seq_printf(m, "%s cache[%d]: %d objects\n", |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 631 | engine->name, j, count); |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 632 | |
| 633 | list_for_each_entry(obj, |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 634 | &engine->batch_pool.cache_list[j], |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 635 | batch_pool_link) { |
| 636 | seq_puts(m, " "); |
| 637 | describe_obj(m, obj); |
| 638 | seq_putc(m, '\n'); |
| 639 | } |
| 640 | |
| 641 | total += count; |
Chris Wilson | 06fbca7 | 2015-04-07 16:20:36 +0100 | [diff] [blame] | 642 | } |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 643 | } |
| 644 | |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 645 | seq_printf(m, "total: %d\n", total); |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 646 | |
| 647 | mutex_unlock(&dev->struct_mutex); |
| 648 | |
| 649 | return 0; |
| 650 | } |
| 651 | |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 652 | static void gen8_display_interrupt_info(struct seq_file *m) |
| 653 | { |
| 654 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 655 | int pipe; |
| 656 | |
| 657 | for_each_pipe(dev_priv, pipe) { |
| 658 | enum intel_display_power_domain power_domain; |
| 659 | |
| 660 | power_domain = POWER_DOMAIN_PIPE(pipe); |
| 661 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 662 | power_domain)) { |
| 663 | seq_printf(m, "Pipe %c power disabled\n", |
| 664 | pipe_name(pipe)); |
| 665 | continue; |
| 666 | } |
| 667 | seq_printf(m, "Pipe %c IMR:\t%08x\n", |
| 668 | pipe_name(pipe), |
| 669 | I915_READ(GEN8_DE_PIPE_IMR(pipe))); |
| 670 | seq_printf(m, "Pipe %c IIR:\t%08x\n", |
| 671 | pipe_name(pipe), |
| 672 | I915_READ(GEN8_DE_PIPE_IIR(pipe))); |
| 673 | seq_printf(m, "Pipe %c IER:\t%08x\n", |
| 674 | pipe_name(pipe), |
| 675 | I915_READ(GEN8_DE_PIPE_IER(pipe))); |
| 676 | |
| 677 | intel_display_power_put(dev_priv, power_domain); |
| 678 | } |
| 679 | |
| 680 | seq_printf(m, "Display Engine port interrupt mask:\t%08x\n", |
| 681 | I915_READ(GEN8_DE_PORT_IMR)); |
| 682 | seq_printf(m, "Display Engine port interrupt identity:\t%08x\n", |
| 683 | I915_READ(GEN8_DE_PORT_IIR)); |
| 684 | seq_printf(m, "Display Engine port interrupt enable:\t%08x\n", |
| 685 | I915_READ(GEN8_DE_PORT_IER)); |
| 686 | |
| 687 | seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n", |
| 688 | I915_READ(GEN8_DE_MISC_IMR)); |
| 689 | seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n", |
| 690 | I915_READ(GEN8_DE_MISC_IIR)); |
| 691 | seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n", |
| 692 | I915_READ(GEN8_DE_MISC_IER)); |
| 693 | |
| 694 | seq_printf(m, "PCU interrupt mask:\t%08x\n", |
| 695 | I915_READ(GEN8_PCU_IMR)); |
| 696 | seq_printf(m, "PCU interrupt identity:\t%08x\n", |
| 697 | I915_READ(GEN8_PCU_IIR)); |
| 698 | seq_printf(m, "PCU interrupt enable:\t%08x\n", |
| 699 | I915_READ(GEN8_PCU_IER)); |
| 700 | } |
| 701 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 702 | static int i915_interrupt_info(struct seq_file *m, void *data) |
| 703 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 704 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 705 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 706 | enum intel_engine_id id; |
Chris Wilson | 4bb0504 | 2016-09-03 07:53:43 +0100 | [diff] [blame] | 707 | int i, pipe; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 708 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 709 | intel_runtime_pm_get(dev_priv); |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 710 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 711 | if (IS_CHERRYVIEW(dev_priv)) { |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 712 | seq_printf(m, "Master Interrupt Control:\t%08x\n", |
| 713 | I915_READ(GEN8_MASTER_IRQ)); |
| 714 | |
| 715 | seq_printf(m, "Display IER:\t%08x\n", |
| 716 | I915_READ(VLV_IER)); |
| 717 | seq_printf(m, "Display IIR:\t%08x\n", |
| 718 | I915_READ(VLV_IIR)); |
| 719 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 720 | I915_READ(VLV_IIR_RW)); |
| 721 | seq_printf(m, "Display IMR:\t%08x\n", |
| 722 | I915_READ(VLV_IMR)); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 723 | for_each_pipe(dev_priv, pipe) { |
| 724 | enum intel_display_power_domain power_domain; |
| 725 | |
| 726 | power_domain = POWER_DOMAIN_PIPE(pipe); |
| 727 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 728 | power_domain)) { |
| 729 | seq_printf(m, "Pipe %c power disabled\n", |
| 730 | pipe_name(pipe)); |
| 731 | continue; |
| 732 | } |
| 733 | |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 734 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 735 | pipe_name(pipe), |
| 736 | I915_READ(PIPESTAT(pipe))); |
| 737 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 738 | intel_display_power_put(dev_priv, power_domain); |
| 739 | } |
| 740 | |
| 741 | intel_display_power_get(dev_priv, POWER_DOMAIN_INIT); |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 742 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 743 | I915_READ(PORT_HOTPLUG_EN)); |
| 744 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 745 | I915_READ(VLV_DPFLIPSTAT)); |
| 746 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 747 | I915_READ(DPINVGTT)); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 748 | intel_display_power_put(dev_priv, POWER_DOMAIN_INIT); |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 749 | |
| 750 | for (i = 0; i < 4; i++) { |
| 751 | seq_printf(m, "GT Interrupt IMR %d:\t%08x\n", |
| 752 | i, I915_READ(GEN8_GT_IMR(i))); |
| 753 | seq_printf(m, "GT Interrupt IIR %d:\t%08x\n", |
| 754 | i, I915_READ(GEN8_GT_IIR(i))); |
| 755 | seq_printf(m, "GT Interrupt IER %d:\t%08x\n", |
| 756 | i, I915_READ(GEN8_GT_IER(i))); |
| 757 | } |
| 758 | |
| 759 | seq_printf(m, "PCU interrupt mask:\t%08x\n", |
| 760 | I915_READ(GEN8_PCU_IMR)); |
| 761 | seq_printf(m, "PCU interrupt identity:\t%08x\n", |
| 762 | I915_READ(GEN8_PCU_IIR)); |
| 763 | seq_printf(m, "PCU interrupt enable:\t%08x\n", |
| 764 | I915_READ(GEN8_PCU_IER)); |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 765 | } else if (INTEL_GEN(dev_priv) >= 11) { |
| 766 | seq_printf(m, "Master Interrupt Control: %08x\n", |
| 767 | I915_READ(GEN11_GFX_MSTR_IRQ)); |
| 768 | |
| 769 | seq_printf(m, "Render/Copy Intr Enable: %08x\n", |
| 770 | I915_READ(GEN11_RENDER_COPY_INTR_ENABLE)); |
| 771 | seq_printf(m, "VCS/VECS Intr Enable: %08x\n", |
| 772 | I915_READ(GEN11_VCS_VECS_INTR_ENABLE)); |
| 773 | seq_printf(m, "GUC/SG Intr Enable:\t %08x\n", |
| 774 | I915_READ(GEN11_GUC_SG_INTR_ENABLE)); |
| 775 | seq_printf(m, "GPM/WGBOXPERF Intr Enable: %08x\n", |
| 776 | I915_READ(GEN11_GPM_WGBOXPERF_INTR_ENABLE)); |
| 777 | seq_printf(m, "Crypto Intr Enable:\t %08x\n", |
| 778 | I915_READ(GEN11_CRYPTO_RSVD_INTR_ENABLE)); |
| 779 | seq_printf(m, "GUnit/CSME Intr Enable:\t %08x\n", |
| 780 | I915_READ(GEN11_GUNIT_CSME_INTR_ENABLE)); |
| 781 | |
| 782 | seq_printf(m, "Display Interrupt Control:\t%08x\n", |
| 783 | I915_READ(GEN11_DISPLAY_INT_CTL)); |
| 784 | |
| 785 | gen8_display_interrupt_info(m); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 786 | } else if (INTEL_GEN(dev_priv) >= 8) { |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 787 | seq_printf(m, "Master Interrupt Control:\t%08x\n", |
| 788 | I915_READ(GEN8_MASTER_IRQ)); |
| 789 | |
| 790 | for (i = 0; i < 4; i++) { |
| 791 | seq_printf(m, "GT Interrupt IMR %d:\t%08x\n", |
| 792 | i, I915_READ(GEN8_GT_IMR(i))); |
| 793 | seq_printf(m, "GT Interrupt IIR %d:\t%08x\n", |
| 794 | i, I915_READ(GEN8_GT_IIR(i))); |
| 795 | seq_printf(m, "GT Interrupt IER %d:\t%08x\n", |
| 796 | i, I915_READ(GEN8_GT_IER(i))); |
| 797 | } |
| 798 | |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 799 | gen8_display_interrupt_info(m); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 800 | } else if (IS_VALLEYVIEW(dev_priv)) { |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 801 | seq_printf(m, "Display IER:\t%08x\n", |
| 802 | I915_READ(VLV_IER)); |
| 803 | seq_printf(m, "Display IIR:\t%08x\n", |
| 804 | I915_READ(VLV_IIR)); |
| 805 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 806 | I915_READ(VLV_IIR_RW)); |
| 807 | seq_printf(m, "Display IMR:\t%08x\n", |
| 808 | I915_READ(VLV_IMR)); |
Chris Wilson | 4f4631a | 2017-02-10 13:36:32 +0000 | [diff] [blame] | 809 | for_each_pipe(dev_priv, pipe) { |
| 810 | enum intel_display_power_domain power_domain; |
| 811 | |
| 812 | power_domain = POWER_DOMAIN_PIPE(pipe); |
| 813 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 814 | power_domain)) { |
| 815 | seq_printf(m, "Pipe %c power disabled\n", |
| 816 | pipe_name(pipe)); |
| 817 | continue; |
| 818 | } |
| 819 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 820 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 821 | pipe_name(pipe), |
| 822 | I915_READ(PIPESTAT(pipe))); |
Chris Wilson | 4f4631a | 2017-02-10 13:36:32 +0000 | [diff] [blame] | 823 | intel_display_power_put(dev_priv, power_domain); |
| 824 | } |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 825 | |
| 826 | seq_printf(m, "Master IER:\t%08x\n", |
| 827 | I915_READ(VLV_MASTER_IER)); |
| 828 | |
| 829 | seq_printf(m, "Render IER:\t%08x\n", |
| 830 | I915_READ(GTIER)); |
| 831 | seq_printf(m, "Render IIR:\t%08x\n", |
| 832 | I915_READ(GTIIR)); |
| 833 | seq_printf(m, "Render IMR:\t%08x\n", |
| 834 | I915_READ(GTIMR)); |
| 835 | |
| 836 | seq_printf(m, "PM IER:\t\t%08x\n", |
| 837 | I915_READ(GEN6_PMIER)); |
| 838 | seq_printf(m, "PM IIR:\t\t%08x\n", |
| 839 | I915_READ(GEN6_PMIIR)); |
| 840 | seq_printf(m, "PM IMR:\t\t%08x\n", |
| 841 | I915_READ(GEN6_PMIMR)); |
| 842 | |
| 843 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 844 | I915_READ(PORT_HOTPLUG_EN)); |
| 845 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 846 | I915_READ(VLV_DPFLIPSTAT)); |
| 847 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 848 | I915_READ(DPINVGTT)); |
| 849 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 850 | } else if (!HAS_PCH_SPLIT(dev_priv)) { |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 851 | seq_printf(m, "Interrupt enable: %08x\n", |
| 852 | I915_READ(IER)); |
| 853 | seq_printf(m, "Interrupt identity: %08x\n", |
| 854 | I915_READ(IIR)); |
| 855 | seq_printf(m, "Interrupt mask: %08x\n", |
| 856 | I915_READ(IMR)); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 857 | for_each_pipe(dev_priv, pipe) |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 858 | seq_printf(m, "Pipe %c stat: %08x\n", |
| 859 | pipe_name(pipe), |
| 860 | I915_READ(PIPESTAT(pipe))); |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 861 | } else { |
| 862 | seq_printf(m, "North Display Interrupt enable: %08x\n", |
| 863 | I915_READ(DEIER)); |
| 864 | seq_printf(m, "North Display Interrupt identity: %08x\n", |
| 865 | I915_READ(DEIIR)); |
| 866 | seq_printf(m, "North Display Interrupt mask: %08x\n", |
| 867 | I915_READ(DEIMR)); |
| 868 | seq_printf(m, "South Display Interrupt enable: %08x\n", |
| 869 | I915_READ(SDEIER)); |
| 870 | seq_printf(m, "South Display Interrupt identity: %08x\n", |
| 871 | I915_READ(SDEIIR)); |
| 872 | seq_printf(m, "South Display Interrupt mask: %08x\n", |
| 873 | I915_READ(SDEIMR)); |
| 874 | seq_printf(m, "Graphics Interrupt enable: %08x\n", |
| 875 | I915_READ(GTIER)); |
| 876 | seq_printf(m, "Graphics Interrupt identity: %08x\n", |
| 877 | I915_READ(GTIIR)); |
| 878 | seq_printf(m, "Graphics Interrupt mask: %08x\n", |
| 879 | I915_READ(GTIMR)); |
| 880 | } |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 881 | |
| 882 | if (INTEL_GEN(dev_priv) >= 11) { |
| 883 | seq_printf(m, "RCS Intr Mask:\t %08x\n", |
| 884 | I915_READ(GEN11_RCS0_RSVD_INTR_MASK)); |
| 885 | seq_printf(m, "BCS Intr Mask:\t %08x\n", |
| 886 | I915_READ(GEN11_BCS_RSVD_INTR_MASK)); |
| 887 | seq_printf(m, "VCS0/VCS1 Intr Mask:\t %08x\n", |
| 888 | I915_READ(GEN11_VCS0_VCS1_INTR_MASK)); |
| 889 | seq_printf(m, "VCS2/VCS3 Intr Mask:\t %08x\n", |
| 890 | I915_READ(GEN11_VCS2_VCS3_INTR_MASK)); |
| 891 | seq_printf(m, "VECS0/VECS1 Intr Mask:\t %08x\n", |
| 892 | I915_READ(GEN11_VECS0_VECS1_INTR_MASK)); |
| 893 | seq_printf(m, "GUC/SG Intr Mask:\t %08x\n", |
| 894 | I915_READ(GEN11_GUC_SG_INTR_MASK)); |
| 895 | seq_printf(m, "GPM/WGBOXPERF Intr Mask: %08x\n", |
| 896 | I915_READ(GEN11_GPM_WGBOXPERF_INTR_MASK)); |
| 897 | seq_printf(m, "Crypto Intr Mask:\t %08x\n", |
| 898 | I915_READ(GEN11_CRYPTO_RSVD_INTR_MASK)); |
| 899 | seq_printf(m, "Gunit/CSME Intr Mask:\t %08x\n", |
| 900 | I915_READ(GEN11_GUNIT_CSME_INTR_MASK)); |
| 901 | |
| 902 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Chris Wilson | d5acadf | 2017-12-09 10:44:18 +0000 | [diff] [blame] | 903 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 904 | seq_printf(m, |
| 905 | "Graphics Interrupt mask (%s): %08x\n", |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 906 | engine->name, I915_READ_IMR(engine)); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 907 | } |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 908 | } |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 909 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 910 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 911 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 912 | return 0; |
| 913 | } |
| 914 | |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 915 | static int i915_gem_fence_regs_info(struct seq_file *m, void *data) |
| 916 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 917 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 918 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 919 | int i, ret; |
| 920 | |
| 921 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 922 | if (ret) |
| 923 | return ret; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 924 | |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 925 | seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs); |
| 926 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 927 | struct i915_vma *vma = dev_priv->fence_regs[i].vma; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 928 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 929 | seq_printf(m, "Fence %d, pin count = %d, object = ", |
| 930 | i, dev_priv->fence_regs[i].pin_count); |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 931 | if (!vma) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 932 | seq_puts(m, "unused"); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 933 | else |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 934 | describe_obj(m, vma->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 935 | seq_putc(m, '\n'); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 936 | } |
| 937 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 938 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 939 | return 0; |
| 940 | } |
| 941 | |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 942 | #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 943 | static ssize_t gpu_state_read(struct file *file, char __user *ubuf, |
| 944 | size_t count, loff_t *pos) |
| 945 | { |
| 946 | struct i915_gpu_state *error = file->private_data; |
| 947 | struct drm_i915_error_state_buf str; |
| 948 | ssize_t ret; |
| 949 | loff_t tmp; |
| 950 | |
| 951 | if (!error) |
| 952 | return 0; |
| 953 | |
| 954 | ret = i915_error_state_buf_init(&str, error->i915, count, *pos); |
| 955 | if (ret) |
| 956 | return ret; |
| 957 | |
| 958 | ret = i915_error_state_to_str(&str, error); |
| 959 | if (ret) |
| 960 | goto out; |
| 961 | |
| 962 | tmp = 0; |
| 963 | ret = simple_read_from_buffer(ubuf, count, &tmp, str.buf, str.bytes); |
| 964 | if (ret < 0) |
| 965 | goto out; |
| 966 | |
| 967 | *pos = str.start + ret; |
| 968 | out: |
| 969 | i915_error_state_buf_release(&str); |
| 970 | return ret; |
| 971 | } |
| 972 | |
| 973 | static int gpu_state_release(struct inode *inode, struct file *file) |
| 974 | { |
| 975 | i915_gpu_state_put(file->private_data); |
| 976 | return 0; |
| 977 | } |
| 978 | |
| 979 | static int i915_gpu_info_open(struct inode *inode, struct file *file) |
| 980 | { |
Chris Wilson | 090e5fe | 2017-03-28 14:14:07 +0100 | [diff] [blame] | 981 | struct drm_i915_private *i915 = inode->i_private; |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 982 | struct i915_gpu_state *gpu; |
| 983 | |
Chris Wilson | 090e5fe | 2017-03-28 14:14:07 +0100 | [diff] [blame] | 984 | intel_runtime_pm_get(i915); |
| 985 | gpu = i915_capture_gpu_state(i915); |
| 986 | intel_runtime_pm_put(i915); |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 987 | if (!gpu) |
| 988 | return -ENOMEM; |
| 989 | |
| 990 | file->private_data = gpu; |
| 991 | return 0; |
| 992 | } |
| 993 | |
| 994 | static const struct file_operations i915_gpu_info_fops = { |
| 995 | .owner = THIS_MODULE, |
| 996 | .open = i915_gpu_info_open, |
| 997 | .read = gpu_state_read, |
| 998 | .llseek = default_llseek, |
| 999 | .release = gpu_state_release, |
| 1000 | }; |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 1001 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1002 | static ssize_t |
| 1003 | i915_error_state_write(struct file *filp, |
| 1004 | const char __user *ubuf, |
| 1005 | size_t cnt, |
| 1006 | loff_t *ppos) |
| 1007 | { |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1008 | struct i915_gpu_state *error = filp->private_data; |
| 1009 | |
| 1010 | if (!error) |
| 1011 | return 0; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1012 | |
| 1013 | DRM_DEBUG_DRIVER("Resetting error state\n"); |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1014 | i915_reset_error_state(error->i915); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1015 | |
| 1016 | return cnt; |
| 1017 | } |
| 1018 | |
| 1019 | static int i915_error_state_open(struct inode *inode, struct file *file) |
| 1020 | { |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1021 | file->private_data = i915_first_error_state(inode->i_private); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 1022 | return 0; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1023 | } |
| 1024 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1025 | static const struct file_operations i915_error_state_fops = { |
| 1026 | .owner = THIS_MODULE, |
| 1027 | .open = i915_error_state_open, |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1028 | .read = gpu_state_read, |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1029 | .write = i915_error_state_write, |
| 1030 | .llseek = default_llseek, |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1031 | .release = gpu_state_release, |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1032 | }; |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 1033 | #endif |
| 1034 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1035 | static int |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1036 | i915_next_seqno_set(void *data, u64 val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1037 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1038 | struct drm_i915_private *dev_priv = data; |
| 1039 | struct drm_device *dev = &dev_priv->drm; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1040 | int ret; |
| 1041 | |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1042 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1043 | if (ret) |
| 1044 | return ret; |
| 1045 | |
Chris Wilson | 65c475c | 2018-01-02 15:12:31 +0000 | [diff] [blame] | 1046 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 1047 | ret = i915_gem_set_global_seqno(dev, val); |
Chris Wilson | 65c475c | 2018-01-02 15:12:31 +0000 | [diff] [blame] | 1048 | intel_runtime_pm_put(dev_priv); |
| 1049 | |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1050 | mutex_unlock(&dev->struct_mutex); |
| 1051 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1052 | return ret; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1053 | } |
| 1054 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1055 | DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops, |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 1056 | NULL, i915_next_seqno_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 1057 | "0x%llx\n"); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1058 | |
Deepak S | adb4bd1 | 2014-03-31 11:30:02 +0530 | [diff] [blame] | 1059 | static int i915_frequency_info(struct seq_file *m, void *unused) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1060 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1061 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1062 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1063 | int ret = 0; |
| 1064 | |
| 1065 | intel_runtime_pm_get(dev_priv); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1066 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1067 | if (IS_GEN5(dev_priv)) { |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1068 | u16 rgvswctl = I915_READ16(MEMSWCTL); |
| 1069 | u16 rgvstat = I915_READ16(MEMSTAT_ILK); |
| 1070 | |
| 1071 | seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf); |
| 1072 | seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f); |
| 1073 | seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >> |
| 1074 | MEMSTAT_VID_SHIFT); |
| 1075 | seq_printf(m, "Current P-state: %d\n", |
| 1076 | (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1077 | } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Sagar Arun Kamble | 0d6fc92 | 2017-10-10 22:30:02 +0100 | [diff] [blame] | 1078 | u32 rpmodectl, freq_sts; |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1079 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1080 | mutex_lock(&dev_priv->pcu_lock); |
Sagar Arun Kamble | 0d6fc92 | 2017-10-10 22:30:02 +0100 | [diff] [blame] | 1081 | |
| 1082 | rpmodectl = I915_READ(GEN6_RP_CONTROL); |
| 1083 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1084 | yesno(rpmodectl & GEN6_RP_MEDIA_TURBO)); |
| 1085 | seq_printf(m, "HW control enabled: %s\n", |
| 1086 | yesno(rpmodectl & GEN6_RP_ENABLE)); |
| 1087 | seq_printf(m, "SW control enabled: %s\n", |
| 1088 | yesno((rpmodectl & GEN6_RP_MEDIA_MODE_MASK) == |
| 1089 | GEN6_RP_MEDIA_SW_MODE)); |
| 1090 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1091 | freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 1092 | seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts); |
| 1093 | seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq); |
| 1094 | |
| 1095 | seq_printf(m, "actual GPU freq: %d MHz\n", |
| 1096 | intel_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff)); |
| 1097 | |
| 1098 | seq_printf(m, "current GPU freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1099 | intel_gpu_freq(dev_priv, rps->cur_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1100 | |
| 1101 | seq_printf(m, "max GPU freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1102 | intel_gpu_freq(dev_priv, rps->max_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1103 | |
| 1104 | seq_printf(m, "min GPU freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1105 | intel_gpu_freq(dev_priv, rps->min_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1106 | |
| 1107 | seq_printf(m, "idle GPU freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1108 | intel_gpu_freq(dev_priv, rps->idle_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1109 | |
| 1110 | seq_printf(m, |
| 1111 | "efficient (RPe) frequency: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1112 | intel_gpu_freq(dev_priv, rps->efficient_freq)); |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1113 | mutex_unlock(&dev_priv->pcu_lock); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1114 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1115 | u32 rp_state_limits; |
| 1116 | u32 gt_perf_status; |
| 1117 | u32 rp_state_cap; |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1118 | u32 rpmodectl, rpinclimit, rpdeclimit; |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1119 | u32 rpstat, cagf, reqf; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1120 | u32 rpupei, rpcurup, rpprevup; |
| 1121 | u32 rpdownei, rpcurdown, rpprevdown; |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1122 | u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1123 | int max_freq; |
| 1124 | |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1125 | rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS); |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1126 | if (IS_GEN9_LP(dev_priv)) { |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1127 | rp_state_cap = I915_READ(BXT_RP_STATE_CAP); |
| 1128 | gt_perf_status = I915_READ(BXT_GT_PERF_STATUS); |
| 1129 | } else { |
| 1130 | rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
| 1131 | gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS); |
| 1132 | } |
| 1133 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1134 | /* RPSTAT1 is in the GT power well */ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 1135 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1136 | |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1137 | reqf = I915_READ(GEN6_RPNSWREQ); |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1138 | if (INTEL_GEN(dev_priv) >= 9) |
Akash Goel | 60260a5 | 2015-03-06 11:07:21 +0530 | [diff] [blame] | 1139 | reqf >>= 23; |
| 1140 | else { |
| 1141 | reqf &= ~GEN6_TURBO_DISABLE; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1142 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Akash Goel | 60260a5 | 2015-03-06 11:07:21 +0530 | [diff] [blame] | 1143 | reqf >>= 24; |
| 1144 | else |
| 1145 | reqf >>= 25; |
| 1146 | } |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1147 | reqf = intel_gpu_freq(dev_priv, reqf); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1148 | |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1149 | rpmodectl = I915_READ(GEN6_RP_CONTROL); |
| 1150 | rpinclimit = I915_READ(GEN6_RP_UP_THRESHOLD); |
| 1151 | rpdeclimit = I915_READ(GEN6_RP_DOWN_THRESHOLD); |
| 1152 | |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1153 | rpstat = I915_READ(GEN6_RPSTAT1); |
Akash Goel | d6cda9c | 2016-04-23 00:05:46 +0530 | [diff] [blame] | 1154 | rpupei = I915_READ(GEN6_RP_CUR_UP_EI) & GEN6_CURICONT_MASK; |
| 1155 | rpcurup = I915_READ(GEN6_RP_CUR_UP) & GEN6_CURBSYTAVG_MASK; |
| 1156 | rpprevup = I915_READ(GEN6_RP_PREV_UP) & GEN6_CURBSYTAVG_MASK; |
| 1157 | rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI) & GEN6_CURIAVG_MASK; |
| 1158 | rpcurdown = I915_READ(GEN6_RP_CUR_DOWN) & GEN6_CURBSYTAVG_MASK; |
| 1159 | rpprevdown = I915_READ(GEN6_RP_PREV_DOWN) & GEN6_CURBSYTAVG_MASK; |
Tvrtko Ursulin | c84b270 | 2017-11-21 18:18:44 +0000 | [diff] [blame] | 1160 | cagf = intel_gpu_freq(dev_priv, |
| 1161 | intel_get_cagf(dev_priv, rpstat)); |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1162 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 1163 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 1164 | |
Oscar Mateo | 6b7a6a7 | 2018-05-10 14:59:55 -0700 | [diff] [blame] | 1165 | if (INTEL_GEN(dev_priv) >= 11) { |
| 1166 | pm_ier = I915_READ(GEN11_GPM_WGBOXPERF_INTR_ENABLE); |
| 1167 | pm_imr = I915_READ(GEN11_GPM_WGBOXPERF_INTR_MASK); |
| 1168 | /* |
| 1169 | * The equivalent to the PM ISR & IIR cannot be read |
| 1170 | * without affecting the current state of the system |
| 1171 | */ |
| 1172 | pm_isr = 0; |
| 1173 | pm_iir = 0; |
| 1174 | } else if (INTEL_GEN(dev_priv) >= 8) { |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1175 | pm_ier = I915_READ(GEN8_GT_IER(2)); |
| 1176 | pm_imr = I915_READ(GEN8_GT_IMR(2)); |
| 1177 | pm_isr = I915_READ(GEN8_GT_ISR(2)); |
| 1178 | pm_iir = I915_READ(GEN8_GT_IIR(2)); |
Oscar Mateo | 6b7a6a7 | 2018-05-10 14:59:55 -0700 | [diff] [blame] | 1179 | } else { |
| 1180 | pm_ier = I915_READ(GEN6_PMIER); |
| 1181 | pm_imr = I915_READ(GEN6_PMIMR); |
| 1182 | pm_isr = I915_READ(GEN6_PMISR); |
| 1183 | pm_iir = I915_READ(GEN6_PMIIR); |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1184 | } |
Oscar Mateo | 6b7a6a7 | 2018-05-10 14:59:55 -0700 | [diff] [blame] | 1185 | pm_mask = I915_READ(GEN6_PMINTRMSK); |
| 1186 | |
Sagar Arun Kamble | 960e546 | 2017-10-10 22:29:59 +0100 | [diff] [blame] | 1187 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1188 | yesno(rpmodectl & GEN6_RP_MEDIA_TURBO)); |
| 1189 | seq_printf(m, "HW control enabled: %s\n", |
| 1190 | yesno(rpmodectl & GEN6_RP_ENABLE)); |
| 1191 | seq_printf(m, "SW control enabled: %s\n", |
| 1192 | yesno((rpmodectl & GEN6_RP_MEDIA_MODE_MASK) == |
| 1193 | GEN6_RP_MEDIA_SW_MODE)); |
Oscar Mateo | 6b7a6a7 | 2018-05-10 14:59:55 -0700 | [diff] [blame] | 1194 | |
| 1195 | seq_printf(m, "PM IER=0x%08x IMR=0x%08x, MASK=0x%08x\n", |
| 1196 | pm_ier, pm_imr, pm_mask); |
| 1197 | if (INTEL_GEN(dev_priv) <= 10) |
| 1198 | seq_printf(m, "PM ISR=0x%08x IIR=0x%08x\n", |
| 1199 | pm_isr, pm_iir); |
Sagar Arun Kamble | 5dd0455 | 2017-03-11 08:07:00 +0530 | [diff] [blame] | 1200 | seq_printf(m, "pm_intrmsk_mbz: 0x%08x\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1201 | rps->pm_intrmsk_mbz); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1202 | seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1203 | seq_printf(m, "Render p-state ratio: %d\n", |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1204 | (gt_perf_status & (INTEL_GEN(dev_priv) >= 9 ? 0x1ff00 : 0xff00)) >> 8); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1205 | seq_printf(m, "Render p-state VID: %d\n", |
| 1206 | gt_perf_status & 0xff); |
| 1207 | seq_printf(m, "Render p-state limit: %d\n", |
| 1208 | rp_state_limits & 0xff); |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1209 | seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat); |
| 1210 | seq_printf(m, "RPMODECTL: 0x%08x\n", rpmodectl); |
| 1211 | seq_printf(m, "RPINCLIMIT: 0x%08x\n", rpinclimit); |
| 1212 | seq_printf(m, "RPDECLIMIT: 0x%08x\n", rpdeclimit); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1213 | seq_printf(m, "RPNSWREQ: %dMHz\n", reqf); |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 1214 | seq_printf(m, "CAGF: %dMHz\n", cagf); |
Akash Goel | d6cda9c | 2016-04-23 00:05:46 +0530 | [diff] [blame] | 1215 | seq_printf(m, "RP CUR UP EI: %d (%dus)\n", |
| 1216 | rpupei, GT_PM_INTERVAL_TO_US(dev_priv, rpupei)); |
| 1217 | seq_printf(m, "RP CUR UP: %d (%dus)\n", |
| 1218 | rpcurup, GT_PM_INTERVAL_TO_US(dev_priv, rpcurup)); |
| 1219 | seq_printf(m, "RP PREV UP: %d (%dus)\n", |
| 1220 | rpprevup, GT_PM_INTERVAL_TO_US(dev_priv, rpprevup)); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1221 | seq_printf(m, "Up threshold: %d%%\n", rps->up_threshold); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1222 | |
Akash Goel | d6cda9c | 2016-04-23 00:05:46 +0530 | [diff] [blame] | 1223 | seq_printf(m, "RP CUR DOWN EI: %d (%dus)\n", |
| 1224 | rpdownei, GT_PM_INTERVAL_TO_US(dev_priv, rpdownei)); |
| 1225 | seq_printf(m, "RP CUR DOWN: %d (%dus)\n", |
| 1226 | rpcurdown, GT_PM_INTERVAL_TO_US(dev_priv, rpcurdown)); |
| 1227 | seq_printf(m, "RP PREV DOWN: %d (%dus)\n", |
| 1228 | rpprevdown, GT_PM_INTERVAL_TO_US(dev_priv, rpprevdown)); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1229 | seq_printf(m, "Down threshold: %d%%\n", rps->down_threshold); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1230 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1231 | max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 0 : |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1232 | rp_state_cap >> 16) & 0xff; |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1233 | max_freq *= (IS_GEN9_BC(dev_priv) || |
Oscar Mateo | 2b2874e | 2018-04-05 17:00:52 +0300 | [diff] [blame] | 1234 | INTEL_GEN(dev_priv) >= 10 ? GEN9_FREQ_SCALER : 1); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1235 | seq_printf(m, "Lowest (RPN) frequency: %dMHz\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1236 | intel_gpu_freq(dev_priv, max_freq)); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1237 | |
| 1238 | max_freq = (rp_state_cap & 0xff00) >> 8; |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1239 | max_freq *= (IS_GEN9_BC(dev_priv) || |
Oscar Mateo | 2b2874e | 2018-04-05 17:00:52 +0300 | [diff] [blame] | 1240 | INTEL_GEN(dev_priv) >= 10 ? GEN9_FREQ_SCALER : 1); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1241 | seq_printf(m, "Nominal (RP1) frequency: %dMHz\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1242 | intel_gpu_freq(dev_priv, max_freq)); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1243 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1244 | max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 16 : |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1245 | rp_state_cap >> 0) & 0xff; |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1246 | max_freq *= (IS_GEN9_BC(dev_priv) || |
Oscar Mateo | 2b2874e | 2018-04-05 17:00:52 +0300 | [diff] [blame] | 1247 | INTEL_GEN(dev_priv) >= 10 ? GEN9_FREQ_SCALER : 1); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1248 | seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1249 | intel_gpu_freq(dev_priv, max_freq)); |
Ben Widawsky | 31c7738 | 2013-04-05 14:29:22 -0700 | [diff] [blame] | 1250 | seq_printf(m, "Max overclocked frequency: %dMHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1251 | intel_gpu_freq(dev_priv, rps->max_freq)); |
Chris Wilson | aed242f | 2015-03-18 09:48:21 +0000 | [diff] [blame] | 1252 | |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1253 | seq_printf(m, "Current freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1254 | intel_gpu_freq(dev_priv, rps->cur_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1255 | seq_printf(m, "Actual freq: %d MHz\n", cagf); |
Chris Wilson | aed242f | 2015-03-18 09:48:21 +0000 | [diff] [blame] | 1256 | seq_printf(m, "Idle freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1257 | intel_gpu_freq(dev_priv, rps->idle_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1258 | seq_printf(m, "Min freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1259 | intel_gpu_freq(dev_priv, rps->min_freq)); |
Chris Wilson | 29ecd78d | 2016-07-13 09:10:35 +0100 | [diff] [blame] | 1260 | seq_printf(m, "Boost freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1261 | intel_gpu_freq(dev_priv, rps->boost_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1262 | seq_printf(m, "Max freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1263 | intel_gpu_freq(dev_priv, rps->max_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1264 | seq_printf(m, |
| 1265 | "efficient (RPe) frequency: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1266 | intel_gpu_freq(dev_priv, rps->efficient_freq)); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1267 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1268 | seq_puts(m, "no P-state info available\n"); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1269 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1270 | |
Ville Syrjälä | 49cd97a | 2017-02-07 20:33:45 +0200 | [diff] [blame] | 1271 | seq_printf(m, "Current CD clock frequency: %d kHz\n", dev_priv->cdclk.hw.cdclk); |
Mika Kahola | 1170f28 | 2015-09-25 14:00:32 +0300 | [diff] [blame] | 1272 | seq_printf(m, "Max CD clock frequency: %d kHz\n", dev_priv->max_cdclk_freq); |
| 1273 | seq_printf(m, "Max pixel clock frequency: %d kHz\n", dev_priv->max_dotclk_freq); |
| 1274 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1275 | intel_runtime_pm_put(dev_priv); |
| 1276 | return ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1277 | } |
| 1278 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1279 | static void i915_instdone_info(struct drm_i915_private *dev_priv, |
| 1280 | struct seq_file *m, |
| 1281 | struct intel_instdone *instdone) |
| 1282 | { |
Ben Widawsky | f9e6137 | 2016-09-20 16:54:33 +0300 | [diff] [blame] | 1283 | int slice; |
| 1284 | int subslice; |
| 1285 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1286 | seq_printf(m, "\t\tINSTDONE: 0x%08x\n", |
| 1287 | instdone->instdone); |
| 1288 | |
| 1289 | if (INTEL_GEN(dev_priv) <= 3) |
| 1290 | return; |
| 1291 | |
| 1292 | seq_printf(m, "\t\tSC_INSTDONE: 0x%08x\n", |
| 1293 | instdone->slice_common); |
| 1294 | |
| 1295 | if (INTEL_GEN(dev_priv) <= 6) |
| 1296 | return; |
| 1297 | |
Ben Widawsky | f9e6137 | 2016-09-20 16:54:33 +0300 | [diff] [blame] | 1298 | for_each_instdone_slice_subslice(dev_priv, slice, subslice) |
| 1299 | seq_printf(m, "\t\tSAMPLER_INSTDONE[%d][%d]: 0x%08x\n", |
| 1300 | slice, subslice, instdone->sampler[slice][subslice]); |
| 1301 | |
| 1302 | for_each_instdone_slice_subslice(dev_priv, slice, subslice) |
| 1303 | seq_printf(m, "\t\tROW_INSTDONE[%d][%d]: 0x%08x\n", |
| 1304 | slice, subslice, instdone->row[slice][subslice]); |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1305 | } |
| 1306 | |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1307 | static int i915_hangcheck_info(struct seq_file *m, void *unused) |
| 1308 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1309 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1310 | struct intel_engine_cs *engine; |
Tvrtko Ursulin | 666796d | 2016-03-16 11:00:39 +0000 | [diff] [blame] | 1311 | u64 acthd[I915_NUM_ENGINES]; |
| 1312 | u32 seqno[I915_NUM_ENGINES]; |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1313 | struct intel_instdone instdone; |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 1314 | enum intel_engine_id id; |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1315 | |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1316 | if (test_bit(I915_WEDGED, &dev_priv->gpu_error.flags)) |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1317 | seq_puts(m, "Wedged\n"); |
| 1318 | if (test_bit(I915_RESET_BACKOFF, &dev_priv->gpu_error.flags)) |
| 1319 | seq_puts(m, "Reset in progress: struct_mutex backoff\n"); |
| 1320 | if (test_bit(I915_RESET_HANDOFF, &dev_priv->gpu_error.flags)) |
| 1321 | seq_puts(m, "Reset in progress: reset handoff to waiter\n"); |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1322 | if (waitqueue_active(&dev_priv->gpu_error.wait_queue)) |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1323 | seq_puts(m, "Waiter holding struct mutex\n"); |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1324 | if (waitqueue_active(&dev_priv->gpu_error.reset_queue)) |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1325 | seq_puts(m, "struct_mutex blocked for reset\n"); |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1326 | |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 1327 | if (!i915_modparams.enable_hangcheck) { |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1328 | seq_puts(m, "Hangcheck disabled\n"); |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1329 | return 0; |
| 1330 | } |
| 1331 | |
Mika Kuoppala | ebbc754 | 2015-02-05 18:41:48 +0200 | [diff] [blame] | 1332 | intel_runtime_pm_get(dev_priv); |
| 1333 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1334 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 1335 | acthd[id] = intel_engine_get_active_head(engine); |
Chris Wilson | 1b7744e | 2016-07-01 17:23:17 +0100 | [diff] [blame] | 1336 | seqno[id] = intel_engine_get_seqno(engine); |
Mika Kuoppala | ebbc754 | 2015-02-05 18:41:48 +0200 | [diff] [blame] | 1337 | } |
| 1338 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1339 | intel_engine_get_instdone(dev_priv->engine[RCS], &instdone); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1340 | |
Mika Kuoppala | ebbc754 | 2015-02-05 18:41:48 +0200 | [diff] [blame] | 1341 | intel_runtime_pm_put(dev_priv); |
| 1342 | |
Chris Wilson | 8352aea | 2017-03-03 09:00:56 +0000 | [diff] [blame] | 1343 | if (timer_pending(&dev_priv->gpu_error.hangcheck_work.timer)) |
| 1344 | seq_printf(m, "Hangcheck active, timer fires in %dms\n", |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1345 | jiffies_to_msecs(dev_priv->gpu_error.hangcheck_work.timer.expires - |
| 1346 | jiffies)); |
Chris Wilson | 8352aea | 2017-03-03 09:00:56 +0000 | [diff] [blame] | 1347 | else if (delayed_work_pending(&dev_priv->gpu_error.hangcheck_work)) |
| 1348 | seq_puts(m, "Hangcheck active, work pending\n"); |
| 1349 | else |
| 1350 | seq_puts(m, "Hangcheck inactive\n"); |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1351 | |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 1352 | seq_printf(m, "GT active? %s\n", yesno(dev_priv->gt.awake)); |
| 1353 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1354 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1355 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
| 1356 | struct rb_node *rb; |
| 1357 | |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1358 | seq_printf(m, "%s:\n", engine->name); |
Chris Wilson | 52d7f16 | 2018-04-30 14:15:00 +0100 | [diff] [blame] | 1359 | seq_printf(m, "\tseqno = %x [current %x, last %x]\n", |
Chris Wilson | cb399ea | 2016-11-01 10:03:16 +0000 | [diff] [blame] | 1360 | engine->hangcheck.seqno, seqno[id], |
Chris Wilson | 52d7f16 | 2018-04-30 14:15:00 +0100 | [diff] [blame] | 1361 | intel_engine_last_submit(engine)); |
Chris Wilson | 1fd00c0f | 2018-06-02 11:48:53 +0100 | [diff] [blame] | 1362 | seq_printf(m, "\twaiters? %s, fake irq active? %s, stalled? %s, wedged? %s\n", |
Chris Wilson | 83348ba | 2016-08-09 17:47:51 +0100 | [diff] [blame] | 1363 | yesno(intel_engine_has_waiter(engine)), |
| 1364 | yesno(test_bit(engine->id, |
Mika Kuoppala | 3fe3b03 | 2016-11-18 15:09:04 +0200 | [diff] [blame] | 1365 | &dev_priv->gpu_error.missed_irq_rings)), |
Chris Wilson | 1fd00c0f | 2018-06-02 11:48:53 +0100 | [diff] [blame] | 1366 | yesno(engine->hangcheck.stalled), |
| 1367 | yesno(engine->hangcheck.wedged)); |
Mika Kuoppala | 3fe3b03 | 2016-11-18 15:09:04 +0200 | [diff] [blame] | 1368 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 1369 | spin_lock_irq(&b->rb_lock); |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1370 | for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) { |
Geliang Tang | f802cf7 | 2016-12-19 22:43:49 +0800 | [diff] [blame] | 1371 | struct intel_wait *w = rb_entry(rb, typeof(*w), node); |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1372 | |
| 1373 | seq_printf(m, "\t%s [%d] waiting for %x\n", |
| 1374 | w->tsk->comm, w->tsk->pid, w->seqno); |
| 1375 | } |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 1376 | spin_unlock_irq(&b->rb_lock); |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1377 | |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1378 | seq_printf(m, "\tACTHD = 0x%08llx [current 0x%08llx]\n", |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1379 | (long long)engine->hangcheck.acthd, |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 1380 | (long long)acthd[id]); |
Mika Kuoppala | 3fe3b03 | 2016-11-18 15:09:04 +0200 | [diff] [blame] | 1381 | seq_printf(m, "\taction = %s(%d) %d ms ago\n", |
| 1382 | hangcheck_action_to_str(engine->hangcheck.action), |
| 1383 | engine->hangcheck.action, |
| 1384 | jiffies_to_msecs(jiffies - |
| 1385 | engine->hangcheck.action_timestamp)); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1386 | |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1387 | if (engine->id == RCS) { |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1388 | seq_puts(m, "\tinstdone read =\n"); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1389 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1390 | i915_instdone_info(dev_priv, m, &instdone); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1391 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1392 | seq_puts(m, "\tinstdone accu =\n"); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1393 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1394 | i915_instdone_info(dev_priv, m, |
| 1395 | &engine->hangcheck.instdone); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1396 | } |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1397 | } |
| 1398 | |
| 1399 | return 0; |
| 1400 | } |
| 1401 | |
Michel Thierry | 061d06a | 2017-06-20 10:57:49 +0100 | [diff] [blame] | 1402 | static int i915_reset_info(struct seq_file *m, void *unused) |
| 1403 | { |
| 1404 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1405 | struct i915_gpu_error *error = &dev_priv->gpu_error; |
| 1406 | struct intel_engine_cs *engine; |
| 1407 | enum intel_engine_id id; |
| 1408 | |
| 1409 | seq_printf(m, "full gpu reset = %u\n", i915_reset_count(error)); |
| 1410 | |
| 1411 | for_each_engine(engine, dev_priv, id) { |
| 1412 | seq_printf(m, "%s = %u\n", engine->name, |
| 1413 | i915_reset_engine_count(error, engine)); |
| 1414 | } |
| 1415 | |
| 1416 | return 0; |
| 1417 | } |
| 1418 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1419 | static int ironlake_drpc_info(struct seq_file *m) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1420 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1421 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1422 | u32 rgvmodectl, rstdbyctl; |
| 1423 | u16 crstandvid; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1424 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1425 | rgvmodectl = I915_READ(MEMMODECTL); |
| 1426 | rstdbyctl = I915_READ(RSTDBYCTL); |
| 1427 | crstandvid = I915_READ16(CRSTANDVID); |
| 1428 | |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1429 | seq_printf(m, "HD boost: %s\n", yesno(rgvmodectl & MEMMODE_BOOST_EN)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1430 | seq_printf(m, "Boost freq: %d\n", |
| 1431 | (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >> |
| 1432 | MEMMODE_BOOST_FREQ_SHIFT); |
| 1433 | seq_printf(m, "HW control enabled: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1434 | yesno(rgvmodectl & MEMMODE_HWIDLE_EN)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1435 | seq_printf(m, "SW control enabled: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1436 | yesno(rgvmodectl & MEMMODE_SWMODE_EN)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1437 | seq_printf(m, "Gated voltage change: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1438 | yesno(rgvmodectl & MEMMODE_RCLK_GATE)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1439 | seq_printf(m, "Starting frequency: P%d\n", |
| 1440 | (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1441 | seq_printf(m, "Max P-state: P%d\n", |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1442 | (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1443 | seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK)); |
| 1444 | seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f)); |
| 1445 | seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f)); |
| 1446 | seq_printf(m, "Render standby enabled: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1447 | yesno(!(rstdbyctl & RCX_SW_EXIT))); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1448 | seq_puts(m, "Current RS state: "); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1449 | switch (rstdbyctl & RSX_STATUS_MASK) { |
| 1450 | case RSX_STATUS_ON: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1451 | seq_puts(m, "on\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1452 | break; |
| 1453 | case RSX_STATUS_RC1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1454 | seq_puts(m, "RC1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1455 | break; |
| 1456 | case RSX_STATUS_RC1E: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1457 | seq_puts(m, "RC1E\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1458 | break; |
| 1459 | case RSX_STATUS_RS1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1460 | seq_puts(m, "RS1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1461 | break; |
| 1462 | case RSX_STATUS_RS2: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1463 | seq_puts(m, "RS2 (RC6)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1464 | break; |
| 1465 | case RSX_STATUS_RS3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1466 | seq_puts(m, "RC3 (RC6+)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1467 | break; |
| 1468 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1469 | seq_puts(m, "unknown\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1470 | break; |
| 1471 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1472 | |
| 1473 | return 0; |
| 1474 | } |
| 1475 | |
Mika Kuoppala | f65367b | 2015-01-16 11:34:42 +0200 | [diff] [blame] | 1476 | static int i915_forcewake_domains(struct seq_file *m, void *data) |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1477 | { |
Chris Wilson | 233ebf5 | 2017-03-23 10:19:44 +0000 | [diff] [blame] | 1478 | struct drm_i915_private *i915 = node_to_i915(m->private); |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1479 | struct intel_uncore_forcewake_domain *fw_domain; |
Chris Wilson | d2dc94b | 2017-03-23 10:19:41 +0000 | [diff] [blame] | 1480 | unsigned int tmp; |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1481 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 1482 | seq_printf(m, "user.bypass_count = %u\n", |
| 1483 | i915->uncore.user_forcewake.count); |
| 1484 | |
Chris Wilson | 233ebf5 | 2017-03-23 10:19:44 +0000 | [diff] [blame] | 1485 | for_each_fw_domain(fw_domain, i915, tmp) |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1486 | seq_printf(m, "%s.wake_count = %u\n", |
Tvrtko Ursulin | 33c582c | 2016-04-07 17:04:33 +0100 | [diff] [blame] | 1487 | intel_uncore_forcewake_domain_to_str(fw_domain->id), |
Chris Wilson | 233ebf5 | 2017-03-23 10:19:44 +0000 | [diff] [blame] | 1488 | READ_ONCE(fw_domain->wake_count)); |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1489 | |
| 1490 | return 0; |
| 1491 | } |
| 1492 | |
Mika Kuoppala | 1362877 | 2017-03-15 17:43:02 +0200 | [diff] [blame] | 1493 | static void print_rc6_res(struct seq_file *m, |
| 1494 | const char *title, |
| 1495 | const i915_reg_t reg) |
| 1496 | { |
| 1497 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1498 | |
| 1499 | seq_printf(m, "%s %u (%llu us)\n", |
| 1500 | title, I915_READ(reg), |
| 1501 | intel_rc6_residency_us(dev_priv, reg)); |
| 1502 | } |
| 1503 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1504 | static int vlv_drpc_info(struct seq_file *m) |
| 1505 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1506 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 0d6fc92 | 2017-10-10 22:30:02 +0100 | [diff] [blame] | 1507 | u32 rcctl1, pw_status; |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1508 | |
Ville Syrjälä | 6b312cd | 2014-11-19 20:07:42 +0200 | [diff] [blame] | 1509 | pw_status = I915_READ(VLV_GTLC_PW_STATUS); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1510 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
| 1511 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1512 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1513 | yesno(rcctl1 & (GEN7_RC_CTL_TO_MODE | |
| 1514 | GEN6_RC_CTL_EI_MODE(1)))); |
| 1515 | seq_printf(m, "Render Power Well: %s\n", |
Ville Syrjälä | 6b312cd | 2014-11-19 20:07:42 +0200 | [diff] [blame] | 1516 | (pw_status & VLV_GTLC_PW_RENDER_STATUS_MASK) ? "Up" : "Down"); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1517 | seq_printf(m, "Media Power Well: %s\n", |
Ville Syrjälä | 6b312cd | 2014-11-19 20:07:42 +0200 | [diff] [blame] | 1518 | (pw_status & VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down"); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1519 | |
Mika Kuoppala | 1362877 | 2017-03-15 17:43:02 +0200 | [diff] [blame] | 1520 | print_rc6_res(m, "Render RC6 residency since boot:", VLV_GT_RENDER_RC6); |
| 1521 | print_rc6_res(m, "Media RC6 residency since boot:", VLV_GT_MEDIA_RC6); |
Imre Deak | 9cc19be | 2014-04-14 20:24:24 +0300 | [diff] [blame] | 1522 | |
Mika Kuoppala | f65367b | 2015-01-16 11:34:42 +0200 | [diff] [blame] | 1523 | return i915_forcewake_domains(m, NULL); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1524 | } |
| 1525 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1526 | static int gen6_drpc_info(struct seq_file *m) |
| 1527 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1528 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 960e546 | 2017-10-10 22:29:59 +0100 | [diff] [blame] | 1529 | u32 gt_core_status, rcctl1, rc6vids = 0; |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1530 | u32 gen9_powergate_enable = 0, gen9_powergate_status = 0; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1531 | |
Ville Syrjälä | 75aa3f6 | 2015-10-22 15:34:56 +0300 | [diff] [blame] | 1532 | gt_core_status = I915_READ_FW(GEN6_GT_CORE_STATUS); |
Chris Wilson | ed71f1b | 2013-07-19 20:36:56 +0100 | [diff] [blame] | 1533 | 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] | 1534 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1535 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1536 | if (INTEL_GEN(dev_priv) >= 9) { |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1537 | gen9_powergate_enable = I915_READ(GEN9_PG_ENABLE); |
| 1538 | gen9_powergate_status = I915_READ(GEN9_PWRGT_DOMAIN_STATUS); |
| 1539 | } |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1540 | |
Imre Deak | 51cc9ad | 2018-02-08 19:41:02 +0200 | [diff] [blame] | 1541 | if (INTEL_GEN(dev_priv) <= 7) { |
| 1542 | mutex_lock(&dev_priv->pcu_lock); |
| 1543 | sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, |
| 1544 | &rc6vids); |
| 1545 | mutex_unlock(&dev_priv->pcu_lock); |
| 1546 | } |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1547 | |
Eric Anholt | fff24e2 | 2012-01-23 16:14:05 -0800 | [diff] [blame] | 1548 | seq_printf(m, "RC1e Enabled: %s\n", |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1549 | yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE)); |
| 1550 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1551 | yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1552 | if (INTEL_GEN(dev_priv) >= 9) { |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1553 | seq_printf(m, "Render Well Gating Enabled: %s\n", |
| 1554 | yesno(gen9_powergate_enable & GEN9_RENDER_PG_ENABLE)); |
| 1555 | seq_printf(m, "Media Well Gating Enabled: %s\n", |
| 1556 | yesno(gen9_powergate_enable & GEN9_MEDIA_PG_ENABLE)); |
| 1557 | } |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1558 | seq_printf(m, "Deep RC6 Enabled: %s\n", |
| 1559 | yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE)); |
| 1560 | seq_printf(m, "Deepest RC6 Enabled: %s\n", |
| 1561 | yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE)); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1562 | seq_puts(m, "Current RC state: "); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1563 | switch (gt_core_status & GEN6_RCn_MASK) { |
| 1564 | case GEN6_RC0: |
| 1565 | if (gt_core_status & GEN6_CORE_CPD_STATE_MASK) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1566 | seq_puts(m, "Core Power Down\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1567 | else |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1568 | seq_puts(m, "on\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1569 | break; |
| 1570 | case GEN6_RC3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1571 | seq_puts(m, "RC3\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1572 | break; |
| 1573 | case GEN6_RC6: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1574 | seq_puts(m, "RC6\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1575 | break; |
| 1576 | case GEN6_RC7: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1577 | seq_puts(m, "RC7\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1578 | break; |
| 1579 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1580 | seq_puts(m, "Unknown\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1581 | break; |
| 1582 | } |
| 1583 | |
| 1584 | seq_printf(m, "Core Power Down: %s\n", |
| 1585 | yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1586 | if (INTEL_GEN(dev_priv) >= 9) { |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1587 | seq_printf(m, "Render Power Well: %s\n", |
| 1588 | (gen9_powergate_status & |
| 1589 | GEN9_PWRGT_RENDER_STATUS_MASK) ? "Up" : "Down"); |
| 1590 | seq_printf(m, "Media Power Well: %s\n", |
| 1591 | (gen9_powergate_status & |
| 1592 | GEN9_PWRGT_MEDIA_STATUS_MASK) ? "Up" : "Down"); |
| 1593 | } |
Ben Widawsky | cce66a2 | 2012-03-27 18:59:38 -0700 | [diff] [blame] | 1594 | |
| 1595 | /* Not exactly sure what this is */ |
Mika Kuoppala | 1362877 | 2017-03-15 17:43:02 +0200 | [diff] [blame] | 1596 | print_rc6_res(m, "RC6 \"Locked to RPn\" residency since boot:", |
| 1597 | GEN6_GT_GFX_RC6_LOCKED); |
| 1598 | print_rc6_res(m, "RC6 residency since boot:", GEN6_GT_GFX_RC6); |
| 1599 | print_rc6_res(m, "RC6+ residency since boot:", GEN6_GT_GFX_RC6p); |
| 1600 | print_rc6_res(m, "RC6++ residency since boot:", GEN6_GT_GFX_RC6pp); |
Ben Widawsky | cce66a2 | 2012-03-27 18:59:38 -0700 | [diff] [blame] | 1601 | |
Imre Deak | 51cc9ad | 2018-02-08 19:41:02 +0200 | [diff] [blame] | 1602 | if (INTEL_GEN(dev_priv) <= 7) { |
| 1603 | seq_printf(m, "RC6 voltage: %dmV\n", |
| 1604 | GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff))); |
| 1605 | seq_printf(m, "RC6+ voltage: %dmV\n", |
| 1606 | GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff))); |
| 1607 | seq_printf(m, "RC6++ voltage: %dmV\n", |
| 1608 | GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff))); |
| 1609 | } |
| 1610 | |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1611 | return i915_forcewake_domains(m, NULL); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1612 | } |
| 1613 | |
| 1614 | static int i915_drpc_info(struct seq_file *m, void *unused) |
| 1615 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1616 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1617 | int err; |
| 1618 | |
| 1619 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1620 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1621 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1622 | err = vlv_drpc_info(m); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1623 | else if (INTEL_GEN(dev_priv) >= 6) |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1624 | err = gen6_drpc_info(m); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1625 | else |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1626 | err = ironlake_drpc_info(m); |
| 1627 | |
| 1628 | intel_runtime_pm_put(dev_priv); |
| 1629 | |
| 1630 | return err; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1631 | } |
| 1632 | |
Daniel Vetter | 9a85178 | 2015-06-18 10:30:22 +0200 | [diff] [blame] | 1633 | static int i915_frontbuffer_tracking(struct seq_file *m, void *unused) |
| 1634 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1635 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Daniel Vetter | 9a85178 | 2015-06-18 10:30:22 +0200 | [diff] [blame] | 1636 | |
| 1637 | seq_printf(m, "FB tracking busy bits: 0x%08x\n", |
| 1638 | dev_priv->fb_tracking.busy_bits); |
| 1639 | |
| 1640 | seq_printf(m, "FB tracking flip bits: 0x%08x\n", |
| 1641 | dev_priv->fb_tracking.flip_bits); |
| 1642 | |
| 1643 | return 0; |
| 1644 | } |
| 1645 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1646 | static int i915_fbc_status(struct seq_file *m, void *unused) |
| 1647 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1648 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1649 | struct intel_fbc *fbc = &dev_priv->fbc; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1650 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 1651 | if (!HAS_FBC(dev_priv)) |
| 1652 | return -ENODEV; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1653 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1654 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1655 | mutex_lock(&fbc->lock); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1656 | |
Paulo Zanoni | 0e631ad | 2015-10-14 17:45:36 -0300 | [diff] [blame] | 1657 | if (intel_fbc_is_active(dev_priv)) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1658 | seq_puts(m, "FBC enabled\n"); |
Paulo Zanoni | 2e8144a | 2015-06-12 14:36:20 -0300 | [diff] [blame] | 1659 | else |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1660 | seq_printf(m, "FBC disabled: %s\n", fbc->no_fbc_reason); |
| 1661 | |
Ville Syrjälä | 3fd5d1e | 2017-06-06 15:43:18 +0300 | [diff] [blame] | 1662 | if (intel_fbc_is_active(dev_priv)) { |
| 1663 | u32 mask; |
| 1664 | |
| 1665 | if (INTEL_GEN(dev_priv) >= 8) |
| 1666 | mask = I915_READ(IVB_FBC_STATUS2) & BDW_FBC_COMP_SEG_MASK; |
| 1667 | else if (INTEL_GEN(dev_priv) >= 7) |
| 1668 | mask = I915_READ(IVB_FBC_STATUS2) & IVB_FBC_COMP_SEG_MASK; |
| 1669 | else if (INTEL_GEN(dev_priv) >= 5) |
| 1670 | mask = I915_READ(ILK_DPFC_STATUS) & ILK_DPFC_COMP_SEG_MASK; |
| 1671 | else if (IS_G4X(dev_priv)) |
| 1672 | mask = I915_READ(DPFC_STATUS) & DPFC_COMP_SEG_MASK; |
| 1673 | else |
| 1674 | mask = I915_READ(FBC_STATUS) & (FBC_STAT_COMPRESSING | |
| 1675 | FBC_STAT_COMPRESSED); |
| 1676 | |
| 1677 | seq_printf(m, "Compressing: %s\n", yesno(mask)); |
Paulo Zanoni | 0fc6a9d | 2016-10-21 13:55:46 -0200 | [diff] [blame] | 1678 | } |
Paulo Zanoni | 31b9df1 | 2015-06-12 14:36:18 -0300 | [diff] [blame] | 1679 | |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1680 | mutex_unlock(&fbc->lock); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1681 | intel_runtime_pm_put(dev_priv); |
| 1682 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1683 | return 0; |
| 1684 | } |
| 1685 | |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 1686 | static int i915_fbc_false_color_get(void *data, u64 *val) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1687 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1688 | struct drm_i915_private *dev_priv = data; |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1689 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1690 | if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv)) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1691 | return -ENODEV; |
| 1692 | |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1693 | *val = dev_priv->fbc.false_color; |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1694 | |
| 1695 | return 0; |
| 1696 | } |
| 1697 | |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 1698 | static int i915_fbc_false_color_set(void *data, u64 val) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1699 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1700 | struct drm_i915_private *dev_priv = data; |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1701 | u32 reg; |
| 1702 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1703 | if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv)) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1704 | return -ENODEV; |
| 1705 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1706 | mutex_lock(&dev_priv->fbc.lock); |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1707 | |
| 1708 | reg = I915_READ(ILK_DPFC_CONTROL); |
| 1709 | dev_priv->fbc.false_color = val; |
| 1710 | |
| 1711 | I915_WRITE(ILK_DPFC_CONTROL, val ? |
| 1712 | (reg | FBC_CTL_FALSE_COLOR) : |
| 1713 | (reg & ~FBC_CTL_FALSE_COLOR)); |
| 1714 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1715 | mutex_unlock(&dev_priv->fbc.lock); |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1716 | return 0; |
| 1717 | } |
| 1718 | |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 1719 | DEFINE_SIMPLE_ATTRIBUTE(i915_fbc_false_color_fops, |
| 1720 | i915_fbc_false_color_get, i915_fbc_false_color_set, |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1721 | "%llu\n"); |
| 1722 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1723 | static int i915_ips_status(struct seq_file *m, void *unused) |
| 1724 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1725 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1726 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 1727 | if (!HAS_IPS(dev_priv)) |
| 1728 | return -ENODEV; |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1729 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1730 | intel_runtime_pm_get(dev_priv); |
| 1731 | |
Rodrigo Vivi | 0eaa53f | 2014-06-30 04:45:01 -0700 | [diff] [blame] | 1732 | seq_printf(m, "Enabled by kernel parameter: %s\n", |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 1733 | yesno(i915_modparams.enable_ips)); |
Rodrigo Vivi | 0eaa53f | 2014-06-30 04:45:01 -0700 | [diff] [blame] | 1734 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1735 | if (INTEL_GEN(dev_priv) >= 8) { |
Rodrigo Vivi | 0eaa53f | 2014-06-30 04:45:01 -0700 | [diff] [blame] | 1736 | seq_puts(m, "Currently: unknown\n"); |
| 1737 | } else { |
| 1738 | if (I915_READ(IPS_CTL) & IPS_ENABLE) |
| 1739 | seq_puts(m, "Currently: enabled\n"); |
| 1740 | else |
| 1741 | seq_puts(m, "Currently: disabled\n"); |
| 1742 | } |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1743 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1744 | intel_runtime_pm_put(dev_priv); |
| 1745 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1746 | return 0; |
| 1747 | } |
| 1748 | |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1749 | static int i915_sr_status(struct seq_file *m, void *unused) |
| 1750 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1751 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1752 | bool sr_enabled = false; |
| 1753 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1754 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1755 | intel_display_power_get(dev_priv, POWER_DOMAIN_INIT); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1756 | |
Chris Wilson | 7342a72 | 2017-03-09 14:20:49 +0000 | [diff] [blame] | 1757 | if (INTEL_GEN(dev_priv) >= 9) |
| 1758 | /* no global SR status; inspect per-plane WM */; |
| 1759 | else if (HAS_PCH_SPLIT(dev_priv)) |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1760 | sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN; |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 1761 | else if (IS_I965GM(dev_priv) || IS_G4X(dev_priv) || |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1762 | IS_I945G(dev_priv) || IS_I945GM(dev_priv)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1763 | sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1764 | else if (IS_I915GM(dev_priv)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1765 | sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1766 | else if (IS_PINEVIEW(dev_priv)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1767 | sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1768 | else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Ander Conselvan de Oliveira | 77b6455 | 2015-06-02 14:17:47 +0300 | [diff] [blame] | 1769 | sr_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN; |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1770 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1771 | intel_display_power_put(dev_priv, POWER_DOMAIN_INIT); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1772 | intel_runtime_pm_put(dev_priv); |
| 1773 | |
Tvrtko Ursulin | 08c4d7f | 2016-11-17 12:30:14 +0000 | [diff] [blame] | 1774 | seq_printf(m, "self-refresh: %s\n", enableddisabled(sr_enabled)); |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1775 | |
| 1776 | return 0; |
| 1777 | } |
| 1778 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1779 | static int i915_emon_status(struct seq_file *m, void *unused) |
| 1780 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1781 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1782 | struct drm_device *dev = &dev_priv->drm; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1783 | unsigned long temp, chipset, gfx; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1784 | int ret; |
| 1785 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1786 | if (!IS_GEN5(dev_priv)) |
Chris Wilson | 582be6b | 2012-04-30 19:35:02 +0100 | [diff] [blame] | 1787 | return -ENODEV; |
| 1788 | |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1789 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1790 | if (ret) |
| 1791 | return ret; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1792 | |
| 1793 | temp = i915_mch_val(dev_priv); |
| 1794 | chipset = i915_chipset_val(dev_priv); |
| 1795 | gfx = i915_gfx_val(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1796 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1797 | |
| 1798 | seq_printf(m, "GMCH temp: %ld\n", temp); |
| 1799 | seq_printf(m, "Chipset power: %ld\n", chipset); |
| 1800 | seq_printf(m, "GFX power: %ld\n", gfx); |
| 1801 | seq_printf(m, "Total power: %ld\n", chipset + gfx); |
| 1802 | |
| 1803 | return 0; |
| 1804 | } |
| 1805 | |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1806 | static int i915_ring_freq_table(struct seq_file *m, void *unused) |
| 1807 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1808 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1809 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1810 | unsigned int max_gpu_freq, min_gpu_freq; |
Chris Wilson | d586b5f | 2018-03-08 14:26:48 +0000 | [diff] [blame] | 1811 | int gpu_freq, ia_freq; |
| 1812 | int ret; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1813 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 1814 | if (!HAS_LLC(dev_priv)) |
| 1815 | return -ENODEV; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1816 | |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1817 | intel_runtime_pm_get(dev_priv); |
| 1818 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1819 | ret = mutex_lock_interruptible(&dev_priv->pcu_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1820 | if (ret) |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1821 | goto out; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1822 | |
Chris Wilson | d586b5f | 2018-03-08 14:26:48 +0000 | [diff] [blame] | 1823 | min_gpu_freq = rps->min_freq; |
| 1824 | max_gpu_freq = rps->max_freq; |
Oscar Mateo | 2b2874e | 2018-04-05 17:00:52 +0300 | [diff] [blame] | 1825 | if (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) { |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1826 | /* Convert GT frequency to 50 HZ units */ |
Chris Wilson | d586b5f | 2018-03-08 14:26:48 +0000 | [diff] [blame] | 1827 | min_gpu_freq /= GEN9_FREQ_SCALER; |
| 1828 | max_gpu_freq /= GEN9_FREQ_SCALER; |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1829 | } |
| 1830 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1831 | 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] | 1832 | |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1833 | for (gpu_freq = min_gpu_freq; gpu_freq <= max_gpu_freq; gpu_freq++) { |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 1834 | ia_freq = gpu_freq; |
| 1835 | sandybridge_pcode_read(dev_priv, |
| 1836 | GEN6_PCODE_READ_MIN_FREQ_TABLE, |
| 1837 | &ia_freq); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 1838 | seq_printf(m, "%d\t\t%d\t\t\t\t%d\n", |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1839 | intel_gpu_freq(dev_priv, (gpu_freq * |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1840 | (IS_GEN9_BC(dev_priv) || |
Oscar Mateo | 2b2874e | 2018-04-05 17:00:52 +0300 | [diff] [blame] | 1841 | INTEL_GEN(dev_priv) >= 10 ? |
Rodrigo Vivi | b976dc5 | 2017-01-23 10:32:37 -0800 | [diff] [blame] | 1842 | GEN9_FREQ_SCALER : 1))), |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 1843 | ((ia_freq >> 0) & 0xff) * 100, |
| 1844 | ((ia_freq >> 8) & 0xff) * 100); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1845 | } |
| 1846 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1847 | mutex_unlock(&dev_priv->pcu_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1848 | |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1849 | out: |
| 1850 | intel_runtime_pm_put(dev_priv); |
| 1851 | return ret; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1852 | } |
| 1853 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1854 | static int i915_opregion(struct seq_file *m, void *unused) |
| 1855 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1856 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1857 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1858 | struct intel_opregion *opregion = &dev_priv->opregion; |
| 1859 | int ret; |
| 1860 | |
| 1861 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1862 | if (ret) |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1863 | goto out; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1864 | |
Jani Nikula | 2455a8e | 2015-12-14 12:50:53 +0200 | [diff] [blame] | 1865 | if (opregion->header) |
| 1866 | seq_write(m, opregion->header, OPREGION_SIZE); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1867 | |
| 1868 | mutex_unlock(&dev->struct_mutex); |
| 1869 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1870 | out: |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1871 | return 0; |
| 1872 | } |
| 1873 | |
Jani Nikula | ada8f95 | 2015-12-15 13:17:12 +0200 | [diff] [blame] | 1874 | static int i915_vbt(struct seq_file *m, void *unused) |
| 1875 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1876 | struct intel_opregion *opregion = &node_to_i915(m->private)->opregion; |
Jani Nikula | ada8f95 | 2015-12-15 13:17:12 +0200 | [diff] [blame] | 1877 | |
| 1878 | if (opregion->vbt) |
| 1879 | seq_write(m, opregion->vbt, opregion->vbt_size); |
| 1880 | |
| 1881 | return 0; |
| 1882 | } |
| 1883 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1884 | static int i915_gem_framebuffer_info(struct seq_file *m, void *data) |
| 1885 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1886 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1887 | struct drm_device *dev = &dev_priv->drm; |
Namrta Salonie | b13b840 | 2015-11-27 13:43:11 +0530 | [diff] [blame] | 1888 | struct intel_framebuffer *fbdev_fb = NULL; |
Daniel Vetter | 3a58ee1 | 2015-07-10 19:02:51 +0200 | [diff] [blame] | 1889 | struct drm_framebuffer *drm_fb; |
Chris Wilson | 188c1ab | 2016-04-03 14:14:20 +0100 | [diff] [blame] | 1890 | int ret; |
| 1891 | |
| 1892 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1893 | if (ret) |
| 1894 | return ret; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1895 | |
Daniel Vetter | 0695726 | 2015-08-10 13:34:08 +0200 | [diff] [blame] | 1896 | #ifdef CONFIG_DRM_FBDEV_EMULATION |
Daniel Vetter | 346fb4e | 2017-07-06 15:00:20 +0200 | [diff] [blame] | 1897 | if (dev_priv->fbdev && dev_priv->fbdev->helper.fb) { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1898 | fbdev_fb = to_intel_framebuffer(dev_priv->fbdev->helper.fb); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1899 | |
Chris Wilson | 25bcce9 | 2016-07-02 15:36:00 +0100 | [diff] [blame] | 1900 | seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ", |
| 1901 | fbdev_fb->base.width, |
| 1902 | fbdev_fb->base.height, |
Ville Syrjälä | b00c600 | 2016-12-14 23:31:35 +0200 | [diff] [blame] | 1903 | fbdev_fb->base.format->depth, |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 1904 | fbdev_fb->base.format->cpp[0] * 8, |
Ville Syrjälä | bae781b | 2016-11-16 13:33:16 +0200 | [diff] [blame] | 1905 | fbdev_fb->base.modifier, |
Chris Wilson | 25bcce9 | 2016-07-02 15:36:00 +0100 | [diff] [blame] | 1906 | drm_framebuffer_read_refcount(&fbdev_fb->base)); |
Daniel Stone | a5ff7a4 | 2018-05-18 15:30:07 +0100 | [diff] [blame] | 1907 | describe_obj(m, intel_fb_obj(&fbdev_fb->base)); |
Chris Wilson | 25bcce9 | 2016-07-02 15:36:00 +0100 | [diff] [blame] | 1908 | seq_putc(m, '\n'); |
| 1909 | } |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1910 | #endif |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1911 | |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1912 | mutex_lock(&dev->mode_config.fb_lock); |
Daniel Vetter | 3a58ee1 | 2015-07-10 19:02:51 +0200 | [diff] [blame] | 1913 | drm_for_each_fb(drm_fb, dev) { |
Namrta Salonie | b13b840 | 2015-11-27 13:43:11 +0530 | [diff] [blame] | 1914 | struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb); |
| 1915 | if (fb == fbdev_fb) |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1916 | continue; |
| 1917 | |
Tvrtko Ursulin | c1ca506d | 2015-02-10 17:16:07 +0000 | [diff] [blame] | 1918 | 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] | 1919 | fb->base.width, |
| 1920 | fb->base.height, |
Ville Syrjälä | b00c600 | 2016-12-14 23:31:35 +0200 | [diff] [blame] | 1921 | fb->base.format->depth, |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 1922 | fb->base.format->cpp[0] * 8, |
Ville Syrjälä | bae781b | 2016-11-16 13:33:16 +0200 | [diff] [blame] | 1923 | fb->base.modifier, |
Dave Airlie | 747a598 | 2016-04-15 15:10:35 +1000 | [diff] [blame] | 1924 | drm_framebuffer_read_refcount(&fb->base)); |
Daniel Stone | a5ff7a4 | 2018-05-18 15:30:07 +0100 | [diff] [blame] | 1925 | describe_obj(m, intel_fb_obj(&fb->base)); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1926 | seq_putc(m, '\n'); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1927 | } |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1928 | mutex_unlock(&dev->mode_config.fb_lock); |
Chris Wilson | 188c1ab | 2016-04-03 14:14:20 +0100 | [diff] [blame] | 1929 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1930 | |
| 1931 | return 0; |
| 1932 | } |
| 1933 | |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 1934 | static void describe_ctx_ring(struct seq_file *m, struct intel_ring *ring) |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1935 | { |
Chris Wilson | ef5032a | 2018-03-07 13:42:24 +0000 | [diff] [blame] | 1936 | seq_printf(m, " (ringbuffer, space: %d, head: %u, tail: %u, emit: %u)", |
| 1937 | ring->space, ring->head, ring->tail, ring->emit); |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1938 | } |
| 1939 | |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1940 | static int i915_context_status(struct seq_file *m, void *unused) |
| 1941 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1942 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1943 | struct drm_device *dev = &dev_priv->drm; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1944 | struct intel_engine_cs *engine; |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 1945 | struct i915_gem_context *ctx; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1946 | enum intel_engine_id id; |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 1947 | int ret; |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1948 | |
Daniel Vetter | f3d2887 | 2014-05-29 23:23:08 +0200 | [diff] [blame] | 1949 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1950 | if (ret) |
| 1951 | return ret; |
| 1952 | |
Chris Wilson | 829a0af | 2017-06-20 12:05:45 +0100 | [diff] [blame] | 1953 | list_for_each_entry(ctx, &dev_priv->contexts.list, link) { |
Chris Wilson | 5d1808e | 2016-04-28 09:56:51 +0100 | [diff] [blame] | 1954 | seq_printf(m, "HW context %u ", ctx->hw_id); |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 1955 | if (ctx->pid) { |
Chris Wilson | d28b99a | 2016-05-24 14:53:39 +0100 | [diff] [blame] | 1956 | struct task_struct *task; |
| 1957 | |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 1958 | task = get_pid_task(ctx->pid, PIDTYPE_PID); |
Chris Wilson | d28b99a | 2016-05-24 14:53:39 +0100 | [diff] [blame] | 1959 | if (task) { |
| 1960 | seq_printf(m, "(%s [%d]) ", |
| 1961 | task->comm, task->pid); |
| 1962 | put_task_struct(task); |
| 1963 | } |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 1964 | } else if (IS_ERR(ctx->file_priv)) { |
| 1965 | seq_puts(m, "(deleted) "); |
Chris Wilson | d28b99a | 2016-05-24 14:53:39 +0100 | [diff] [blame] | 1966 | } else { |
| 1967 | seq_puts(m, "(kernel) "); |
| 1968 | } |
| 1969 | |
Chris Wilson | bca44d8 | 2016-05-24 14:53:41 +0100 | [diff] [blame] | 1970 | seq_putc(m, ctx->remap_slice ? 'R' : 'r'); |
| 1971 | seq_putc(m, '\n'); |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1972 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1973 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | ab82a06 | 2018-04-30 14:15:01 +0100 | [diff] [blame] | 1974 | struct intel_context *ce = |
| 1975 | to_intel_context(ctx, engine); |
Chris Wilson | bca44d8 | 2016-05-24 14:53:41 +0100 | [diff] [blame] | 1976 | |
| 1977 | seq_printf(m, "%s: ", engine->name); |
Chris Wilson | bca44d8 | 2016-05-24 14:53:41 +0100 | [diff] [blame] | 1978 | if (ce->state) |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 1979 | describe_obj(m, ce->state->obj); |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 1980 | if (ce->ring) |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 1981 | describe_ctx_ring(m, ce->ring); |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1982 | seq_putc(m, '\n'); |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1983 | } |
| 1984 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1985 | seq_putc(m, '\n'); |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1986 | } |
| 1987 | |
Daniel Vetter | f3d2887 | 2014-05-29 23:23:08 +0200 | [diff] [blame] | 1988 | mutex_unlock(&dev->struct_mutex); |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1989 | |
| 1990 | return 0; |
| 1991 | } |
| 1992 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1993 | static const char *swizzle_string(unsigned swizzle) |
| 1994 | { |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1995 | switch (swizzle) { |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1996 | case I915_BIT_6_SWIZZLE_NONE: |
| 1997 | return "none"; |
| 1998 | case I915_BIT_6_SWIZZLE_9: |
| 1999 | return "bit9"; |
| 2000 | case I915_BIT_6_SWIZZLE_9_10: |
| 2001 | return "bit9/bit10"; |
| 2002 | case I915_BIT_6_SWIZZLE_9_11: |
| 2003 | return "bit9/bit11"; |
| 2004 | case I915_BIT_6_SWIZZLE_9_10_11: |
| 2005 | return "bit9/bit10/bit11"; |
| 2006 | case I915_BIT_6_SWIZZLE_9_17: |
| 2007 | return "bit9/bit17"; |
| 2008 | case I915_BIT_6_SWIZZLE_9_10_17: |
| 2009 | return "bit9/bit10/bit17"; |
| 2010 | case I915_BIT_6_SWIZZLE_UNKNOWN: |
Masanari Iida | 8a168ca | 2012-12-29 02:00:09 +0900 | [diff] [blame] | 2011 | return "unknown"; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2012 | } |
| 2013 | |
| 2014 | return "bug"; |
| 2015 | } |
| 2016 | |
| 2017 | static int i915_swizzle_info(struct seq_file *m, void *data) |
| 2018 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2019 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2020 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2021 | intel_runtime_pm_get(dev_priv); |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 2022 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2023 | seq_printf(m, "bit6 swizzle for X-tiling = %s\n", |
| 2024 | swizzle_string(dev_priv->mm.bit_6_swizzle_x)); |
| 2025 | seq_printf(m, "bit6 swizzle for Y-tiling = %s\n", |
| 2026 | swizzle_string(dev_priv->mm.bit_6_swizzle_y)); |
| 2027 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2028 | if (IS_GEN3(dev_priv) || IS_GEN4(dev_priv)) { |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2029 | seq_printf(m, "DDC = 0x%08x\n", |
| 2030 | I915_READ(DCC)); |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 2031 | seq_printf(m, "DDC2 = 0x%08x\n", |
| 2032 | I915_READ(DCC2)); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2033 | seq_printf(m, "C0DRB3 = 0x%04x\n", |
| 2034 | I915_READ16(C0DRB3)); |
| 2035 | seq_printf(m, "C1DRB3 = 0x%04x\n", |
| 2036 | I915_READ16(C1DRB3)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2037 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 2038 | seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n", |
| 2039 | I915_READ(MAD_DIMM_C0)); |
| 2040 | seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n", |
| 2041 | I915_READ(MAD_DIMM_C1)); |
| 2042 | seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n", |
| 2043 | I915_READ(MAD_DIMM_C2)); |
| 2044 | seq_printf(m, "TILECTL = 0x%08x\n", |
| 2045 | I915_READ(TILECTL)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2046 | if (INTEL_GEN(dev_priv) >= 8) |
Ben Widawsky | 9d3203e | 2013-11-02 21:07:14 -0700 | [diff] [blame] | 2047 | seq_printf(m, "GAMTARBMODE = 0x%08x\n", |
| 2048 | I915_READ(GAMTARBMODE)); |
| 2049 | else |
| 2050 | seq_printf(m, "ARB_MODE = 0x%08x\n", |
| 2051 | I915_READ(ARB_MODE)); |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 2052 | seq_printf(m, "DISP_ARB_CTL = 0x%08x\n", |
| 2053 | I915_READ(DISP_ARB_CTL)); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2054 | } |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 2055 | |
| 2056 | if (dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) |
| 2057 | seq_puts(m, "L-shaped memory detected\n"); |
| 2058 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2059 | intel_runtime_pm_put(dev_priv); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2060 | |
| 2061 | return 0; |
| 2062 | } |
| 2063 | |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2064 | static int per_file_ctx(int id, void *ptr, void *data) |
| 2065 | { |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 2066 | struct i915_gem_context *ctx = ptr; |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2067 | struct seq_file *m = data; |
Daniel Vetter | ae6c480 | 2014-08-06 15:04:53 +0200 | [diff] [blame] | 2068 | struct i915_hw_ppgtt *ppgtt = ctx->ppgtt; |
| 2069 | |
| 2070 | if (!ppgtt) { |
| 2071 | seq_printf(m, " no ppgtt for context %d\n", |
| 2072 | ctx->user_handle); |
| 2073 | return 0; |
| 2074 | } |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2075 | |
Oscar Mateo | f83d651 | 2014-05-22 14:13:38 +0100 | [diff] [blame] | 2076 | if (i915_gem_context_is_default(ctx)) |
| 2077 | seq_puts(m, " default context:\n"); |
| 2078 | else |
Oscar Mateo | 821d66d | 2014-07-03 16:28:00 +0100 | [diff] [blame] | 2079 | seq_printf(m, " context %d:\n", ctx->user_handle); |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2080 | ppgtt->debug_dump(ppgtt, m); |
| 2081 | |
| 2082 | return 0; |
| 2083 | } |
| 2084 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2085 | static void gen8_ppgtt_info(struct seq_file *m, |
| 2086 | struct drm_i915_private *dev_priv) |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2087 | { |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2088 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2089 | struct intel_engine_cs *engine; |
| 2090 | enum intel_engine_id id; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 2091 | int i; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2092 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2093 | if (!ppgtt) |
| 2094 | return; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2095 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2096 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2097 | seq_printf(m, "%s\n", engine->name); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2098 | for (i = 0; i < 4; i++) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2099 | u64 pdp = I915_READ(GEN8_RING_PDP_UDW(engine, i)); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2100 | pdp <<= 32; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2101 | pdp |= I915_READ(GEN8_RING_PDP_LDW(engine, i)); |
Ville Syrjälä | a2a5b15 | 2014-03-31 18:17:16 +0300 | [diff] [blame] | 2102 | seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2103 | } |
| 2104 | } |
| 2105 | } |
| 2106 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2107 | static void gen6_ppgtt_info(struct seq_file *m, |
| 2108 | struct drm_i915_private *dev_priv) |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2109 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2110 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2111 | enum intel_engine_id id; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2112 | |
Tvrtko Ursulin | 7e22dbb | 2016-05-10 10:57:06 +0100 | [diff] [blame] | 2113 | if (IS_GEN6(dev_priv)) |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2114 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE)); |
| 2115 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2116 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2117 | seq_printf(m, "%s\n", engine->name); |
Tvrtko Ursulin | 7e22dbb | 2016-05-10 10:57:06 +0100 | [diff] [blame] | 2118 | if (IS_GEN7(dev_priv)) |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2119 | seq_printf(m, "GFX_MODE: 0x%08x\n", |
| 2120 | I915_READ(RING_MODE_GEN7(engine))); |
| 2121 | seq_printf(m, "PP_DIR_BASE: 0x%08x\n", |
| 2122 | I915_READ(RING_PP_DIR_BASE(engine))); |
| 2123 | seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", |
| 2124 | I915_READ(RING_PP_DIR_BASE_READ(engine))); |
| 2125 | seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", |
| 2126 | I915_READ(RING_PP_DIR_DCLV(engine))); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2127 | } |
| 2128 | if (dev_priv->mm.aliasing_ppgtt) { |
| 2129 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 2130 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 2131 | seq_puts(m, "aliasing PPGTT:\n"); |
Mika Kuoppala | 44159dd | 2015-06-25 18:35:07 +0300 | [diff] [blame] | 2132 | seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd.base.ggtt_offset); |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2133 | |
Ben Widawsky | 87d60b6 | 2013-12-06 14:11:29 -0800 | [diff] [blame] | 2134 | ppgtt->debug_dump(ppgtt, m); |
Daniel Vetter | ae6c480 | 2014-08-06 15:04:53 +0200 | [diff] [blame] | 2135 | } |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2136 | |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2137 | seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK)); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2138 | } |
| 2139 | |
| 2140 | static int i915_ppgtt_info(struct seq_file *m, void *data) |
| 2141 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2142 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2143 | struct drm_device *dev = &dev_priv->drm; |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2144 | struct drm_file *file; |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2145 | int ret; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2146 | |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2147 | mutex_lock(&dev->filelist_mutex); |
| 2148 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2149 | if (ret) |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2150 | goto out_unlock; |
| 2151 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2152 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2153 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2154 | if (INTEL_GEN(dev_priv) >= 8) |
| 2155 | gen8_ppgtt_info(m, dev_priv); |
| 2156 | else if (INTEL_GEN(dev_priv) >= 6) |
| 2157 | gen6_ppgtt_info(m, dev_priv); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2158 | |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2159 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 2160 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Geliang Tang | 7cb5dff | 2015-09-25 03:58:11 -0700 | [diff] [blame] | 2161 | struct task_struct *task; |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2162 | |
Geliang Tang | 7cb5dff | 2015-09-25 03:58:11 -0700 | [diff] [blame] | 2163 | task = get_pid_task(file->pid, PIDTYPE_PID); |
Dan Carpenter | 0681276 | 2015-10-02 18:14:22 +0300 | [diff] [blame] | 2164 | if (!task) { |
| 2165 | ret = -ESRCH; |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2166 | goto out_rpm; |
Dan Carpenter | 0681276 | 2015-10-02 18:14:22 +0300 | [diff] [blame] | 2167 | } |
Geliang Tang | 7cb5dff | 2015-09-25 03:58:11 -0700 | [diff] [blame] | 2168 | seq_printf(m, "\nproc: %s\n", task->comm); |
| 2169 | put_task_struct(task); |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2170 | idr_for_each(&file_priv->context_idr, per_file_ctx, |
| 2171 | (void *)(unsigned long)m); |
| 2172 | } |
| 2173 | |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2174 | out_rpm: |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2175 | intel_runtime_pm_put(dev_priv); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2176 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2177 | out_unlock: |
| 2178 | mutex_unlock(&dev->filelist_mutex); |
Dan Carpenter | 0681276 | 2015-10-02 18:14:22 +0300 | [diff] [blame] | 2179 | return ret; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2180 | } |
| 2181 | |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2182 | static int count_irq_waiters(struct drm_i915_private *i915) |
| 2183 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2184 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2185 | enum intel_engine_id id; |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2186 | int count = 0; |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2187 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2188 | for_each_engine(engine, i915, id) |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 2189 | count += intel_engine_has_waiter(engine); |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2190 | |
| 2191 | return count; |
| 2192 | } |
| 2193 | |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2194 | static const char *rps_power_to_str(unsigned int power) |
| 2195 | { |
| 2196 | static const char * const strings[] = { |
| 2197 | [LOW_POWER] = "low power", |
| 2198 | [BETWEEN] = "mixed", |
| 2199 | [HIGH_POWER] = "high power", |
| 2200 | }; |
| 2201 | |
| 2202 | if (power >= ARRAY_SIZE(strings) || !strings[power]) |
| 2203 | return "unknown"; |
| 2204 | |
| 2205 | return strings[power]; |
| 2206 | } |
| 2207 | |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2208 | static int i915_rps_boost_info(struct seq_file *m, void *data) |
| 2209 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2210 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2211 | struct drm_device *dev = &dev_priv->drm; |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2212 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2213 | struct drm_file *file; |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2214 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2215 | seq_printf(m, "RPS enabled? %d\n", rps->enabled); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 2216 | seq_printf(m, "GPU busy? %s [%d requests]\n", |
| 2217 | yesno(dev_priv->gt.awake), dev_priv->gt.active_requests); |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2218 | seq_printf(m, "CPU waiting? %d\n", count_irq_waiters(dev_priv)); |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 2219 | seq_printf(m, "Boosts outstanding? %d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2220 | atomic_read(&rps->num_waiters)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2221 | seq_printf(m, "Frequency requested %d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2222 | intel_gpu_freq(dev_priv, rps->cur_freq)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2223 | seq_printf(m, " min hard:%d, soft:%d; max soft:%d, hard:%d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2224 | intel_gpu_freq(dev_priv, rps->min_freq), |
| 2225 | intel_gpu_freq(dev_priv, rps->min_freq_softlimit), |
| 2226 | intel_gpu_freq(dev_priv, rps->max_freq_softlimit), |
| 2227 | intel_gpu_freq(dev_priv, rps->max_freq)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2228 | seq_printf(m, " idle:%d, efficient:%d, boost:%d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2229 | intel_gpu_freq(dev_priv, rps->idle_freq), |
| 2230 | intel_gpu_freq(dev_priv, rps->efficient_freq), |
| 2231 | intel_gpu_freq(dev_priv, rps->boost_freq)); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 2232 | |
| 2233 | mutex_lock(&dev->filelist_mutex); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2234 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 2235 | struct drm_i915_file_private *file_priv = file->driver_priv; |
| 2236 | struct task_struct *task; |
| 2237 | |
| 2238 | rcu_read_lock(); |
| 2239 | task = pid_task(file->pid, PIDTYPE_PID); |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 2240 | seq_printf(m, "%s [%d]: %d boosts\n", |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2241 | task ? task->comm : "<unknown>", |
| 2242 | task ? task->pid : -1, |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2243 | atomic_read(&file_priv->rps_client.boosts)); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2244 | rcu_read_unlock(); |
| 2245 | } |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 2246 | seq_printf(m, "Kernel (anonymous) boosts: %d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2247 | atomic_read(&rps->boosts)); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 2248 | mutex_unlock(&dev->filelist_mutex); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2249 | |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2250 | if (INTEL_GEN(dev_priv) >= 6 && |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2251 | rps->enabled && |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 2252 | dev_priv->gt.active_requests) { |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2253 | u32 rpup, rpupei; |
| 2254 | u32 rpdown, rpdownei; |
| 2255 | |
| 2256 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 2257 | rpup = I915_READ_FW(GEN6_RP_CUR_UP) & GEN6_RP_EI_MASK; |
| 2258 | rpupei = I915_READ_FW(GEN6_RP_CUR_UP_EI) & GEN6_RP_EI_MASK; |
| 2259 | rpdown = I915_READ_FW(GEN6_RP_CUR_DOWN) & GEN6_RP_EI_MASK; |
| 2260 | rpdownei = I915_READ_FW(GEN6_RP_CUR_DOWN_EI) & GEN6_RP_EI_MASK; |
| 2261 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
| 2262 | |
| 2263 | seq_printf(m, "\nRPS Autotuning (current \"%s\" window):\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2264 | rps_power_to_str(rps->power)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2265 | seq_printf(m, " Avg. up: %d%% [above threshold? %d%%]\n", |
Chris Wilson | 23f4a28 | 2017-02-18 11:27:08 +0000 | [diff] [blame] | 2266 | rpup && rpupei ? 100 * rpup / rpupei : 0, |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2267 | rps->up_threshold); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2268 | seq_printf(m, " Avg. down: %d%% [below threshold? %d%%]\n", |
Chris Wilson | 23f4a28 | 2017-02-18 11:27:08 +0000 | [diff] [blame] | 2269 | rpdown && rpdownei ? 100 * rpdown / rpdownei : 0, |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2270 | rps->down_threshold); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2271 | } else { |
| 2272 | seq_puts(m, "\nRPS Autotuning inactive\n"); |
| 2273 | } |
| 2274 | |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 2275 | return 0; |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2276 | } |
| 2277 | |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2278 | static int i915_llc(struct seq_file *m, void *data) |
| 2279 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2280 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Mika Kuoppala | 3accaf7 | 2016-04-13 17:26:43 +0300 | [diff] [blame] | 2281 | const bool edram = INTEL_GEN(dev_priv) > 8; |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2282 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2283 | seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev_priv))); |
Mika Kuoppala | 3accaf7 | 2016-04-13 17:26:43 +0300 | [diff] [blame] | 2284 | seq_printf(m, "%s: %lluMB\n", edram ? "eDRAM" : "eLLC", |
| 2285 | intel_uncore_edram_size(dev_priv)/1024/1024); |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2286 | |
| 2287 | return 0; |
| 2288 | } |
| 2289 | |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2290 | static int i915_huc_load_status_info(struct seq_file *m, void *data) |
| 2291 | { |
| 2292 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2293 | struct drm_printer p; |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2294 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2295 | if (!HAS_HUC(dev_priv)) |
| 2296 | return -ENODEV; |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2297 | |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2298 | p = drm_seq_file_printer(m); |
| 2299 | intel_uc_fw_dump(&dev_priv->huc.fw, &p); |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2300 | |
sagar.a.kamble@intel.com | 3582ad1 | 2017-02-03 13:58:33 +0530 | [diff] [blame] | 2301 | intel_runtime_pm_get(dev_priv); |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2302 | seq_printf(m, "\nHuC status 0x%08x:\n", I915_READ(HUC_STATUS2)); |
sagar.a.kamble@intel.com | 3582ad1 | 2017-02-03 13:58:33 +0530 | [diff] [blame] | 2303 | intel_runtime_pm_put(dev_priv); |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2304 | |
| 2305 | return 0; |
| 2306 | } |
| 2307 | |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2308 | static int i915_guc_load_status_info(struct seq_file *m, void *data) |
| 2309 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2310 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2311 | struct drm_printer p; |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2312 | u32 tmp, i; |
| 2313 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2314 | if (!HAS_GUC(dev_priv)) |
| 2315 | return -ENODEV; |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2316 | |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2317 | p = drm_seq_file_printer(m); |
| 2318 | intel_uc_fw_dump(&dev_priv->guc.fw, &p); |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2319 | |
sagar.a.kamble@intel.com | 3582ad1 | 2017-02-03 13:58:33 +0530 | [diff] [blame] | 2320 | intel_runtime_pm_get(dev_priv); |
| 2321 | |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2322 | tmp = I915_READ(GUC_STATUS); |
| 2323 | |
| 2324 | seq_printf(m, "\nGuC status 0x%08x:\n", tmp); |
| 2325 | seq_printf(m, "\tBootrom status = 0x%x\n", |
| 2326 | (tmp & GS_BOOTROM_MASK) >> GS_BOOTROM_SHIFT); |
| 2327 | seq_printf(m, "\tuKernel status = 0x%x\n", |
| 2328 | (tmp & GS_UKERNEL_MASK) >> GS_UKERNEL_SHIFT); |
| 2329 | seq_printf(m, "\tMIA Core status = 0x%x\n", |
| 2330 | (tmp & GS_MIA_MASK) >> GS_MIA_SHIFT); |
| 2331 | seq_puts(m, "\nScratch registers:\n"); |
| 2332 | for (i = 0; i < 16; i++) |
| 2333 | seq_printf(m, "\t%2d: \t0x%x\n", i, I915_READ(SOFT_SCRATCH(i))); |
| 2334 | |
sagar.a.kamble@intel.com | 3582ad1 | 2017-02-03 13:58:33 +0530 | [diff] [blame] | 2335 | intel_runtime_pm_put(dev_priv); |
| 2336 | |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2337 | return 0; |
| 2338 | } |
| 2339 | |
Michał Winiarski | 5e24e4a | 2018-03-19 10:53:44 +0100 | [diff] [blame] | 2340 | static const char * |
| 2341 | stringify_guc_log_type(enum guc_log_buffer_type type) |
| 2342 | { |
| 2343 | switch (type) { |
| 2344 | case GUC_ISR_LOG_BUFFER: |
| 2345 | return "ISR"; |
| 2346 | case GUC_DPC_LOG_BUFFER: |
| 2347 | return "DPC"; |
| 2348 | case GUC_CRASH_DUMP_LOG_BUFFER: |
| 2349 | return "CRASH"; |
| 2350 | default: |
| 2351 | MISSING_CASE(type); |
| 2352 | } |
| 2353 | |
| 2354 | return ""; |
| 2355 | } |
| 2356 | |
Akash Goel | 5aa1ee4 | 2016-10-12 21:54:36 +0530 | [diff] [blame] | 2357 | static void i915_guc_log_info(struct seq_file *m, |
| 2358 | struct drm_i915_private *dev_priv) |
| 2359 | { |
Michał Winiarski | 5e24e4a | 2018-03-19 10:53:44 +0100 | [diff] [blame] | 2360 | struct intel_guc_log *log = &dev_priv->guc.log; |
| 2361 | enum guc_log_buffer_type type; |
| 2362 | |
| 2363 | if (!intel_guc_log_relay_enabled(log)) { |
| 2364 | seq_puts(m, "GuC log relay disabled\n"); |
| 2365 | return; |
| 2366 | } |
Akash Goel | 5aa1ee4 | 2016-10-12 21:54:36 +0530 | [diff] [blame] | 2367 | |
Michał Winiarski | db55799 | 2018-03-19 10:53:43 +0100 | [diff] [blame] | 2368 | seq_puts(m, "GuC logging stats:\n"); |
Akash Goel | 5aa1ee4 | 2016-10-12 21:54:36 +0530 | [diff] [blame] | 2369 | |
Michał Winiarski | 6a96be2 | 2018-03-19 10:53:42 +0100 | [diff] [blame] | 2370 | seq_printf(m, "\tRelay full count: %u\n", |
Michał Winiarski | 5e24e4a | 2018-03-19 10:53:44 +0100 | [diff] [blame] | 2371 | log->relay.full_count); |
| 2372 | |
| 2373 | for (type = GUC_ISR_LOG_BUFFER; type < GUC_MAX_LOG_BUFFER; type++) { |
| 2374 | seq_printf(m, "\t%s:\tflush count %10u, overflow count %10u\n", |
| 2375 | stringify_guc_log_type(type), |
| 2376 | log->stats[type].flush, |
| 2377 | log->stats[type].sampled_overflow); |
| 2378 | } |
Akash Goel | 5aa1ee4 | 2016-10-12 21:54:36 +0530 | [diff] [blame] | 2379 | } |
| 2380 | |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2381 | static void i915_guc_client_info(struct seq_file *m, |
| 2382 | struct drm_i915_private *dev_priv, |
Sagar Arun Kamble | 5afc8b4 | 2017-11-16 19:02:40 +0530 | [diff] [blame] | 2383 | struct intel_guc_client *client) |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2384 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2385 | struct intel_engine_cs *engine; |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 2386 | enum intel_engine_id id; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2387 | uint64_t tot = 0; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2388 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 2389 | seq_printf(m, "\tPriority %d, GuC stage index: %u, PD offset 0x%x\n", |
| 2390 | client->priority, client->stage_id, client->proc_desc_offset); |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 2391 | seq_printf(m, "\tDoorbell id %d, offset: 0x%lx\n", |
| 2392 | client->doorbell_id, client->doorbell_offset); |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2393 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2394 | for_each_engine(engine, dev_priv, id) { |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 2395 | u64 submissions = client->submissions[id]; |
| 2396 | tot += submissions; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2397 | seq_printf(m, "\tSubmissions: %llu %s\n", |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 2398 | submissions, engine->name); |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2399 | } |
| 2400 | seq_printf(m, "\tTotal: %llu\n", tot); |
| 2401 | } |
| 2402 | |
| 2403 | static int i915_guc_info(struct seq_file *m, void *data) |
| 2404 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2405 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Chris Wilson | 334636c | 2016-11-29 12:10:20 +0000 | [diff] [blame] | 2406 | const struct intel_guc *guc = &dev_priv->guc; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2407 | |
Michał Winiarski | db55799 | 2018-03-19 10:53:43 +0100 | [diff] [blame] | 2408 | if (!USES_GUC(dev_priv)) |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2409 | return -ENODEV; |
| 2410 | |
Michał Winiarski | db55799 | 2018-03-19 10:53:43 +0100 | [diff] [blame] | 2411 | i915_guc_log_info(m, dev_priv); |
| 2412 | |
| 2413 | if (!USES_GUC_SUBMISSION(dev_priv)) |
| 2414 | return 0; |
| 2415 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2416 | GEM_BUG_ON(!guc->execbuf_client); |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2417 | |
Michał Winiarski | db55799 | 2018-03-19 10:53:43 +0100 | [diff] [blame] | 2418 | seq_printf(m, "\nDoorbell map:\n"); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 2419 | seq_printf(m, "\t%*pb\n", GUC_NUM_DOORBELLS, guc->doorbell_bitmap); |
Michał Winiarski | db55799 | 2018-03-19 10:53:43 +0100 | [diff] [blame] | 2420 | seq_printf(m, "Doorbell next cacheline: 0x%x\n", guc->db_cacheline); |
Dave Gordon | 9636f6d | 2016-06-13 17:57:28 +0100 | [diff] [blame] | 2421 | |
Chris Wilson | 334636c | 2016-11-29 12:10:20 +0000 | [diff] [blame] | 2422 | seq_printf(m, "\nGuC execbuf client @ %p:\n", guc->execbuf_client); |
| 2423 | i915_guc_client_info(m, dev_priv, guc->execbuf_client); |
Chris Wilson | e78c917 | 2018-02-07 21:05:42 +0000 | [diff] [blame] | 2424 | if (guc->preempt_client) { |
| 2425 | seq_printf(m, "\nGuC preempt client @ %p:\n", |
| 2426 | guc->preempt_client); |
| 2427 | i915_guc_client_info(m, dev_priv, guc->preempt_client); |
| 2428 | } |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2429 | |
| 2430 | /* Add more as required ... */ |
| 2431 | |
| 2432 | return 0; |
| 2433 | } |
| 2434 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2435 | static int i915_guc_stage_pool(struct seq_file *m, void *data) |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2436 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2437 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2438 | const struct intel_guc *guc = &dev_priv->guc; |
| 2439 | struct guc_stage_desc *desc = guc->stage_desc_pool_vaddr; |
Sagar Arun Kamble | 5afc8b4 | 2017-11-16 19:02:40 +0530 | [diff] [blame] | 2440 | struct intel_guc_client *client = guc->execbuf_client; |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2441 | unsigned int tmp; |
| 2442 | int index; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2443 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2444 | if (!USES_GUC_SUBMISSION(dev_priv)) |
| 2445 | return -ENODEV; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2446 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2447 | for (index = 0; index < GUC_MAX_STAGE_DESCRIPTORS; index++, desc++) { |
| 2448 | struct intel_engine_cs *engine; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2449 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2450 | if (!(desc->attribute & GUC_STAGE_DESC_ATTR_ACTIVE)) |
| 2451 | continue; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2452 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2453 | seq_printf(m, "GuC stage descriptor %u:\n", index); |
| 2454 | seq_printf(m, "\tIndex: %u\n", desc->stage_id); |
| 2455 | seq_printf(m, "\tAttribute: 0x%x\n", desc->attribute); |
| 2456 | seq_printf(m, "\tPriority: %d\n", desc->priority); |
| 2457 | seq_printf(m, "\tDoorbell id: %d\n", desc->db_id); |
| 2458 | seq_printf(m, "\tEngines used: 0x%x\n", |
| 2459 | desc->engines_used); |
| 2460 | seq_printf(m, "\tDoorbell trigger phy: 0x%llx, cpu: 0x%llx, uK: 0x%x\n", |
| 2461 | desc->db_trigger_phy, |
| 2462 | desc->db_trigger_cpu, |
| 2463 | desc->db_trigger_uk); |
| 2464 | seq_printf(m, "\tProcess descriptor: 0x%x\n", |
| 2465 | desc->process_desc); |
Colin Ian King | 9a09485 | 2017-05-16 10:22:35 +0100 | [diff] [blame] | 2466 | seq_printf(m, "\tWorkqueue address: 0x%x, size: 0x%x\n", |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2467 | desc->wq_addr, desc->wq_size); |
| 2468 | seq_putc(m, '\n'); |
| 2469 | |
| 2470 | for_each_engine_masked(engine, dev_priv, client->engines, tmp) { |
| 2471 | u32 guc_engine_id = engine->guc_id; |
| 2472 | struct guc_execlist_context *lrc = |
| 2473 | &desc->lrc[guc_engine_id]; |
| 2474 | |
| 2475 | seq_printf(m, "\t%s LRC:\n", engine->name); |
| 2476 | seq_printf(m, "\t\tContext desc: 0x%x\n", |
| 2477 | lrc->context_desc); |
| 2478 | seq_printf(m, "\t\tContext id: 0x%x\n", lrc->context_id); |
| 2479 | seq_printf(m, "\t\tLRCA: 0x%x\n", lrc->ring_lrca); |
| 2480 | seq_printf(m, "\t\tRing begin: 0x%x\n", lrc->ring_begin); |
| 2481 | seq_printf(m, "\t\tRing end: 0x%x\n", lrc->ring_end); |
| 2482 | seq_putc(m, '\n'); |
| 2483 | } |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2484 | } |
| 2485 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2486 | return 0; |
| 2487 | } |
| 2488 | |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2489 | static int i915_guc_log_dump(struct seq_file *m, void *data) |
| 2490 | { |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2491 | struct drm_info_node *node = m->private; |
| 2492 | struct drm_i915_private *dev_priv = node_to_i915(node); |
| 2493 | bool dump_load_err = !!node->info_ent->data; |
| 2494 | struct drm_i915_gem_object *obj = NULL; |
| 2495 | u32 *log; |
| 2496 | int i = 0; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2497 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2498 | if (!HAS_GUC(dev_priv)) |
| 2499 | return -ENODEV; |
| 2500 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2501 | if (dump_load_err) |
| 2502 | obj = dev_priv->guc.load_err_log; |
| 2503 | else if (dev_priv->guc.log.vma) |
| 2504 | obj = dev_priv->guc.log.vma->obj; |
| 2505 | |
| 2506 | if (!obj) |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2507 | return 0; |
| 2508 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2509 | log = i915_gem_object_pin_map(obj, I915_MAP_WC); |
| 2510 | if (IS_ERR(log)) { |
| 2511 | DRM_DEBUG("Failed to pin object\n"); |
| 2512 | seq_puts(m, "(log data unaccessible)\n"); |
| 2513 | return PTR_ERR(log); |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2514 | } |
| 2515 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2516 | for (i = 0; i < obj->base.size / sizeof(u32); i += 4) |
| 2517 | seq_printf(m, "0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 2518 | *(log + i), *(log + i + 1), |
| 2519 | *(log + i + 2), *(log + i + 3)); |
| 2520 | |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2521 | seq_putc(m, '\n'); |
| 2522 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2523 | i915_gem_object_unpin_map(obj); |
| 2524 | |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2525 | return 0; |
| 2526 | } |
| 2527 | |
Michał Winiarski | 4977a28 | 2018-03-19 10:53:40 +0100 | [diff] [blame] | 2528 | static int i915_guc_log_level_get(void *data, u64 *val) |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2529 | { |
Chris Wilson | bcc36d8 | 2017-04-07 20:42:20 +0100 | [diff] [blame] | 2530 | struct drm_i915_private *dev_priv = data; |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2531 | |
Michał Winiarski | 86aa824 | 2018-03-08 16:46:53 +0100 | [diff] [blame] | 2532 | if (!USES_GUC(dev_priv)) |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2533 | return -ENODEV; |
| 2534 | |
Piotr Piórkowski | 50935ac | 2018-06-04 16:19:41 +0200 | [diff] [blame] | 2535 | *val = intel_guc_log_get_level(&dev_priv->guc.log); |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2536 | |
| 2537 | return 0; |
| 2538 | } |
| 2539 | |
Michał Winiarski | 4977a28 | 2018-03-19 10:53:40 +0100 | [diff] [blame] | 2540 | static int i915_guc_log_level_set(void *data, u64 val) |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2541 | { |
Chris Wilson | bcc36d8 | 2017-04-07 20:42:20 +0100 | [diff] [blame] | 2542 | struct drm_i915_private *dev_priv = data; |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2543 | |
Michał Winiarski | 86aa824 | 2018-03-08 16:46:53 +0100 | [diff] [blame] | 2544 | if (!USES_GUC(dev_priv)) |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2545 | return -ENODEV; |
| 2546 | |
Piotr Piórkowski | 50935ac | 2018-06-04 16:19:41 +0200 | [diff] [blame] | 2547 | return intel_guc_log_set_level(&dev_priv->guc.log, val); |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2548 | } |
| 2549 | |
Michał Winiarski | 4977a28 | 2018-03-19 10:53:40 +0100 | [diff] [blame] | 2550 | DEFINE_SIMPLE_ATTRIBUTE(i915_guc_log_level_fops, |
| 2551 | i915_guc_log_level_get, i915_guc_log_level_set, |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2552 | "%lld\n"); |
| 2553 | |
Michał Winiarski | 4977a28 | 2018-03-19 10:53:40 +0100 | [diff] [blame] | 2554 | static int i915_guc_log_relay_open(struct inode *inode, struct file *file) |
| 2555 | { |
| 2556 | struct drm_i915_private *dev_priv = inode->i_private; |
| 2557 | |
| 2558 | if (!USES_GUC(dev_priv)) |
| 2559 | return -ENODEV; |
| 2560 | |
| 2561 | file->private_data = &dev_priv->guc.log; |
| 2562 | |
| 2563 | return intel_guc_log_relay_open(&dev_priv->guc.log); |
| 2564 | } |
| 2565 | |
| 2566 | static ssize_t |
| 2567 | i915_guc_log_relay_write(struct file *filp, |
| 2568 | const char __user *ubuf, |
| 2569 | size_t cnt, |
| 2570 | loff_t *ppos) |
| 2571 | { |
| 2572 | struct intel_guc_log *log = filp->private_data; |
| 2573 | |
| 2574 | intel_guc_log_relay_flush(log); |
| 2575 | |
| 2576 | return cnt; |
| 2577 | } |
| 2578 | |
| 2579 | static int i915_guc_log_relay_release(struct inode *inode, struct file *file) |
| 2580 | { |
| 2581 | struct drm_i915_private *dev_priv = inode->i_private; |
| 2582 | |
| 2583 | intel_guc_log_relay_close(&dev_priv->guc.log); |
| 2584 | |
| 2585 | return 0; |
| 2586 | } |
| 2587 | |
| 2588 | static const struct file_operations i915_guc_log_relay_fops = { |
| 2589 | .owner = THIS_MODULE, |
| 2590 | .open = i915_guc_log_relay_open, |
| 2591 | .write = i915_guc_log_relay_write, |
| 2592 | .release = i915_guc_log_relay_release, |
| 2593 | }; |
| 2594 | |
Vathsala Nagaraju | 00b0629 | 2018-06-27 13:38:30 +0530 | [diff] [blame] | 2595 | static void |
| 2596 | psr_source_status(struct drm_i915_private *dev_priv, struct seq_file *m) |
Chris Wilson | b86bef20 | 2017-01-16 13:06:21 +0000 | [diff] [blame] | 2597 | { |
Vathsala Nagaraju | 00b0629 | 2018-06-27 13:38:30 +0530 | [diff] [blame] | 2598 | u32 val, psr_status; |
Chris Wilson | b86bef20 | 2017-01-16 13:06:21 +0000 | [diff] [blame] | 2599 | |
Vathsala Nagaraju | 00b0629 | 2018-06-27 13:38:30 +0530 | [diff] [blame] | 2600 | if (dev_priv->psr.psr2_enabled) { |
| 2601 | static const char * const live_status[] = { |
| 2602 | "IDLE", |
| 2603 | "CAPTURE", |
| 2604 | "CAPTURE_FS", |
| 2605 | "SLEEP", |
| 2606 | "BUFON_FW", |
| 2607 | "ML_UP", |
| 2608 | "SU_STANDBY", |
| 2609 | "FAST_SLEEP", |
| 2610 | "DEEP_SLEEP", |
| 2611 | "BUF_ON", |
| 2612 | "TG_ON" |
| 2613 | }; |
| 2614 | psr_status = I915_READ(EDP_PSR2_STATUS); |
| 2615 | val = (psr_status & EDP_PSR2_STATUS_STATE_MASK) >> |
| 2616 | EDP_PSR2_STATUS_STATE_SHIFT; |
| 2617 | if (val < ARRAY_SIZE(live_status)) { |
| 2618 | seq_printf(m, "Source PSR status: 0x%x [%s]\n", |
| 2619 | psr_status, live_status[val]); |
| 2620 | return; |
| 2621 | } |
| 2622 | } else { |
| 2623 | static const char * const live_status[] = { |
| 2624 | "IDLE", |
| 2625 | "SRDONACK", |
| 2626 | "SRDENT", |
| 2627 | "BUFOFF", |
| 2628 | "BUFON", |
| 2629 | "AUXACK", |
| 2630 | "SRDOFFACK", |
| 2631 | "SRDENT_ON", |
| 2632 | }; |
| 2633 | psr_status = I915_READ(EDP_PSR_STATUS); |
| 2634 | val = (psr_status & EDP_PSR_STATUS_STATE_MASK) >> |
| 2635 | EDP_PSR_STATUS_STATE_SHIFT; |
| 2636 | if (val < ARRAY_SIZE(live_status)) { |
| 2637 | seq_printf(m, "Source PSR status: 0x%x [%s]\n", |
| 2638 | psr_status, live_status[val]); |
| 2639 | return; |
| 2640 | } |
| 2641 | } |
Chris Wilson | b86bef20 | 2017-01-16 13:06:21 +0000 | [diff] [blame] | 2642 | |
Vathsala Nagaraju | 00b0629 | 2018-06-27 13:38:30 +0530 | [diff] [blame] | 2643 | seq_printf(m, "Source PSR status: 0x%x [%s]\n", psr_status, "unknown"); |
Chris Wilson | b86bef20 | 2017-01-16 13:06:21 +0000 | [diff] [blame] | 2644 | } |
| 2645 | |
José Roberto de Souza | d0bc862 | 2018-04-25 14:23:33 -0700 | [diff] [blame] | 2646 | static const char *psr_sink_status(u8 val) |
| 2647 | { |
| 2648 | static const char * const sink_status[] = { |
| 2649 | "inactive", |
| 2650 | "transition to active, capture and display", |
| 2651 | "active, display from RFB", |
| 2652 | "active, capture and display on sink device timings", |
| 2653 | "transition to inactive, capture and display, timing re-sync", |
| 2654 | "reserved", |
| 2655 | "reserved", |
| 2656 | "sink internal error" |
| 2657 | }; |
| 2658 | |
| 2659 | val &= DP_PSR_SINK_STATE_MASK; |
| 2660 | if (val < ARRAY_SIZE(sink_status)) |
| 2661 | return sink_status[val]; |
| 2662 | |
| 2663 | return "unknown"; |
| 2664 | } |
| 2665 | |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2666 | static int i915_edp_psr_status(struct seq_file *m, void *data) |
| 2667 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2668 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2669 | u32 psrperf = 0; |
| 2670 | bool enabled = false; |
Dhinakaran Pandiyan | c9ef291 | 2018-01-03 13:38:24 -0800 | [diff] [blame] | 2671 | bool sink_support; |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2672 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2673 | if (!HAS_PSR(dev_priv)) |
| 2674 | return -ENODEV; |
Damien Lespiau | 3553a8e | 2015-03-09 14:17:58 +0000 | [diff] [blame] | 2675 | |
Dhinakaran Pandiyan | c9ef291 | 2018-01-03 13:38:24 -0800 | [diff] [blame] | 2676 | sink_support = dev_priv->psr.sink_support; |
| 2677 | seq_printf(m, "Sink_Support: %s\n", yesno(sink_support)); |
| 2678 | if (!sink_support) |
| 2679 | return 0; |
| 2680 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2681 | intel_runtime_pm_get(dev_priv); |
| 2682 | |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2683 | mutex_lock(&dev_priv->psr.lock); |
Daniel Vetter | 2807cf6 | 2014-07-11 10:30:11 -0700 | [diff] [blame] | 2684 | seq_printf(m, "Enabled: %s\n", yesno((bool)dev_priv->psr.enabled)); |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2685 | seq_printf(m, "Busy frontbuffer bits: 0x%03x\n", |
| 2686 | dev_priv->psr.busy_frontbuffer_bits); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2687 | |
Dhinakaran Pandiyan | ce3508f | 2018-05-11 16:00:59 -0700 | [diff] [blame] | 2688 | if (dev_priv->psr.psr2_enabled) |
| 2689 | enabled = I915_READ(EDP_PSR2_CTL) & EDP_PSR2_ENABLE; |
| 2690 | else |
| 2691 | enabled = I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE; |
Rodrigo Vivi | 60e5ffe | 2016-02-01 12:02:07 -0800 | [diff] [blame] | 2692 | |
| 2693 | seq_printf(m, "Main link in standby mode: %s\n", |
| 2694 | yesno(dev_priv->psr.link_standby)); |
| 2695 | |
Dhinakaran Pandiyan | ce3508f | 2018-05-11 16:00:59 -0700 | [diff] [blame] | 2696 | seq_printf(m, "HW Enabled & Active bit: %s\n", yesno(enabled)); |
Rodrigo Vivi | a6cbdb8 | 2014-11-14 08:52:40 -0800 | [diff] [blame] | 2697 | |
Rodrigo Vivi | 05eec3c | 2015-11-23 14:16:40 -0800 | [diff] [blame] | 2698 | /* |
Rodrigo Vivi | 05eec3c | 2015-11-23 14:16:40 -0800 | [diff] [blame] | 2699 | * SKL+ Perf counter is reset to 0 everytime DC state is entered |
| 2700 | */ |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2701 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Ville Syrjälä | 443a389 | 2015-11-11 20:34:15 +0200 | [diff] [blame] | 2702 | psrperf = I915_READ(EDP_PSR_PERF_CNT) & |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2703 | EDP_PSR_PERF_CNT_MASK; |
Rodrigo Vivi | a6cbdb8 | 2014-11-14 08:52:40 -0800 | [diff] [blame] | 2704 | |
| 2705 | seq_printf(m, "Performance_Counter: %u\n", psrperf); |
| 2706 | } |
Nagaraju, Vathsala | 6ba1f9e | 2017-01-06 22:02:32 +0530 | [diff] [blame] | 2707 | |
Vathsala Nagaraju | 00b0629 | 2018-06-27 13:38:30 +0530 | [diff] [blame] | 2708 | psr_source_status(dev_priv, m); |
José Roberto de Souza | d0bc862 | 2018-04-25 14:23:33 -0700 | [diff] [blame] | 2709 | |
| 2710 | if (dev_priv->psr.enabled) { |
| 2711 | struct drm_dp_aux *aux = &dev_priv->psr.enabled->aux; |
| 2712 | u8 val; |
| 2713 | |
| 2714 | if (drm_dp_dpcd_readb(aux, DP_PSR_STATUS, &val) == 1) |
| 2715 | seq_printf(m, "Sink PSR status: 0x%x [%s]\n", val, |
| 2716 | psr_sink_status(val)); |
| 2717 | } |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2718 | mutex_unlock(&dev_priv->psr.lock); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2719 | |
Dhinakaran Pandiyan | 3f983e54 | 2018-04-03 14:24:20 -0700 | [diff] [blame] | 2720 | if (READ_ONCE(dev_priv->psr.debug)) { |
| 2721 | seq_printf(m, "Last attempted entry at: %lld\n", |
| 2722 | dev_priv->psr.last_entry_attempt); |
| 2723 | seq_printf(m, "Last exit at: %lld\n", |
| 2724 | dev_priv->psr.last_exit); |
| 2725 | } |
| 2726 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2727 | intel_runtime_pm_put(dev_priv); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2728 | return 0; |
| 2729 | } |
| 2730 | |
Dhinakaran Pandiyan | 54fd314 | 2018-04-04 18:37:17 -0700 | [diff] [blame] | 2731 | static int |
| 2732 | i915_edp_psr_debug_set(void *data, u64 val) |
| 2733 | { |
| 2734 | struct drm_i915_private *dev_priv = data; |
| 2735 | |
| 2736 | if (!CAN_PSR(dev_priv)) |
| 2737 | return -ENODEV; |
| 2738 | |
| 2739 | DRM_DEBUG_KMS("PSR debug %s\n", enableddisabled(val)); |
| 2740 | |
| 2741 | intel_runtime_pm_get(dev_priv); |
| 2742 | intel_psr_irq_control(dev_priv, !!val); |
| 2743 | intel_runtime_pm_put(dev_priv); |
| 2744 | |
| 2745 | return 0; |
| 2746 | } |
| 2747 | |
| 2748 | static int |
| 2749 | i915_edp_psr_debug_get(void *data, u64 *val) |
| 2750 | { |
| 2751 | struct drm_i915_private *dev_priv = data; |
| 2752 | |
| 2753 | if (!CAN_PSR(dev_priv)) |
| 2754 | return -ENODEV; |
| 2755 | |
| 2756 | *val = READ_ONCE(dev_priv->psr.debug); |
| 2757 | return 0; |
| 2758 | } |
| 2759 | |
| 2760 | DEFINE_SIMPLE_ATTRIBUTE(i915_edp_psr_debug_fops, |
| 2761 | i915_edp_psr_debug_get, i915_edp_psr_debug_set, |
| 2762 | "%llu\n"); |
| 2763 | |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2764 | static int i915_sink_crc(struct seq_file *m, void *data) |
| 2765 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2766 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2767 | struct drm_device *dev = &dev_priv->drm; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2768 | struct intel_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2769 | struct drm_connector_list_iter conn_iter; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2770 | struct intel_dp *intel_dp = NULL; |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2771 | struct drm_modeset_acquire_ctx ctx; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2772 | int ret; |
| 2773 | u8 crc[6]; |
| 2774 | |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2775 | drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE); |
| 2776 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2777 | drm_connector_list_iter_begin(dev, &conn_iter); |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2778 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2779 | for_each_intel_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | 26c17cf | 2016-06-20 15:57:38 +0200 | [diff] [blame] | 2780 | struct drm_crtc *crtc; |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2781 | struct drm_connector_state *state; |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2782 | struct intel_crtc_state *crtc_state; |
Paulo Zanoni | b6ae3c7 | 2014-02-13 17:51:33 -0200 | [diff] [blame] | 2783 | |
Maarten Lankhorst | 26c17cf | 2016-06-20 15:57:38 +0200 | [diff] [blame] | 2784 | if (connector->base.connector_type != DRM_MODE_CONNECTOR_eDP) |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2785 | continue; |
| 2786 | |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2787 | retry: |
| 2788 | ret = drm_modeset_lock(&dev->mode_config.connection_mutex, &ctx); |
| 2789 | if (ret) |
| 2790 | goto err; |
| 2791 | |
| 2792 | state = connector->base.state; |
| 2793 | if (!state->best_encoder) |
| 2794 | continue; |
| 2795 | |
| 2796 | crtc = state->crtc; |
| 2797 | ret = drm_modeset_lock(&crtc->mutex, &ctx); |
| 2798 | if (ret) |
| 2799 | goto err; |
| 2800 | |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2801 | crtc_state = to_intel_crtc_state(crtc->state); |
| 2802 | if (!crtc_state->base.active) |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2803 | continue; |
| 2804 | |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2805 | /* |
| 2806 | * We need to wait for all crtc updates to complete, to make |
| 2807 | * sure any pending modesets and plane updates are completed. |
| 2808 | */ |
| 2809 | if (crtc_state->base.commit) { |
| 2810 | ret = wait_for_completion_interruptible(&crtc_state->base.commit->hw_done); |
| 2811 | |
| 2812 | if (ret) |
| 2813 | goto err; |
| 2814 | } |
| 2815 | |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2816 | intel_dp = enc_to_intel_dp(state->best_encoder); |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2817 | |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2818 | ret = intel_dp_sink_crc(intel_dp, crtc_state, crc); |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2819 | if (ret) |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2820 | goto err; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2821 | |
| 2822 | seq_printf(m, "%02x%02x%02x%02x%02x%02x\n", |
| 2823 | crc[0], crc[1], crc[2], |
| 2824 | crc[3], crc[4], crc[5]); |
| 2825 | goto out; |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2826 | |
| 2827 | err: |
| 2828 | if (ret == -EDEADLK) { |
| 2829 | ret = drm_modeset_backoff(&ctx); |
| 2830 | if (!ret) |
| 2831 | goto retry; |
| 2832 | } |
| 2833 | goto out; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2834 | } |
| 2835 | ret = -ENODEV; |
| 2836 | out: |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2837 | drm_connector_list_iter_end(&conn_iter); |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2838 | drm_modeset_drop_locks(&ctx); |
| 2839 | drm_modeset_acquire_fini(&ctx); |
| 2840 | |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2841 | return ret; |
| 2842 | } |
| 2843 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2844 | static int i915_energy_uJ(struct seq_file *m, void *data) |
| 2845 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2846 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2847 | unsigned long long power; |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2848 | u32 units; |
| 2849 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2850 | if (INTEL_GEN(dev_priv) < 6) |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2851 | return -ENODEV; |
| 2852 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 2853 | intel_runtime_pm_get(dev_priv); |
| 2854 | |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2855 | if (rdmsrl_safe(MSR_RAPL_POWER_UNIT, &power)) { |
| 2856 | intel_runtime_pm_put(dev_priv); |
| 2857 | return -ENODEV; |
| 2858 | } |
| 2859 | |
| 2860 | units = (power & 0x1f00) >> 8; |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2861 | power = I915_READ(MCH_SECP_NRG_STTS); |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2862 | power = (1000000 * power) >> units; /* convert to uJ */ |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2863 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 2864 | intel_runtime_pm_put(dev_priv); |
| 2865 | |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2866 | seq_printf(m, "%llu", power); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2867 | |
| 2868 | return 0; |
| 2869 | } |
| 2870 | |
Damien Lespiau | 6455c87 | 2015-06-04 18:23:57 +0100 | [diff] [blame] | 2871 | static int i915_runtime_pm_status(struct seq_file *m, void *unused) |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2872 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2873 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 2874 | struct pci_dev *pdev = dev_priv->drm.pdev; |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2875 | |
Chris Wilson | a156e64 | 2016-04-03 14:14:21 +0100 | [diff] [blame] | 2876 | if (!HAS_RUNTIME_PM(dev_priv)) |
| 2877 | seq_puts(m, "Runtime power management not supported\n"); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2878 | |
Chris Wilson | 6f56103 | 2018-01-24 11:36:07 +0000 | [diff] [blame] | 2879 | seq_printf(m, "GPU idle: %s (epoch %u)\n", |
| 2880 | yesno(!dev_priv->gt.awake), dev_priv->gt.epoch); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2881 | seq_printf(m, "IRQs disabled: %s\n", |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 2882 | yesno(!intel_irqs_enabled(dev_priv))); |
Chris Wilson | 0d80418 | 2015-06-15 12:52:28 +0100 | [diff] [blame] | 2883 | #ifdef CONFIG_PM |
Damien Lespiau | a6aaec8 | 2015-06-04 18:23:58 +0100 | [diff] [blame] | 2884 | seq_printf(m, "Usage count: %d\n", |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2885 | atomic_read(&dev_priv->drm.dev->power.usage_count)); |
Chris Wilson | 0d80418 | 2015-06-15 12:52:28 +0100 | [diff] [blame] | 2886 | #else |
| 2887 | seq_printf(m, "Device Power Management (CONFIG_PM) disabled\n"); |
| 2888 | #endif |
Chris Wilson | a156e64 | 2016-04-03 14:14:21 +0100 | [diff] [blame] | 2889 | seq_printf(m, "PCI device power state: %s [%d]\n", |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 2890 | pci_power_name(pdev->current_state), |
| 2891 | pdev->current_state); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2892 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2893 | return 0; |
| 2894 | } |
| 2895 | |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2896 | static int i915_power_domain_info(struct seq_file *m, void *unused) |
| 2897 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2898 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2899 | struct i915_power_domains *power_domains = &dev_priv->power_domains; |
| 2900 | int i; |
| 2901 | |
| 2902 | mutex_lock(&power_domains->lock); |
| 2903 | |
| 2904 | seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count"); |
| 2905 | for (i = 0; i < power_domains->power_well_count; i++) { |
| 2906 | struct i915_power_well *power_well; |
| 2907 | enum intel_display_power_domain power_domain; |
| 2908 | |
| 2909 | power_well = &power_domains->power_wells[i]; |
| 2910 | seq_printf(m, "%-25s %d\n", power_well->name, |
| 2911 | power_well->count); |
| 2912 | |
Joonas Lahtinen | 8385c2e | 2017-02-08 15:12:10 +0200 | [diff] [blame] | 2913 | for_each_power_domain(power_domain, power_well->domains) |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2914 | seq_printf(m, " %-23s %d\n", |
Daniel Stone | 9895ad0 | 2015-11-20 15:55:33 +0000 | [diff] [blame] | 2915 | intel_display_power_domain_str(power_domain), |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2916 | power_domains->domain_use_count[power_domain]); |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2917 | } |
| 2918 | |
| 2919 | mutex_unlock(&power_domains->lock); |
| 2920 | |
| 2921 | return 0; |
| 2922 | } |
| 2923 | |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2924 | static int i915_dmc_info(struct seq_file *m, void *unused) |
| 2925 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2926 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2927 | struct intel_csr *csr; |
| 2928 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2929 | if (!HAS_CSR(dev_priv)) |
| 2930 | return -ENODEV; |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2931 | |
| 2932 | csr = &dev_priv->csr; |
| 2933 | |
Mika Kuoppala | 6fb403d | 2015-10-30 17:54:47 +0200 | [diff] [blame] | 2934 | intel_runtime_pm_get(dev_priv); |
| 2935 | |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2936 | seq_printf(m, "fw loaded: %s\n", yesno(csr->dmc_payload != NULL)); |
| 2937 | seq_printf(m, "path: %s\n", csr->fw_path); |
| 2938 | |
| 2939 | if (!csr->dmc_payload) |
Mika Kuoppala | 6fb403d | 2015-10-30 17:54:47 +0200 | [diff] [blame] | 2940 | goto out; |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2941 | |
| 2942 | seq_printf(m, "version: %d.%d\n", CSR_VERSION_MAJOR(csr->version), |
| 2943 | CSR_VERSION_MINOR(csr->version)); |
| 2944 | |
Mika Kuoppala | 48de568 | 2017-05-09 13:05:22 +0300 | [diff] [blame] | 2945 | if (IS_KABYLAKE(dev_priv) || |
| 2946 | (IS_SKYLAKE(dev_priv) && csr->version >= CSR_VERSION(1, 6))) { |
Damien Lespiau | 8337206 | 2015-10-30 17:53:32 +0200 | [diff] [blame] | 2947 | seq_printf(m, "DC3 -> DC5 count: %d\n", |
| 2948 | I915_READ(SKL_CSR_DC3_DC5_COUNT)); |
| 2949 | seq_printf(m, "DC5 -> DC6 count: %d\n", |
| 2950 | I915_READ(SKL_CSR_DC5_DC6_COUNT)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2951 | } else if (IS_BROXTON(dev_priv) && csr->version >= CSR_VERSION(1, 4)) { |
Mika Kuoppala | 16e11b9 | 2015-10-27 14:47:03 +0200 | [diff] [blame] | 2952 | seq_printf(m, "DC3 -> DC5 count: %d\n", |
| 2953 | I915_READ(BXT_CSR_DC3_DC5_COUNT)); |
Damien Lespiau | 8337206 | 2015-10-30 17:53:32 +0200 | [diff] [blame] | 2954 | } |
| 2955 | |
Mika Kuoppala | 6fb403d | 2015-10-30 17:54:47 +0200 | [diff] [blame] | 2956 | out: |
| 2957 | seq_printf(m, "program base: 0x%08x\n", I915_READ(CSR_PROGRAM(0))); |
| 2958 | seq_printf(m, "ssp base: 0x%08x\n", I915_READ(CSR_SSP_BASE)); |
| 2959 | seq_printf(m, "htp: 0x%08x\n", I915_READ(CSR_HTP_SKL)); |
| 2960 | |
Damien Lespiau | 8337206 | 2015-10-30 17:53:32 +0200 | [diff] [blame] | 2961 | intel_runtime_pm_put(dev_priv); |
| 2962 | |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2963 | return 0; |
| 2964 | } |
| 2965 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2966 | static void intel_seq_print_mode(struct seq_file *m, int tabs, |
| 2967 | struct drm_display_mode *mode) |
| 2968 | { |
| 2969 | int i; |
| 2970 | |
| 2971 | for (i = 0; i < tabs; i++) |
| 2972 | seq_putc(m, '\t'); |
| 2973 | |
| 2974 | 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", |
| 2975 | mode->base.id, mode->name, |
| 2976 | mode->vrefresh, mode->clock, |
| 2977 | mode->hdisplay, mode->hsync_start, |
| 2978 | mode->hsync_end, mode->htotal, |
| 2979 | mode->vdisplay, mode->vsync_start, |
| 2980 | mode->vsync_end, mode->vtotal, |
| 2981 | mode->type, mode->flags); |
| 2982 | } |
| 2983 | |
| 2984 | static void intel_encoder_info(struct seq_file *m, |
| 2985 | struct intel_crtc *intel_crtc, |
| 2986 | struct intel_encoder *intel_encoder) |
| 2987 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2988 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2989 | struct drm_device *dev = &dev_priv->drm; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2990 | struct drm_crtc *crtc = &intel_crtc->base; |
| 2991 | struct intel_connector *intel_connector; |
| 2992 | struct drm_encoder *encoder; |
| 2993 | |
| 2994 | encoder = &intel_encoder->base; |
| 2995 | seq_printf(m, "\tencoder %d: type: %s, connectors:\n", |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 2996 | encoder->base.id, encoder->name); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2997 | for_each_connector_on_encoder(dev, encoder, intel_connector) { |
| 2998 | struct drm_connector *connector = &intel_connector->base; |
| 2999 | seq_printf(m, "\t\tconnector %d: type: %s, status: %s", |
| 3000 | connector->base.id, |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 3001 | connector->name, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3002 | drm_get_connector_status_name(connector->status)); |
| 3003 | if (connector->status == connector_status_connected) { |
| 3004 | struct drm_display_mode *mode = &crtc->mode; |
| 3005 | seq_printf(m, ", mode:\n"); |
| 3006 | intel_seq_print_mode(m, 2, mode); |
| 3007 | } else { |
| 3008 | seq_putc(m, '\n'); |
| 3009 | } |
| 3010 | } |
| 3011 | } |
| 3012 | |
| 3013 | static void intel_crtc_info(struct seq_file *m, struct intel_crtc *intel_crtc) |
| 3014 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3015 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3016 | struct drm_device *dev = &dev_priv->drm; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3017 | struct drm_crtc *crtc = &intel_crtc->base; |
| 3018 | struct intel_encoder *intel_encoder; |
Maarten Lankhorst | 23a48d5 | 2015-09-10 16:07:57 +0200 | [diff] [blame] | 3019 | struct drm_plane_state *plane_state = crtc->primary->state; |
| 3020 | struct drm_framebuffer *fb = plane_state->fb; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3021 | |
Maarten Lankhorst | 23a48d5 | 2015-09-10 16:07:57 +0200 | [diff] [blame] | 3022 | if (fb) |
Matt Roper | 5aa8a93 | 2014-06-16 10:12:55 -0700 | [diff] [blame] | 3023 | seq_printf(m, "\tfb: %d, pos: %dx%d, size: %dx%d\n", |
Maarten Lankhorst | 23a48d5 | 2015-09-10 16:07:57 +0200 | [diff] [blame] | 3024 | fb->base.id, plane_state->src_x >> 16, |
| 3025 | plane_state->src_y >> 16, fb->width, fb->height); |
Matt Roper | 5aa8a93 | 2014-06-16 10:12:55 -0700 | [diff] [blame] | 3026 | else |
| 3027 | seq_puts(m, "\tprimary plane disabled\n"); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3028 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) |
| 3029 | intel_encoder_info(m, intel_crtc, intel_encoder); |
| 3030 | } |
| 3031 | |
| 3032 | static void intel_panel_info(struct seq_file *m, struct intel_panel *panel) |
| 3033 | { |
| 3034 | struct drm_display_mode *mode = panel->fixed_mode; |
| 3035 | |
| 3036 | seq_printf(m, "\tfixed mode:\n"); |
| 3037 | intel_seq_print_mode(m, 2, mode); |
| 3038 | } |
| 3039 | |
| 3040 | static void intel_dp_info(struct seq_file *m, |
| 3041 | struct intel_connector *intel_connector) |
| 3042 | { |
| 3043 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 3044 | struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base); |
| 3045 | |
| 3046 | seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]); |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 3047 | seq_printf(m, "\taudio support: %s\n", yesno(intel_dp->has_audio)); |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3048 | if (intel_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP) |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3049 | intel_panel_info(m, &intel_connector->panel); |
Mika Kahola | 80209e5 | 2016-09-09 14:10:57 +0300 | [diff] [blame] | 3050 | |
| 3051 | drm_dp_downstream_debug(m, intel_dp->dpcd, intel_dp->downstream_ports, |
| 3052 | &intel_dp->aux); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3053 | } |
| 3054 | |
Libin Yang | 9a148a9 | 2016-11-28 20:07:05 +0800 | [diff] [blame] | 3055 | static void intel_dp_mst_info(struct seq_file *m, |
| 3056 | struct intel_connector *intel_connector) |
| 3057 | { |
| 3058 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 3059 | struct intel_dp_mst_encoder *intel_mst = |
| 3060 | enc_to_mst(&intel_encoder->base); |
| 3061 | struct intel_digital_port *intel_dig_port = intel_mst->primary; |
| 3062 | struct intel_dp *intel_dp = &intel_dig_port->dp; |
| 3063 | bool has_audio = drm_dp_mst_port_has_audio(&intel_dp->mst_mgr, |
| 3064 | intel_connector->port); |
| 3065 | |
| 3066 | seq_printf(m, "\taudio support: %s\n", yesno(has_audio)); |
| 3067 | } |
| 3068 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3069 | static void intel_hdmi_info(struct seq_file *m, |
| 3070 | struct intel_connector *intel_connector) |
| 3071 | { |
| 3072 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 3073 | struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base); |
| 3074 | |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 3075 | seq_printf(m, "\taudio support: %s\n", yesno(intel_hdmi->has_audio)); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3076 | } |
| 3077 | |
| 3078 | static void intel_lvds_info(struct seq_file *m, |
| 3079 | struct intel_connector *intel_connector) |
| 3080 | { |
| 3081 | intel_panel_info(m, &intel_connector->panel); |
| 3082 | } |
| 3083 | |
| 3084 | static void intel_connector_info(struct seq_file *m, |
| 3085 | struct drm_connector *connector) |
| 3086 | { |
| 3087 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 3088 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
Jesse Barnes | f103fc7 | 2014-02-20 12:39:57 -0800 | [diff] [blame] | 3089 | struct drm_display_mode *mode; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3090 | |
| 3091 | seq_printf(m, "connector %d: type %s, status: %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 3092 | connector->base.id, connector->name, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3093 | drm_get_connector_status_name(connector->status)); |
| 3094 | if (connector->status == connector_status_connected) { |
| 3095 | seq_printf(m, "\tname: %s\n", connector->display_info.name); |
| 3096 | seq_printf(m, "\tphysical dimensions: %dx%dmm\n", |
| 3097 | connector->display_info.width_mm, |
| 3098 | connector->display_info.height_mm); |
| 3099 | seq_printf(m, "\tsubpixel order: %s\n", |
| 3100 | drm_get_subpixel_order_name(connector->display_info.subpixel_order)); |
| 3101 | seq_printf(m, "\tCEA rev: %d\n", |
| 3102 | connector->display_info.cea_rev); |
| 3103 | } |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 3104 | |
Maarten Lankhorst | 77d1f61 | 2017-06-26 10:33:49 +0200 | [diff] [blame] | 3105 | if (!intel_encoder) |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 3106 | return; |
| 3107 | |
| 3108 | switch (connector->connector_type) { |
| 3109 | case DRM_MODE_CONNECTOR_DisplayPort: |
| 3110 | case DRM_MODE_CONNECTOR_eDP: |
Libin Yang | 9a148a9 | 2016-11-28 20:07:05 +0800 | [diff] [blame] | 3111 | if (intel_encoder->type == INTEL_OUTPUT_DP_MST) |
| 3112 | intel_dp_mst_info(m, intel_connector); |
| 3113 | else |
| 3114 | intel_dp_info(m, intel_connector); |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 3115 | break; |
| 3116 | case DRM_MODE_CONNECTOR_LVDS: |
| 3117 | if (intel_encoder->type == INTEL_OUTPUT_LVDS) |
Dave Airlie | 36cd744 | 2014-05-02 13:44:18 +1000 | [diff] [blame] | 3118 | intel_lvds_info(m, intel_connector); |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 3119 | break; |
| 3120 | case DRM_MODE_CONNECTOR_HDMIA: |
| 3121 | if (intel_encoder->type == INTEL_OUTPUT_HDMI || |
Ville Syrjälä | 7e732ca | 2017-10-27 22:31:24 +0300 | [diff] [blame] | 3122 | intel_encoder->type == INTEL_OUTPUT_DDI) |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 3123 | intel_hdmi_info(m, intel_connector); |
| 3124 | break; |
| 3125 | default: |
| 3126 | break; |
Dave Airlie | 36cd744 | 2014-05-02 13:44:18 +1000 | [diff] [blame] | 3127 | } |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3128 | |
Jesse Barnes | f103fc7 | 2014-02-20 12:39:57 -0800 | [diff] [blame] | 3129 | seq_printf(m, "\tmodes:\n"); |
| 3130 | list_for_each_entry(mode, &connector->modes, head) |
| 3131 | intel_seq_print_mode(m, 2, mode); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3132 | } |
| 3133 | |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3134 | static const char *plane_type(enum drm_plane_type type) |
| 3135 | { |
| 3136 | switch (type) { |
| 3137 | case DRM_PLANE_TYPE_OVERLAY: |
| 3138 | return "OVL"; |
| 3139 | case DRM_PLANE_TYPE_PRIMARY: |
| 3140 | return "PRI"; |
| 3141 | case DRM_PLANE_TYPE_CURSOR: |
| 3142 | return "CUR"; |
| 3143 | /* |
| 3144 | * Deliberately omitting default: to generate compiler warnings |
| 3145 | * when a new drm_plane_type gets added. |
| 3146 | */ |
| 3147 | } |
| 3148 | |
| 3149 | return "unknown"; |
| 3150 | } |
| 3151 | |
| 3152 | static const char *plane_rotation(unsigned int rotation) |
| 3153 | { |
| 3154 | static char buf[48]; |
| 3155 | /* |
Robert Foss | c2c446a | 2017-05-19 16:50:17 -0400 | [diff] [blame] | 3156 | * According to doc only one DRM_MODE_ROTATE_ is allowed but this |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3157 | * will print them all to visualize if the values are misused |
| 3158 | */ |
| 3159 | snprintf(buf, sizeof(buf), |
| 3160 | "%s%s%s%s%s%s(0x%08x)", |
Robert Foss | c2c446a | 2017-05-19 16:50:17 -0400 | [diff] [blame] | 3161 | (rotation & DRM_MODE_ROTATE_0) ? "0 " : "", |
| 3162 | (rotation & DRM_MODE_ROTATE_90) ? "90 " : "", |
| 3163 | (rotation & DRM_MODE_ROTATE_180) ? "180 " : "", |
| 3164 | (rotation & DRM_MODE_ROTATE_270) ? "270 " : "", |
| 3165 | (rotation & DRM_MODE_REFLECT_X) ? "FLIPX " : "", |
| 3166 | (rotation & DRM_MODE_REFLECT_Y) ? "FLIPY " : "", |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3167 | rotation); |
| 3168 | |
| 3169 | return buf; |
| 3170 | } |
| 3171 | |
| 3172 | static void intel_plane_info(struct seq_file *m, struct intel_crtc *intel_crtc) |
| 3173 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3174 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3175 | struct drm_device *dev = &dev_priv->drm; |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3176 | struct intel_plane *intel_plane; |
| 3177 | |
| 3178 | for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) { |
| 3179 | struct drm_plane_state *state; |
| 3180 | struct drm_plane *plane = &intel_plane->base; |
Eric Engestrom | b3c11ac | 2016-11-12 01:12:56 +0000 | [diff] [blame] | 3181 | struct drm_format_name_buf format_name; |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3182 | |
| 3183 | if (!plane->state) { |
| 3184 | seq_puts(m, "plane->state is NULL!\n"); |
| 3185 | continue; |
| 3186 | } |
| 3187 | |
| 3188 | state = plane->state; |
| 3189 | |
Eric Engestrom | 90844f0 | 2016-08-15 01:02:38 +0100 | [diff] [blame] | 3190 | if (state->fb) { |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 3191 | drm_get_format_name(state->fb->format->format, |
| 3192 | &format_name); |
Eric Engestrom | 90844f0 | 2016-08-15 01:02:38 +0100 | [diff] [blame] | 3193 | } else { |
Eric Engestrom | b3c11ac | 2016-11-12 01:12:56 +0000 | [diff] [blame] | 3194 | sprintf(format_name.str, "N/A"); |
Eric Engestrom | 90844f0 | 2016-08-15 01:02:38 +0100 | [diff] [blame] | 3195 | } |
| 3196 | |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3197 | seq_printf(m, "\t--Plane id %d: type=%s, crtc_pos=%4dx%4d, crtc_size=%4dx%4d, src_pos=%d.%04ux%d.%04u, src_size=%d.%04ux%d.%04u, format=%s, rotation=%s\n", |
| 3198 | plane->base.id, |
| 3199 | plane_type(intel_plane->base.type), |
| 3200 | state->crtc_x, state->crtc_y, |
| 3201 | state->crtc_w, state->crtc_h, |
| 3202 | (state->src_x >> 16), |
| 3203 | ((state->src_x & 0xffff) * 15625) >> 10, |
| 3204 | (state->src_y >> 16), |
| 3205 | ((state->src_y & 0xffff) * 15625) >> 10, |
| 3206 | (state->src_w >> 16), |
| 3207 | ((state->src_w & 0xffff) * 15625) >> 10, |
| 3208 | (state->src_h >> 16), |
| 3209 | ((state->src_h & 0xffff) * 15625) >> 10, |
Eric Engestrom | b3c11ac | 2016-11-12 01:12:56 +0000 | [diff] [blame] | 3210 | format_name.str, |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3211 | plane_rotation(state->rotation)); |
| 3212 | } |
| 3213 | } |
| 3214 | |
| 3215 | static void intel_scaler_info(struct seq_file *m, struct intel_crtc *intel_crtc) |
| 3216 | { |
| 3217 | struct intel_crtc_state *pipe_config; |
| 3218 | int num_scalers = intel_crtc->num_scalers; |
| 3219 | int i; |
| 3220 | |
| 3221 | pipe_config = to_intel_crtc_state(intel_crtc->base.state); |
| 3222 | |
| 3223 | /* Not all platformas have a scaler */ |
| 3224 | if (num_scalers) { |
| 3225 | seq_printf(m, "\tnum_scalers=%d, scaler_users=%x scaler_id=%d", |
| 3226 | num_scalers, |
| 3227 | pipe_config->scaler_state.scaler_users, |
| 3228 | pipe_config->scaler_state.scaler_id); |
| 3229 | |
A.Sunil Kamath | 5841591 | 2016-11-20 23:20:26 +0530 | [diff] [blame] | 3230 | for (i = 0; i < num_scalers; i++) { |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3231 | struct intel_scaler *sc = |
| 3232 | &pipe_config->scaler_state.scalers[i]; |
| 3233 | |
| 3234 | seq_printf(m, ", scalers[%d]: use=%s, mode=%x", |
| 3235 | i, yesno(sc->in_use), sc->mode); |
| 3236 | } |
| 3237 | seq_puts(m, "\n"); |
| 3238 | } else { |
| 3239 | seq_puts(m, "\tNo scalers available on this platform\n"); |
| 3240 | } |
| 3241 | } |
| 3242 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3243 | static int i915_display_info(struct seq_file *m, void *unused) |
| 3244 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3245 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3246 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 3247 | struct intel_crtc *crtc; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3248 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3249 | struct drm_connector_list_iter conn_iter; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3250 | |
Paulo Zanoni | b0e5ddf | 2014-04-01 14:55:10 -0300 | [diff] [blame] | 3251 | intel_runtime_pm_get(dev_priv); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3252 | seq_printf(m, "CRTC info\n"); |
| 3253 | seq_printf(m, "---------\n"); |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 3254 | for_each_intel_crtc(dev, crtc) { |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3255 | struct intel_crtc_state *pipe_config; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3256 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3257 | drm_modeset_lock(&crtc->base.mutex, NULL); |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3258 | pipe_config = to_intel_crtc_state(crtc->base.state); |
| 3259 | |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3260 | seq_printf(m, "CRTC %d: pipe: %c, active=%s, (size=%dx%d), dither=%s, bpp=%d\n", |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 3261 | crtc->base.base.id, pipe_name(crtc->pipe), |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3262 | yesno(pipe_config->base.active), |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3263 | pipe_config->pipe_src_w, pipe_config->pipe_src_h, |
| 3264 | yesno(pipe_config->dither), pipe_config->pipe_bpp); |
| 3265 | |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3266 | if (pipe_config->base.active) { |
Ville Syrjälä | cd5dcbf | 2017-03-27 21:55:35 +0300 | [diff] [blame] | 3267 | struct intel_plane *cursor = |
| 3268 | to_intel_plane(crtc->base.cursor); |
| 3269 | |
Chris Wilson | 065f2ec | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 3270 | intel_crtc_info(m, crtc); |
| 3271 | |
Ville Syrjälä | cd5dcbf | 2017-03-27 21:55:35 +0300 | [diff] [blame] | 3272 | seq_printf(m, "\tcursor visible? %s, position (%d, %d), size %dx%d, addr 0x%08x\n", |
| 3273 | yesno(cursor->base.state->visible), |
| 3274 | cursor->base.state->crtc_x, |
| 3275 | cursor->base.state->crtc_y, |
| 3276 | cursor->base.state->crtc_w, |
| 3277 | cursor->base.state->crtc_h, |
| 3278 | cursor->cursor.base); |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3279 | intel_scaler_info(m, crtc); |
| 3280 | intel_plane_info(m, crtc); |
Paulo Zanoni | a23dc65 | 2014-04-01 14:55:11 -0300 | [diff] [blame] | 3281 | } |
Daniel Vetter | cace841 | 2014-05-22 17:56:31 +0200 | [diff] [blame] | 3282 | |
| 3283 | seq_printf(m, "\tunderrun reporting: cpu=%s pch=%s \n", |
| 3284 | yesno(!crtc->cpu_fifo_underrun_disabled), |
| 3285 | yesno(!crtc->pch_fifo_underrun_disabled)); |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3286 | drm_modeset_unlock(&crtc->base.mutex); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3287 | } |
| 3288 | |
| 3289 | seq_printf(m, "\n"); |
| 3290 | seq_printf(m, "Connector info\n"); |
| 3291 | seq_printf(m, "--------------\n"); |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3292 | mutex_lock(&dev->mode_config.mutex); |
| 3293 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3294 | drm_for_each_connector_iter(connector, &conn_iter) |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3295 | intel_connector_info(m, connector); |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3296 | drm_connector_list_iter_end(&conn_iter); |
| 3297 | mutex_unlock(&dev->mode_config.mutex); |
| 3298 | |
Paulo Zanoni | b0e5ddf | 2014-04-01 14:55:10 -0300 | [diff] [blame] | 3299 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3300 | |
| 3301 | return 0; |
| 3302 | } |
| 3303 | |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3304 | static int i915_engine_info(struct seq_file *m, void *unused) |
| 3305 | { |
| 3306 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3307 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3308 | enum intel_engine_id id; |
Chris Wilson | f636edb | 2017-10-09 12:02:57 +0100 | [diff] [blame] | 3309 | struct drm_printer p; |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3310 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3311 | intel_runtime_pm_get(dev_priv); |
| 3312 | |
Chris Wilson | 6f56103 | 2018-01-24 11:36:07 +0000 | [diff] [blame] | 3313 | seq_printf(m, "GT awake? %s (epoch %u)\n", |
| 3314 | yesno(dev_priv->gt.awake), dev_priv->gt.epoch); |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 3315 | seq_printf(m, "Global active requests: %d\n", |
| 3316 | dev_priv->gt.active_requests); |
Lionel Landwerlin | f577a03 | 2017-11-13 23:34:53 +0000 | [diff] [blame] | 3317 | seq_printf(m, "CS timestamp frequency: %u kHz\n", |
| 3318 | dev_priv->info.cs_timestamp_frequency_khz); |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 3319 | |
Chris Wilson | f636edb | 2017-10-09 12:02:57 +0100 | [diff] [blame] | 3320 | p = drm_seq_file_printer(m); |
| 3321 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 0db18b1 | 2017-12-08 01:23:00 +0000 | [diff] [blame] | 3322 | intel_engine_dump(engine, &p, "%s\n", engine->name); |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3323 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3324 | intel_runtime_pm_put(dev_priv); |
| 3325 | |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3326 | return 0; |
| 3327 | } |
| 3328 | |
Lionel Landwerlin | 79e9cd5 | 2018-03-06 12:28:54 +0000 | [diff] [blame] | 3329 | static int i915_rcs_topology(struct seq_file *m, void *unused) |
| 3330 | { |
| 3331 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3332 | struct drm_printer p = drm_seq_file_printer(m); |
| 3333 | |
| 3334 | intel_device_info_dump_topology(&INTEL_INFO(dev_priv)->sseu, &p); |
| 3335 | |
| 3336 | return 0; |
| 3337 | } |
| 3338 | |
Chris Wilson | c5418a8 | 2017-10-13 21:26:19 +0100 | [diff] [blame] | 3339 | static int i915_shrinker_info(struct seq_file *m, void *unused) |
| 3340 | { |
| 3341 | struct drm_i915_private *i915 = node_to_i915(m->private); |
| 3342 | |
| 3343 | seq_printf(m, "seeks = %d\n", i915->mm.shrinker.seeks); |
| 3344 | seq_printf(m, "batch = %lu\n", i915->mm.shrinker.batch); |
| 3345 | |
| 3346 | return 0; |
| 3347 | } |
| 3348 | |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3349 | static int i915_shared_dplls_info(struct seq_file *m, void *unused) |
| 3350 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3351 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3352 | struct drm_device *dev = &dev_priv->drm; |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3353 | int i; |
| 3354 | |
| 3355 | drm_modeset_lock_all(dev); |
| 3356 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
| 3357 | struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i]; |
| 3358 | |
Lucas De Marchi | 72f775f | 2018-03-20 15:06:34 -0700 | [diff] [blame] | 3359 | seq_printf(m, "DPLL%i: %s, id: %i\n", i, pll->info->name, |
Lucas De Marchi | 0823eb9 | 2018-03-20 15:06:35 -0700 | [diff] [blame] | 3360 | pll->info->id); |
Maarten Lankhorst | 2dd66ebd | 2016-03-14 09:27:52 +0100 | [diff] [blame] | 3361 | seq_printf(m, " crtc_mask: 0x%08x, active: 0x%x, on: %s\n", |
Ander Conselvan de Oliveira | 2c42e53 | 2016-12-29 17:22:09 +0200 | [diff] [blame] | 3362 | pll->state.crtc_mask, pll->active_mask, yesno(pll->on)); |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3363 | seq_printf(m, " tracked hardware state:\n"); |
Ander Conselvan de Oliveira | 2c42e53 | 2016-12-29 17:22:09 +0200 | [diff] [blame] | 3364 | seq_printf(m, " dpll: 0x%08x\n", pll->state.hw_state.dpll); |
Ander Conselvan de Oliveira | 3e369b7 | 2014-10-29 11:32:32 +0200 | [diff] [blame] | 3365 | seq_printf(m, " dpll_md: 0x%08x\n", |
Ander Conselvan de Oliveira | 2c42e53 | 2016-12-29 17:22:09 +0200 | [diff] [blame] | 3366 | pll->state.hw_state.dpll_md); |
| 3367 | seq_printf(m, " fp0: 0x%08x\n", pll->state.hw_state.fp0); |
| 3368 | seq_printf(m, " fp1: 0x%08x\n", pll->state.hw_state.fp1); |
| 3369 | seq_printf(m, " wrpll: 0x%08x\n", pll->state.hw_state.wrpll); |
Paulo Zanoni | c27e917 | 2018-04-27 16:14:36 -0700 | [diff] [blame] | 3370 | seq_printf(m, " cfgcr0: 0x%08x\n", pll->state.hw_state.cfgcr0); |
| 3371 | seq_printf(m, " cfgcr1: 0x%08x\n", pll->state.hw_state.cfgcr1); |
| 3372 | seq_printf(m, " mg_refclkin_ctl: 0x%08x\n", |
| 3373 | pll->state.hw_state.mg_refclkin_ctl); |
| 3374 | seq_printf(m, " mg_clktop2_coreclkctl1: 0x%08x\n", |
| 3375 | pll->state.hw_state.mg_clktop2_coreclkctl1); |
| 3376 | seq_printf(m, " mg_clktop2_hsclkctl: 0x%08x\n", |
| 3377 | pll->state.hw_state.mg_clktop2_hsclkctl); |
| 3378 | seq_printf(m, " mg_pll_div0: 0x%08x\n", |
| 3379 | pll->state.hw_state.mg_pll_div0); |
| 3380 | seq_printf(m, " mg_pll_div1: 0x%08x\n", |
| 3381 | pll->state.hw_state.mg_pll_div1); |
| 3382 | seq_printf(m, " mg_pll_lf: 0x%08x\n", |
| 3383 | pll->state.hw_state.mg_pll_lf); |
| 3384 | seq_printf(m, " mg_pll_frac_lock: 0x%08x\n", |
| 3385 | pll->state.hw_state.mg_pll_frac_lock); |
| 3386 | seq_printf(m, " mg_pll_ssc: 0x%08x\n", |
| 3387 | pll->state.hw_state.mg_pll_ssc); |
| 3388 | seq_printf(m, " mg_pll_bias: 0x%08x\n", |
| 3389 | pll->state.hw_state.mg_pll_bias); |
| 3390 | seq_printf(m, " mg_pll_tdc_coldst_bias: 0x%08x\n", |
| 3391 | pll->state.hw_state.mg_pll_tdc_coldst_bias); |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3392 | } |
| 3393 | drm_modeset_unlock_all(dev); |
| 3394 | |
| 3395 | return 0; |
| 3396 | } |
| 3397 | |
Damien Lespiau | 1ed1ef9 | 2014-08-30 16:50:59 +0100 | [diff] [blame] | 3398 | static int i915_wa_registers(struct seq_file *m, void *unused) |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3399 | { |
Chris Wilson | 548764b | 2018-06-15 13:02:07 +0100 | [diff] [blame] | 3400 | struct i915_workarounds *wa = &node_to_i915(m->private)->workarounds; |
Chris Wilson | f4ecfbf | 2018-04-14 13:27:54 +0100 | [diff] [blame] | 3401 | int i; |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3402 | |
Chris Wilson | 548764b | 2018-06-15 13:02:07 +0100 | [diff] [blame] | 3403 | seq_printf(m, "Workarounds applied: %d\n", wa->count); |
| 3404 | for (i = 0; i < wa->count; ++i) |
| 3405 | seq_printf(m, "0x%X: 0x%08X, mask: 0x%08X\n", |
| 3406 | wa->reg[i].addr, wa->reg[i].value, wa->reg[i].mask); |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3407 | |
| 3408 | return 0; |
| 3409 | } |
| 3410 | |
Kumar, Mahesh | d2d4f39 | 2017-08-17 19:15:29 +0530 | [diff] [blame] | 3411 | static int i915_ipc_status_show(struct seq_file *m, void *data) |
| 3412 | { |
| 3413 | struct drm_i915_private *dev_priv = m->private; |
| 3414 | |
| 3415 | seq_printf(m, "Isochronous Priority Control: %s\n", |
| 3416 | yesno(dev_priv->ipc_enabled)); |
| 3417 | return 0; |
| 3418 | } |
| 3419 | |
| 3420 | static int i915_ipc_status_open(struct inode *inode, struct file *file) |
| 3421 | { |
| 3422 | struct drm_i915_private *dev_priv = inode->i_private; |
| 3423 | |
| 3424 | if (!HAS_IPC(dev_priv)) |
| 3425 | return -ENODEV; |
| 3426 | |
| 3427 | return single_open(file, i915_ipc_status_show, dev_priv); |
| 3428 | } |
| 3429 | |
| 3430 | static ssize_t i915_ipc_status_write(struct file *file, const char __user *ubuf, |
| 3431 | size_t len, loff_t *offp) |
| 3432 | { |
| 3433 | struct seq_file *m = file->private_data; |
| 3434 | struct drm_i915_private *dev_priv = m->private; |
| 3435 | int ret; |
| 3436 | bool enable; |
| 3437 | |
| 3438 | ret = kstrtobool_from_user(ubuf, len, &enable); |
| 3439 | if (ret < 0) |
| 3440 | return ret; |
| 3441 | |
| 3442 | intel_runtime_pm_get(dev_priv); |
| 3443 | if (!dev_priv->ipc_enabled && enable) |
| 3444 | DRM_INFO("Enabling IPC: WM will be proper only after next commit\n"); |
| 3445 | dev_priv->wm.distrust_bios_wm = true; |
| 3446 | dev_priv->ipc_enabled = enable; |
| 3447 | intel_enable_ipc(dev_priv); |
| 3448 | intel_runtime_pm_put(dev_priv); |
| 3449 | |
| 3450 | return len; |
| 3451 | } |
| 3452 | |
| 3453 | static const struct file_operations i915_ipc_status_fops = { |
| 3454 | .owner = THIS_MODULE, |
| 3455 | .open = i915_ipc_status_open, |
| 3456 | .read = seq_read, |
| 3457 | .llseek = seq_lseek, |
| 3458 | .release = single_release, |
| 3459 | .write = i915_ipc_status_write |
| 3460 | }; |
| 3461 | |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3462 | static int i915_ddb_info(struct seq_file *m, void *unused) |
| 3463 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3464 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3465 | struct drm_device *dev = &dev_priv->drm; |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3466 | struct skl_ddb_allocation *ddb; |
| 3467 | struct skl_ddb_entry *entry; |
| 3468 | enum pipe pipe; |
| 3469 | int plane; |
| 3470 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3471 | if (INTEL_GEN(dev_priv) < 9) |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 3472 | return -ENODEV; |
Damien Lespiau | 2fcffe1 | 2014-12-03 17:33:24 +0000 | [diff] [blame] | 3473 | |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3474 | drm_modeset_lock_all(dev); |
| 3475 | |
| 3476 | ddb = &dev_priv->wm.skl_hw.ddb; |
| 3477 | |
| 3478 | seq_printf(m, "%-15s%8s%8s%8s\n", "", "Start", "End", "Size"); |
| 3479 | |
| 3480 | for_each_pipe(dev_priv, pipe) { |
| 3481 | seq_printf(m, "Pipe %c\n", pipe_name(pipe)); |
| 3482 | |
Matt Roper | 8b364b4 | 2016-10-26 15:51:28 -0700 | [diff] [blame] | 3483 | for_each_universal_plane(dev_priv, pipe, plane) { |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3484 | entry = &ddb->plane[pipe][plane]; |
| 3485 | seq_printf(m, " Plane%-8d%8u%8u%8u\n", plane + 1, |
| 3486 | entry->start, entry->end, |
| 3487 | skl_ddb_entry_size(entry)); |
| 3488 | } |
| 3489 | |
Matt Roper | 4969d33 | 2015-09-24 15:53:10 -0700 | [diff] [blame] | 3490 | entry = &ddb->plane[pipe][PLANE_CURSOR]; |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3491 | seq_printf(m, " %-13s%8u%8u%8u\n", "Cursor", entry->start, |
| 3492 | entry->end, skl_ddb_entry_size(entry)); |
| 3493 | } |
| 3494 | |
| 3495 | drm_modeset_unlock_all(dev); |
| 3496 | |
| 3497 | return 0; |
| 3498 | } |
| 3499 | |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3500 | static void drrs_status_per_crtc(struct seq_file *m, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3501 | struct drm_device *dev, |
| 3502 | struct intel_crtc *intel_crtc) |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3503 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 3504 | struct drm_i915_private *dev_priv = to_i915(dev); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3505 | struct i915_drrs *drrs = &dev_priv->drrs; |
| 3506 | int vrefresh = 0; |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3507 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3508 | struct drm_connector_list_iter conn_iter; |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3509 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3510 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3511 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3512 | if (connector->state->crtc != &intel_crtc->base) |
| 3513 | continue; |
| 3514 | |
| 3515 | seq_printf(m, "%s:\n", connector->name); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3516 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3517 | drm_connector_list_iter_end(&conn_iter); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3518 | |
| 3519 | if (dev_priv->vbt.drrs_type == STATIC_DRRS_SUPPORT) |
| 3520 | seq_puts(m, "\tVBT: DRRS_type: Static"); |
| 3521 | else if (dev_priv->vbt.drrs_type == SEAMLESS_DRRS_SUPPORT) |
| 3522 | seq_puts(m, "\tVBT: DRRS_type: Seamless"); |
| 3523 | else if (dev_priv->vbt.drrs_type == DRRS_NOT_SUPPORTED) |
| 3524 | seq_puts(m, "\tVBT: DRRS_type: None"); |
| 3525 | else |
| 3526 | seq_puts(m, "\tVBT: DRRS_type: FIXME: Unrecognized Value"); |
| 3527 | |
| 3528 | seq_puts(m, "\n\n"); |
| 3529 | |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3530 | if (to_intel_crtc_state(intel_crtc->base.state)->has_drrs) { |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3531 | struct intel_panel *panel; |
| 3532 | |
| 3533 | mutex_lock(&drrs->mutex); |
| 3534 | /* DRRS Supported */ |
| 3535 | seq_puts(m, "\tDRRS Supported: Yes\n"); |
| 3536 | |
| 3537 | /* disable_drrs() will make drrs->dp NULL */ |
| 3538 | if (!drrs->dp) { |
C, Ramalingam | ce6e213 | 2017-11-20 09:53:47 +0530 | [diff] [blame] | 3539 | seq_puts(m, "Idleness DRRS: Disabled\n"); |
| 3540 | if (dev_priv->psr.enabled) |
| 3541 | seq_puts(m, |
| 3542 | "\tAs PSR is enabled, DRRS is not enabled\n"); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3543 | mutex_unlock(&drrs->mutex); |
| 3544 | return; |
| 3545 | } |
| 3546 | |
| 3547 | panel = &drrs->dp->attached_connector->panel; |
| 3548 | seq_printf(m, "\t\tBusy_frontbuffer_bits: 0x%X", |
| 3549 | drrs->busy_frontbuffer_bits); |
| 3550 | |
| 3551 | seq_puts(m, "\n\t\t"); |
| 3552 | if (drrs->refresh_rate_type == DRRS_HIGH_RR) { |
| 3553 | seq_puts(m, "DRRS_State: DRRS_HIGH_RR\n"); |
| 3554 | vrefresh = panel->fixed_mode->vrefresh; |
| 3555 | } else if (drrs->refresh_rate_type == DRRS_LOW_RR) { |
| 3556 | seq_puts(m, "DRRS_State: DRRS_LOW_RR\n"); |
| 3557 | vrefresh = panel->downclock_mode->vrefresh; |
| 3558 | } else { |
| 3559 | seq_printf(m, "DRRS_State: Unknown(%d)\n", |
| 3560 | drrs->refresh_rate_type); |
| 3561 | mutex_unlock(&drrs->mutex); |
| 3562 | return; |
| 3563 | } |
| 3564 | seq_printf(m, "\t\tVrefresh: %d", vrefresh); |
| 3565 | |
| 3566 | seq_puts(m, "\n\t\t"); |
| 3567 | mutex_unlock(&drrs->mutex); |
| 3568 | } else { |
| 3569 | /* DRRS not supported. Print the VBT parameter*/ |
| 3570 | seq_puts(m, "\tDRRS Supported : No"); |
| 3571 | } |
| 3572 | seq_puts(m, "\n"); |
| 3573 | } |
| 3574 | |
| 3575 | static int i915_drrs_status(struct seq_file *m, void *unused) |
| 3576 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3577 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3578 | struct drm_device *dev = &dev_priv->drm; |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3579 | struct intel_crtc *intel_crtc; |
| 3580 | int active_crtc_cnt = 0; |
| 3581 | |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3582 | drm_modeset_lock_all(dev); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3583 | for_each_intel_crtc(dev, intel_crtc) { |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3584 | if (intel_crtc->base.state->active) { |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3585 | active_crtc_cnt++; |
| 3586 | seq_printf(m, "\nCRTC %d: ", active_crtc_cnt); |
| 3587 | |
| 3588 | drrs_status_per_crtc(m, dev, intel_crtc); |
| 3589 | } |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3590 | } |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3591 | drm_modeset_unlock_all(dev); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3592 | |
| 3593 | if (!active_crtc_cnt) |
| 3594 | seq_puts(m, "No active crtc found\n"); |
| 3595 | |
| 3596 | return 0; |
| 3597 | } |
| 3598 | |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3599 | static int i915_dp_mst_info(struct seq_file *m, void *unused) |
| 3600 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3601 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3602 | struct drm_device *dev = &dev_priv->drm; |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3603 | struct intel_encoder *intel_encoder; |
| 3604 | struct intel_digital_port *intel_dig_port; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3605 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3606 | struct drm_connector_list_iter conn_iter; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3607 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3608 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3609 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3610 | if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3611 | continue; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3612 | |
| 3613 | intel_encoder = intel_attached_encoder(connector); |
| 3614 | if (!intel_encoder || intel_encoder->type == INTEL_OUTPUT_DP_MST) |
| 3615 | continue; |
| 3616 | |
| 3617 | intel_dig_port = enc_to_dig_port(&intel_encoder->base); |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3618 | if (!intel_dig_port->dp.can_mst) |
| 3619 | continue; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3620 | |
Jim Bride | 40ae80c | 2016-04-14 10:18:37 -0700 | [diff] [blame] | 3621 | seq_printf(m, "MST Source Port %c\n", |
Ville Syrjälä | 8f4f279 | 2017-11-09 17:24:34 +0200 | [diff] [blame] | 3622 | port_name(intel_dig_port->base.port)); |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3623 | drm_dp_mst_dump_topology(m, &intel_dig_port->dp.mst_mgr); |
| 3624 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3625 | drm_connector_list_iter_end(&conn_iter); |
| 3626 | |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3627 | return 0; |
| 3628 | } |
| 3629 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3630 | static ssize_t i915_displayport_test_active_write(struct file *file, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3631 | const char __user *ubuf, |
| 3632 | size_t len, loff_t *offp) |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3633 | { |
| 3634 | char *input_buffer; |
| 3635 | int status = 0; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3636 | struct drm_device *dev; |
| 3637 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3638 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3639 | struct intel_dp *intel_dp; |
| 3640 | int val = 0; |
| 3641 | |
Sudip Mukherjee | 9aaffa3 | 2015-07-21 17:36:45 +0530 | [diff] [blame] | 3642 | dev = ((struct seq_file *)file->private_data)->private; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3643 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3644 | if (len == 0) |
| 3645 | return 0; |
| 3646 | |
Geliang Tang | 261aeba | 2017-05-06 23:40:17 +0800 | [diff] [blame] | 3647 | input_buffer = memdup_user_nul(ubuf, len); |
| 3648 | if (IS_ERR(input_buffer)) |
| 3649 | return PTR_ERR(input_buffer); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3650 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3651 | DRM_DEBUG_DRIVER("Copied %d bytes from user\n", (unsigned int)len); |
| 3652 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3653 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3654 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3655 | struct intel_encoder *encoder; |
| 3656 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3657 | if (connector->connector_type != |
| 3658 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3659 | continue; |
| 3660 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3661 | encoder = to_intel_encoder(connector->encoder); |
| 3662 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3663 | continue; |
| 3664 | |
| 3665 | if (encoder && connector->status == connector_status_connected) { |
| 3666 | intel_dp = enc_to_intel_dp(&encoder->base); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3667 | status = kstrtoint(input_buffer, 10, &val); |
| 3668 | if (status < 0) |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3669 | break; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3670 | DRM_DEBUG_DRIVER("Got %d for test active\n", val); |
| 3671 | /* To prevent erroneous activation of the compliance |
| 3672 | * testing code, only accept an actual value of 1 here |
| 3673 | */ |
| 3674 | if (val == 1) |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3675 | intel_dp->compliance.test_active = 1; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3676 | else |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3677 | intel_dp->compliance.test_active = 0; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3678 | } |
| 3679 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3680 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3681 | kfree(input_buffer); |
| 3682 | if (status < 0) |
| 3683 | return status; |
| 3684 | |
| 3685 | *offp += len; |
| 3686 | return len; |
| 3687 | } |
| 3688 | |
| 3689 | static int i915_displayport_test_active_show(struct seq_file *m, void *data) |
| 3690 | { |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 3691 | struct drm_i915_private *dev_priv = m->private; |
| 3692 | struct drm_device *dev = &dev_priv->drm; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3693 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3694 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3695 | struct intel_dp *intel_dp; |
| 3696 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3697 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3698 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3699 | struct intel_encoder *encoder; |
| 3700 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3701 | if (connector->connector_type != |
| 3702 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3703 | continue; |
| 3704 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3705 | encoder = to_intel_encoder(connector->encoder); |
| 3706 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3707 | continue; |
| 3708 | |
| 3709 | if (encoder && connector->status == connector_status_connected) { |
| 3710 | intel_dp = enc_to_intel_dp(&encoder->base); |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3711 | if (intel_dp->compliance.test_active) |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3712 | seq_puts(m, "1"); |
| 3713 | else |
| 3714 | seq_puts(m, "0"); |
| 3715 | } else |
| 3716 | seq_puts(m, "0"); |
| 3717 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3718 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3719 | |
| 3720 | return 0; |
| 3721 | } |
| 3722 | |
| 3723 | static int i915_displayport_test_active_open(struct inode *inode, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3724 | struct file *file) |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3725 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3726 | return single_open(file, i915_displayport_test_active_show, |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 3727 | inode->i_private); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3728 | } |
| 3729 | |
| 3730 | static const struct file_operations i915_displayport_test_active_fops = { |
| 3731 | .owner = THIS_MODULE, |
| 3732 | .open = i915_displayport_test_active_open, |
| 3733 | .read = seq_read, |
| 3734 | .llseek = seq_lseek, |
| 3735 | .release = single_release, |
| 3736 | .write = i915_displayport_test_active_write |
| 3737 | }; |
| 3738 | |
| 3739 | static int i915_displayport_test_data_show(struct seq_file *m, void *data) |
| 3740 | { |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 3741 | struct drm_i915_private *dev_priv = m->private; |
| 3742 | struct drm_device *dev = &dev_priv->drm; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3743 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3744 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3745 | struct intel_dp *intel_dp; |
| 3746 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3747 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3748 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3749 | struct intel_encoder *encoder; |
| 3750 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3751 | if (connector->connector_type != |
| 3752 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3753 | continue; |
| 3754 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3755 | encoder = to_intel_encoder(connector->encoder); |
| 3756 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3757 | continue; |
| 3758 | |
| 3759 | if (encoder && connector->status == connector_status_connected) { |
| 3760 | intel_dp = enc_to_intel_dp(&encoder->base); |
Manasi Navare | b48a5ba | 2017-01-20 19:09:28 -0800 | [diff] [blame] | 3761 | if (intel_dp->compliance.test_type == |
| 3762 | DP_TEST_LINK_EDID_READ) |
| 3763 | seq_printf(m, "%lx", |
| 3764 | intel_dp->compliance.test_data.edid); |
Manasi Navare | 611032b | 2017-01-24 08:21:49 -0800 | [diff] [blame] | 3765 | else if (intel_dp->compliance.test_type == |
| 3766 | DP_TEST_LINK_VIDEO_PATTERN) { |
| 3767 | seq_printf(m, "hdisplay: %d\n", |
| 3768 | intel_dp->compliance.test_data.hdisplay); |
| 3769 | seq_printf(m, "vdisplay: %d\n", |
| 3770 | intel_dp->compliance.test_data.vdisplay); |
| 3771 | seq_printf(m, "bpc: %u\n", |
| 3772 | intel_dp->compliance.test_data.bpc); |
| 3773 | } |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3774 | } else |
| 3775 | seq_puts(m, "0"); |
| 3776 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3777 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3778 | |
| 3779 | return 0; |
| 3780 | } |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 3781 | DEFINE_SHOW_ATTRIBUTE(i915_displayport_test_data); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3782 | |
| 3783 | static int i915_displayport_test_type_show(struct seq_file *m, void *data) |
| 3784 | { |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 3785 | struct drm_i915_private *dev_priv = m->private; |
| 3786 | struct drm_device *dev = &dev_priv->drm; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3787 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3788 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3789 | struct intel_dp *intel_dp; |
| 3790 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3791 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3792 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3793 | struct intel_encoder *encoder; |
| 3794 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3795 | if (connector->connector_type != |
| 3796 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3797 | continue; |
| 3798 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3799 | encoder = to_intel_encoder(connector->encoder); |
| 3800 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3801 | continue; |
| 3802 | |
| 3803 | if (encoder && connector->status == connector_status_connected) { |
| 3804 | intel_dp = enc_to_intel_dp(&encoder->base); |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3805 | seq_printf(m, "%02lx", intel_dp->compliance.test_type); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3806 | } else |
| 3807 | seq_puts(m, "0"); |
| 3808 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3809 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3810 | |
| 3811 | return 0; |
| 3812 | } |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 3813 | DEFINE_SHOW_ATTRIBUTE(i915_displayport_test_type); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3814 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3815 | 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] | 3816 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3817 | struct drm_i915_private *dev_priv = m->private; |
| 3818 | struct drm_device *dev = &dev_priv->drm; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3819 | int level; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3820 | int num_levels; |
| 3821 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3822 | if (IS_CHERRYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3823 | num_levels = 3; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3824 | else if (IS_VALLEYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3825 | num_levels = 1; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3826 | else if (IS_G4X(dev_priv)) |
| 3827 | num_levels = 3; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3828 | else |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3829 | num_levels = ilk_wm_max_level(dev_priv) + 1; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3830 | |
| 3831 | drm_modeset_lock_all(dev); |
| 3832 | |
| 3833 | for (level = 0; level < num_levels; level++) { |
| 3834 | unsigned int latency = wm[level]; |
| 3835 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3836 | /* |
| 3837 | * - WM1+ latency values in 0.5us units |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3838 | * - latencies are in us on gen9/vlv/chv |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3839 | */ |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3840 | if (INTEL_GEN(dev_priv) >= 9 || |
| 3841 | IS_VALLEYVIEW(dev_priv) || |
| 3842 | IS_CHERRYVIEW(dev_priv) || |
| 3843 | IS_G4X(dev_priv)) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3844 | latency *= 10; |
| 3845 | else if (level > 0) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3846 | latency *= 5; |
| 3847 | |
| 3848 | seq_printf(m, "WM%d %u (%u.%u usec)\n", |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3849 | level, wm[level], latency / 10, latency % 10); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3850 | } |
| 3851 | |
| 3852 | drm_modeset_unlock_all(dev); |
| 3853 | } |
| 3854 | |
| 3855 | static int pri_wm_latency_show(struct seq_file *m, void *data) |
| 3856 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3857 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3858 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3859 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3860 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3861 | latencies = dev_priv->wm.skl_latency; |
| 3862 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3863 | latencies = dev_priv->wm.pri_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3864 | |
| 3865 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3866 | |
| 3867 | return 0; |
| 3868 | } |
| 3869 | |
| 3870 | static int spr_wm_latency_show(struct seq_file *m, void *data) |
| 3871 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3872 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3873 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3874 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3875 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3876 | latencies = dev_priv->wm.skl_latency; |
| 3877 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3878 | latencies = dev_priv->wm.spr_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3879 | |
| 3880 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3881 | |
| 3882 | return 0; |
| 3883 | } |
| 3884 | |
| 3885 | static int cur_wm_latency_show(struct seq_file *m, void *data) |
| 3886 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3887 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3888 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3889 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3890 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3891 | latencies = dev_priv->wm.skl_latency; |
| 3892 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3893 | latencies = dev_priv->wm.cur_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3894 | |
| 3895 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3896 | |
| 3897 | return 0; |
| 3898 | } |
| 3899 | |
| 3900 | static int pri_wm_latency_open(struct inode *inode, struct file *file) |
| 3901 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3902 | struct drm_i915_private *dev_priv = inode->i_private; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3903 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3904 | if (INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3905 | return -ENODEV; |
| 3906 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3907 | return single_open(file, pri_wm_latency_show, dev_priv); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3908 | } |
| 3909 | |
| 3910 | static int spr_wm_latency_open(struct inode *inode, struct file *file) |
| 3911 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3912 | struct drm_i915_private *dev_priv = inode->i_private; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3913 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3914 | if (HAS_GMCH_DISPLAY(dev_priv)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3915 | return -ENODEV; |
| 3916 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3917 | return single_open(file, spr_wm_latency_show, dev_priv); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3918 | } |
| 3919 | |
| 3920 | static int cur_wm_latency_open(struct inode *inode, struct file *file) |
| 3921 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3922 | struct drm_i915_private *dev_priv = inode->i_private; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3923 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3924 | if (HAS_GMCH_DISPLAY(dev_priv)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3925 | return -ENODEV; |
| 3926 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3927 | return single_open(file, cur_wm_latency_show, dev_priv); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3928 | } |
| 3929 | |
| 3930 | 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] | 3931 | size_t len, loff_t *offp, uint16_t wm[8]) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3932 | { |
| 3933 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3934 | struct drm_i915_private *dev_priv = m->private; |
| 3935 | struct drm_device *dev = &dev_priv->drm; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3936 | uint16_t new[8] = { 0 }; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3937 | int num_levels; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3938 | int level; |
| 3939 | int ret; |
| 3940 | char tmp[32]; |
| 3941 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3942 | if (IS_CHERRYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3943 | num_levels = 3; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3944 | else if (IS_VALLEYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3945 | num_levels = 1; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3946 | else if (IS_G4X(dev_priv)) |
| 3947 | num_levels = 3; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3948 | else |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3949 | num_levels = ilk_wm_max_level(dev_priv) + 1; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3950 | |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3951 | if (len >= sizeof(tmp)) |
| 3952 | return -EINVAL; |
| 3953 | |
| 3954 | if (copy_from_user(tmp, ubuf, len)) |
| 3955 | return -EFAULT; |
| 3956 | |
| 3957 | tmp[len] = '\0'; |
| 3958 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3959 | ret = sscanf(tmp, "%hu %hu %hu %hu %hu %hu %hu %hu", |
| 3960 | &new[0], &new[1], &new[2], &new[3], |
| 3961 | &new[4], &new[5], &new[6], &new[7]); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3962 | if (ret != num_levels) |
| 3963 | return -EINVAL; |
| 3964 | |
| 3965 | drm_modeset_lock_all(dev); |
| 3966 | |
| 3967 | for (level = 0; level < num_levels; level++) |
| 3968 | wm[level] = new[level]; |
| 3969 | |
| 3970 | drm_modeset_unlock_all(dev); |
| 3971 | |
| 3972 | return len; |
| 3973 | } |
| 3974 | |
| 3975 | |
| 3976 | static ssize_t pri_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3977 | size_t len, loff_t *offp) |
| 3978 | { |
| 3979 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3980 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3981 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3982 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3983 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3984 | latencies = dev_priv->wm.skl_latency; |
| 3985 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3986 | latencies = dev_priv->wm.pri_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3987 | |
| 3988 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3989 | } |
| 3990 | |
| 3991 | static ssize_t spr_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3992 | size_t len, loff_t *offp) |
| 3993 | { |
| 3994 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3995 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3996 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3997 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3998 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3999 | latencies = dev_priv->wm.skl_latency; |
| 4000 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4001 | latencies = dev_priv->wm.spr_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 4002 | |
| 4003 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 4004 | } |
| 4005 | |
| 4006 | static ssize_t cur_wm_latency_write(struct file *file, const char __user *ubuf, |
| 4007 | size_t len, loff_t *offp) |
| 4008 | { |
| 4009 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4010 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 4011 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 4012 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4013 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 4014 | latencies = dev_priv->wm.skl_latency; |
| 4015 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4016 | latencies = dev_priv->wm.cur_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 4017 | |
| 4018 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 4019 | } |
| 4020 | |
| 4021 | static const struct file_operations i915_pri_wm_latency_fops = { |
| 4022 | .owner = THIS_MODULE, |
| 4023 | .open = pri_wm_latency_open, |
| 4024 | .read = seq_read, |
| 4025 | .llseek = seq_lseek, |
| 4026 | .release = single_release, |
| 4027 | .write = pri_wm_latency_write |
| 4028 | }; |
| 4029 | |
| 4030 | static const struct file_operations i915_spr_wm_latency_fops = { |
| 4031 | .owner = THIS_MODULE, |
| 4032 | .open = spr_wm_latency_open, |
| 4033 | .read = seq_read, |
| 4034 | .llseek = seq_lseek, |
| 4035 | .release = single_release, |
| 4036 | .write = spr_wm_latency_write |
| 4037 | }; |
| 4038 | |
| 4039 | static const struct file_operations i915_cur_wm_latency_fops = { |
| 4040 | .owner = THIS_MODULE, |
| 4041 | .open = cur_wm_latency_open, |
| 4042 | .read = seq_read, |
| 4043 | .llseek = seq_lseek, |
| 4044 | .release = single_release, |
| 4045 | .write = cur_wm_latency_write |
| 4046 | }; |
| 4047 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4048 | static int |
| 4049 | i915_wedged_get(void *data, u64 *val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4050 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4051 | struct drm_i915_private *dev_priv = data; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4052 | |
Chris Wilson | d98c52c | 2016-04-13 17:35:05 +0100 | [diff] [blame] | 4053 | *val = i915_terminally_wedged(&dev_priv->gpu_error); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4054 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4055 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4056 | } |
| 4057 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4058 | static int |
| 4059 | i915_wedged_set(void *data, u64 val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4060 | { |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 4061 | struct drm_i915_private *i915 = data; |
| 4062 | struct intel_engine_cs *engine; |
| 4063 | unsigned int tmp; |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 4064 | |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 4065 | /* |
| 4066 | * There is no safeguard against this debugfs entry colliding |
| 4067 | * with the hangcheck calling same i915_handle_error() in |
| 4068 | * parallel, causing an explosion. For now we assume that the |
| 4069 | * test harness is responsible enough not to inject gpu hangs |
| 4070 | * while it is writing to 'i915_wedged' |
| 4071 | */ |
| 4072 | |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 4073 | if (i915_reset_backoff(&i915->gpu_error)) |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 4074 | return -EAGAIN; |
| 4075 | |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 4076 | for_each_engine_masked(engine, i915, val, tmp) { |
| 4077 | engine->hangcheck.seqno = intel_engine_get_seqno(engine); |
| 4078 | engine->hangcheck.stalled = true; |
| 4079 | } |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 4080 | |
Chris Wilson | ce80075 | 2018-03-20 10:04:49 +0000 | [diff] [blame] | 4081 | i915_handle_error(i915, val, I915_ERROR_CAPTURE, |
| 4082 | "Manually set wedged engine mask = %llx", val); |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 4083 | |
| 4084 | wait_on_bit(&i915->gpu_error.flags, |
Chris Wilson | d3df42b | 2017-03-16 17:13:05 +0000 | [diff] [blame] | 4085 | I915_RESET_HANDOFF, |
| 4086 | TASK_UNINTERRUPTIBLE); |
| 4087 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4088 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4089 | } |
| 4090 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4091 | DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops, |
| 4092 | i915_wedged_get, i915_wedged_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 4093 | "%llu\n"); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4094 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4095 | static int |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4096 | fault_irq_set(struct drm_i915_private *i915, |
| 4097 | unsigned long *irq, |
| 4098 | unsigned long val) |
| 4099 | { |
| 4100 | int err; |
| 4101 | |
| 4102 | err = mutex_lock_interruptible(&i915->drm.struct_mutex); |
| 4103 | if (err) |
| 4104 | return err; |
| 4105 | |
| 4106 | err = i915_gem_wait_for_idle(i915, |
| 4107 | I915_WAIT_LOCKED | |
| 4108 | I915_WAIT_INTERRUPTIBLE); |
| 4109 | if (err) |
| 4110 | goto err_unlock; |
| 4111 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4112 | *irq = val; |
| 4113 | mutex_unlock(&i915->drm.struct_mutex); |
| 4114 | |
| 4115 | /* Flush idle worker to disarm irq */ |
Chris Wilson | 7c26240 | 2017-10-06 11:40:38 +0100 | [diff] [blame] | 4116 | drain_delayed_work(&i915->gt.idle_work); |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4117 | |
| 4118 | return 0; |
| 4119 | |
| 4120 | err_unlock: |
| 4121 | mutex_unlock(&i915->drm.struct_mutex); |
| 4122 | return err; |
| 4123 | } |
| 4124 | |
| 4125 | static int |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4126 | i915_ring_missed_irq_get(void *data, u64 *val) |
| 4127 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4128 | struct drm_i915_private *dev_priv = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4129 | |
| 4130 | *val = dev_priv->gpu_error.missed_irq_rings; |
| 4131 | return 0; |
| 4132 | } |
| 4133 | |
| 4134 | static int |
| 4135 | i915_ring_missed_irq_set(void *data, u64 val) |
| 4136 | { |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4137 | struct drm_i915_private *i915 = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4138 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4139 | return fault_irq_set(i915, &i915->gpu_error.missed_irq_rings, val); |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4140 | } |
| 4141 | |
| 4142 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops, |
| 4143 | i915_ring_missed_irq_get, i915_ring_missed_irq_set, |
| 4144 | "0x%08llx\n"); |
| 4145 | |
| 4146 | static int |
| 4147 | i915_ring_test_irq_get(void *data, u64 *val) |
| 4148 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4149 | struct drm_i915_private *dev_priv = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4150 | |
| 4151 | *val = dev_priv->gpu_error.test_irq_rings; |
| 4152 | |
| 4153 | return 0; |
| 4154 | } |
| 4155 | |
| 4156 | static int |
| 4157 | i915_ring_test_irq_set(void *data, u64 val) |
| 4158 | { |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4159 | struct drm_i915_private *i915 = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4160 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4161 | val &= INTEL_INFO(i915)->ring_mask; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4162 | DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val); |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4163 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4164 | return fault_irq_set(i915, &i915->gpu_error.test_irq_rings, val); |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4165 | } |
| 4166 | |
| 4167 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops, |
| 4168 | i915_ring_test_irq_get, i915_ring_test_irq_set, |
| 4169 | "0x%08llx\n"); |
| 4170 | |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4171 | #define DROP_UNBOUND BIT(0) |
| 4172 | #define DROP_BOUND BIT(1) |
| 4173 | #define DROP_RETIRE BIT(2) |
| 4174 | #define DROP_ACTIVE BIT(3) |
| 4175 | #define DROP_FREED BIT(4) |
| 4176 | #define DROP_SHRINK_ALL BIT(5) |
| 4177 | #define DROP_IDLE BIT(6) |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 4178 | #define DROP_ALL (DROP_UNBOUND | \ |
| 4179 | DROP_BOUND | \ |
| 4180 | DROP_RETIRE | \ |
| 4181 | DROP_ACTIVE | \ |
Chris Wilson | 8eadc19 | 2017-03-08 14:46:22 +0000 | [diff] [blame] | 4182 | DROP_FREED | \ |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4183 | DROP_SHRINK_ALL |\ |
| 4184 | DROP_IDLE) |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4185 | static int |
| 4186 | i915_drop_caches_get(void *data, u64 *val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4187 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4188 | *val = DROP_ALL; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4189 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4190 | return 0; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4191 | } |
| 4192 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4193 | static int |
| 4194 | i915_drop_caches_set(void *data, u64 val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4195 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4196 | struct drm_i915_private *dev_priv = data; |
| 4197 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4198 | int ret = 0; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4199 | |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4200 | DRM_DEBUG("Dropping caches: 0x%08llx [0x%08llx]\n", |
| 4201 | val, val & DROP_ALL); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4202 | |
| 4203 | /* No need to check and wait for gpu resets, only libdrm auto-restarts |
| 4204 | * on ioctls on -EAGAIN. */ |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4205 | if (val & (DROP_ACTIVE | DROP_RETIRE)) { |
| 4206 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4207 | if (ret) |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4208 | return ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4209 | |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4210 | if (val & DROP_ACTIVE) |
| 4211 | ret = i915_gem_wait_for_idle(dev_priv, |
| 4212 | I915_WAIT_INTERRUPTIBLE | |
| 4213 | I915_WAIT_LOCKED); |
| 4214 | |
| 4215 | if (val & DROP_RETIRE) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 4216 | i915_retire_requests(dev_priv); |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4217 | |
| 4218 | mutex_unlock(&dev->struct_mutex); |
| 4219 | } |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4220 | |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 4221 | fs_reclaim_acquire(GFP_KERNEL); |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 4222 | if (val & DROP_BOUND) |
Chris Wilson | 912d572 | 2017-09-06 16:19:30 -0700 | [diff] [blame] | 4223 | i915_gem_shrink(dev_priv, LONG_MAX, NULL, I915_SHRINK_BOUND); |
Chris Wilson | 4ad72b7 | 2014-09-03 19:23:37 +0100 | [diff] [blame] | 4224 | |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 4225 | if (val & DROP_UNBOUND) |
Chris Wilson | 912d572 | 2017-09-06 16:19:30 -0700 | [diff] [blame] | 4226 | i915_gem_shrink(dev_priv, LONG_MAX, NULL, I915_SHRINK_UNBOUND); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4227 | |
Chris Wilson | 8eadc19 | 2017-03-08 14:46:22 +0000 | [diff] [blame] | 4228 | if (val & DROP_SHRINK_ALL) |
| 4229 | i915_gem_shrink_all(dev_priv); |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 4230 | fs_reclaim_release(GFP_KERNEL); |
Chris Wilson | 8eadc19 | 2017-03-08 14:46:22 +0000 | [diff] [blame] | 4231 | |
Chris Wilson | 4dfacb0 | 2018-05-31 09:22:43 +0100 | [diff] [blame] | 4232 | if (val & DROP_IDLE) { |
| 4233 | do { |
| 4234 | if (READ_ONCE(dev_priv->gt.active_requests)) |
| 4235 | flush_delayed_work(&dev_priv->gt.retire_work); |
| 4236 | drain_delayed_work(&dev_priv->gt.idle_work); |
| 4237 | } while (READ_ONCE(dev_priv->gt.awake)); |
| 4238 | } |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4239 | |
Chris Wilson | c9c70471 | 2018-02-19 22:06:31 +0000 | [diff] [blame] | 4240 | if (val & DROP_FREED) |
Chris Wilson | bdeb978 | 2016-12-23 14:57:56 +0000 | [diff] [blame] | 4241 | i915_gem_drain_freed_objects(dev_priv); |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 4242 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4243 | return ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4244 | } |
| 4245 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4246 | DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops, |
| 4247 | i915_drop_caches_get, i915_drop_caches_set, |
| 4248 | "0x%08llx\n"); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4249 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4250 | static int |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4251 | i915_cache_sharing_get(void *data, u64 *val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4252 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4253 | struct drm_i915_private *dev_priv = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4254 | u32 snpcr; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4255 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4256 | if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv))) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4257 | return -ENODEV; |
| 4258 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4259 | intel_runtime_pm_get(dev_priv); |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 4260 | |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4261 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4262 | |
| 4263 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4264 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4265 | *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4266 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4267 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4268 | } |
| 4269 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4270 | static int |
| 4271 | i915_cache_sharing_set(void *data, u64 val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4272 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4273 | struct drm_i915_private *dev_priv = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4274 | u32 snpcr; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4275 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4276 | if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv))) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4277 | return -ENODEV; |
| 4278 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4279 | if (val > 3) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4280 | return -EINVAL; |
| 4281 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4282 | intel_runtime_pm_get(dev_priv); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4283 | DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4284 | |
| 4285 | /* Update the cache sharing policy here as well */ |
| 4286 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 4287 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 4288 | snpcr |= (val << GEN6_MBC_SNPCR_SHIFT); |
| 4289 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
| 4290 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4291 | intel_runtime_pm_put(dev_priv); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4292 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4293 | } |
| 4294 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4295 | DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops, |
| 4296 | i915_cache_sharing_get, i915_cache_sharing_set, |
| 4297 | "%llu\n"); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4298 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4299 | static void cherryview_sseu_device_status(struct drm_i915_private *dev_priv, |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4300 | struct sseu_dev_info *sseu) |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4301 | { |
Chris Wilson | 7aa0b14 | 2018-03-13 00:40:54 +0000 | [diff] [blame] | 4302 | #define SS_MAX 2 |
| 4303 | const int ss_max = SS_MAX; |
| 4304 | u32 sig1[SS_MAX], sig2[SS_MAX]; |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4305 | int ss; |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4306 | |
| 4307 | sig1[0] = I915_READ(CHV_POWER_SS0_SIG1); |
| 4308 | sig1[1] = I915_READ(CHV_POWER_SS1_SIG1); |
| 4309 | sig2[0] = I915_READ(CHV_POWER_SS0_SIG2); |
| 4310 | sig2[1] = I915_READ(CHV_POWER_SS1_SIG2); |
| 4311 | |
| 4312 | for (ss = 0; ss < ss_max; ss++) { |
| 4313 | unsigned int eu_cnt; |
| 4314 | |
| 4315 | if (sig1[ss] & CHV_SS_PG_ENABLE) |
| 4316 | /* skip disabled subslice */ |
| 4317 | continue; |
| 4318 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4319 | sseu->slice_mask = BIT(0); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4320 | sseu->subslice_mask[0] |= BIT(ss); |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4321 | eu_cnt = ((sig1[ss] & CHV_EU08_PG_ENABLE) ? 0 : 2) + |
| 4322 | ((sig1[ss] & CHV_EU19_PG_ENABLE) ? 0 : 2) + |
| 4323 | ((sig1[ss] & CHV_EU210_PG_ENABLE) ? 0 : 2) + |
| 4324 | ((sig2[ss] & CHV_EU311_PG_ENABLE) ? 0 : 2); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4325 | sseu->eu_total += eu_cnt; |
| 4326 | sseu->eu_per_subslice = max_t(unsigned int, |
| 4327 | sseu->eu_per_subslice, eu_cnt); |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4328 | } |
Chris Wilson | 7aa0b14 | 2018-03-13 00:40:54 +0000 | [diff] [blame] | 4329 | #undef SS_MAX |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4330 | } |
| 4331 | |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4332 | static void gen10_sseu_device_status(struct drm_i915_private *dev_priv, |
| 4333 | struct sseu_dev_info *sseu) |
| 4334 | { |
Chris Wilson | c7fb3c6 | 2018-03-13 11:31:49 +0000 | [diff] [blame] | 4335 | #define SS_MAX 6 |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4336 | const struct intel_device_info *info = INTEL_INFO(dev_priv); |
Chris Wilson | c7fb3c6 | 2018-03-13 11:31:49 +0000 | [diff] [blame] | 4337 | u32 s_reg[SS_MAX], eu_reg[2 * SS_MAX], eu_mask[2]; |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4338 | int s, ss; |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4339 | |
Lionel Landwerlin | b3e7f86 | 2018-03-06 12:28:53 +0000 | [diff] [blame] | 4340 | for (s = 0; s < info->sseu.max_slices; s++) { |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4341 | /* |
| 4342 | * FIXME: Valid SS Mask respects the spec and read |
| 4343 | * only valid bits for those registers, excluding reserverd |
| 4344 | * although this seems wrong because it would leave many |
| 4345 | * subslices without ACK. |
| 4346 | */ |
| 4347 | s_reg[s] = I915_READ(GEN10_SLICE_PGCTL_ACK(s)) & |
| 4348 | GEN10_PGCTL_VALID_SS_MASK(s); |
| 4349 | eu_reg[2 * s] = I915_READ(GEN10_SS01_EU_PGCTL_ACK(s)); |
| 4350 | eu_reg[2 * s + 1] = I915_READ(GEN10_SS23_EU_PGCTL_ACK(s)); |
| 4351 | } |
| 4352 | |
| 4353 | eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK | |
| 4354 | GEN9_PGCTL_SSA_EU19_ACK | |
| 4355 | GEN9_PGCTL_SSA_EU210_ACK | |
| 4356 | GEN9_PGCTL_SSA_EU311_ACK; |
| 4357 | eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK | |
| 4358 | GEN9_PGCTL_SSB_EU19_ACK | |
| 4359 | GEN9_PGCTL_SSB_EU210_ACK | |
| 4360 | GEN9_PGCTL_SSB_EU311_ACK; |
| 4361 | |
Lionel Landwerlin | b3e7f86 | 2018-03-06 12:28:53 +0000 | [diff] [blame] | 4362 | for (s = 0; s < info->sseu.max_slices; s++) { |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4363 | if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0) |
| 4364 | /* skip disabled slice */ |
| 4365 | continue; |
| 4366 | |
| 4367 | sseu->slice_mask |= BIT(s); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4368 | sseu->subslice_mask[s] = info->sseu.subslice_mask[s]; |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4369 | |
Lionel Landwerlin | b3e7f86 | 2018-03-06 12:28:53 +0000 | [diff] [blame] | 4370 | for (ss = 0; ss < info->sseu.max_subslices; ss++) { |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4371 | unsigned int eu_cnt; |
| 4372 | |
| 4373 | if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss)))) |
| 4374 | /* skip disabled subslice */ |
| 4375 | continue; |
| 4376 | |
| 4377 | eu_cnt = 2 * hweight32(eu_reg[2 * s + ss / 2] & |
| 4378 | eu_mask[ss % 2]); |
| 4379 | sseu->eu_total += eu_cnt; |
| 4380 | sseu->eu_per_subslice = max_t(unsigned int, |
| 4381 | sseu->eu_per_subslice, |
| 4382 | eu_cnt); |
| 4383 | } |
| 4384 | } |
Chris Wilson | c7fb3c6 | 2018-03-13 11:31:49 +0000 | [diff] [blame] | 4385 | #undef SS_MAX |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4386 | } |
| 4387 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4388 | static void gen9_sseu_device_status(struct drm_i915_private *dev_priv, |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4389 | struct sseu_dev_info *sseu) |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4390 | { |
Chris Wilson | c7fb3c6 | 2018-03-13 11:31:49 +0000 | [diff] [blame] | 4391 | #define SS_MAX 3 |
Lionel Landwerlin | b3e7f86 | 2018-03-06 12:28:53 +0000 | [diff] [blame] | 4392 | const struct intel_device_info *info = INTEL_INFO(dev_priv); |
Chris Wilson | c7fb3c6 | 2018-03-13 11:31:49 +0000 | [diff] [blame] | 4393 | u32 s_reg[SS_MAX], eu_reg[2 * SS_MAX], eu_mask[2]; |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4394 | int s, ss; |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4395 | |
Lionel Landwerlin | b3e7f86 | 2018-03-06 12:28:53 +0000 | [diff] [blame] | 4396 | for (s = 0; s < info->sseu.max_slices; s++) { |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4397 | s_reg[s] = I915_READ(GEN9_SLICE_PGCTL_ACK(s)); |
| 4398 | eu_reg[2*s] = I915_READ(GEN9_SS01_EU_PGCTL_ACK(s)); |
| 4399 | eu_reg[2*s + 1] = I915_READ(GEN9_SS23_EU_PGCTL_ACK(s)); |
| 4400 | } |
| 4401 | |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4402 | eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK | |
| 4403 | GEN9_PGCTL_SSA_EU19_ACK | |
| 4404 | GEN9_PGCTL_SSA_EU210_ACK | |
| 4405 | GEN9_PGCTL_SSA_EU311_ACK; |
| 4406 | eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK | |
| 4407 | GEN9_PGCTL_SSB_EU19_ACK | |
| 4408 | GEN9_PGCTL_SSB_EU210_ACK | |
| 4409 | GEN9_PGCTL_SSB_EU311_ACK; |
| 4410 | |
Lionel Landwerlin | b3e7f86 | 2018-03-06 12:28:53 +0000 | [diff] [blame] | 4411 | for (s = 0; s < info->sseu.max_slices; s++) { |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4412 | if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0) |
| 4413 | /* skip disabled slice */ |
| 4414 | continue; |
| 4415 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4416 | sseu->slice_mask |= BIT(s); |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4417 | |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4418 | if (IS_GEN9_BC(dev_priv)) |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4419 | sseu->subslice_mask[s] = |
| 4420 | INTEL_INFO(dev_priv)->sseu.subslice_mask[s]; |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4421 | |
Lionel Landwerlin | b3e7f86 | 2018-03-06 12:28:53 +0000 | [diff] [blame] | 4422 | for (ss = 0; ss < info->sseu.max_subslices; ss++) { |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4423 | unsigned int eu_cnt; |
| 4424 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 4425 | if (IS_GEN9_LP(dev_priv)) { |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4426 | if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss)))) |
| 4427 | /* skip disabled subslice */ |
| 4428 | continue; |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4429 | |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4430 | sseu->subslice_mask[s] |= BIT(ss); |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4431 | } |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4432 | |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4433 | eu_cnt = 2 * hweight32(eu_reg[2*s + ss/2] & |
| 4434 | eu_mask[ss%2]); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4435 | sseu->eu_total += eu_cnt; |
| 4436 | sseu->eu_per_subslice = max_t(unsigned int, |
| 4437 | sseu->eu_per_subslice, |
| 4438 | eu_cnt); |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4439 | } |
| 4440 | } |
Chris Wilson | c7fb3c6 | 2018-03-13 11:31:49 +0000 | [diff] [blame] | 4441 | #undef SS_MAX |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4442 | } |
| 4443 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4444 | static void broadwell_sseu_device_status(struct drm_i915_private *dev_priv, |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4445 | struct sseu_dev_info *sseu) |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4446 | { |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4447 | u32 slice_info = I915_READ(GEN8_GT_SLICE_INFO); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4448 | int s; |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4449 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4450 | sseu->slice_mask = slice_info & GEN8_LSLICESTAT_MASK; |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4451 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4452 | if (sseu->slice_mask) { |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 4453 | sseu->eu_per_subslice = |
| 4454 | INTEL_INFO(dev_priv)->sseu.eu_per_subslice; |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4455 | for (s = 0; s < fls(sseu->slice_mask); s++) { |
| 4456 | sseu->subslice_mask[s] = |
| 4457 | INTEL_INFO(dev_priv)->sseu.subslice_mask[s]; |
| 4458 | } |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4459 | sseu->eu_total = sseu->eu_per_subslice * |
| 4460 | sseu_subslice_total(sseu); |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4461 | |
| 4462 | /* subtract fused off EU(s) from enabled slice(s) */ |
Imre Deak | 795b38b | 2016-08-31 19:13:07 +0300 | [diff] [blame] | 4463 | for (s = 0; s < fls(sseu->slice_mask); s++) { |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 4464 | u8 subslice_7eu = |
| 4465 | INTEL_INFO(dev_priv)->sseu.subslice_7eu[s]; |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4466 | |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4467 | sseu->eu_total -= hweight8(subslice_7eu); |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4468 | } |
| 4469 | } |
| 4470 | } |
| 4471 | |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4472 | static void i915_print_sseu_info(struct seq_file *m, bool is_available_info, |
| 4473 | const struct sseu_dev_info *sseu) |
| 4474 | { |
| 4475 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 4476 | const char *type = is_available_info ? "Available" : "Enabled"; |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4477 | int s; |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4478 | |
Imre Deak | c67ba53 | 2016-08-31 19:13:06 +0300 | [diff] [blame] | 4479 | seq_printf(m, " %s Slice Mask: %04x\n", type, |
| 4480 | sseu->slice_mask); |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4481 | seq_printf(m, " %s Slice Total: %u\n", type, |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4482 | hweight8(sseu->slice_mask)); |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4483 | seq_printf(m, " %s Subslice Total: %u\n", type, |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4484 | sseu_subslice_total(sseu)); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4485 | for (s = 0; s < fls(sseu->slice_mask); s++) { |
| 4486 | seq_printf(m, " %s Slice%i subslices: %u\n", type, |
| 4487 | s, hweight8(sseu->subslice_mask[s])); |
| 4488 | } |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4489 | seq_printf(m, " %s EU Total: %u\n", type, |
| 4490 | sseu->eu_total); |
| 4491 | seq_printf(m, " %s EU Per Subslice: %u\n", type, |
| 4492 | sseu->eu_per_subslice); |
| 4493 | |
| 4494 | if (!is_available_info) |
| 4495 | return; |
| 4496 | |
| 4497 | seq_printf(m, " Has Pooled EU: %s\n", yesno(HAS_POOLED_EU(dev_priv))); |
| 4498 | if (HAS_POOLED_EU(dev_priv)) |
| 4499 | seq_printf(m, " Min EU in pool: %u\n", sseu->min_eu_in_pool); |
| 4500 | |
| 4501 | seq_printf(m, " Has Slice Power Gating: %s\n", |
| 4502 | yesno(sseu->has_slice_pg)); |
| 4503 | seq_printf(m, " Has Subslice Power Gating: %s\n", |
| 4504 | yesno(sseu->has_subslice_pg)); |
| 4505 | seq_printf(m, " Has EU Power Gating: %s\n", |
| 4506 | yesno(sseu->has_eu_pg)); |
| 4507 | } |
| 4508 | |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4509 | static int i915_sseu_status(struct seq_file *m, void *unused) |
| 4510 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4511 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4512 | struct sseu_dev_info sseu; |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4513 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4514 | if (INTEL_GEN(dev_priv) < 8) |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4515 | return -ENODEV; |
| 4516 | |
| 4517 | seq_puts(m, "SSEU Device Info\n"); |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4518 | i915_print_sseu_info(m, true, &INTEL_INFO(dev_priv)->sseu); |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4519 | |
Jeff McGee | 7f992ab | 2015-02-13 10:27:55 -0600 | [diff] [blame] | 4520 | seq_puts(m, "SSEU Device Status\n"); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4521 | memset(&sseu, 0, sizeof(sseu)); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame] | 4522 | sseu.max_slices = INTEL_INFO(dev_priv)->sseu.max_slices; |
| 4523 | sseu.max_subslices = INTEL_INFO(dev_priv)->sseu.max_subslices; |
| 4524 | sseu.max_eus_per_subslice = |
| 4525 | INTEL_INFO(dev_priv)->sseu.max_eus_per_subslice; |
David Weinehall | 238010e | 2016-08-01 17:33:27 +0300 | [diff] [blame] | 4526 | |
| 4527 | intel_runtime_pm_get(dev_priv); |
| 4528 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4529 | if (IS_CHERRYVIEW(dev_priv)) { |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4530 | cherryview_sseu_device_status(dev_priv, &sseu); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4531 | } else if (IS_BROADWELL(dev_priv)) { |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4532 | broadwell_sseu_device_status(dev_priv, &sseu); |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4533 | } else if (IS_GEN9(dev_priv)) { |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4534 | gen9_sseu_device_status(dev_priv, &sseu); |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4535 | } else if (INTEL_GEN(dev_priv) >= 10) { |
| 4536 | gen10_sseu_device_status(dev_priv, &sseu); |
Jeff McGee | 7f992ab | 2015-02-13 10:27:55 -0600 | [diff] [blame] | 4537 | } |
David Weinehall | 238010e | 2016-08-01 17:33:27 +0300 | [diff] [blame] | 4538 | |
| 4539 | intel_runtime_pm_put(dev_priv); |
| 4540 | |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4541 | i915_print_sseu_info(m, false, &sseu); |
Jeff McGee | 7f992ab | 2015-02-13 10:27:55 -0600 | [diff] [blame] | 4542 | |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4543 | return 0; |
| 4544 | } |
| 4545 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4546 | static int i915_forcewake_open(struct inode *inode, struct file *file) |
| 4547 | { |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4548 | struct drm_i915_private *i915 = inode->i_private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4549 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4550 | if (INTEL_GEN(i915) < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4551 | return 0; |
| 4552 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4553 | intel_runtime_pm_get(i915); |
| 4554 | intel_uncore_forcewake_user_get(i915); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4555 | |
| 4556 | return 0; |
| 4557 | } |
| 4558 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 4559 | static int i915_forcewake_release(struct inode *inode, struct file *file) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4560 | { |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4561 | struct drm_i915_private *i915 = inode->i_private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4562 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4563 | if (INTEL_GEN(i915) < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4564 | return 0; |
| 4565 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4566 | intel_uncore_forcewake_user_put(i915); |
| 4567 | intel_runtime_pm_put(i915); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4568 | |
| 4569 | return 0; |
| 4570 | } |
| 4571 | |
| 4572 | static const struct file_operations i915_forcewake_fops = { |
| 4573 | .owner = THIS_MODULE, |
| 4574 | .open = i915_forcewake_open, |
| 4575 | .release = i915_forcewake_release, |
| 4576 | }; |
| 4577 | |
Lyude | 317eaa9 | 2017-02-03 21:18:25 -0500 | [diff] [blame] | 4578 | static int i915_hpd_storm_ctl_show(struct seq_file *m, void *data) |
| 4579 | { |
| 4580 | struct drm_i915_private *dev_priv = m->private; |
| 4581 | struct i915_hotplug *hotplug = &dev_priv->hotplug; |
| 4582 | |
| 4583 | seq_printf(m, "Threshold: %d\n", hotplug->hpd_storm_threshold); |
| 4584 | seq_printf(m, "Detected: %s\n", |
| 4585 | yesno(delayed_work_pending(&hotplug->reenable_work))); |
| 4586 | |
| 4587 | return 0; |
| 4588 | } |
| 4589 | |
| 4590 | static ssize_t i915_hpd_storm_ctl_write(struct file *file, |
| 4591 | const char __user *ubuf, size_t len, |
| 4592 | loff_t *offp) |
| 4593 | { |
| 4594 | struct seq_file *m = file->private_data; |
| 4595 | struct drm_i915_private *dev_priv = m->private; |
| 4596 | struct i915_hotplug *hotplug = &dev_priv->hotplug; |
| 4597 | unsigned int new_threshold; |
| 4598 | int i; |
| 4599 | char *newline; |
| 4600 | char tmp[16]; |
| 4601 | |
| 4602 | if (len >= sizeof(tmp)) |
| 4603 | return -EINVAL; |
| 4604 | |
| 4605 | if (copy_from_user(tmp, ubuf, len)) |
| 4606 | return -EFAULT; |
| 4607 | |
| 4608 | tmp[len] = '\0'; |
| 4609 | |
| 4610 | /* Strip newline, if any */ |
| 4611 | newline = strchr(tmp, '\n'); |
| 4612 | if (newline) |
| 4613 | *newline = '\0'; |
| 4614 | |
| 4615 | if (strcmp(tmp, "reset") == 0) |
| 4616 | new_threshold = HPD_STORM_DEFAULT_THRESHOLD; |
| 4617 | else if (kstrtouint(tmp, 10, &new_threshold) != 0) |
| 4618 | return -EINVAL; |
| 4619 | |
| 4620 | if (new_threshold > 0) |
| 4621 | DRM_DEBUG_KMS("Setting HPD storm detection threshold to %d\n", |
| 4622 | new_threshold); |
| 4623 | else |
| 4624 | DRM_DEBUG_KMS("Disabling HPD storm detection\n"); |
| 4625 | |
| 4626 | spin_lock_irq(&dev_priv->irq_lock); |
| 4627 | hotplug->hpd_storm_threshold = new_threshold; |
| 4628 | /* Reset the HPD storm stats so we don't accidentally trigger a storm */ |
| 4629 | for_each_hpd_pin(i) |
| 4630 | hotplug->stats[i].count = 0; |
| 4631 | spin_unlock_irq(&dev_priv->irq_lock); |
| 4632 | |
| 4633 | /* Re-enable hpd immediately if we were in an irq storm */ |
| 4634 | flush_delayed_work(&dev_priv->hotplug.reenable_work); |
| 4635 | |
| 4636 | return len; |
| 4637 | } |
| 4638 | |
| 4639 | static int i915_hpd_storm_ctl_open(struct inode *inode, struct file *file) |
| 4640 | { |
| 4641 | return single_open(file, i915_hpd_storm_ctl_show, inode->i_private); |
| 4642 | } |
| 4643 | |
| 4644 | static const struct file_operations i915_hpd_storm_ctl_fops = { |
| 4645 | .owner = THIS_MODULE, |
| 4646 | .open = i915_hpd_storm_ctl_open, |
| 4647 | .read = seq_read, |
| 4648 | .llseek = seq_lseek, |
| 4649 | .release = single_release, |
| 4650 | .write = i915_hpd_storm_ctl_write |
| 4651 | }; |
| 4652 | |
C, Ramalingam | 35954e8 | 2017-11-08 00:08:23 +0530 | [diff] [blame] | 4653 | static int i915_drrs_ctl_set(void *data, u64 val) |
| 4654 | { |
| 4655 | struct drm_i915_private *dev_priv = data; |
| 4656 | struct drm_device *dev = &dev_priv->drm; |
| 4657 | struct intel_crtc *intel_crtc; |
| 4658 | struct intel_encoder *encoder; |
| 4659 | struct intel_dp *intel_dp; |
| 4660 | |
| 4661 | if (INTEL_GEN(dev_priv) < 7) |
| 4662 | return -ENODEV; |
| 4663 | |
| 4664 | drm_modeset_lock_all(dev); |
| 4665 | for_each_intel_crtc(dev, intel_crtc) { |
| 4666 | if (!intel_crtc->base.state->active || |
| 4667 | !intel_crtc->config->has_drrs) |
| 4668 | continue; |
| 4669 | |
| 4670 | for_each_encoder_on_crtc(dev, &intel_crtc->base, encoder) { |
| 4671 | if (encoder->type != INTEL_OUTPUT_EDP) |
| 4672 | continue; |
| 4673 | |
| 4674 | DRM_DEBUG_DRIVER("Manually %sabling DRRS. %llu\n", |
| 4675 | val ? "en" : "dis", val); |
| 4676 | |
| 4677 | intel_dp = enc_to_intel_dp(&encoder->base); |
| 4678 | if (val) |
| 4679 | intel_edp_drrs_enable(intel_dp, |
| 4680 | intel_crtc->config); |
| 4681 | else |
| 4682 | intel_edp_drrs_disable(intel_dp, |
| 4683 | intel_crtc->config); |
| 4684 | } |
| 4685 | } |
| 4686 | drm_modeset_unlock_all(dev); |
| 4687 | |
| 4688 | return 0; |
| 4689 | } |
| 4690 | |
| 4691 | DEFINE_SIMPLE_ATTRIBUTE(i915_drrs_ctl_fops, NULL, i915_drrs_ctl_set, "%llu\n"); |
| 4692 | |
Maarten Lankhorst | d52ad9c | 2018-03-28 12:05:26 +0200 | [diff] [blame] | 4693 | static ssize_t |
| 4694 | i915_fifo_underrun_reset_write(struct file *filp, |
| 4695 | const char __user *ubuf, |
| 4696 | size_t cnt, loff_t *ppos) |
| 4697 | { |
| 4698 | struct drm_i915_private *dev_priv = filp->private_data; |
| 4699 | struct intel_crtc *intel_crtc; |
| 4700 | struct drm_device *dev = &dev_priv->drm; |
| 4701 | int ret; |
| 4702 | bool reset; |
| 4703 | |
| 4704 | ret = kstrtobool_from_user(ubuf, cnt, &reset); |
| 4705 | if (ret) |
| 4706 | return ret; |
| 4707 | |
| 4708 | if (!reset) |
| 4709 | return cnt; |
| 4710 | |
| 4711 | for_each_intel_crtc(dev, intel_crtc) { |
| 4712 | struct drm_crtc_commit *commit; |
| 4713 | struct intel_crtc_state *crtc_state; |
| 4714 | |
| 4715 | ret = drm_modeset_lock_single_interruptible(&intel_crtc->base.mutex); |
| 4716 | if (ret) |
| 4717 | return ret; |
| 4718 | |
| 4719 | crtc_state = to_intel_crtc_state(intel_crtc->base.state); |
| 4720 | commit = crtc_state->base.commit; |
| 4721 | if (commit) { |
| 4722 | ret = wait_for_completion_interruptible(&commit->hw_done); |
| 4723 | if (!ret) |
| 4724 | ret = wait_for_completion_interruptible(&commit->flip_done); |
| 4725 | } |
| 4726 | |
| 4727 | if (!ret && crtc_state->base.active) { |
| 4728 | DRM_DEBUG_KMS("Re-arming FIFO underruns on pipe %c\n", |
| 4729 | pipe_name(intel_crtc->pipe)); |
| 4730 | |
| 4731 | intel_crtc_arm_fifo_underrun(intel_crtc, crtc_state); |
| 4732 | } |
| 4733 | |
| 4734 | drm_modeset_unlock(&intel_crtc->base.mutex); |
| 4735 | |
| 4736 | if (ret) |
| 4737 | return ret; |
| 4738 | } |
| 4739 | |
| 4740 | ret = intel_fbc_reset_underrun(dev_priv); |
| 4741 | if (ret) |
| 4742 | return ret; |
| 4743 | |
| 4744 | return cnt; |
| 4745 | } |
| 4746 | |
| 4747 | static const struct file_operations i915_fifo_underrun_reset_ops = { |
| 4748 | .owner = THIS_MODULE, |
| 4749 | .open = simple_open, |
| 4750 | .write = i915_fifo_underrun_reset_write, |
| 4751 | .llseek = default_llseek, |
| 4752 | }; |
| 4753 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 4754 | static const struct drm_info_list i915_debugfs_list[] = { |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 4755 | {"i915_capabilities", i915_capabilities, 0}, |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 4756 | {"i915_gem_objects", i915_gem_object_info, 0}, |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 4757 | {"i915_gem_gtt", i915_gem_gtt_info, 0}, |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 4758 | {"i915_gem_stolen", i915_gem_stolen_list_info }, |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 4759 | {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4760 | {"i915_gem_interrupt", i915_interrupt_info, 0}, |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 4761 | {"i915_gem_batch_pool", i915_gem_batch_pool_info, 0}, |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 4762 | {"i915_guc_info", i915_guc_info, 0}, |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 4763 | {"i915_guc_load_status", i915_guc_load_status_info, 0}, |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 4764 | {"i915_guc_log_dump", i915_guc_log_dump, 0}, |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 4765 | {"i915_guc_load_err_log_dump", i915_guc_log_dump, 0, (void *)1}, |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 4766 | {"i915_guc_stage_pool", i915_guc_stage_pool, 0}, |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 4767 | {"i915_huc_load_status", i915_huc_load_status_info, 0}, |
Deepak S | adb4bd1 | 2014-03-31 11:30:02 +0530 | [diff] [blame] | 4768 | {"i915_frequency_info", i915_frequency_info, 0}, |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 4769 | {"i915_hangcheck_info", i915_hangcheck_info, 0}, |
Michel Thierry | 061d06a | 2017-06-20 10:57:49 +0100 | [diff] [blame] | 4770 | {"i915_reset_info", i915_reset_info, 0}, |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 4771 | {"i915_drpc_info", i915_drpc_info, 0}, |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 4772 | {"i915_emon_status", i915_emon_status, 0}, |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 4773 | {"i915_ring_freq_table", i915_ring_freq_table, 0}, |
Daniel Vetter | 9a85178 | 2015-06-18 10:30:22 +0200 | [diff] [blame] | 4774 | {"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0}, |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 4775 | {"i915_fbc_status", i915_fbc_status, 0}, |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 4776 | {"i915_ips_status", i915_ips_status, 0}, |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 4777 | {"i915_sr_status", i915_sr_status, 0}, |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 4778 | {"i915_opregion", i915_opregion, 0}, |
Jani Nikula | ada8f95 | 2015-12-15 13:17:12 +0200 | [diff] [blame] | 4779 | {"i915_vbt", i915_vbt, 0}, |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 4780 | {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0}, |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 4781 | {"i915_context_status", i915_context_status, 0}, |
Mika Kuoppala | f65367b | 2015-01-16 11:34:42 +0200 | [diff] [blame] | 4782 | {"i915_forcewake_domains", i915_forcewake_domains, 0}, |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 4783 | {"i915_swizzle_info", i915_swizzle_info, 0}, |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 4784 | {"i915_ppgtt_info", i915_ppgtt_info, 0}, |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 4785 | {"i915_llc", i915_llc, 0}, |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 4786 | {"i915_edp_psr_status", i915_edp_psr_status, 0}, |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 4787 | {"i915_sink_crc_eDP1", i915_sink_crc, 0}, |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 4788 | {"i915_energy_uJ", i915_energy_uJ, 0}, |
Damien Lespiau | 6455c87 | 2015-06-04 18:23:57 +0100 | [diff] [blame] | 4789 | {"i915_runtime_pm_status", i915_runtime_pm_status, 0}, |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 4790 | {"i915_power_domain_info", i915_power_domain_info, 0}, |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 4791 | {"i915_dmc_info", i915_dmc_info, 0}, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 4792 | {"i915_display_info", i915_display_info, 0}, |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 4793 | {"i915_engine_info", i915_engine_info, 0}, |
Lionel Landwerlin | 79e9cd5 | 2018-03-06 12:28:54 +0000 | [diff] [blame] | 4794 | {"i915_rcs_topology", i915_rcs_topology, 0}, |
Chris Wilson | c5418a8 | 2017-10-13 21:26:19 +0100 | [diff] [blame] | 4795 | {"i915_shrinker_info", i915_shrinker_info, 0}, |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 4796 | {"i915_shared_dplls_info", i915_shared_dplls_info, 0}, |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 4797 | {"i915_dp_mst_info", i915_dp_mst_info, 0}, |
Damien Lespiau | 1ed1ef9 | 2014-08-30 16:50:59 +0100 | [diff] [blame] | 4798 | {"i915_wa_registers", i915_wa_registers, 0}, |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 4799 | {"i915_ddb_info", i915_ddb_info, 0}, |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4800 | {"i915_sseu_status", i915_sseu_status, 0}, |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 4801 | {"i915_drrs_status", i915_drrs_status, 0}, |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 4802 | {"i915_rps_boost_info", i915_rps_boost_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4803 | }; |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4804 | #define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4805 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 4806 | static const struct i915_debugfs_files { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4807 | const char *name; |
| 4808 | const struct file_operations *fops; |
| 4809 | } i915_debugfs_files[] = { |
| 4810 | {"i915_wedged", &i915_wedged_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4811 | {"i915_cache_sharing", &i915_cache_sharing_fops}, |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4812 | {"i915_ring_missed_irq", &i915_ring_missed_irq_fops}, |
| 4813 | {"i915_ring_test_irq", &i915_ring_test_irq_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4814 | {"i915_gem_drop_caches", &i915_drop_caches_fops}, |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 4815 | #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4816 | {"i915_error_state", &i915_error_state_fops}, |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 4817 | {"i915_gpu_info", &i915_gpu_info_fops}, |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 4818 | #endif |
Maarten Lankhorst | d52ad9c | 2018-03-28 12:05:26 +0200 | [diff] [blame] | 4819 | {"i915_fifo_underrun_reset", &i915_fifo_underrun_reset_ops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4820 | {"i915_next_seqno", &i915_next_seqno_fops}, |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 4821 | {"i915_pri_wm_latency", &i915_pri_wm_latency_fops}, |
| 4822 | {"i915_spr_wm_latency", &i915_spr_wm_latency_fops}, |
| 4823 | {"i915_cur_wm_latency", &i915_cur_wm_latency_fops}, |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 4824 | {"i915_fbc_false_color", &i915_fbc_false_color_fops}, |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 4825 | {"i915_dp_test_data", &i915_displayport_test_data_fops}, |
| 4826 | {"i915_dp_test_type", &i915_displayport_test_type_fops}, |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 4827 | {"i915_dp_test_active", &i915_displayport_test_active_fops}, |
Michał Winiarski | 4977a28 | 2018-03-19 10:53:40 +0100 | [diff] [blame] | 4828 | {"i915_guc_log_level", &i915_guc_log_level_fops}, |
| 4829 | {"i915_guc_log_relay", &i915_guc_log_relay_fops}, |
Kumar, Mahesh | d2d4f39 | 2017-08-17 19:15:29 +0530 | [diff] [blame] | 4830 | {"i915_hpd_storm_ctl", &i915_hpd_storm_ctl_fops}, |
C, Ramalingam | 35954e8 | 2017-11-08 00:08:23 +0530 | [diff] [blame] | 4831 | {"i915_ipc_status", &i915_ipc_status_fops}, |
Dhinakaran Pandiyan | 54fd314 | 2018-04-04 18:37:17 -0700 | [diff] [blame] | 4832 | {"i915_drrs_ctl", &i915_drrs_ctl_fops}, |
| 4833 | {"i915_edp_psr_debug", &i915_edp_psr_debug_fops} |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4834 | }; |
| 4835 | |
Chris Wilson | 1dac891 | 2016-06-24 14:00:17 +0100 | [diff] [blame] | 4836 | int i915_debugfs_register(struct drm_i915_private *dev_priv) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4837 | { |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 4838 | struct drm_minor *minor = dev_priv->drm.primary; |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4839 | struct dentry *ent; |
Maarten Lankhorst | 6cc4215 | 2018-06-28 09:23:02 +0200 | [diff] [blame^] | 4840 | int i; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4841 | |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4842 | ent = debugfs_create_file("i915_forcewake_user", S_IRUSR, |
| 4843 | minor->debugfs_root, to_i915(minor->dev), |
| 4844 | &i915_forcewake_fops); |
| 4845 | if (!ent) |
| 4846 | return -ENOMEM; |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 4847 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4848 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4849 | ent = debugfs_create_file(i915_debugfs_files[i].name, |
| 4850 | S_IRUGO | S_IWUSR, |
| 4851 | minor->debugfs_root, |
| 4852 | to_i915(minor->dev), |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4853 | i915_debugfs_files[i].fops); |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4854 | if (!ent) |
| 4855 | return -ENOMEM; |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4856 | } |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 4857 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4858 | return drm_debugfs_create_files(i915_debugfs_list, |
| 4859 | I915_DEBUGFS_ENTRIES, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4860 | minor->debugfs_root, minor); |
| 4861 | } |
| 4862 | |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4863 | struct dpcd_block { |
| 4864 | /* DPCD dump start address. */ |
| 4865 | unsigned int offset; |
| 4866 | /* DPCD dump end address, inclusive. If unset, .size will be used. */ |
| 4867 | unsigned int end; |
| 4868 | /* DPCD dump size. Used if .end is unset. If unset, defaults to 1. */ |
| 4869 | size_t size; |
| 4870 | /* Only valid for eDP. */ |
| 4871 | bool edp; |
| 4872 | }; |
| 4873 | |
| 4874 | static const struct dpcd_block i915_dpcd_debug[] = { |
| 4875 | { .offset = DP_DPCD_REV, .size = DP_RECEIVER_CAP_SIZE }, |
| 4876 | { .offset = DP_PSR_SUPPORT, .end = DP_PSR_CAPS }, |
| 4877 | { .offset = DP_DOWNSTREAM_PORT_0, .size = 16 }, |
| 4878 | { .offset = DP_LINK_BW_SET, .end = DP_EDP_CONFIGURATION_SET }, |
| 4879 | { .offset = DP_SINK_COUNT, .end = DP_ADJUST_REQUEST_LANE2_3 }, |
| 4880 | { .offset = DP_SET_POWER }, |
| 4881 | { .offset = DP_EDP_DPCD_REV }, |
| 4882 | { .offset = DP_EDP_GENERAL_CAP_1, .end = DP_EDP_GENERAL_CAP_3 }, |
| 4883 | { .offset = DP_EDP_DISPLAY_CONTROL_REGISTER, .end = DP_EDP_BACKLIGHT_FREQ_CAP_MAX_LSB }, |
| 4884 | { .offset = DP_EDP_DBC_MINIMUM_BRIGHTNESS_SET, .end = DP_EDP_DBC_MAXIMUM_BRIGHTNESS_SET }, |
| 4885 | }; |
| 4886 | |
| 4887 | static int i915_dpcd_show(struct seq_file *m, void *data) |
| 4888 | { |
| 4889 | struct drm_connector *connector = m->private; |
| 4890 | struct intel_dp *intel_dp = |
| 4891 | enc_to_intel_dp(&intel_attached_encoder(connector)->base); |
| 4892 | uint8_t buf[16]; |
| 4893 | ssize_t err; |
| 4894 | int i; |
| 4895 | |
Mika Kuoppala | 5c1a887 | 2015-05-15 13:09:21 +0300 | [diff] [blame] | 4896 | if (connector->status != connector_status_connected) |
| 4897 | return -ENODEV; |
| 4898 | |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4899 | for (i = 0; i < ARRAY_SIZE(i915_dpcd_debug); i++) { |
| 4900 | const struct dpcd_block *b = &i915_dpcd_debug[i]; |
| 4901 | size_t size = b->end ? b->end - b->offset + 1 : (b->size ?: 1); |
| 4902 | |
| 4903 | if (b->edp && |
| 4904 | connector->connector_type != DRM_MODE_CONNECTOR_eDP) |
| 4905 | continue; |
| 4906 | |
| 4907 | /* low tech for now */ |
| 4908 | if (WARN_ON(size > sizeof(buf))) |
| 4909 | continue; |
| 4910 | |
| 4911 | err = drm_dp_dpcd_read(&intel_dp->aux, b->offset, buf, size); |
| 4912 | if (err <= 0) { |
| 4913 | DRM_ERROR("dpcd read (%zu bytes at %u) failed (%zd)\n", |
| 4914 | size, b->offset, err); |
| 4915 | continue; |
| 4916 | } |
| 4917 | |
| 4918 | seq_printf(m, "%04x: %*ph\n", b->offset, (int) size, buf); |
kbuild test robot | b3f9d7d | 2015-04-16 18:34:06 +0800 | [diff] [blame] | 4919 | } |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4920 | |
| 4921 | return 0; |
| 4922 | } |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 4923 | DEFINE_SHOW_ATTRIBUTE(i915_dpcd); |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4924 | |
David Weinehall | ecbd678 | 2016-08-23 12:23:56 +0300 | [diff] [blame] | 4925 | static int i915_panel_show(struct seq_file *m, void *data) |
| 4926 | { |
| 4927 | struct drm_connector *connector = m->private; |
| 4928 | struct intel_dp *intel_dp = |
| 4929 | enc_to_intel_dp(&intel_attached_encoder(connector)->base); |
| 4930 | |
| 4931 | if (connector->status != connector_status_connected) |
| 4932 | return -ENODEV; |
| 4933 | |
| 4934 | seq_printf(m, "Panel power up delay: %d\n", |
| 4935 | intel_dp->panel_power_up_delay); |
| 4936 | seq_printf(m, "Panel power down delay: %d\n", |
| 4937 | intel_dp->panel_power_down_delay); |
| 4938 | seq_printf(m, "Backlight on delay: %d\n", |
| 4939 | intel_dp->backlight_on_delay); |
| 4940 | seq_printf(m, "Backlight off delay: %d\n", |
| 4941 | intel_dp->backlight_off_delay); |
| 4942 | |
| 4943 | return 0; |
| 4944 | } |
Andy Shevchenko | e400671 | 2018-03-16 16:12:13 +0200 | [diff] [blame] | 4945 | DEFINE_SHOW_ATTRIBUTE(i915_panel); |
David Weinehall | ecbd678 | 2016-08-23 12:23:56 +0300 | [diff] [blame] | 4946 | |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4947 | /** |
| 4948 | * i915_debugfs_connector_add - add i915 specific connector debugfs files |
| 4949 | * @connector: pointer to a registered drm_connector |
| 4950 | * |
| 4951 | * Cleanup will be done by drm_connector_unregister() through a call to |
| 4952 | * drm_debugfs_connector_remove(). |
| 4953 | * |
| 4954 | * Returns 0 on success, negative error codes on error. |
| 4955 | */ |
| 4956 | int i915_debugfs_connector_add(struct drm_connector *connector) |
| 4957 | { |
| 4958 | struct dentry *root = connector->debugfs_entry; |
| 4959 | |
| 4960 | /* The connector must have been registered beforehands. */ |
| 4961 | if (!root) |
| 4962 | return -ENODEV; |
| 4963 | |
| 4964 | if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort || |
| 4965 | connector->connector_type == DRM_MODE_CONNECTOR_eDP) |
David Weinehall | ecbd678 | 2016-08-23 12:23:56 +0300 | [diff] [blame] | 4966 | debugfs_create_file("i915_dpcd", S_IRUGO, root, |
| 4967 | connector, &i915_dpcd_fops); |
| 4968 | |
| 4969 | if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) |
| 4970 | debugfs_create_file("i915_panel_timings", S_IRUGO, root, |
| 4971 | connector, &i915_panel_fops); |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4972 | |
| 4973 | return 0; |
| 4974 | } |