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 | 2bfa996 | 2016-08-04 07:52:25 +0100 | [diff] [blame] | 331 | if (ppgtt->base.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 | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 380 | static int per_file_ctx_stats(int id, void *ptr, void *data) |
| 381 | { |
| 382 | struct i915_gem_context *ctx = ptr; |
| 383 | int n; |
| 384 | |
| 385 | for (n = 0; n < ARRAY_SIZE(ctx->engine); n++) { |
| 386 | if (ctx->engine[n].state) |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 387 | per_file_stats(0, ctx->engine[n].state->obj, data); |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 388 | if (ctx->engine[n].ring) |
Chris Wilson | 57e8853 | 2016-08-15 10:48:57 +0100 | [diff] [blame] | 389 | per_file_stats(0, ctx->engine[n].ring->vma->obj, data); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | return 0; |
| 393 | } |
| 394 | |
| 395 | static void print_context_stats(struct seq_file *m, |
| 396 | struct drm_i915_private *dev_priv) |
| 397 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 398 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 399 | struct file_stats stats; |
| 400 | struct drm_file *file; |
| 401 | |
| 402 | memset(&stats, 0, sizeof(stats)); |
| 403 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 404 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 405 | if (dev_priv->kernel_context) |
| 406 | per_file_ctx_stats(0, dev_priv->kernel_context, &stats); |
| 407 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 408 | list_for_each_entry(file, &dev->filelist, lhead) { |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 409 | struct drm_i915_file_private *fpriv = file->driver_priv; |
| 410 | idr_for_each(&fpriv->context_idr, per_file_ctx_stats, &stats); |
| 411 | } |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 412 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 413 | |
| 414 | print_file_stats(m, "[k]contexts", stats); |
| 415 | } |
| 416 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 417 | static int i915_gem_object_info(struct seq_file *m, void *data) |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 418 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 419 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 420 | struct drm_device *dev = &dev_priv->drm; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 421 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 422 | u32 count, mapped_count, purgeable_count, dpy_count, huge_count; |
| 423 | u64 size, mapped_size, purgeable_size, dpy_size, huge_size; |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 424 | struct drm_i915_gem_object *obj; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 425 | unsigned int page_sizes = 0; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 426 | struct drm_file *file; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 427 | char buf[80]; |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 428 | int ret; |
| 429 | |
| 430 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 431 | if (ret) |
| 432 | return ret; |
| 433 | |
Chris Wilson | 3ef7f22 | 2016-10-18 13:02:48 +0100 | [diff] [blame] | 434 | seq_printf(m, "%u objects, %llu bytes\n", |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 435 | dev_priv->mm.object_count, |
| 436 | dev_priv->mm.object_memory); |
| 437 | |
Chris Wilson | 1544c42 | 2016-08-15 13:18:16 +0100 | [diff] [blame] | 438 | size = count = 0; |
| 439 | mapped_size = mapped_count = 0; |
| 440 | purgeable_size = purgeable_count = 0; |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 441 | huge_size = huge_count = 0; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 442 | |
| 443 | spin_lock(&dev_priv->mm.obj_lock); |
| 444 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, mm.link) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 445 | size += obj->base.size; |
| 446 | ++count; |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 447 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 448 | if (obj->mm.madv == I915_MADV_DONTNEED) { |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 449 | purgeable_size += obj->base.size; |
| 450 | ++purgeable_count; |
| 451 | } |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 452 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 453 | if (obj->mm.mapping) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 454 | mapped_count++; |
| 455 | mapped_size += obj->base.size; |
Tvrtko Ursulin | be19b10 | 2016-04-15 11:34:53 +0100 | [diff] [blame] | 456 | } |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 457 | |
| 458 | if (obj->mm.page_sizes.sg > I915_GTT_PAGE_SIZE) { |
| 459 | huge_count++; |
| 460 | huge_size += obj->base.size; |
| 461 | page_sizes |= obj->mm.page_sizes.sg; |
| 462 | } |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 463 | } |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 464 | seq_printf(m, "%u unbound objects, %llu bytes\n", count, size); |
| 465 | |
| 466 | size = count = dpy_size = dpy_count = 0; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 467 | list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 468 | size += obj->base.size; |
| 469 | ++count; |
| 470 | |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 471 | if (obj->pin_global) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 472 | dpy_size += obj->base.size; |
| 473 | ++dpy_count; |
| 474 | } |
| 475 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 476 | if (obj->mm.madv == I915_MADV_DONTNEED) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 477 | purgeable_size += obj->base.size; |
| 478 | ++purgeable_count; |
| 479 | } |
| 480 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 481 | if (obj->mm.mapping) { |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 482 | mapped_count++; |
| 483 | mapped_size += obj->base.size; |
| 484 | } |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 485 | |
| 486 | if (obj->mm.page_sizes.sg > I915_GTT_PAGE_SIZE) { |
| 487 | huge_count++; |
| 488 | huge_size += obj->base.size; |
| 489 | page_sizes |= obj->mm.page_sizes.sg; |
| 490 | } |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 491 | } |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 492 | spin_unlock(&dev_priv->mm.obj_lock); |
| 493 | |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 494 | seq_printf(m, "%u bound objects, %llu bytes\n", |
| 495 | count, size); |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 496 | seq_printf(m, "%u purgeable objects, %llu bytes\n", |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 497 | purgeable_count, purgeable_size); |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 498 | seq_printf(m, "%u mapped objects, %llu bytes\n", |
| 499 | mapped_count, mapped_size); |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 500 | seq_printf(m, "%u huge-paged objects (%s) %llu bytes\n", |
| 501 | huge_count, |
| 502 | stringify_page_sizes(page_sizes, buf, sizeof(buf)), |
| 503 | huge_size); |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 504 | seq_printf(m, "%u display objects (globally pinned), %llu bytes\n", |
Chris Wilson | 2bd160a | 2016-08-15 10:48:45 +0100 | [diff] [blame] | 505 | dpy_count, dpy_size); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 506 | |
Matthew Auld | b7128ef | 2017-12-11 15:18:22 +0000 | [diff] [blame] | 507 | seq_printf(m, "%llu [%pa] gtt total\n", |
| 508 | ggtt->base.total, &ggtt->mappable_end); |
Matthew Auld | 7393b7e | 2017-10-06 23:18:28 +0100 | [diff] [blame] | 509 | seq_printf(m, "Supported page sizes: %s\n", |
| 510 | stringify_page_sizes(INTEL_INFO(dev_priv)->page_sizes, |
| 511 | buf, sizeof(buf))); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 512 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 513 | seq_putc(m, '\n'); |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 514 | print_batch_pool_stats(m, dev_priv); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 515 | mutex_unlock(&dev->struct_mutex); |
| 516 | |
| 517 | mutex_lock(&dev->filelist_mutex); |
Chris Wilson | 15da956 | 2016-05-24 14:53:43 +0100 | [diff] [blame] | 518 | print_context_stats(m, dev_priv); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 519 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 520 | struct file_stats stats; |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 521 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 522 | struct i915_request *request; |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 523 | struct task_struct *task; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 524 | |
Chris Wilson | 0caf81b | 2017-06-17 12:57:44 +0100 | [diff] [blame] | 525 | mutex_lock(&dev->struct_mutex); |
| 526 | |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 527 | memset(&stats, 0, sizeof(stats)); |
Chris Wilson | 6313c20 | 2014-03-19 13:45:45 +0000 | [diff] [blame] | 528 | stats.file_priv = file->driver_priv; |
Chris Wilson | 5b5ffff | 2014-06-17 09:56:24 +0100 | [diff] [blame] | 529 | spin_lock(&file->table_lock); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 530 | idr_for_each(&file->object_idr, per_file_stats, &stats); |
Chris Wilson | 5b5ffff | 2014-06-17 09:56:24 +0100 | [diff] [blame] | 531 | spin_unlock(&file->table_lock); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 532 | /* |
| 533 | * Although we have a valid reference on file->pid, that does |
| 534 | * not guarantee that the task_struct who called get_pid() is |
| 535 | * still alive (e.g. get_pid(current) => fork() => exit()). |
| 536 | * Therefore, we need to protect this ->comm access using RCU. |
| 537 | */ |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 538 | request = list_first_entry_or_null(&file_priv->mm.request_list, |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 539 | struct i915_request, |
Chris Wilson | c8659ef | 2017-03-02 12:25:25 +0000 | [diff] [blame] | 540 | client_link); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 541 | rcu_read_lock(); |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 542 | task = pid_task(request && request->ctx->pid ? |
| 543 | request->ctx->pid : file->pid, |
| 544 | PIDTYPE_PID); |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 545 | print_file_stats(m, task ? task->comm : "<unknown>", stats); |
Tetsuo Handa | 3ec2f42 | 2014-01-03 20:42:18 +0900 | [diff] [blame] | 546 | rcu_read_unlock(); |
Chris Wilson | 0caf81b | 2017-06-17 12:57:44 +0100 | [diff] [blame] | 547 | |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 548 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 549 | } |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 550 | mutex_unlock(&dev->filelist_mutex); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 551 | |
| 552 | return 0; |
| 553 | } |
| 554 | |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 555 | static int i915_gem_gtt_info(struct seq_file *m, void *data) |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 556 | { |
Damien Lespiau | 9f25d00 | 2014-05-13 15:30:28 +0100 | [diff] [blame] | 557 | struct drm_info_node *node = m->private; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 558 | struct drm_i915_private *dev_priv = node_to_i915(node); |
| 559 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 560 | struct drm_i915_gem_object **objects; |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 561 | struct drm_i915_gem_object *obj; |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 562 | u64 total_obj_size, total_gtt_size; |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 563 | unsigned long nobject, n; |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 564 | int count, ret; |
| 565 | |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 566 | nobject = READ_ONCE(dev_priv->mm.object_count); |
| 567 | objects = kvmalloc_array(nobject, sizeof(*objects), GFP_KERNEL); |
| 568 | if (!objects) |
| 569 | return -ENOMEM; |
| 570 | |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 571 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 572 | if (ret) |
| 573 | return ret; |
| 574 | |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 575 | count = 0; |
| 576 | spin_lock(&dev_priv->mm.obj_lock); |
| 577 | list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) { |
| 578 | objects[count++] = obj; |
| 579 | if (count == nobject) |
| 580 | break; |
| 581 | } |
| 582 | spin_unlock(&dev_priv->mm.obj_lock); |
| 583 | |
| 584 | total_obj_size = total_gtt_size = 0; |
| 585 | for (n = 0; n < count; n++) { |
| 586 | obj = objects[n]; |
| 587 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 588 | seq_puts(m, " "); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 589 | describe_obj(m, obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 590 | seq_putc(m, '\n'); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 591 | total_obj_size += obj->base.size; |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 592 | total_gtt_size += i915_gem_obj_total_ggtt_size(obj); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | mutex_unlock(&dev->struct_mutex); |
| 596 | |
Mika Kuoppala | c44ef60 | 2015-06-25 18:35:05 +0300 | [diff] [blame] | 597 | seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n", |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 598 | count, total_obj_size, total_gtt_size); |
Chris Wilson | f212381 | 2017-10-16 12:40:37 +0100 | [diff] [blame] | 599 | kvfree(objects); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 600 | |
| 601 | return 0; |
| 602 | } |
| 603 | |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 604 | static int i915_gem_batch_pool_info(struct seq_file *m, void *data) |
| 605 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 606 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 607 | struct drm_device *dev = &dev_priv->drm; |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 608 | struct drm_i915_gem_object *obj; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 609 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 610 | enum intel_engine_id id; |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 611 | int total = 0; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 612 | int ret, j; |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 613 | |
| 614 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 615 | if (ret) |
| 616 | return ret; |
| 617 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 618 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 619 | for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) { |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 620 | int count; |
| 621 | |
| 622 | count = 0; |
| 623 | list_for_each_entry(obj, |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 624 | &engine->batch_pool.cache_list[j], |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 625 | batch_pool_link) |
| 626 | count++; |
| 627 | seq_printf(m, "%s cache[%d]: %d objects\n", |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 628 | engine->name, j, count); |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 629 | |
| 630 | list_for_each_entry(obj, |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 631 | &engine->batch_pool.cache_list[j], |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 632 | batch_pool_link) { |
| 633 | seq_puts(m, " "); |
| 634 | describe_obj(m, obj); |
| 635 | seq_putc(m, '\n'); |
| 636 | } |
| 637 | |
| 638 | total += count; |
Chris Wilson | 06fbca7 | 2015-04-07 16:20:36 +0100 | [diff] [blame] | 639 | } |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 640 | } |
| 641 | |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 642 | seq_printf(m, "total: %d\n", total); |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 643 | |
| 644 | mutex_unlock(&dev->struct_mutex); |
| 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 649 | static void gen8_display_interrupt_info(struct seq_file *m) |
| 650 | { |
| 651 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 652 | int pipe; |
| 653 | |
| 654 | for_each_pipe(dev_priv, pipe) { |
| 655 | enum intel_display_power_domain power_domain; |
| 656 | |
| 657 | power_domain = POWER_DOMAIN_PIPE(pipe); |
| 658 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 659 | power_domain)) { |
| 660 | seq_printf(m, "Pipe %c power disabled\n", |
| 661 | pipe_name(pipe)); |
| 662 | continue; |
| 663 | } |
| 664 | seq_printf(m, "Pipe %c IMR:\t%08x\n", |
| 665 | pipe_name(pipe), |
| 666 | I915_READ(GEN8_DE_PIPE_IMR(pipe))); |
| 667 | seq_printf(m, "Pipe %c IIR:\t%08x\n", |
| 668 | pipe_name(pipe), |
| 669 | I915_READ(GEN8_DE_PIPE_IIR(pipe))); |
| 670 | seq_printf(m, "Pipe %c IER:\t%08x\n", |
| 671 | pipe_name(pipe), |
| 672 | I915_READ(GEN8_DE_PIPE_IER(pipe))); |
| 673 | |
| 674 | intel_display_power_put(dev_priv, power_domain); |
| 675 | } |
| 676 | |
| 677 | seq_printf(m, "Display Engine port interrupt mask:\t%08x\n", |
| 678 | I915_READ(GEN8_DE_PORT_IMR)); |
| 679 | seq_printf(m, "Display Engine port interrupt identity:\t%08x\n", |
| 680 | I915_READ(GEN8_DE_PORT_IIR)); |
| 681 | seq_printf(m, "Display Engine port interrupt enable:\t%08x\n", |
| 682 | I915_READ(GEN8_DE_PORT_IER)); |
| 683 | |
| 684 | seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n", |
| 685 | I915_READ(GEN8_DE_MISC_IMR)); |
| 686 | seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n", |
| 687 | I915_READ(GEN8_DE_MISC_IIR)); |
| 688 | seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n", |
| 689 | I915_READ(GEN8_DE_MISC_IER)); |
| 690 | |
| 691 | seq_printf(m, "PCU interrupt mask:\t%08x\n", |
| 692 | I915_READ(GEN8_PCU_IMR)); |
| 693 | seq_printf(m, "PCU interrupt identity:\t%08x\n", |
| 694 | I915_READ(GEN8_PCU_IIR)); |
| 695 | seq_printf(m, "PCU interrupt enable:\t%08x\n", |
| 696 | I915_READ(GEN8_PCU_IER)); |
| 697 | } |
| 698 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 699 | static int i915_interrupt_info(struct seq_file *m, void *data) |
| 700 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 701 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 702 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 703 | enum intel_engine_id id; |
Chris Wilson | 4bb0504 | 2016-09-03 07:53:43 +0100 | [diff] [blame] | 704 | int i, pipe; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 705 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 706 | intel_runtime_pm_get(dev_priv); |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 707 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 708 | if (IS_CHERRYVIEW(dev_priv)) { |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 709 | seq_printf(m, "Master Interrupt Control:\t%08x\n", |
| 710 | I915_READ(GEN8_MASTER_IRQ)); |
| 711 | |
| 712 | seq_printf(m, "Display IER:\t%08x\n", |
| 713 | I915_READ(VLV_IER)); |
| 714 | seq_printf(m, "Display IIR:\t%08x\n", |
| 715 | I915_READ(VLV_IIR)); |
| 716 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 717 | I915_READ(VLV_IIR_RW)); |
| 718 | seq_printf(m, "Display IMR:\t%08x\n", |
| 719 | I915_READ(VLV_IMR)); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 720 | for_each_pipe(dev_priv, pipe) { |
| 721 | enum intel_display_power_domain power_domain; |
| 722 | |
| 723 | power_domain = POWER_DOMAIN_PIPE(pipe); |
| 724 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 725 | power_domain)) { |
| 726 | seq_printf(m, "Pipe %c power disabled\n", |
| 727 | pipe_name(pipe)); |
| 728 | continue; |
| 729 | } |
| 730 | |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 731 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 732 | pipe_name(pipe), |
| 733 | I915_READ(PIPESTAT(pipe))); |
| 734 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 735 | intel_display_power_put(dev_priv, power_domain); |
| 736 | } |
| 737 | |
| 738 | intel_display_power_get(dev_priv, POWER_DOMAIN_INIT); |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 739 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 740 | I915_READ(PORT_HOTPLUG_EN)); |
| 741 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 742 | I915_READ(VLV_DPFLIPSTAT)); |
| 743 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 744 | I915_READ(DPINVGTT)); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 745 | intel_display_power_put(dev_priv, POWER_DOMAIN_INIT); |
Ville Syrjälä | 74e1ca8 | 2014-04-09 13:28:09 +0300 | [diff] [blame] | 746 | |
| 747 | for (i = 0; i < 4; i++) { |
| 748 | seq_printf(m, "GT Interrupt IMR %d:\t%08x\n", |
| 749 | i, I915_READ(GEN8_GT_IMR(i))); |
| 750 | seq_printf(m, "GT Interrupt IIR %d:\t%08x\n", |
| 751 | i, I915_READ(GEN8_GT_IIR(i))); |
| 752 | seq_printf(m, "GT Interrupt IER %d:\t%08x\n", |
| 753 | i, I915_READ(GEN8_GT_IER(i))); |
| 754 | } |
| 755 | |
| 756 | seq_printf(m, "PCU interrupt mask:\t%08x\n", |
| 757 | I915_READ(GEN8_PCU_IMR)); |
| 758 | seq_printf(m, "PCU interrupt identity:\t%08x\n", |
| 759 | I915_READ(GEN8_PCU_IIR)); |
| 760 | seq_printf(m, "PCU interrupt enable:\t%08x\n", |
| 761 | I915_READ(GEN8_PCU_IER)); |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 762 | } else if (INTEL_GEN(dev_priv) >= 11) { |
| 763 | seq_printf(m, "Master Interrupt Control: %08x\n", |
| 764 | I915_READ(GEN11_GFX_MSTR_IRQ)); |
| 765 | |
| 766 | seq_printf(m, "Render/Copy Intr Enable: %08x\n", |
| 767 | I915_READ(GEN11_RENDER_COPY_INTR_ENABLE)); |
| 768 | seq_printf(m, "VCS/VECS Intr Enable: %08x\n", |
| 769 | I915_READ(GEN11_VCS_VECS_INTR_ENABLE)); |
| 770 | seq_printf(m, "GUC/SG Intr Enable:\t %08x\n", |
| 771 | I915_READ(GEN11_GUC_SG_INTR_ENABLE)); |
| 772 | seq_printf(m, "GPM/WGBOXPERF Intr Enable: %08x\n", |
| 773 | I915_READ(GEN11_GPM_WGBOXPERF_INTR_ENABLE)); |
| 774 | seq_printf(m, "Crypto Intr Enable:\t %08x\n", |
| 775 | I915_READ(GEN11_CRYPTO_RSVD_INTR_ENABLE)); |
| 776 | seq_printf(m, "GUnit/CSME Intr Enable:\t %08x\n", |
| 777 | I915_READ(GEN11_GUNIT_CSME_INTR_ENABLE)); |
| 778 | |
| 779 | seq_printf(m, "Display Interrupt Control:\t%08x\n", |
| 780 | I915_READ(GEN11_DISPLAY_INT_CTL)); |
| 781 | |
| 782 | gen8_display_interrupt_info(m); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 783 | } else if (INTEL_GEN(dev_priv) >= 8) { |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 784 | seq_printf(m, "Master Interrupt Control:\t%08x\n", |
| 785 | I915_READ(GEN8_MASTER_IRQ)); |
| 786 | |
| 787 | for (i = 0; i < 4; i++) { |
| 788 | seq_printf(m, "GT Interrupt IMR %d:\t%08x\n", |
| 789 | i, I915_READ(GEN8_GT_IMR(i))); |
| 790 | seq_printf(m, "GT Interrupt IIR %d:\t%08x\n", |
| 791 | i, I915_READ(GEN8_GT_IIR(i))); |
| 792 | seq_printf(m, "GT Interrupt IER %d:\t%08x\n", |
| 793 | i, I915_READ(GEN8_GT_IER(i))); |
| 794 | } |
| 795 | |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 796 | gen8_display_interrupt_info(m); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 797 | } else if (IS_VALLEYVIEW(dev_priv)) { |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 798 | seq_printf(m, "Display IER:\t%08x\n", |
| 799 | I915_READ(VLV_IER)); |
| 800 | seq_printf(m, "Display IIR:\t%08x\n", |
| 801 | I915_READ(VLV_IIR)); |
| 802 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 803 | I915_READ(VLV_IIR_RW)); |
| 804 | seq_printf(m, "Display IMR:\t%08x\n", |
| 805 | I915_READ(VLV_IMR)); |
Chris Wilson | 4f4631a | 2017-02-10 13:36:32 +0000 | [diff] [blame] | 806 | for_each_pipe(dev_priv, pipe) { |
| 807 | enum intel_display_power_domain power_domain; |
| 808 | |
| 809 | power_domain = POWER_DOMAIN_PIPE(pipe); |
| 810 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 811 | power_domain)) { |
| 812 | seq_printf(m, "Pipe %c power disabled\n", |
| 813 | pipe_name(pipe)); |
| 814 | continue; |
| 815 | } |
| 816 | |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 817 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 818 | pipe_name(pipe), |
| 819 | I915_READ(PIPESTAT(pipe))); |
Chris Wilson | 4f4631a | 2017-02-10 13:36:32 +0000 | [diff] [blame] | 820 | intel_display_power_put(dev_priv, power_domain); |
| 821 | } |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 822 | |
| 823 | seq_printf(m, "Master IER:\t%08x\n", |
| 824 | I915_READ(VLV_MASTER_IER)); |
| 825 | |
| 826 | seq_printf(m, "Render IER:\t%08x\n", |
| 827 | I915_READ(GTIER)); |
| 828 | seq_printf(m, "Render IIR:\t%08x\n", |
| 829 | I915_READ(GTIIR)); |
| 830 | seq_printf(m, "Render IMR:\t%08x\n", |
| 831 | I915_READ(GTIMR)); |
| 832 | |
| 833 | seq_printf(m, "PM IER:\t\t%08x\n", |
| 834 | I915_READ(GEN6_PMIER)); |
| 835 | seq_printf(m, "PM IIR:\t\t%08x\n", |
| 836 | I915_READ(GEN6_PMIIR)); |
| 837 | seq_printf(m, "PM IMR:\t\t%08x\n", |
| 838 | I915_READ(GEN6_PMIMR)); |
| 839 | |
| 840 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 841 | I915_READ(PORT_HOTPLUG_EN)); |
| 842 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 843 | I915_READ(VLV_DPFLIPSTAT)); |
| 844 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 845 | I915_READ(DPINVGTT)); |
| 846 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 847 | } else if (!HAS_PCH_SPLIT(dev_priv)) { |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 848 | seq_printf(m, "Interrupt enable: %08x\n", |
| 849 | I915_READ(IER)); |
| 850 | seq_printf(m, "Interrupt identity: %08x\n", |
| 851 | I915_READ(IIR)); |
| 852 | seq_printf(m, "Interrupt mask: %08x\n", |
| 853 | I915_READ(IMR)); |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 854 | for_each_pipe(dev_priv, pipe) |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 855 | seq_printf(m, "Pipe %c stat: %08x\n", |
| 856 | pipe_name(pipe), |
| 857 | I915_READ(PIPESTAT(pipe))); |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 858 | } else { |
| 859 | seq_printf(m, "North Display Interrupt enable: %08x\n", |
| 860 | I915_READ(DEIER)); |
| 861 | seq_printf(m, "North Display Interrupt identity: %08x\n", |
| 862 | I915_READ(DEIIR)); |
| 863 | seq_printf(m, "North Display Interrupt mask: %08x\n", |
| 864 | I915_READ(DEIMR)); |
| 865 | seq_printf(m, "South Display Interrupt enable: %08x\n", |
| 866 | I915_READ(SDEIER)); |
| 867 | seq_printf(m, "South Display Interrupt identity: %08x\n", |
| 868 | I915_READ(SDEIIR)); |
| 869 | seq_printf(m, "South Display Interrupt mask: %08x\n", |
| 870 | I915_READ(SDEIMR)); |
| 871 | seq_printf(m, "Graphics Interrupt enable: %08x\n", |
| 872 | I915_READ(GTIER)); |
| 873 | seq_printf(m, "Graphics Interrupt identity: %08x\n", |
| 874 | I915_READ(GTIIR)); |
| 875 | seq_printf(m, "Graphics Interrupt mask: %08x\n", |
| 876 | I915_READ(GTIMR)); |
| 877 | } |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 878 | |
| 879 | if (INTEL_GEN(dev_priv) >= 11) { |
| 880 | seq_printf(m, "RCS Intr Mask:\t %08x\n", |
| 881 | I915_READ(GEN11_RCS0_RSVD_INTR_MASK)); |
| 882 | seq_printf(m, "BCS Intr Mask:\t %08x\n", |
| 883 | I915_READ(GEN11_BCS_RSVD_INTR_MASK)); |
| 884 | seq_printf(m, "VCS0/VCS1 Intr Mask:\t %08x\n", |
| 885 | I915_READ(GEN11_VCS0_VCS1_INTR_MASK)); |
| 886 | seq_printf(m, "VCS2/VCS3 Intr Mask:\t %08x\n", |
| 887 | I915_READ(GEN11_VCS2_VCS3_INTR_MASK)); |
| 888 | seq_printf(m, "VECS0/VECS1 Intr Mask:\t %08x\n", |
| 889 | I915_READ(GEN11_VECS0_VECS1_INTR_MASK)); |
| 890 | seq_printf(m, "GUC/SG Intr Mask:\t %08x\n", |
| 891 | I915_READ(GEN11_GUC_SG_INTR_MASK)); |
| 892 | seq_printf(m, "GPM/WGBOXPERF Intr Mask: %08x\n", |
| 893 | I915_READ(GEN11_GPM_WGBOXPERF_INTR_MASK)); |
| 894 | seq_printf(m, "Crypto Intr Mask:\t %08x\n", |
| 895 | I915_READ(GEN11_CRYPTO_RSVD_INTR_MASK)); |
| 896 | seq_printf(m, "Gunit/CSME Intr Mask:\t %08x\n", |
| 897 | I915_READ(GEN11_GUNIT_CSME_INTR_MASK)); |
| 898 | |
| 899 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Chris Wilson | d5acadf | 2017-12-09 10:44:18 +0000 | [diff] [blame] | 900 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 901 | seq_printf(m, |
| 902 | "Graphics Interrupt mask (%s): %08x\n", |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 903 | engine->name, I915_READ_IMR(engine)); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 904 | } |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 905 | } |
Tvrtko Ursulin | 80d8935 | 2018-02-20 17:37:53 +0200 | [diff] [blame] | 906 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 907 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 908 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 909 | return 0; |
| 910 | } |
| 911 | |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 912 | static int i915_gem_fence_regs_info(struct seq_file *m, void *data) |
| 913 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 914 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 915 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 916 | int i, ret; |
| 917 | |
| 918 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 919 | if (ret) |
| 920 | return ret; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 921 | |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 922 | seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs); |
| 923 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 924 | struct i915_vma *vma = dev_priv->fence_regs[i].vma; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 925 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 926 | seq_printf(m, "Fence %d, pin count = %d, object = ", |
| 927 | i, dev_priv->fence_regs[i].pin_count); |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 928 | if (!vma) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 929 | seq_puts(m, "unused"); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 930 | else |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 931 | describe_obj(m, vma->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 932 | seq_putc(m, '\n'); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 933 | } |
| 934 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 935 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 936 | return 0; |
| 937 | } |
| 938 | |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 939 | #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 940 | static ssize_t gpu_state_read(struct file *file, char __user *ubuf, |
| 941 | size_t count, loff_t *pos) |
| 942 | { |
| 943 | struct i915_gpu_state *error = file->private_data; |
| 944 | struct drm_i915_error_state_buf str; |
| 945 | ssize_t ret; |
| 946 | loff_t tmp; |
| 947 | |
| 948 | if (!error) |
| 949 | return 0; |
| 950 | |
| 951 | ret = i915_error_state_buf_init(&str, error->i915, count, *pos); |
| 952 | if (ret) |
| 953 | return ret; |
| 954 | |
| 955 | ret = i915_error_state_to_str(&str, error); |
| 956 | if (ret) |
| 957 | goto out; |
| 958 | |
| 959 | tmp = 0; |
| 960 | ret = simple_read_from_buffer(ubuf, count, &tmp, str.buf, str.bytes); |
| 961 | if (ret < 0) |
| 962 | goto out; |
| 963 | |
| 964 | *pos = str.start + ret; |
| 965 | out: |
| 966 | i915_error_state_buf_release(&str); |
| 967 | return ret; |
| 968 | } |
| 969 | |
| 970 | static int gpu_state_release(struct inode *inode, struct file *file) |
| 971 | { |
| 972 | i915_gpu_state_put(file->private_data); |
| 973 | return 0; |
| 974 | } |
| 975 | |
| 976 | static int i915_gpu_info_open(struct inode *inode, struct file *file) |
| 977 | { |
Chris Wilson | 090e5fe | 2017-03-28 14:14:07 +0100 | [diff] [blame] | 978 | struct drm_i915_private *i915 = inode->i_private; |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 979 | struct i915_gpu_state *gpu; |
| 980 | |
Chris Wilson | 090e5fe | 2017-03-28 14:14:07 +0100 | [diff] [blame] | 981 | intel_runtime_pm_get(i915); |
| 982 | gpu = i915_capture_gpu_state(i915); |
| 983 | intel_runtime_pm_put(i915); |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 984 | if (!gpu) |
| 985 | return -ENOMEM; |
| 986 | |
| 987 | file->private_data = gpu; |
| 988 | return 0; |
| 989 | } |
| 990 | |
| 991 | static const struct file_operations i915_gpu_info_fops = { |
| 992 | .owner = THIS_MODULE, |
| 993 | .open = i915_gpu_info_open, |
| 994 | .read = gpu_state_read, |
| 995 | .llseek = default_llseek, |
| 996 | .release = gpu_state_release, |
| 997 | }; |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 998 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 999 | static ssize_t |
| 1000 | i915_error_state_write(struct file *filp, |
| 1001 | const char __user *ubuf, |
| 1002 | size_t cnt, |
| 1003 | loff_t *ppos) |
| 1004 | { |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1005 | struct i915_gpu_state *error = filp->private_data; |
| 1006 | |
| 1007 | if (!error) |
| 1008 | return 0; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1009 | |
| 1010 | DRM_DEBUG_DRIVER("Resetting error state\n"); |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1011 | i915_reset_error_state(error->i915); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1012 | |
| 1013 | return cnt; |
| 1014 | } |
| 1015 | |
| 1016 | static int i915_error_state_open(struct inode *inode, struct file *file) |
| 1017 | { |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1018 | file->private_data = i915_first_error_state(inode->i_private); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 1019 | return 0; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1020 | } |
| 1021 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1022 | static const struct file_operations i915_error_state_fops = { |
| 1023 | .owner = THIS_MODULE, |
| 1024 | .open = i915_error_state_open, |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1025 | .read = gpu_state_read, |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1026 | .write = i915_error_state_write, |
| 1027 | .llseek = default_llseek, |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 1028 | .release = gpu_state_release, |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 1029 | }; |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 1030 | #endif |
| 1031 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1032 | static int |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1033 | i915_next_seqno_set(void *data, u64 val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1034 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1035 | struct drm_i915_private *dev_priv = data; |
| 1036 | struct drm_device *dev = &dev_priv->drm; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1037 | int ret; |
| 1038 | |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1039 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1040 | if (ret) |
| 1041 | return ret; |
| 1042 | |
Chris Wilson | 65c475c | 2018-01-02 15:12:31 +0000 | [diff] [blame] | 1043 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 73cb970 | 2016-10-28 13:58:46 +0100 | [diff] [blame] | 1044 | ret = i915_gem_set_global_seqno(dev, val); |
Chris Wilson | 65c475c | 2018-01-02 15:12:31 +0000 | [diff] [blame] | 1045 | intel_runtime_pm_put(dev_priv); |
| 1046 | |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1047 | mutex_unlock(&dev->struct_mutex); |
| 1048 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1049 | return ret; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1050 | } |
| 1051 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 1052 | DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops, |
Chris Wilson | 9b6586a | 2017-02-23 07:44:08 +0000 | [diff] [blame] | 1053 | NULL, i915_next_seqno_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 1054 | "0x%llx\n"); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 1055 | |
Deepak S | adb4bd1 | 2014-03-31 11:30:02 +0530 | [diff] [blame] | 1056 | static int i915_frequency_info(struct seq_file *m, void *unused) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1057 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1058 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1059 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1060 | int ret = 0; |
| 1061 | |
| 1062 | intel_runtime_pm_get(dev_priv); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1063 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1064 | if (IS_GEN5(dev_priv)) { |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1065 | u16 rgvswctl = I915_READ16(MEMSWCTL); |
| 1066 | u16 rgvstat = I915_READ16(MEMSTAT_ILK); |
| 1067 | |
| 1068 | seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf); |
| 1069 | seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f); |
| 1070 | seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >> |
| 1071 | MEMSTAT_VID_SHIFT); |
| 1072 | seq_printf(m, "Current P-state: %d\n", |
| 1073 | (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1074 | } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Sagar Arun Kamble | 0d6fc92 | 2017-10-10 22:30:02 +0100 | [diff] [blame] | 1075 | u32 rpmodectl, freq_sts; |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1076 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1077 | mutex_lock(&dev_priv->pcu_lock); |
Sagar Arun Kamble | 0d6fc92 | 2017-10-10 22:30:02 +0100 | [diff] [blame] | 1078 | |
| 1079 | rpmodectl = I915_READ(GEN6_RP_CONTROL); |
| 1080 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1081 | yesno(rpmodectl & GEN6_RP_MEDIA_TURBO)); |
| 1082 | seq_printf(m, "HW control enabled: %s\n", |
| 1083 | yesno(rpmodectl & GEN6_RP_ENABLE)); |
| 1084 | seq_printf(m, "SW control enabled: %s\n", |
| 1085 | yesno((rpmodectl & GEN6_RP_MEDIA_MODE_MASK) == |
| 1086 | GEN6_RP_MEDIA_SW_MODE)); |
| 1087 | |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1088 | freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 1089 | seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts); |
| 1090 | seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq); |
| 1091 | |
| 1092 | seq_printf(m, "actual GPU freq: %d MHz\n", |
| 1093 | intel_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff)); |
| 1094 | |
| 1095 | seq_printf(m, "current GPU freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1096 | intel_gpu_freq(dev_priv, rps->cur_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1097 | |
| 1098 | seq_printf(m, "max 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->max_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1100 | |
| 1101 | seq_printf(m, "min 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->min_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1103 | |
| 1104 | seq_printf(m, "idle 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->idle_freq)); |
Wayne Boyer | 666a453 | 2015-12-09 12:29:35 -0800 | [diff] [blame] | 1106 | |
| 1107 | seq_printf(m, |
| 1108 | "efficient (RPe) frequency: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1109 | intel_gpu_freq(dev_priv, rps->efficient_freq)); |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1110 | mutex_unlock(&dev_priv->pcu_lock); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1111 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1112 | u32 rp_state_limits; |
| 1113 | u32 gt_perf_status; |
| 1114 | u32 rp_state_cap; |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1115 | u32 rpmodectl, rpinclimit, rpdeclimit; |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1116 | u32 rpstat, cagf, reqf; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1117 | u32 rpupei, rpcurup, rpprevup; |
| 1118 | u32 rpdownei, rpcurdown, rpprevdown; |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1119 | u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1120 | int max_freq; |
| 1121 | |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1122 | rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS); |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1123 | if (IS_GEN9_LP(dev_priv)) { |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1124 | rp_state_cap = I915_READ(BXT_RP_STATE_CAP); |
| 1125 | gt_perf_status = I915_READ(BXT_GT_PERF_STATUS); |
| 1126 | } else { |
| 1127 | rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
| 1128 | gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS); |
| 1129 | } |
| 1130 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1131 | /* RPSTAT1 is in the GT power well */ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 1132 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1133 | |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1134 | reqf = I915_READ(GEN6_RPNSWREQ); |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1135 | if (INTEL_GEN(dev_priv) >= 9) |
Akash Goel | 60260a5 | 2015-03-06 11:07:21 +0530 | [diff] [blame] | 1136 | reqf >>= 23; |
| 1137 | else { |
| 1138 | reqf &= ~GEN6_TURBO_DISABLE; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1139 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Akash Goel | 60260a5 | 2015-03-06 11:07:21 +0530 | [diff] [blame] | 1140 | reqf >>= 24; |
| 1141 | else |
| 1142 | reqf >>= 25; |
| 1143 | } |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1144 | reqf = intel_gpu_freq(dev_priv, reqf); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1145 | |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1146 | rpmodectl = I915_READ(GEN6_RP_CONTROL); |
| 1147 | rpinclimit = I915_READ(GEN6_RP_UP_THRESHOLD); |
| 1148 | rpdeclimit = I915_READ(GEN6_RP_DOWN_THRESHOLD); |
| 1149 | |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1150 | rpstat = I915_READ(GEN6_RPSTAT1); |
Akash Goel | d6cda9c | 2016-04-23 00:05:46 +0530 | [diff] [blame] | 1151 | rpupei = I915_READ(GEN6_RP_CUR_UP_EI) & GEN6_CURICONT_MASK; |
| 1152 | rpcurup = I915_READ(GEN6_RP_CUR_UP) & GEN6_CURBSYTAVG_MASK; |
| 1153 | rpprevup = I915_READ(GEN6_RP_PREV_UP) & GEN6_CURBSYTAVG_MASK; |
| 1154 | rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI) & GEN6_CURIAVG_MASK; |
| 1155 | rpcurdown = I915_READ(GEN6_RP_CUR_DOWN) & GEN6_CURBSYTAVG_MASK; |
| 1156 | rpprevdown = I915_READ(GEN6_RP_PREV_DOWN) & GEN6_CURBSYTAVG_MASK; |
Tvrtko Ursulin | c84b270 | 2017-11-21 18:18:44 +0000 | [diff] [blame] | 1157 | cagf = intel_gpu_freq(dev_priv, |
| 1158 | intel_get_cagf(dev_priv, rpstat)); |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 1159 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 1160 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 1161 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1162 | if (IS_GEN6(dev_priv) || IS_GEN7(dev_priv)) { |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1163 | pm_ier = I915_READ(GEN6_PMIER); |
| 1164 | pm_imr = I915_READ(GEN6_PMIMR); |
| 1165 | pm_isr = I915_READ(GEN6_PMISR); |
| 1166 | pm_iir = I915_READ(GEN6_PMIIR); |
| 1167 | pm_mask = I915_READ(GEN6_PMINTRMSK); |
| 1168 | } else { |
| 1169 | pm_ier = I915_READ(GEN8_GT_IER(2)); |
| 1170 | pm_imr = I915_READ(GEN8_GT_IMR(2)); |
| 1171 | pm_isr = I915_READ(GEN8_GT_ISR(2)); |
| 1172 | pm_iir = I915_READ(GEN8_GT_IIR(2)); |
| 1173 | pm_mask = I915_READ(GEN6_PMINTRMSK); |
| 1174 | } |
Sagar Arun Kamble | 960e546 | 2017-10-10 22:29:59 +0100 | [diff] [blame] | 1175 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1176 | yesno(rpmodectl & GEN6_RP_MEDIA_TURBO)); |
| 1177 | seq_printf(m, "HW control enabled: %s\n", |
| 1178 | yesno(rpmodectl & GEN6_RP_ENABLE)); |
| 1179 | seq_printf(m, "SW control enabled: %s\n", |
| 1180 | yesno((rpmodectl & GEN6_RP_MEDIA_MODE_MASK) == |
| 1181 | GEN6_RP_MEDIA_SW_MODE)); |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1182 | seq_printf(m, "PM IER=0x%08x IMR=0x%08x ISR=0x%08x IIR=0x%08x, MASK=0x%08x\n", |
Paulo Zanoni | 9dd3c60 | 2014-08-01 18:14:48 -0300 | [diff] [blame] | 1183 | pm_ier, pm_imr, pm_isr, pm_iir, pm_mask); |
Sagar Arun Kamble | 5dd0455 | 2017-03-11 08:07:00 +0530 | [diff] [blame] | 1184 | seq_printf(m, "pm_intrmsk_mbz: 0x%08x\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1185 | rps->pm_intrmsk_mbz); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1186 | seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1187 | seq_printf(m, "Render p-state ratio: %d\n", |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1188 | (gt_perf_status & (INTEL_GEN(dev_priv) >= 9 ? 0x1ff00 : 0xff00)) >> 8); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1189 | seq_printf(m, "Render p-state VID: %d\n", |
| 1190 | gt_perf_status & 0xff); |
| 1191 | seq_printf(m, "Render p-state limit: %d\n", |
| 1192 | rp_state_limits & 0xff); |
Chris Wilson | 0d8f949 | 2014-03-27 09:06:14 +0000 | [diff] [blame] | 1193 | seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat); |
| 1194 | seq_printf(m, "RPMODECTL: 0x%08x\n", rpmodectl); |
| 1195 | seq_printf(m, "RPINCLIMIT: 0x%08x\n", rpinclimit); |
| 1196 | seq_printf(m, "RPDECLIMIT: 0x%08x\n", rpdeclimit); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 1197 | seq_printf(m, "RPNSWREQ: %dMHz\n", reqf); |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 1198 | seq_printf(m, "CAGF: %dMHz\n", cagf); |
Akash Goel | d6cda9c | 2016-04-23 00:05:46 +0530 | [diff] [blame] | 1199 | seq_printf(m, "RP CUR UP EI: %d (%dus)\n", |
| 1200 | rpupei, GT_PM_INTERVAL_TO_US(dev_priv, rpupei)); |
| 1201 | seq_printf(m, "RP CUR UP: %d (%dus)\n", |
| 1202 | rpcurup, GT_PM_INTERVAL_TO_US(dev_priv, rpcurup)); |
| 1203 | seq_printf(m, "RP PREV UP: %d (%dus)\n", |
| 1204 | rpprevup, GT_PM_INTERVAL_TO_US(dev_priv, rpprevup)); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1205 | seq_printf(m, "Up threshold: %d%%\n", rps->up_threshold); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1206 | |
Akash Goel | d6cda9c | 2016-04-23 00:05:46 +0530 | [diff] [blame] | 1207 | seq_printf(m, "RP CUR DOWN EI: %d (%dus)\n", |
| 1208 | rpdownei, GT_PM_INTERVAL_TO_US(dev_priv, rpdownei)); |
| 1209 | seq_printf(m, "RP CUR DOWN: %d (%dus)\n", |
| 1210 | rpcurdown, GT_PM_INTERVAL_TO_US(dev_priv, rpcurdown)); |
| 1211 | seq_printf(m, "RP PREV DOWN: %d (%dus)\n", |
| 1212 | rpprevdown, GT_PM_INTERVAL_TO_US(dev_priv, rpprevdown)); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1213 | seq_printf(m, "Down threshold: %d%%\n", rps->down_threshold); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1214 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1215 | max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 0 : |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1216 | rp_state_cap >> 16) & 0xff; |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1217 | max_freq *= (IS_GEN9_BC(dev_priv) || |
| 1218 | IS_CANNONLAKE(dev_priv) ? GEN9_FREQ_SCALER : 1); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1219 | seq_printf(m, "Lowest (RPN) frequency: %dMHz\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1220 | intel_gpu_freq(dev_priv, max_freq)); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1221 | |
| 1222 | max_freq = (rp_state_cap & 0xff00) >> 8; |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1223 | max_freq *= (IS_GEN9_BC(dev_priv) || |
| 1224 | IS_CANNONLAKE(dev_priv) ? GEN9_FREQ_SCALER : 1); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1225 | seq_printf(m, "Nominal (RP1) frequency: %dMHz\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1226 | intel_gpu_freq(dev_priv, max_freq)); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1227 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 1228 | max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 16 : |
Bob Paauwe | 3504056 | 2015-06-25 14:54:07 -0700 | [diff] [blame] | 1229 | rp_state_cap >> 0) & 0xff; |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1230 | max_freq *= (IS_GEN9_BC(dev_priv) || |
| 1231 | IS_CANNONLAKE(dev_priv) ? GEN9_FREQ_SCALER : 1); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1232 | seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 1233 | intel_gpu_freq(dev_priv, max_freq)); |
Ben Widawsky | 31c7738 | 2013-04-05 14:29:22 -0700 | [diff] [blame] | 1234 | seq_printf(m, "Max overclocked frequency: %dMHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1235 | intel_gpu_freq(dev_priv, rps->max_freq)); |
Chris Wilson | aed242f | 2015-03-18 09:48:21 +0000 | [diff] [blame] | 1236 | |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1237 | seq_printf(m, "Current freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1238 | intel_gpu_freq(dev_priv, rps->cur_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1239 | seq_printf(m, "Actual freq: %d MHz\n", cagf); |
Chris Wilson | aed242f | 2015-03-18 09:48:21 +0000 | [diff] [blame] | 1240 | seq_printf(m, "Idle freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1241 | intel_gpu_freq(dev_priv, rps->idle_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1242 | seq_printf(m, "Min freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1243 | intel_gpu_freq(dev_priv, rps->min_freq)); |
Chris Wilson | 29ecd78d | 2016-07-13 09:10:35 +0100 | [diff] [blame] | 1244 | seq_printf(m, "Boost freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1245 | intel_gpu_freq(dev_priv, rps->boost_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1246 | seq_printf(m, "Max freq: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1247 | intel_gpu_freq(dev_priv, rps->max_freq)); |
Chris Wilson | d86ed34 | 2015-04-27 13:41:19 +0100 | [diff] [blame] | 1248 | seq_printf(m, |
| 1249 | "efficient (RPe) frequency: %d MHz\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1250 | intel_gpu_freq(dev_priv, rps->efficient_freq)); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1251 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1252 | seq_puts(m, "no P-state info available\n"); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1253 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1254 | |
Ville Syrjälä | 49cd97a | 2017-02-07 20:33:45 +0200 | [diff] [blame] | 1255 | 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] | 1256 | seq_printf(m, "Max CD clock frequency: %d kHz\n", dev_priv->max_cdclk_freq); |
| 1257 | seq_printf(m, "Max pixel clock frequency: %d kHz\n", dev_priv->max_dotclk_freq); |
| 1258 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1259 | intel_runtime_pm_put(dev_priv); |
| 1260 | return ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1261 | } |
| 1262 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1263 | static void i915_instdone_info(struct drm_i915_private *dev_priv, |
| 1264 | struct seq_file *m, |
| 1265 | struct intel_instdone *instdone) |
| 1266 | { |
Ben Widawsky | f9e6137 | 2016-09-20 16:54:33 +0300 | [diff] [blame] | 1267 | int slice; |
| 1268 | int subslice; |
| 1269 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1270 | seq_printf(m, "\t\tINSTDONE: 0x%08x\n", |
| 1271 | instdone->instdone); |
| 1272 | |
| 1273 | if (INTEL_GEN(dev_priv) <= 3) |
| 1274 | return; |
| 1275 | |
| 1276 | seq_printf(m, "\t\tSC_INSTDONE: 0x%08x\n", |
| 1277 | instdone->slice_common); |
| 1278 | |
| 1279 | if (INTEL_GEN(dev_priv) <= 6) |
| 1280 | return; |
| 1281 | |
Ben Widawsky | f9e6137 | 2016-09-20 16:54:33 +0300 | [diff] [blame] | 1282 | for_each_instdone_slice_subslice(dev_priv, slice, subslice) |
| 1283 | seq_printf(m, "\t\tSAMPLER_INSTDONE[%d][%d]: 0x%08x\n", |
| 1284 | slice, subslice, instdone->sampler[slice][subslice]); |
| 1285 | |
| 1286 | for_each_instdone_slice_subslice(dev_priv, slice, subslice) |
| 1287 | seq_printf(m, "\t\tROW_INSTDONE[%d][%d]: 0x%08x\n", |
| 1288 | slice, subslice, instdone->row[slice][subslice]); |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1289 | } |
| 1290 | |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1291 | static int i915_hangcheck_info(struct seq_file *m, void *unused) |
| 1292 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1293 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1294 | struct intel_engine_cs *engine; |
Tvrtko Ursulin | 666796d | 2016-03-16 11:00:39 +0000 | [diff] [blame] | 1295 | u64 acthd[I915_NUM_ENGINES]; |
| 1296 | u32 seqno[I915_NUM_ENGINES]; |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1297 | struct intel_instdone instdone; |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 1298 | enum intel_engine_id id; |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1299 | |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1300 | if (test_bit(I915_WEDGED, &dev_priv->gpu_error.flags)) |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1301 | seq_puts(m, "Wedged\n"); |
| 1302 | if (test_bit(I915_RESET_BACKOFF, &dev_priv->gpu_error.flags)) |
| 1303 | seq_puts(m, "Reset in progress: struct_mutex backoff\n"); |
| 1304 | if (test_bit(I915_RESET_HANDOFF, &dev_priv->gpu_error.flags)) |
| 1305 | seq_puts(m, "Reset in progress: reset handoff to waiter\n"); |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1306 | if (waitqueue_active(&dev_priv->gpu_error.wait_queue)) |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1307 | seq_puts(m, "Waiter holding struct mutex\n"); |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1308 | if (waitqueue_active(&dev_priv->gpu_error.reset_queue)) |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1309 | seq_puts(m, "struct_mutex blocked for reset\n"); |
Chris Wilson | 8af29b0 | 2016-09-09 14:11:47 +0100 | [diff] [blame] | 1310 | |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 1311 | if (!i915_modparams.enable_hangcheck) { |
Chris Wilson | 8c185ec | 2017-03-16 17:13:02 +0000 | [diff] [blame] | 1312 | seq_puts(m, "Hangcheck disabled\n"); |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1313 | return 0; |
| 1314 | } |
| 1315 | |
Mika Kuoppala | ebbc754 | 2015-02-05 18:41:48 +0200 | [diff] [blame] | 1316 | intel_runtime_pm_get(dev_priv); |
| 1317 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1318 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 1319 | acthd[id] = intel_engine_get_active_head(engine); |
Chris Wilson | 1b7744e | 2016-07-01 17:23:17 +0100 | [diff] [blame] | 1320 | seqno[id] = intel_engine_get_seqno(engine); |
Mika Kuoppala | ebbc754 | 2015-02-05 18:41:48 +0200 | [diff] [blame] | 1321 | } |
| 1322 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1323 | intel_engine_get_instdone(dev_priv->engine[RCS], &instdone); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1324 | |
Mika Kuoppala | ebbc754 | 2015-02-05 18:41:48 +0200 | [diff] [blame] | 1325 | intel_runtime_pm_put(dev_priv); |
| 1326 | |
Chris Wilson | 8352aea | 2017-03-03 09:00:56 +0000 | [diff] [blame] | 1327 | if (timer_pending(&dev_priv->gpu_error.hangcheck_work.timer)) |
| 1328 | seq_printf(m, "Hangcheck active, timer fires in %dms\n", |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1329 | jiffies_to_msecs(dev_priv->gpu_error.hangcheck_work.timer.expires - |
| 1330 | jiffies)); |
Chris Wilson | 8352aea | 2017-03-03 09:00:56 +0000 | [diff] [blame] | 1331 | else if (delayed_work_pending(&dev_priv->gpu_error.hangcheck_work)) |
| 1332 | seq_puts(m, "Hangcheck active, work pending\n"); |
| 1333 | else |
| 1334 | seq_puts(m, "Hangcheck inactive\n"); |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1335 | |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 1336 | seq_printf(m, "GT active? %s\n", yesno(dev_priv->gt.awake)); |
| 1337 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1338 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1339 | struct intel_breadcrumbs *b = &engine->breadcrumbs; |
| 1340 | struct rb_node *rb; |
| 1341 | |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1342 | seq_printf(m, "%s:\n", engine->name); |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 1343 | seq_printf(m, "\tseqno = %x [current %x, last %x], inflight %d\n", |
Chris Wilson | cb399ea | 2016-11-01 10:03:16 +0000 | [diff] [blame] | 1344 | engine->hangcheck.seqno, seqno[id], |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 1345 | intel_engine_last_submit(engine), |
| 1346 | engine->timeline->inflight_seqnos); |
Mika Kuoppala | 3fe3b03 | 2016-11-18 15:09:04 +0200 | [diff] [blame] | 1347 | seq_printf(m, "\twaiters? %s, fake irq active? %s, stalled? %s\n", |
Chris Wilson | 83348ba | 2016-08-09 17:47:51 +0100 | [diff] [blame] | 1348 | yesno(intel_engine_has_waiter(engine)), |
| 1349 | yesno(test_bit(engine->id, |
Mika Kuoppala | 3fe3b03 | 2016-11-18 15:09:04 +0200 | [diff] [blame] | 1350 | &dev_priv->gpu_error.missed_irq_rings)), |
| 1351 | yesno(engine->hangcheck.stalled)); |
| 1352 | |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 1353 | spin_lock_irq(&b->rb_lock); |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1354 | for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) { |
Geliang Tang | f802cf7 | 2016-12-19 22:43:49 +0800 | [diff] [blame] | 1355 | struct intel_wait *w = rb_entry(rb, typeof(*w), node); |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1356 | |
| 1357 | seq_printf(m, "\t%s [%d] waiting for %x\n", |
| 1358 | w->tsk->comm, w->tsk->pid, w->seqno); |
| 1359 | } |
Chris Wilson | 61d3dc7 | 2017-03-03 19:08:24 +0000 | [diff] [blame] | 1360 | spin_unlock_irq(&b->rb_lock); |
Chris Wilson | 33f5371 | 2016-10-04 21:11:32 +0100 | [diff] [blame] | 1361 | |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1362 | seq_printf(m, "\tACTHD = 0x%08llx [current 0x%08llx]\n", |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1363 | (long long)engine->hangcheck.acthd, |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 1364 | (long long)acthd[id]); |
Mika Kuoppala | 3fe3b03 | 2016-11-18 15:09:04 +0200 | [diff] [blame] | 1365 | seq_printf(m, "\taction = %s(%d) %d ms ago\n", |
| 1366 | hangcheck_action_to_str(engine->hangcheck.action), |
| 1367 | engine->hangcheck.action, |
| 1368 | jiffies_to_msecs(jiffies - |
| 1369 | engine->hangcheck.action_timestamp)); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1370 | |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1371 | if (engine->id == RCS) { |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1372 | seq_puts(m, "\tinstdone read =\n"); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1373 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1374 | i915_instdone_info(dev_priv, m, &instdone); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1375 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1376 | seq_puts(m, "\tinstdone accu =\n"); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1377 | |
Ben Widawsky | d636951 | 2016-09-20 16:54:32 +0300 | [diff] [blame] | 1378 | i915_instdone_info(dev_priv, m, |
| 1379 | &engine->hangcheck.instdone); |
Mika Kuoppala | 61642ff | 2015-12-01 17:56:12 +0200 | [diff] [blame] | 1380 | } |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 1381 | } |
| 1382 | |
| 1383 | return 0; |
| 1384 | } |
| 1385 | |
Michel Thierry | 061d06a | 2017-06-20 10:57:49 +0100 | [diff] [blame] | 1386 | static int i915_reset_info(struct seq_file *m, void *unused) |
| 1387 | { |
| 1388 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1389 | struct i915_gpu_error *error = &dev_priv->gpu_error; |
| 1390 | struct intel_engine_cs *engine; |
| 1391 | enum intel_engine_id id; |
| 1392 | |
| 1393 | seq_printf(m, "full gpu reset = %u\n", i915_reset_count(error)); |
| 1394 | |
| 1395 | for_each_engine(engine, dev_priv, id) { |
| 1396 | seq_printf(m, "%s = %u\n", engine->name, |
| 1397 | i915_reset_engine_count(error, engine)); |
| 1398 | } |
| 1399 | |
| 1400 | return 0; |
| 1401 | } |
| 1402 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1403 | static int ironlake_drpc_info(struct seq_file *m) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1404 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1405 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1406 | u32 rgvmodectl, rstdbyctl; |
| 1407 | u16 crstandvid; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1408 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1409 | rgvmodectl = I915_READ(MEMMODECTL); |
| 1410 | rstdbyctl = I915_READ(RSTDBYCTL); |
| 1411 | crstandvid = I915_READ16(CRSTANDVID); |
| 1412 | |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1413 | seq_printf(m, "HD boost: %s\n", yesno(rgvmodectl & MEMMODE_BOOST_EN)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1414 | seq_printf(m, "Boost freq: %d\n", |
| 1415 | (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >> |
| 1416 | MEMMODE_BOOST_FREQ_SHIFT); |
| 1417 | seq_printf(m, "HW control enabled: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1418 | yesno(rgvmodectl & MEMMODE_HWIDLE_EN)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1419 | seq_printf(m, "SW control enabled: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1420 | yesno(rgvmodectl & MEMMODE_SWMODE_EN)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1421 | seq_printf(m, "Gated voltage change: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1422 | yesno(rgvmodectl & MEMMODE_RCLK_GATE)); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1423 | seq_printf(m, "Starting frequency: P%d\n", |
| 1424 | (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1425 | seq_printf(m, "Max P-state: P%d\n", |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1426 | (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1427 | seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK)); |
| 1428 | seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f)); |
| 1429 | seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f)); |
| 1430 | seq_printf(m, "Render standby enabled: %s\n", |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 1431 | yesno(!(rstdbyctl & RCX_SW_EXIT))); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1432 | seq_puts(m, "Current RS state: "); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1433 | switch (rstdbyctl & RSX_STATUS_MASK) { |
| 1434 | case RSX_STATUS_ON: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1435 | seq_puts(m, "on\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1436 | break; |
| 1437 | case RSX_STATUS_RC1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1438 | seq_puts(m, "RC1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1439 | break; |
| 1440 | case RSX_STATUS_RC1E: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1441 | seq_puts(m, "RC1E\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1442 | break; |
| 1443 | case RSX_STATUS_RS1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1444 | seq_puts(m, "RS1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1445 | break; |
| 1446 | case RSX_STATUS_RS2: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1447 | seq_puts(m, "RS2 (RC6)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1448 | break; |
| 1449 | case RSX_STATUS_RS3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1450 | seq_puts(m, "RC3 (RC6+)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1451 | break; |
| 1452 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1453 | seq_puts(m, "unknown\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1454 | break; |
| 1455 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1456 | |
| 1457 | return 0; |
| 1458 | } |
| 1459 | |
Mika Kuoppala | f65367b | 2015-01-16 11:34:42 +0200 | [diff] [blame] | 1460 | static int i915_forcewake_domains(struct seq_file *m, void *data) |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1461 | { |
Chris Wilson | 233ebf5 | 2017-03-23 10:19:44 +0000 | [diff] [blame] | 1462 | struct drm_i915_private *i915 = node_to_i915(m->private); |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1463 | struct intel_uncore_forcewake_domain *fw_domain; |
Chris Wilson | d2dc94b | 2017-03-23 10:19:41 +0000 | [diff] [blame] | 1464 | unsigned int tmp; |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1465 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 1466 | seq_printf(m, "user.bypass_count = %u\n", |
| 1467 | i915->uncore.user_forcewake.count); |
| 1468 | |
Chris Wilson | 233ebf5 | 2017-03-23 10:19:44 +0000 | [diff] [blame] | 1469 | for_each_fw_domain(fw_domain, i915, tmp) |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1470 | seq_printf(m, "%s.wake_count = %u\n", |
Tvrtko Ursulin | 33c582c | 2016-04-07 17:04:33 +0100 | [diff] [blame] | 1471 | intel_uncore_forcewake_domain_to_str(fw_domain->id), |
Chris Wilson | 233ebf5 | 2017-03-23 10:19:44 +0000 | [diff] [blame] | 1472 | READ_ONCE(fw_domain->wake_count)); |
Chris Wilson | b2cff0d | 2015-01-16 11:34:37 +0200 | [diff] [blame] | 1473 | |
| 1474 | return 0; |
| 1475 | } |
| 1476 | |
Mika Kuoppala | 1362877 | 2017-03-15 17:43:02 +0200 | [diff] [blame] | 1477 | static void print_rc6_res(struct seq_file *m, |
| 1478 | const char *title, |
| 1479 | const i915_reg_t reg) |
| 1480 | { |
| 1481 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1482 | |
| 1483 | seq_printf(m, "%s %u (%llu us)\n", |
| 1484 | title, I915_READ(reg), |
| 1485 | intel_rc6_residency_us(dev_priv, reg)); |
| 1486 | } |
| 1487 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1488 | static int vlv_drpc_info(struct seq_file *m) |
| 1489 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1490 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 0d6fc92 | 2017-10-10 22:30:02 +0100 | [diff] [blame] | 1491 | u32 rcctl1, pw_status; |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1492 | |
Ville Syrjälä | 6b312cd | 2014-11-19 20:07:42 +0200 | [diff] [blame] | 1493 | pw_status = I915_READ(VLV_GTLC_PW_STATUS); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1494 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
| 1495 | |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1496 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1497 | yesno(rcctl1 & (GEN7_RC_CTL_TO_MODE | |
| 1498 | GEN6_RC_CTL_EI_MODE(1)))); |
| 1499 | seq_printf(m, "Render Power Well: %s\n", |
Ville Syrjälä | 6b312cd | 2014-11-19 20:07:42 +0200 | [diff] [blame] | 1500 | (pw_status & VLV_GTLC_PW_RENDER_STATUS_MASK) ? "Up" : "Down"); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1501 | seq_printf(m, "Media Power Well: %s\n", |
Ville Syrjälä | 6b312cd | 2014-11-19 20:07:42 +0200 | [diff] [blame] | 1502 | (pw_status & VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down"); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1503 | |
Mika Kuoppala | 1362877 | 2017-03-15 17:43:02 +0200 | [diff] [blame] | 1504 | print_rc6_res(m, "Render RC6 residency since boot:", VLV_GT_RENDER_RC6); |
| 1505 | 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] | 1506 | |
Mika Kuoppala | f65367b | 2015-01-16 11:34:42 +0200 | [diff] [blame] | 1507 | return i915_forcewake_domains(m, NULL); |
Deepak S | 669ab5a | 2014-01-10 15:18:26 +0530 | [diff] [blame] | 1508 | } |
| 1509 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1510 | static int gen6_drpc_info(struct seq_file *m) |
| 1511 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1512 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 960e546 | 2017-10-10 22:29:59 +0100 | [diff] [blame] | 1513 | u32 gt_core_status, rcctl1, rc6vids = 0; |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1514 | u32 gen9_powergate_enable = 0, gen9_powergate_status = 0; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1515 | |
Ville Syrjälä | 75aa3f6 | 2015-10-22 15:34:56 +0300 | [diff] [blame] | 1516 | gt_core_status = I915_READ_FW(GEN6_GT_CORE_STATUS); |
Chris Wilson | ed71f1b | 2013-07-19 20:36:56 +0100 | [diff] [blame] | 1517 | 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] | 1518 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1519 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1520 | if (INTEL_GEN(dev_priv) >= 9) { |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1521 | gen9_powergate_enable = I915_READ(GEN9_PG_ENABLE); |
| 1522 | gen9_powergate_status = I915_READ(GEN9_PWRGT_DOMAIN_STATUS); |
| 1523 | } |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1524 | |
Imre Deak | 51cc9ad | 2018-02-08 19:41:02 +0200 | [diff] [blame] | 1525 | if (INTEL_GEN(dev_priv) <= 7) { |
| 1526 | mutex_lock(&dev_priv->pcu_lock); |
| 1527 | sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, |
| 1528 | &rc6vids); |
| 1529 | mutex_unlock(&dev_priv->pcu_lock); |
| 1530 | } |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1531 | |
Eric Anholt | fff24e2 | 2012-01-23 16:14:05 -0800 | [diff] [blame] | 1532 | seq_printf(m, "RC1e Enabled: %s\n", |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1533 | yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE)); |
| 1534 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1535 | yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE)); |
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 | seq_printf(m, "Render Well Gating Enabled: %s\n", |
| 1538 | yesno(gen9_powergate_enable & GEN9_RENDER_PG_ENABLE)); |
| 1539 | seq_printf(m, "Media Well Gating Enabled: %s\n", |
| 1540 | yesno(gen9_powergate_enable & GEN9_MEDIA_PG_ENABLE)); |
| 1541 | } |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1542 | seq_printf(m, "Deep RC6 Enabled: %s\n", |
| 1543 | yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE)); |
| 1544 | seq_printf(m, "Deepest RC6 Enabled: %s\n", |
| 1545 | yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE)); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1546 | seq_puts(m, "Current RC state: "); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1547 | switch (gt_core_status & GEN6_RCn_MASK) { |
| 1548 | case GEN6_RC0: |
| 1549 | if (gt_core_status & GEN6_CORE_CPD_STATE_MASK) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1550 | seq_puts(m, "Core Power Down\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1551 | else |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1552 | seq_puts(m, "on\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1553 | break; |
| 1554 | case GEN6_RC3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1555 | seq_puts(m, "RC3\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1556 | break; |
| 1557 | case GEN6_RC6: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1558 | seq_puts(m, "RC6\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1559 | break; |
| 1560 | case GEN6_RC7: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1561 | seq_puts(m, "RC7\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1562 | break; |
| 1563 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1564 | seq_puts(m, "Unknown\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1565 | break; |
| 1566 | } |
| 1567 | |
| 1568 | seq_printf(m, "Core Power Down: %s\n", |
| 1569 | yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1570 | if (INTEL_GEN(dev_priv) >= 9) { |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1571 | seq_printf(m, "Render Power Well: %s\n", |
| 1572 | (gen9_powergate_status & |
| 1573 | GEN9_PWRGT_RENDER_STATUS_MASK) ? "Up" : "Down"); |
| 1574 | seq_printf(m, "Media Power Well: %s\n", |
| 1575 | (gen9_powergate_status & |
| 1576 | GEN9_PWRGT_MEDIA_STATUS_MASK) ? "Up" : "Down"); |
| 1577 | } |
Ben Widawsky | cce66a2 | 2012-03-27 18:59:38 -0700 | [diff] [blame] | 1578 | |
| 1579 | /* Not exactly sure what this is */ |
Mika Kuoppala | 1362877 | 2017-03-15 17:43:02 +0200 | [diff] [blame] | 1580 | print_rc6_res(m, "RC6 \"Locked to RPn\" residency since boot:", |
| 1581 | GEN6_GT_GFX_RC6_LOCKED); |
| 1582 | print_rc6_res(m, "RC6 residency since boot:", GEN6_GT_GFX_RC6); |
| 1583 | print_rc6_res(m, "RC6+ residency since boot:", GEN6_GT_GFX_RC6p); |
| 1584 | print_rc6_res(m, "RC6++ residency since boot:", GEN6_GT_GFX_RC6pp); |
Ben Widawsky | cce66a2 | 2012-03-27 18:59:38 -0700 | [diff] [blame] | 1585 | |
Imre Deak | 51cc9ad | 2018-02-08 19:41:02 +0200 | [diff] [blame] | 1586 | if (INTEL_GEN(dev_priv) <= 7) { |
| 1587 | seq_printf(m, "RC6 voltage: %dmV\n", |
| 1588 | GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff))); |
| 1589 | seq_printf(m, "RC6+ voltage: %dmV\n", |
| 1590 | GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff))); |
| 1591 | seq_printf(m, "RC6++ voltage: %dmV\n", |
| 1592 | GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff))); |
| 1593 | } |
| 1594 | |
Akash Goel | f2dd757 | 2016-06-27 20:10:01 +0530 | [diff] [blame] | 1595 | return i915_forcewake_domains(m, NULL); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1596 | } |
| 1597 | |
| 1598 | static int i915_drpc_info(struct seq_file *m, void *unused) |
| 1599 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1600 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1601 | int err; |
| 1602 | |
| 1603 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1604 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1605 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1606 | err = vlv_drpc_info(m); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1607 | else if (INTEL_GEN(dev_priv) >= 6) |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1608 | err = gen6_drpc_info(m); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1609 | else |
Chris Wilson | cf632bd | 2017-03-13 09:56:17 +0000 | [diff] [blame] | 1610 | err = ironlake_drpc_info(m); |
| 1611 | |
| 1612 | intel_runtime_pm_put(dev_priv); |
| 1613 | |
| 1614 | return err; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1615 | } |
| 1616 | |
Daniel Vetter | 9a85178 | 2015-06-18 10:30:22 +0200 | [diff] [blame] | 1617 | static int i915_frontbuffer_tracking(struct seq_file *m, void *unused) |
| 1618 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1619 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Daniel Vetter | 9a85178 | 2015-06-18 10:30:22 +0200 | [diff] [blame] | 1620 | |
| 1621 | seq_printf(m, "FB tracking busy bits: 0x%08x\n", |
| 1622 | dev_priv->fb_tracking.busy_bits); |
| 1623 | |
| 1624 | seq_printf(m, "FB tracking flip bits: 0x%08x\n", |
| 1625 | dev_priv->fb_tracking.flip_bits); |
| 1626 | |
| 1627 | return 0; |
| 1628 | } |
| 1629 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1630 | static int i915_fbc_status(struct seq_file *m, void *unused) |
| 1631 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1632 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1633 | struct intel_fbc *fbc = &dev_priv->fbc; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1634 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 1635 | if (!HAS_FBC(dev_priv)) |
| 1636 | return -ENODEV; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1637 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1638 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1639 | mutex_lock(&fbc->lock); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1640 | |
Paulo Zanoni | 0e631ad | 2015-10-14 17:45:36 -0300 | [diff] [blame] | 1641 | if (intel_fbc_is_active(dev_priv)) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1642 | seq_puts(m, "FBC enabled\n"); |
Paulo Zanoni | 2e8144a | 2015-06-12 14:36:20 -0300 | [diff] [blame] | 1643 | else |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1644 | seq_printf(m, "FBC disabled: %s\n", fbc->no_fbc_reason); |
| 1645 | |
| 1646 | if (fbc->work.scheduled) |
Dhinakaran Pandiyan | 1b29b7c | 2018-02-02 21:12:55 -0800 | [diff] [blame] | 1647 | seq_printf(m, "FBC worker scheduled on vblank %llu, now %llu\n", |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1648 | fbc->work.scheduled_vblank, |
| 1649 | drm_crtc_vblank_count(&fbc->crtc->base)); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1650 | |
Ville Syrjälä | 3fd5d1e | 2017-06-06 15:43:18 +0300 | [diff] [blame] | 1651 | if (intel_fbc_is_active(dev_priv)) { |
| 1652 | u32 mask; |
| 1653 | |
| 1654 | if (INTEL_GEN(dev_priv) >= 8) |
| 1655 | mask = I915_READ(IVB_FBC_STATUS2) & BDW_FBC_COMP_SEG_MASK; |
| 1656 | else if (INTEL_GEN(dev_priv) >= 7) |
| 1657 | mask = I915_READ(IVB_FBC_STATUS2) & IVB_FBC_COMP_SEG_MASK; |
| 1658 | else if (INTEL_GEN(dev_priv) >= 5) |
| 1659 | mask = I915_READ(ILK_DPFC_STATUS) & ILK_DPFC_COMP_SEG_MASK; |
| 1660 | else if (IS_G4X(dev_priv)) |
| 1661 | mask = I915_READ(DPFC_STATUS) & DPFC_COMP_SEG_MASK; |
| 1662 | else |
| 1663 | mask = I915_READ(FBC_STATUS) & (FBC_STAT_COMPRESSING | |
| 1664 | FBC_STAT_COMPRESSED); |
| 1665 | |
| 1666 | seq_printf(m, "Compressing: %s\n", yesno(mask)); |
Paulo Zanoni | 0fc6a9d | 2016-10-21 13:55:46 -0200 | [diff] [blame] | 1667 | } |
Paulo Zanoni | 31b9df1 | 2015-06-12 14:36:18 -0300 | [diff] [blame] | 1668 | |
Chris Wilson | 3138872 | 2017-12-20 20:58:48 +0000 | [diff] [blame] | 1669 | mutex_unlock(&fbc->lock); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1670 | intel_runtime_pm_put(dev_priv); |
| 1671 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1672 | return 0; |
| 1673 | } |
| 1674 | |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 1675 | static int i915_fbc_false_color_get(void *data, u64 *val) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1676 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1677 | struct drm_i915_private *dev_priv = data; |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1678 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1679 | if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv)) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1680 | return -ENODEV; |
| 1681 | |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1682 | *val = dev_priv->fbc.false_color; |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1683 | |
| 1684 | return 0; |
| 1685 | } |
| 1686 | |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 1687 | static int i915_fbc_false_color_set(void *data, u64 val) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1688 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1689 | struct drm_i915_private *dev_priv = data; |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1690 | u32 reg; |
| 1691 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1692 | if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv)) |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1693 | return -ENODEV; |
| 1694 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1695 | mutex_lock(&dev_priv->fbc.lock); |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1696 | |
| 1697 | reg = I915_READ(ILK_DPFC_CONTROL); |
| 1698 | dev_priv->fbc.false_color = val; |
| 1699 | |
| 1700 | I915_WRITE(ILK_DPFC_CONTROL, val ? |
| 1701 | (reg | FBC_CTL_FALSE_COLOR) : |
| 1702 | (reg & ~FBC_CTL_FALSE_COLOR)); |
| 1703 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1704 | mutex_unlock(&dev_priv->fbc.lock); |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1705 | return 0; |
| 1706 | } |
| 1707 | |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 1708 | DEFINE_SIMPLE_ATTRIBUTE(i915_fbc_false_color_fops, |
| 1709 | i915_fbc_false_color_get, i915_fbc_false_color_set, |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 1710 | "%llu\n"); |
| 1711 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1712 | static int i915_ips_status(struct seq_file *m, void *unused) |
| 1713 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1714 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1715 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 1716 | if (!HAS_IPS(dev_priv)) |
| 1717 | return -ENODEV; |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1718 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1719 | intel_runtime_pm_get(dev_priv); |
| 1720 | |
Rodrigo Vivi | 0eaa53f | 2014-06-30 04:45:01 -0700 | [diff] [blame] | 1721 | seq_printf(m, "Enabled by kernel parameter: %s\n", |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 1722 | yesno(i915_modparams.enable_ips)); |
Rodrigo Vivi | 0eaa53f | 2014-06-30 04:45:01 -0700 | [diff] [blame] | 1723 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1724 | if (INTEL_GEN(dev_priv) >= 8) { |
Rodrigo Vivi | 0eaa53f | 2014-06-30 04:45:01 -0700 | [diff] [blame] | 1725 | seq_puts(m, "Currently: unknown\n"); |
| 1726 | } else { |
| 1727 | if (I915_READ(IPS_CTL) & IPS_ENABLE) |
| 1728 | seq_puts(m, "Currently: enabled\n"); |
| 1729 | else |
| 1730 | seq_puts(m, "Currently: disabled\n"); |
| 1731 | } |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1732 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1733 | intel_runtime_pm_put(dev_priv); |
| 1734 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1735 | return 0; |
| 1736 | } |
| 1737 | |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1738 | static int i915_sr_status(struct seq_file *m, void *unused) |
| 1739 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1740 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1741 | bool sr_enabled = false; |
| 1742 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1743 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1744 | intel_display_power_get(dev_priv, POWER_DOMAIN_INIT); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1745 | |
Chris Wilson | 7342a72 | 2017-03-09 14:20:49 +0000 | [diff] [blame] | 1746 | if (INTEL_GEN(dev_priv) >= 9) |
| 1747 | /* no global SR status; inspect per-plane WM */; |
| 1748 | else if (HAS_PCH_SPLIT(dev_priv)) |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1749 | sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN; |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 1750 | else if (IS_I965GM(dev_priv) || IS_G4X(dev_priv) || |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1751 | IS_I945G(dev_priv) || IS_I945GM(dev_priv)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1752 | sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1753 | else if (IS_I915GM(dev_priv)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1754 | sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1755 | else if (IS_PINEVIEW(dev_priv)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1756 | sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1757 | else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
Ander Conselvan de Oliveira | 77b6455 | 2015-06-02 14:17:47 +0300 | [diff] [blame] | 1758 | sr_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN; |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1759 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1760 | intel_display_power_put(dev_priv, POWER_DOMAIN_INIT); |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 1761 | intel_runtime_pm_put(dev_priv); |
| 1762 | |
Tvrtko Ursulin | 08c4d7f | 2016-11-17 12:30:14 +0000 | [diff] [blame] | 1763 | seq_printf(m, "self-refresh: %s\n", enableddisabled(sr_enabled)); |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1764 | |
| 1765 | return 0; |
| 1766 | } |
| 1767 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1768 | static int i915_emon_status(struct seq_file *m, void *unused) |
| 1769 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1770 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1771 | struct drm_device *dev = &dev_priv->drm; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1772 | unsigned long temp, chipset, gfx; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1773 | int ret; |
| 1774 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1775 | if (!IS_GEN5(dev_priv)) |
Chris Wilson | 582be6b | 2012-04-30 19:35:02 +0100 | [diff] [blame] | 1776 | return -ENODEV; |
| 1777 | |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1778 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1779 | if (ret) |
| 1780 | return ret; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1781 | |
| 1782 | temp = i915_mch_val(dev_priv); |
| 1783 | chipset = i915_chipset_val(dev_priv); |
| 1784 | gfx = i915_gfx_val(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1785 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1786 | |
| 1787 | seq_printf(m, "GMCH temp: %ld\n", temp); |
| 1788 | seq_printf(m, "Chipset power: %ld\n", chipset); |
| 1789 | seq_printf(m, "GFX power: %ld\n", gfx); |
| 1790 | seq_printf(m, "Total power: %ld\n", chipset + gfx); |
| 1791 | |
| 1792 | return 0; |
| 1793 | } |
| 1794 | |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1795 | static int i915_ring_freq_table(struct seq_file *m, void *unused) |
| 1796 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1797 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1798 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1799 | int ret = 0; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1800 | int gpu_freq, ia_freq; |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1801 | unsigned int max_gpu_freq, min_gpu_freq; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1802 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 1803 | if (!HAS_LLC(dev_priv)) |
| 1804 | return -ENODEV; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1805 | |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1806 | intel_runtime_pm_get(dev_priv); |
| 1807 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1808 | ret = mutex_lock_interruptible(&dev_priv->pcu_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1809 | if (ret) |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1810 | goto out; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1811 | |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1812 | if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) { |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1813 | /* Convert GT frequency to 50 HZ units */ |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1814 | min_gpu_freq = rps->min_freq_softlimit / GEN9_FREQ_SCALER; |
| 1815 | max_gpu_freq = rps->max_freq_softlimit / GEN9_FREQ_SCALER; |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1816 | } else { |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 1817 | min_gpu_freq = rps->min_freq_softlimit; |
| 1818 | max_gpu_freq = rps->max_freq_softlimit; |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1819 | } |
| 1820 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1821 | 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] | 1822 | |
Akash Goel | f936ec3 | 2015-06-29 14:50:22 +0530 | [diff] [blame] | 1823 | 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] | 1824 | ia_freq = gpu_freq; |
| 1825 | sandybridge_pcode_read(dev_priv, |
| 1826 | GEN6_PCODE_READ_MIN_FREQ_TABLE, |
| 1827 | &ia_freq); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 1828 | 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] | 1829 | intel_gpu_freq(dev_priv, (gpu_freq * |
Rodrigo Vivi | 35ceabf | 2017-07-06 13:41:13 -0700 | [diff] [blame] | 1830 | (IS_GEN9_BC(dev_priv) || |
| 1831 | IS_CANNONLAKE(dev_priv) ? |
Rodrigo Vivi | b976dc5 | 2017-01-23 10:32:37 -0800 | [diff] [blame] | 1832 | GEN9_FREQ_SCALER : 1))), |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 1833 | ((ia_freq >> 0) & 0xff) * 100, |
| 1834 | ((ia_freq >> 8) & 0xff) * 100); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1835 | } |
| 1836 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 1837 | mutex_unlock(&dev_priv->pcu_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1838 | |
Paulo Zanoni | 5bfa019 | 2013-12-19 11:54:52 -0200 | [diff] [blame] | 1839 | out: |
| 1840 | intel_runtime_pm_put(dev_priv); |
| 1841 | return ret; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1842 | } |
| 1843 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1844 | static int i915_opregion(struct seq_file *m, void *unused) |
| 1845 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1846 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1847 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1848 | struct intel_opregion *opregion = &dev_priv->opregion; |
| 1849 | int ret; |
| 1850 | |
| 1851 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1852 | if (ret) |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1853 | goto out; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1854 | |
Jani Nikula | 2455a8e | 2015-12-14 12:50:53 +0200 | [diff] [blame] | 1855 | if (opregion->header) |
| 1856 | seq_write(m, opregion->header, OPREGION_SIZE); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1857 | |
| 1858 | mutex_unlock(&dev->struct_mutex); |
| 1859 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1860 | out: |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1861 | return 0; |
| 1862 | } |
| 1863 | |
Jani Nikula | ada8f95 | 2015-12-15 13:17:12 +0200 | [diff] [blame] | 1864 | static int i915_vbt(struct seq_file *m, void *unused) |
| 1865 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1866 | struct intel_opregion *opregion = &node_to_i915(m->private)->opregion; |
Jani Nikula | ada8f95 | 2015-12-15 13:17:12 +0200 | [diff] [blame] | 1867 | |
| 1868 | if (opregion->vbt) |
| 1869 | seq_write(m, opregion->vbt, opregion->vbt_size); |
| 1870 | |
| 1871 | return 0; |
| 1872 | } |
| 1873 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1874 | static int i915_gem_framebuffer_info(struct seq_file *m, void *data) |
| 1875 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1876 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1877 | struct drm_device *dev = &dev_priv->drm; |
Namrta Salonie | b13b840 | 2015-11-27 13:43:11 +0530 | [diff] [blame] | 1878 | struct intel_framebuffer *fbdev_fb = NULL; |
Daniel Vetter | 3a58ee1 | 2015-07-10 19:02:51 +0200 | [diff] [blame] | 1879 | struct drm_framebuffer *drm_fb; |
Chris Wilson | 188c1ab | 2016-04-03 14:14:20 +0100 | [diff] [blame] | 1880 | int ret; |
| 1881 | |
| 1882 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1883 | if (ret) |
| 1884 | return ret; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1885 | |
Daniel Vetter | 0695726 | 2015-08-10 13:34:08 +0200 | [diff] [blame] | 1886 | #ifdef CONFIG_DRM_FBDEV_EMULATION |
Daniel Vetter | 346fb4e | 2017-07-06 15:00:20 +0200 | [diff] [blame] | 1887 | if (dev_priv->fbdev && dev_priv->fbdev->helper.fb) { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1888 | fbdev_fb = to_intel_framebuffer(dev_priv->fbdev->helper.fb); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1889 | |
Chris Wilson | 25bcce9 | 2016-07-02 15:36:00 +0100 | [diff] [blame] | 1890 | seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ", |
| 1891 | fbdev_fb->base.width, |
| 1892 | fbdev_fb->base.height, |
Ville Syrjälä | b00c600 | 2016-12-14 23:31:35 +0200 | [diff] [blame] | 1893 | fbdev_fb->base.format->depth, |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 1894 | fbdev_fb->base.format->cpp[0] * 8, |
Ville Syrjälä | bae781b | 2016-11-16 13:33:16 +0200 | [diff] [blame] | 1895 | fbdev_fb->base.modifier, |
Chris Wilson | 25bcce9 | 2016-07-02 15:36:00 +0100 | [diff] [blame] | 1896 | drm_framebuffer_read_refcount(&fbdev_fb->base)); |
| 1897 | describe_obj(m, fbdev_fb->obj); |
| 1898 | seq_putc(m, '\n'); |
| 1899 | } |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1900 | #endif |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1901 | |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1902 | mutex_lock(&dev->mode_config.fb_lock); |
Daniel Vetter | 3a58ee1 | 2015-07-10 19:02:51 +0200 | [diff] [blame] | 1903 | drm_for_each_fb(drm_fb, dev) { |
Namrta Salonie | b13b840 | 2015-11-27 13:43:11 +0530 | [diff] [blame] | 1904 | struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb); |
| 1905 | if (fb == fbdev_fb) |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1906 | continue; |
| 1907 | |
Tvrtko Ursulin | c1ca506d | 2015-02-10 17:16:07 +0000 | [diff] [blame] | 1908 | 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] | 1909 | fb->base.width, |
| 1910 | fb->base.height, |
Ville Syrjälä | b00c600 | 2016-12-14 23:31:35 +0200 | [diff] [blame] | 1911 | fb->base.format->depth, |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 1912 | fb->base.format->cpp[0] * 8, |
Ville Syrjälä | bae781b | 2016-11-16 13:33:16 +0200 | [diff] [blame] | 1913 | fb->base.modifier, |
Dave Airlie | 747a598 | 2016-04-15 15:10:35 +1000 | [diff] [blame] | 1914 | drm_framebuffer_read_refcount(&fb->base)); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1915 | describe_obj(m, fb->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1916 | seq_putc(m, '\n'); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1917 | } |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1918 | mutex_unlock(&dev->mode_config.fb_lock); |
Chris Wilson | 188c1ab | 2016-04-03 14:14:20 +0100 | [diff] [blame] | 1919 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1920 | |
| 1921 | return 0; |
| 1922 | } |
| 1923 | |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 1924 | 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] | 1925 | { |
Chris Wilson | fe085f1 | 2017-03-21 10:25:52 +0000 | [diff] [blame] | 1926 | seq_printf(m, " (ringbuffer, space: %d, head: %u, tail: %u)", |
| 1927 | ring->space, ring->head, ring->tail); |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1928 | } |
| 1929 | |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1930 | static int i915_context_status(struct seq_file *m, void *unused) |
| 1931 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 1932 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 1933 | struct drm_device *dev = &dev_priv->drm; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 1934 | struct intel_engine_cs *engine; |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 1935 | struct i915_gem_context *ctx; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1936 | enum intel_engine_id id; |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 1937 | int ret; |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1938 | |
Daniel Vetter | f3d2887 | 2014-05-29 23:23:08 +0200 | [diff] [blame] | 1939 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1940 | if (ret) |
| 1941 | return ret; |
| 1942 | |
Chris Wilson | 829a0af | 2017-06-20 12:05:45 +0100 | [diff] [blame] | 1943 | list_for_each_entry(ctx, &dev_priv->contexts.list, link) { |
Chris Wilson | 5d1808e | 2016-04-28 09:56:51 +0100 | [diff] [blame] | 1944 | seq_printf(m, "HW context %u ", ctx->hw_id); |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 1945 | if (ctx->pid) { |
Chris Wilson | d28b99a | 2016-05-24 14:53:39 +0100 | [diff] [blame] | 1946 | struct task_struct *task; |
| 1947 | |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 1948 | task = get_pid_task(ctx->pid, PIDTYPE_PID); |
Chris Wilson | d28b99a | 2016-05-24 14:53:39 +0100 | [diff] [blame] | 1949 | if (task) { |
| 1950 | seq_printf(m, "(%s [%d]) ", |
| 1951 | task->comm, task->pid); |
| 1952 | put_task_struct(task); |
| 1953 | } |
Chris Wilson | c84455b | 2016-08-15 10:49:08 +0100 | [diff] [blame] | 1954 | } else if (IS_ERR(ctx->file_priv)) { |
| 1955 | seq_puts(m, "(deleted) "); |
Chris Wilson | d28b99a | 2016-05-24 14:53:39 +0100 | [diff] [blame] | 1956 | } else { |
| 1957 | seq_puts(m, "(kernel) "); |
| 1958 | } |
| 1959 | |
Chris Wilson | bca44d8 | 2016-05-24 14:53:41 +0100 | [diff] [blame] | 1960 | seq_putc(m, ctx->remap_slice ? 'R' : 'r'); |
| 1961 | seq_putc(m, '\n'); |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1962 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1963 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | bca44d8 | 2016-05-24 14:53:41 +0100 | [diff] [blame] | 1964 | struct intel_context *ce = &ctx->engine[engine->id]; |
| 1965 | |
| 1966 | seq_printf(m, "%s: ", engine->name); |
Chris Wilson | bca44d8 | 2016-05-24 14:53:41 +0100 | [diff] [blame] | 1967 | if (ce->state) |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 1968 | describe_obj(m, ce->state->obj); |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 1969 | if (ce->ring) |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 1970 | describe_ctx_ring(m, ce->ring); |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1971 | seq_putc(m, '\n'); |
Oscar Mateo | c9fe99b | 2014-07-24 17:04:46 +0100 | [diff] [blame] | 1972 | } |
| 1973 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1974 | seq_putc(m, '\n'); |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1975 | } |
| 1976 | |
Daniel Vetter | f3d2887 | 2014-05-29 23:23:08 +0200 | [diff] [blame] | 1977 | mutex_unlock(&dev->struct_mutex); |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1978 | |
| 1979 | return 0; |
| 1980 | } |
| 1981 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1982 | static const char *swizzle_string(unsigned swizzle) |
| 1983 | { |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1984 | switch (swizzle) { |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1985 | case I915_BIT_6_SWIZZLE_NONE: |
| 1986 | return "none"; |
| 1987 | case I915_BIT_6_SWIZZLE_9: |
| 1988 | return "bit9"; |
| 1989 | case I915_BIT_6_SWIZZLE_9_10: |
| 1990 | return "bit9/bit10"; |
| 1991 | case I915_BIT_6_SWIZZLE_9_11: |
| 1992 | return "bit9/bit11"; |
| 1993 | case I915_BIT_6_SWIZZLE_9_10_11: |
| 1994 | return "bit9/bit10/bit11"; |
| 1995 | case I915_BIT_6_SWIZZLE_9_17: |
| 1996 | return "bit9/bit17"; |
| 1997 | case I915_BIT_6_SWIZZLE_9_10_17: |
| 1998 | return "bit9/bit10/bit17"; |
| 1999 | case I915_BIT_6_SWIZZLE_UNKNOWN: |
Masanari Iida | 8a168ca | 2012-12-29 02:00:09 +0900 | [diff] [blame] | 2000 | return "unknown"; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2001 | } |
| 2002 | |
| 2003 | return "bug"; |
| 2004 | } |
| 2005 | |
| 2006 | static int i915_swizzle_info(struct seq_file *m, void *data) |
| 2007 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2008 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2009 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2010 | intel_runtime_pm_get(dev_priv); |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 2011 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2012 | seq_printf(m, "bit6 swizzle for X-tiling = %s\n", |
| 2013 | swizzle_string(dev_priv->mm.bit_6_swizzle_x)); |
| 2014 | seq_printf(m, "bit6 swizzle for Y-tiling = %s\n", |
| 2015 | swizzle_string(dev_priv->mm.bit_6_swizzle_y)); |
| 2016 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2017 | if (IS_GEN3(dev_priv) || IS_GEN4(dev_priv)) { |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2018 | seq_printf(m, "DDC = 0x%08x\n", |
| 2019 | I915_READ(DCC)); |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 2020 | seq_printf(m, "DDC2 = 0x%08x\n", |
| 2021 | I915_READ(DCC2)); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2022 | seq_printf(m, "C0DRB3 = 0x%04x\n", |
| 2023 | I915_READ16(C0DRB3)); |
| 2024 | seq_printf(m, "C1DRB3 = 0x%04x\n", |
| 2025 | I915_READ16(C1DRB3)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2026 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 2027 | seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n", |
| 2028 | I915_READ(MAD_DIMM_C0)); |
| 2029 | seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n", |
| 2030 | I915_READ(MAD_DIMM_C1)); |
| 2031 | seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n", |
| 2032 | I915_READ(MAD_DIMM_C2)); |
| 2033 | seq_printf(m, "TILECTL = 0x%08x\n", |
| 2034 | I915_READ(TILECTL)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2035 | if (INTEL_GEN(dev_priv) >= 8) |
Ben Widawsky | 9d3203e | 2013-11-02 21:07:14 -0700 | [diff] [blame] | 2036 | seq_printf(m, "GAMTARBMODE = 0x%08x\n", |
| 2037 | I915_READ(GAMTARBMODE)); |
| 2038 | else |
| 2039 | seq_printf(m, "ARB_MODE = 0x%08x\n", |
| 2040 | I915_READ(ARB_MODE)); |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 2041 | seq_printf(m, "DISP_ARB_CTL = 0x%08x\n", |
| 2042 | I915_READ(DISP_ARB_CTL)); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2043 | } |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 2044 | |
| 2045 | if (dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) |
| 2046 | seq_puts(m, "L-shaped memory detected\n"); |
| 2047 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2048 | intel_runtime_pm_put(dev_priv); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 2049 | |
| 2050 | return 0; |
| 2051 | } |
| 2052 | |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2053 | static int per_file_ctx(int id, void *ptr, void *data) |
| 2054 | { |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 2055 | struct i915_gem_context *ctx = ptr; |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2056 | struct seq_file *m = data; |
Daniel Vetter | ae6c4806 | 2014-08-06 15:04:53 +0200 | [diff] [blame] | 2057 | struct i915_hw_ppgtt *ppgtt = ctx->ppgtt; |
| 2058 | |
| 2059 | if (!ppgtt) { |
| 2060 | seq_printf(m, " no ppgtt for context %d\n", |
| 2061 | ctx->user_handle); |
| 2062 | return 0; |
| 2063 | } |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2064 | |
Oscar Mateo | f83d651 | 2014-05-22 14:13:38 +0100 | [diff] [blame] | 2065 | if (i915_gem_context_is_default(ctx)) |
| 2066 | seq_puts(m, " default context:\n"); |
| 2067 | else |
Oscar Mateo | 821d66d | 2014-07-03 16:28:00 +0100 | [diff] [blame] | 2068 | seq_printf(m, " context %d:\n", ctx->user_handle); |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2069 | ppgtt->debug_dump(ppgtt, m); |
| 2070 | |
| 2071 | return 0; |
| 2072 | } |
| 2073 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2074 | static void gen8_ppgtt_info(struct seq_file *m, |
| 2075 | struct drm_i915_private *dev_priv) |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2076 | { |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2077 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2078 | struct intel_engine_cs *engine; |
| 2079 | enum intel_engine_id id; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 2080 | int i; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2081 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2082 | if (!ppgtt) |
| 2083 | return; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2084 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2085 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2086 | seq_printf(m, "%s\n", engine->name); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2087 | for (i = 0; i < 4; i++) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2088 | u64 pdp = I915_READ(GEN8_RING_PDP_UDW(engine, i)); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2089 | pdp <<= 32; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2090 | pdp |= I915_READ(GEN8_RING_PDP_LDW(engine, i)); |
Ville Syrjälä | a2a5b15 | 2014-03-31 18:17:16 +0300 | [diff] [blame] | 2091 | seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2092 | } |
| 2093 | } |
| 2094 | } |
| 2095 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2096 | static void gen6_ppgtt_info(struct seq_file *m, |
| 2097 | struct drm_i915_private *dev_priv) |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2098 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2099 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2100 | enum intel_engine_id id; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2101 | |
Tvrtko Ursulin | 7e22dbb | 2016-05-10 10:57:06 +0100 | [diff] [blame] | 2102 | if (IS_GEN6(dev_priv)) |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2103 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE)); |
| 2104 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2105 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2106 | seq_printf(m, "%s\n", engine->name); |
Tvrtko Ursulin | 7e22dbb | 2016-05-10 10:57:06 +0100 | [diff] [blame] | 2107 | if (IS_GEN7(dev_priv)) |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2108 | seq_printf(m, "GFX_MODE: 0x%08x\n", |
| 2109 | I915_READ(RING_MODE_GEN7(engine))); |
| 2110 | seq_printf(m, "PP_DIR_BASE: 0x%08x\n", |
| 2111 | I915_READ(RING_PP_DIR_BASE(engine))); |
| 2112 | seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", |
| 2113 | I915_READ(RING_PP_DIR_BASE_READ(engine))); |
| 2114 | seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", |
| 2115 | I915_READ(RING_PP_DIR_DCLV(engine))); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2116 | } |
| 2117 | if (dev_priv->mm.aliasing_ppgtt) { |
| 2118 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 2119 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 2120 | seq_puts(m, "aliasing PPGTT:\n"); |
Mika Kuoppala | 44159dd | 2015-06-25 18:35:07 +0300 | [diff] [blame] | 2121 | 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] | 2122 | |
Ben Widawsky | 87d60b6 | 2013-12-06 14:11:29 -0800 | [diff] [blame] | 2123 | ppgtt->debug_dump(ppgtt, m); |
Daniel Vetter | ae6c4806 | 2014-08-06 15:04:53 +0200 | [diff] [blame] | 2124 | } |
Ben Widawsky | 1c60fef | 2013-12-06 14:11:30 -0800 | [diff] [blame] | 2125 | |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2126 | seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK)); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2127 | } |
| 2128 | |
| 2129 | static int i915_ppgtt_info(struct seq_file *m, void *data) |
| 2130 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2131 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2132 | struct drm_device *dev = &dev_priv->drm; |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2133 | struct drm_file *file; |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2134 | int ret; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2135 | |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2136 | mutex_lock(&dev->filelist_mutex); |
| 2137 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2138 | if (ret) |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2139 | goto out_unlock; |
| 2140 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2141 | intel_runtime_pm_get(dev_priv); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2142 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2143 | if (INTEL_GEN(dev_priv) >= 8) |
| 2144 | gen8_ppgtt_info(m, dev_priv); |
| 2145 | else if (INTEL_GEN(dev_priv) >= 6) |
| 2146 | gen6_ppgtt_info(m, dev_priv); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 2147 | |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2148 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 2149 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Geliang Tang | 7cb5dff | 2015-09-25 03:58:11 -0700 | [diff] [blame] | 2150 | struct task_struct *task; |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2151 | |
Geliang Tang | 7cb5dff | 2015-09-25 03:58:11 -0700 | [diff] [blame] | 2152 | task = get_pid_task(file->pid, PIDTYPE_PID); |
Dan Carpenter | 0681276 | 2015-10-02 18:14:22 +0300 | [diff] [blame] | 2153 | if (!task) { |
| 2154 | ret = -ESRCH; |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2155 | goto out_rpm; |
Dan Carpenter | 0681276 | 2015-10-02 18:14:22 +0300 | [diff] [blame] | 2156 | } |
Geliang Tang | 7cb5dff | 2015-09-25 03:58:11 -0700 | [diff] [blame] | 2157 | seq_printf(m, "\nproc: %s\n", task->comm); |
| 2158 | put_task_struct(task); |
Michel Thierry | ea91e40 | 2015-07-29 17:23:57 +0100 | [diff] [blame] | 2159 | idr_for_each(&file_priv->context_idr, per_file_ctx, |
| 2160 | (void *)(unsigned long)m); |
| 2161 | } |
| 2162 | |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2163 | out_rpm: |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2164 | intel_runtime_pm_put(dev_priv); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2165 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 637ee29 | 2016-08-22 14:28:20 +0100 | [diff] [blame] | 2166 | out_unlock: |
| 2167 | mutex_unlock(&dev->filelist_mutex); |
Dan Carpenter | 0681276 | 2015-10-02 18:14:22 +0300 | [diff] [blame] | 2168 | return ret; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 2169 | } |
| 2170 | |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2171 | static int count_irq_waiters(struct drm_i915_private *i915) |
| 2172 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2173 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2174 | enum intel_engine_id id; |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2175 | int count = 0; |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2176 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2177 | for_each_engine(engine, i915, id) |
Chris Wilson | 688e6c7 | 2016-07-01 17:23:15 +0100 | [diff] [blame] | 2178 | count += intel_engine_has_waiter(engine); |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2179 | |
| 2180 | return count; |
| 2181 | } |
| 2182 | |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2183 | static const char *rps_power_to_str(unsigned int power) |
| 2184 | { |
| 2185 | static const char * const strings[] = { |
| 2186 | [LOW_POWER] = "low power", |
| 2187 | [BETWEEN] = "mixed", |
| 2188 | [HIGH_POWER] = "high power", |
| 2189 | }; |
| 2190 | |
| 2191 | if (power >= ARRAY_SIZE(strings) || !strings[power]) |
| 2192 | return "unknown"; |
| 2193 | |
| 2194 | return strings[power]; |
| 2195 | } |
| 2196 | |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2197 | static int i915_rps_boost_info(struct seq_file *m, void *data) |
| 2198 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2199 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2200 | struct drm_device *dev = &dev_priv->drm; |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2201 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2202 | struct drm_file *file; |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2203 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2204 | seq_printf(m, "RPS enabled? %d\n", rps->enabled); |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 2205 | seq_printf(m, "GPU busy? %s [%d requests]\n", |
| 2206 | yesno(dev_priv->gt.awake), dev_priv->gt.active_requests); |
Chris Wilson | f5a4c67 | 2015-04-27 13:41:23 +0100 | [diff] [blame] | 2207 | seq_printf(m, "CPU waiting? %d\n", count_irq_waiters(dev_priv)); |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 2208 | seq_printf(m, "Boosts outstanding? %d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2209 | atomic_read(&rps->num_waiters)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2210 | seq_printf(m, "Frequency requested %d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2211 | intel_gpu_freq(dev_priv, rps->cur_freq)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2212 | 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] | 2213 | intel_gpu_freq(dev_priv, rps->min_freq), |
| 2214 | intel_gpu_freq(dev_priv, rps->min_freq_softlimit), |
| 2215 | intel_gpu_freq(dev_priv, rps->max_freq_softlimit), |
| 2216 | intel_gpu_freq(dev_priv, rps->max_freq)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2217 | seq_printf(m, " idle:%d, efficient:%d, boost:%d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2218 | intel_gpu_freq(dev_priv, rps->idle_freq), |
| 2219 | intel_gpu_freq(dev_priv, rps->efficient_freq), |
| 2220 | intel_gpu_freq(dev_priv, rps->boost_freq)); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 2221 | |
| 2222 | mutex_lock(&dev->filelist_mutex); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2223 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 2224 | struct drm_i915_file_private *file_priv = file->driver_priv; |
| 2225 | struct task_struct *task; |
| 2226 | |
| 2227 | rcu_read_lock(); |
| 2228 | task = pid_task(file->pid, PIDTYPE_PID); |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 2229 | seq_printf(m, "%s [%d]: %d boosts\n", |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2230 | task ? task->comm : "<unknown>", |
| 2231 | task ? task->pid : -1, |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2232 | atomic_read(&file_priv->rps_client.boosts)); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2233 | rcu_read_unlock(); |
| 2234 | } |
Chris Wilson | 7b92c1b | 2017-06-28 13:35:48 +0100 | [diff] [blame] | 2235 | seq_printf(m, "Kernel (anonymous) boosts: %d\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2236 | atomic_read(&rps->boosts)); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 2237 | mutex_unlock(&dev->filelist_mutex); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2238 | |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2239 | if (INTEL_GEN(dev_priv) >= 6 && |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2240 | rps->enabled && |
Chris Wilson | 28176ef | 2016-10-28 13:58:56 +0100 | [diff] [blame] | 2241 | dev_priv->gt.active_requests) { |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2242 | u32 rpup, rpupei; |
| 2243 | u32 rpdown, rpdownei; |
| 2244 | |
| 2245 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 2246 | rpup = I915_READ_FW(GEN6_RP_CUR_UP) & GEN6_RP_EI_MASK; |
| 2247 | rpupei = I915_READ_FW(GEN6_RP_CUR_UP_EI) & GEN6_RP_EI_MASK; |
| 2248 | rpdown = I915_READ_FW(GEN6_RP_CUR_DOWN) & GEN6_RP_EI_MASK; |
| 2249 | rpdownei = I915_READ_FW(GEN6_RP_CUR_DOWN_EI) & GEN6_RP_EI_MASK; |
| 2250 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
| 2251 | |
| 2252 | seq_printf(m, "\nRPS Autotuning (current \"%s\" window):\n", |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2253 | rps_power_to_str(rps->power)); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2254 | seq_printf(m, " Avg. up: %d%% [above threshold? %d%%]\n", |
Chris Wilson | 23f4a28 | 2017-02-18 11:27:08 +0000 | [diff] [blame] | 2255 | rpup && rpupei ? 100 * rpup / rpupei : 0, |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2256 | rps->up_threshold); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2257 | seq_printf(m, " Avg. down: %d%% [below threshold? %d%%]\n", |
Chris Wilson | 23f4a28 | 2017-02-18 11:27:08 +0000 | [diff] [blame] | 2258 | rpdown && rpdownei ? 100 * rpdown / rpdownei : 0, |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 2259 | rps->down_threshold); |
Chris Wilson | 7466c29 | 2016-08-15 09:49:33 +0100 | [diff] [blame] | 2260 | } else { |
| 2261 | seq_puts(m, "\nRPS Autotuning inactive\n"); |
| 2262 | } |
| 2263 | |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 2264 | return 0; |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 2265 | } |
| 2266 | |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2267 | static int i915_llc(struct seq_file *m, void *data) |
| 2268 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2269 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Mika Kuoppala | 3accaf7 | 2016-04-13 17:26:43 +0300 | [diff] [blame] | 2270 | const bool edram = INTEL_GEN(dev_priv) > 8; |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2271 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2272 | seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev_priv))); |
Mika Kuoppala | 3accaf7 | 2016-04-13 17:26:43 +0300 | [diff] [blame] | 2273 | seq_printf(m, "%s: %lluMB\n", edram ? "eDRAM" : "eLLC", |
| 2274 | intel_uncore_edram_size(dev_priv)/1024/1024); |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 2275 | |
| 2276 | return 0; |
| 2277 | } |
| 2278 | |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2279 | static int i915_huc_load_status_info(struct seq_file *m, void *data) |
| 2280 | { |
| 2281 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2282 | struct drm_printer p; |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2283 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2284 | if (!HAS_HUC(dev_priv)) |
| 2285 | return -ENODEV; |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2286 | |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2287 | p = drm_seq_file_printer(m); |
| 2288 | intel_uc_fw_dump(&dev_priv->huc.fw, &p); |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2289 | |
sagar.a.kamble@intel.com | 3582ad1 | 2017-02-03 13:58:33 +0530 | [diff] [blame] | 2290 | intel_runtime_pm_get(dev_priv); |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2291 | 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] | 2292 | intel_runtime_pm_put(dev_priv); |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 2293 | |
| 2294 | return 0; |
| 2295 | } |
| 2296 | |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2297 | static int i915_guc_load_status_info(struct seq_file *m, void *data) |
| 2298 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2299 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2300 | struct drm_printer p; |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2301 | u32 tmp, i; |
| 2302 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2303 | if (!HAS_GUC(dev_priv)) |
| 2304 | return -ENODEV; |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2305 | |
Michal Wajdeczko | 56ffc74 | 2017-10-17 09:44:49 +0000 | [diff] [blame] | 2306 | p = drm_seq_file_printer(m); |
| 2307 | intel_uc_fw_dump(&dev_priv->guc.fw, &p); |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2308 | |
sagar.a.kamble@intel.com | 3582ad1 | 2017-02-03 13:58:33 +0530 | [diff] [blame] | 2309 | intel_runtime_pm_get(dev_priv); |
| 2310 | |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2311 | tmp = I915_READ(GUC_STATUS); |
| 2312 | |
| 2313 | seq_printf(m, "\nGuC status 0x%08x:\n", tmp); |
| 2314 | seq_printf(m, "\tBootrom status = 0x%x\n", |
| 2315 | (tmp & GS_BOOTROM_MASK) >> GS_BOOTROM_SHIFT); |
| 2316 | seq_printf(m, "\tuKernel status = 0x%x\n", |
| 2317 | (tmp & GS_UKERNEL_MASK) >> GS_UKERNEL_SHIFT); |
| 2318 | seq_printf(m, "\tMIA Core status = 0x%x\n", |
| 2319 | (tmp & GS_MIA_MASK) >> GS_MIA_SHIFT); |
| 2320 | seq_puts(m, "\nScratch registers:\n"); |
| 2321 | for (i = 0; i < 16; i++) |
| 2322 | seq_printf(m, "\t%2d: \t0x%x\n", i, I915_READ(SOFT_SCRATCH(i))); |
| 2323 | |
sagar.a.kamble@intel.com | 3582ad1 | 2017-02-03 13:58:33 +0530 | [diff] [blame] | 2324 | intel_runtime_pm_put(dev_priv); |
| 2325 | |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 2326 | return 0; |
| 2327 | } |
| 2328 | |
Akash Goel | 5aa1ee4 | 2016-10-12 21:54:36 +0530 | [diff] [blame] | 2329 | static void i915_guc_log_info(struct seq_file *m, |
| 2330 | struct drm_i915_private *dev_priv) |
| 2331 | { |
| 2332 | struct intel_guc *guc = &dev_priv->guc; |
| 2333 | |
| 2334 | seq_puts(m, "\nGuC logging stats:\n"); |
| 2335 | |
| 2336 | seq_printf(m, "\tISR: flush count %10u, overflow count %10u\n", |
| 2337 | guc->log.flush_count[GUC_ISR_LOG_BUFFER], |
| 2338 | guc->log.total_overflow_count[GUC_ISR_LOG_BUFFER]); |
| 2339 | |
| 2340 | seq_printf(m, "\tDPC: flush count %10u, overflow count %10u\n", |
| 2341 | guc->log.flush_count[GUC_DPC_LOG_BUFFER], |
| 2342 | guc->log.total_overflow_count[GUC_DPC_LOG_BUFFER]); |
| 2343 | |
| 2344 | seq_printf(m, "\tCRASH: flush count %10u, overflow count %10u\n", |
| 2345 | guc->log.flush_count[GUC_CRASH_DUMP_LOG_BUFFER], |
| 2346 | guc->log.total_overflow_count[GUC_CRASH_DUMP_LOG_BUFFER]); |
| 2347 | |
| 2348 | seq_printf(m, "\tTotal flush interrupt count: %u\n", |
| 2349 | guc->log.flush_interrupt_count); |
| 2350 | |
| 2351 | seq_printf(m, "\tCapture miss count: %u\n", |
| 2352 | guc->log.capture_miss_count); |
| 2353 | } |
| 2354 | |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2355 | static void i915_guc_client_info(struct seq_file *m, |
| 2356 | struct drm_i915_private *dev_priv, |
Sagar Arun Kamble | 5afc8b4 | 2017-11-16 19:02:40 +0530 | [diff] [blame] | 2357 | struct intel_guc_client *client) |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2358 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2359 | struct intel_engine_cs *engine; |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 2360 | enum intel_engine_id id; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2361 | uint64_t tot = 0; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2362 | |
Oscar Mateo | b09935a | 2017-03-22 10:39:53 -0700 | [diff] [blame] | 2363 | seq_printf(m, "\tPriority %d, GuC stage index: %u, PD offset 0x%x\n", |
| 2364 | client->priority, client->stage_id, client->proc_desc_offset); |
Michał Winiarski | 59db36c | 2017-09-14 12:51:23 +0200 | [diff] [blame] | 2365 | seq_printf(m, "\tDoorbell id %d, offset: 0x%lx\n", |
| 2366 | client->doorbell_id, client->doorbell_offset); |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2367 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2368 | for_each_engine(engine, dev_priv, id) { |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 2369 | u64 submissions = client->submissions[id]; |
| 2370 | tot += submissions; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2371 | seq_printf(m, "\tSubmissions: %llu %s\n", |
Dave Gordon | c18468c | 2016-08-09 15:19:22 +0100 | [diff] [blame] | 2372 | submissions, engine->name); |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2373 | } |
| 2374 | seq_printf(m, "\tTotal: %llu\n", tot); |
| 2375 | } |
| 2376 | |
| 2377 | static int i915_guc_info(struct seq_file *m, void *data) |
| 2378 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2379 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Chris Wilson | 334636c | 2016-11-29 12:10:20 +0000 | [diff] [blame] | 2380 | const struct intel_guc *guc = &dev_priv->guc; |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2381 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2382 | if (!USES_GUC_SUBMISSION(dev_priv)) |
| 2383 | return -ENODEV; |
| 2384 | |
| 2385 | GEM_BUG_ON(!guc->execbuf_client); |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2386 | |
Dave Gordon | 9636f6d | 2016-06-13 17:57:28 +0100 | [diff] [blame] | 2387 | seq_printf(m, "Doorbell map:\n"); |
Joonas Lahtinen | abddffd | 2017-03-22 10:39:44 -0700 | [diff] [blame] | 2388 | seq_printf(m, "\t%*pb\n", GUC_NUM_DOORBELLS, guc->doorbell_bitmap); |
Chris Wilson | 334636c | 2016-11-29 12:10:20 +0000 | [diff] [blame] | 2389 | seq_printf(m, "Doorbell next cacheline: 0x%x\n\n", guc->db_cacheline); |
Dave Gordon | 9636f6d | 2016-06-13 17:57:28 +0100 | [diff] [blame] | 2390 | |
Chris Wilson | 334636c | 2016-11-29 12:10:20 +0000 | [diff] [blame] | 2391 | seq_printf(m, "\nGuC execbuf client @ %p:\n", guc->execbuf_client); |
| 2392 | i915_guc_client_info(m, dev_priv, guc->execbuf_client); |
Chris Wilson | e78c917 | 2018-02-07 21:05:42 +0000 | [diff] [blame] | 2393 | if (guc->preempt_client) { |
| 2394 | seq_printf(m, "\nGuC preempt client @ %p:\n", |
| 2395 | guc->preempt_client); |
| 2396 | i915_guc_client_info(m, dev_priv, guc->preempt_client); |
| 2397 | } |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2398 | |
Akash Goel | 5aa1ee4 | 2016-10-12 21:54:36 +0530 | [diff] [blame] | 2399 | i915_guc_log_info(m, dev_priv); |
| 2400 | |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 2401 | /* Add more as required ... */ |
| 2402 | |
| 2403 | return 0; |
| 2404 | } |
| 2405 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2406 | static int i915_guc_stage_pool(struct seq_file *m, void *data) |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2407 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2408 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2409 | const struct intel_guc *guc = &dev_priv->guc; |
| 2410 | struct guc_stage_desc *desc = guc->stage_desc_pool_vaddr; |
Sagar Arun Kamble | 5afc8b4 | 2017-11-16 19:02:40 +0530 | [diff] [blame] | 2411 | struct intel_guc_client *client = guc->execbuf_client; |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2412 | unsigned int tmp; |
| 2413 | int index; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2414 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2415 | if (!USES_GUC_SUBMISSION(dev_priv)) |
| 2416 | return -ENODEV; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2417 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2418 | for (index = 0; index < GUC_MAX_STAGE_DESCRIPTORS; index++, desc++) { |
| 2419 | struct intel_engine_cs *engine; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2420 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2421 | if (!(desc->attribute & GUC_STAGE_DESC_ATTR_ACTIVE)) |
| 2422 | continue; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2423 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2424 | seq_printf(m, "GuC stage descriptor %u:\n", index); |
| 2425 | seq_printf(m, "\tIndex: %u\n", desc->stage_id); |
| 2426 | seq_printf(m, "\tAttribute: 0x%x\n", desc->attribute); |
| 2427 | seq_printf(m, "\tPriority: %d\n", desc->priority); |
| 2428 | seq_printf(m, "\tDoorbell id: %d\n", desc->db_id); |
| 2429 | seq_printf(m, "\tEngines used: 0x%x\n", |
| 2430 | desc->engines_used); |
| 2431 | seq_printf(m, "\tDoorbell trigger phy: 0x%llx, cpu: 0x%llx, uK: 0x%x\n", |
| 2432 | desc->db_trigger_phy, |
| 2433 | desc->db_trigger_cpu, |
| 2434 | desc->db_trigger_uk); |
| 2435 | seq_printf(m, "\tProcess descriptor: 0x%x\n", |
| 2436 | desc->process_desc); |
Colin Ian King | 9a09485 | 2017-05-16 10:22:35 +0100 | [diff] [blame] | 2437 | seq_printf(m, "\tWorkqueue address: 0x%x, size: 0x%x\n", |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2438 | desc->wq_addr, desc->wq_size); |
| 2439 | seq_putc(m, '\n'); |
| 2440 | |
| 2441 | for_each_engine_masked(engine, dev_priv, client->engines, tmp) { |
| 2442 | u32 guc_engine_id = engine->guc_id; |
| 2443 | struct guc_execlist_context *lrc = |
| 2444 | &desc->lrc[guc_engine_id]; |
| 2445 | |
| 2446 | seq_printf(m, "\t%s LRC:\n", engine->name); |
| 2447 | seq_printf(m, "\t\tContext desc: 0x%x\n", |
| 2448 | lrc->context_desc); |
| 2449 | seq_printf(m, "\t\tContext id: 0x%x\n", lrc->context_id); |
| 2450 | seq_printf(m, "\t\tLRCA: 0x%x\n", lrc->ring_lrca); |
| 2451 | seq_printf(m, "\t\tRing begin: 0x%x\n", lrc->ring_begin); |
| 2452 | seq_printf(m, "\t\tRing end: 0x%x\n", lrc->ring_end); |
| 2453 | seq_putc(m, '\n'); |
| 2454 | } |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2455 | } |
| 2456 | |
Oscar Mateo | a8b9370 | 2017-05-10 15:04:51 +0000 | [diff] [blame] | 2457 | return 0; |
| 2458 | } |
| 2459 | |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2460 | static int i915_guc_log_dump(struct seq_file *m, void *data) |
| 2461 | { |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2462 | struct drm_info_node *node = m->private; |
| 2463 | struct drm_i915_private *dev_priv = node_to_i915(node); |
| 2464 | bool dump_load_err = !!node->info_ent->data; |
| 2465 | struct drm_i915_gem_object *obj = NULL; |
| 2466 | u32 *log; |
| 2467 | int i = 0; |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2468 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2469 | if (!HAS_GUC(dev_priv)) |
| 2470 | return -ENODEV; |
| 2471 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2472 | if (dump_load_err) |
| 2473 | obj = dev_priv->guc.load_err_log; |
| 2474 | else if (dev_priv->guc.log.vma) |
| 2475 | obj = dev_priv->guc.log.vma->obj; |
| 2476 | |
| 2477 | if (!obj) |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2478 | return 0; |
| 2479 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2480 | log = i915_gem_object_pin_map(obj, I915_MAP_WC); |
| 2481 | if (IS_ERR(log)) { |
| 2482 | DRM_DEBUG("Failed to pin object\n"); |
| 2483 | seq_puts(m, "(log data unaccessible)\n"); |
| 2484 | return PTR_ERR(log); |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2485 | } |
| 2486 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2487 | for (i = 0; i < obj->base.size / sizeof(u32); i += 4) |
| 2488 | seq_printf(m, "0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 2489 | *(log + i), *(log + i + 1), |
| 2490 | *(log + i + 2), *(log + i + 3)); |
| 2491 | |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2492 | seq_putc(m, '\n'); |
| 2493 | |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 2494 | i915_gem_object_unpin_map(obj); |
| 2495 | |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 2496 | return 0; |
| 2497 | } |
| 2498 | |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2499 | static int i915_guc_log_control_get(void *data, u64 *val) |
| 2500 | { |
Chris Wilson | bcc36d8 | 2017-04-07 20:42:20 +0100 | [diff] [blame] | 2501 | struct drm_i915_private *dev_priv = data; |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2502 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2503 | if (!HAS_GUC(dev_priv)) |
| 2504 | return -ENODEV; |
| 2505 | |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2506 | if (!dev_priv->guc.log.vma) |
| 2507 | return -EINVAL; |
| 2508 | |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 2509 | *val = i915_modparams.guc_log_level; |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2510 | |
| 2511 | return 0; |
| 2512 | } |
| 2513 | |
| 2514 | static int i915_guc_log_control_set(void *data, u64 val) |
| 2515 | { |
Chris Wilson | bcc36d8 | 2017-04-07 20:42:20 +0100 | [diff] [blame] | 2516 | struct drm_i915_private *dev_priv = data; |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2517 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2518 | if (!HAS_GUC(dev_priv)) |
| 2519 | return -ENODEV; |
| 2520 | |
Sagar Arun Kamble | 065dd5a | 2018-01-24 21:16:59 +0530 | [diff] [blame] | 2521 | return intel_guc_log_control(&dev_priv->guc, val); |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 2522 | } |
| 2523 | |
| 2524 | DEFINE_SIMPLE_ATTRIBUTE(i915_guc_log_control_fops, |
| 2525 | i915_guc_log_control_get, i915_guc_log_control_set, |
| 2526 | "%lld\n"); |
| 2527 | |
Chris Wilson | b86bef20 | 2017-01-16 13:06:21 +0000 | [diff] [blame] | 2528 | static const char *psr2_live_status(u32 val) |
| 2529 | { |
| 2530 | static const char * const live_status[] = { |
| 2531 | "IDLE", |
| 2532 | "CAPTURE", |
| 2533 | "CAPTURE_FS", |
| 2534 | "SLEEP", |
| 2535 | "BUFON_FW", |
| 2536 | "ML_UP", |
| 2537 | "SU_STANDBY", |
| 2538 | "FAST_SLEEP", |
| 2539 | "DEEP_SLEEP", |
| 2540 | "BUF_ON", |
| 2541 | "TG_ON" |
| 2542 | }; |
| 2543 | |
| 2544 | val = (val & EDP_PSR2_STATUS_STATE_MASK) >> EDP_PSR2_STATUS_STATE_SHIFT; |
| 2545 | if (val < ARRAY_SIZE(live_status)) |
| 2546 | return live_status[val]; |
| 2547 | |
| 2548 | return "unknown"; |
| 2549 | } |
| 2550 | |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2551 | static int i915_edp_psr_status(struct seq_file *m, void *data) |
| 2552 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2553 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2554 | u32 psrperf = 0; |
Rodrigo Vivi | a6cbdb8 | 2014-11-14 08:52:40 -0800 | [diff] [blame] | 2555 | u32 stat[3]; |
| 2556 | enum pipe pipe; |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2557 | bool enabled = false; |
Dhinakaran Pandiyan | c9ef291 | 2018-01-03 13:38:24 -0800 | [diff] [blame] | 2558 | bool sink_support; |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2559 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2560 | if (!HAS_PSR(dev_priv)) |
| 2561 | return -ENODEV; |
Damien Lespiau | 3553a8e | 2015-03-09 14:17:58 +0000 | [diff] [blame] | 2562 | |
Dhinakaran Pandiyan | c9ef291 | 2018-01-03 13:38:24 -0800 | [diff] [blame] | 2563 | sink_support = dev_priv->psr.sink_support; |
| 2564 | seq_printf(m, "Sink_Support: %s\n", yesno(sink_support)); |
| 2565 | if (!sink_support) |
| 2566 | return 0; |
| 2567 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2568 | intel_runtime_pm_get(dev_priv); |
| 2569 | |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2570 | mutex_lock(&dev_priv->psr.lock); |
Daniel Vetter | 2807cf6 | 2014-07-11 10:30:11 -0700 | [diff] [blame] | 2571 | seq_printf(m, "Enabled: %s\n", yesno((bool)dev_priv->psr.enabled)); |
Rodrigo Vivi | 5755c78 | 2014-06-12 10:16:45 -0700 | [diff] [blame] | 2572 | seq_printf(m, "Active: %s\n", yesno(dev_priv->psr.active)); |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2573 | seq_printf(m, "Busy frontbuffer bits: 0x%03x\n", |
| 2574 | dev_priv->psr.busy_frontbuffer_bits); |
| 2575 | seq_printf(m, "Re-enable work scheduled: %s\n", |
| 2576 | yesno(work_busy(&dev_priv->psr.work.work))); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2577 | |
Nagaraju, Vathsala | 7e3eb59 | 2016-12-09 23:42:09 +0530 | [diff] [blame] | 2578 | if (HAS_DDI(dev_priv)) { |
| 2579 | if (dev_priv->psr.psr2_support) |
| 2580 | enabled = I915_READ(EDP_PSR2_CTL) & EDP_PSR2_ENABLE; |
| 2581 | else |
| 2582 | enabled = I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE; |
| 2583 | } else { |
Damien Lespiau | 3553a8e | 2015-03-09 14:17:58 +0000 | [diff] [blame] | 2584 | for_each_pipe(dev_priv, pipe) { |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2585 | enum transcoder cpu_transcoder = |
| 2586 | intel_pipe_to_cpu_transcoder(dev_priv, pipe); |
| 2587 | enum intel_display_power_domain power_domain; |
| 2588 | |
| 2589 | power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder); |
| 2590 | if (!intel_display_power_get_if_enabled(dev_priv, |
| 2591 | power_domain)) |
| 2592 | continue; |
| 2593 | |
Damien Lespiau | 3553a8e | 2015-03-09 14:17:58 +0000 | [diff] [blame] | 2594 | stat[pipe] = I915_READ(VLV_PSRSTAT(pipe)) & |
| 2595 | VLV_EDP_PSR_CURR_STATE_MASK; |
| 2596 | if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) || |
| 2597 | (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE)) |
| 2598 | enabled = true; |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2599 | |
| 2600 | intel_display_power_put(dev_priv, power_domain); |
Rodrigo Vivi | a6cbdb8 | 2014-11-14 08:52:40 -0800 | [diff] [blame] | 2601 | } |
| 2602 | } |
Rodrigo Vivi | 60e5ffe | 2016-02-01 12:02:07 -0800 | [diff] [blame] | 2603 | |
| 2604 | seq_printf(m, "Main link in standby mode: %s\n", |
| 2605 | yesno(dev_priv->psr.link_standby)); |
| 2606 | |
Rodrigo Vivi | a6cbdb8 | 2014-11-14 08:52:40 -0800 | [diff] [blame] | 2607 | seq_printf(m, "HW Enabled & Active bit: %s", yesno(enabled)); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2608 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2609 | if (!HAS_DDI(dev_priv)) |
Rodrigo Vivi | a6cbdb8 | 2014-11-14 08:52:40 -0800 | [diff] [blame] | 2610 | for_each_pipe(dev_priv, pipe) { |
| 2611 | if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) || |
| 2612 | (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE)) |
| 2613 | seq_printf(m, " pipe %c", pipe_name(pipe)); |
| 2614 | } |
| 2615 | seq_puts(m, "\n"); |
| 2616 | |
Rodrigo Vivi | 05eec3c | 2015-11-23 14:16:40 -0800 | [diff] [blame] | 2617 | /* |
| 2618 | * VLV/CHV PSR has no kind of performance counter |
| 2619 | * SKL+ Perf counter is reset to 0 everytime DC state is entered |
| 2620 | */ |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2621 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Ville Syrjälä | 443a389 | 2015-11-11 20:34:15 +0200 | [diff] [blame] | 2622 | psrperf = I915_READ(EDP_PSR_PERF_CNT) & |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 2623 | EDP_PSR_PERF_CNT_MASK; |
Rodrigo Vivi | a6cbdb8 | 2014-11-14 08:52:40 -0800 | [diff] [blame] | 2624 | |
| 2625 | seq_printf(m, "Performance_Counter: %u\n", psrperf); |
| 2626 | } |
Nagaraju, Vathsala | 6ba1f9e | 2017-01-06 22:02:32 +0530 | [diff] [blame] | 2627 | if (dev_priv->psr.psr2_support) { |
Dhinakaran Pandiyan | 861023e | 2017-12-20 12:10:21 -0800 | [diff] [blame] | 2628 | u32 psr2 = I915_READ(EDP_PSR2_STATUS); |
Nagaraju, Vathsala | 6ba1f9e | 2017-01-06 22:02:32 +0530 | [diff] [blame] | 2629 | |
Dhinakaran Pandiyan | 861023e | 2017-12-20 12:10:21 -0800 | [diff] [blame] | 2630 | seq_printf(m, "EDP_PSR2_STATUS: %x [%s]\n", |
Chris Wilson | b86bef20 | 2017-01-16 13:06:21 +0000 | [diff] [blame] | 2631 | psr2, psr2_live_status(psr2)); |
Nagaraju, Vathsala | 6ba1f9e | 2017-01-06 22:02:32 +0530 | [diff] [blame] | 2632 | } |
Daniel Vetter | fa128fa | 2014-07-11 10:30:17 -0700 | [diff] [blame] | 2633 | mutex_unlock(&dev_priv->psr.lock); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2634 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 2635 | intel_runtime_pm_put(dev_priv); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 2636 | return 0; |
| 2637 | } |
| 2638 | |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2639 | static int i915_sink_crc(struct seq_file *m, void *data) |
| 2640 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2641 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2642 | struct drm_device *dev = &dev_priv->drm; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2643 | struct intel_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2644 | struct drm_connector_list_iter conn_iter; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2645 | struct intel_dp *intel_dp = NULL; |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2646 | struct drm_modeset_acquire_ctx ctx; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2647 | int ret; |
| 2648 | u8 crc[6]; |
| 2649 | |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2650 | drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE); |
| 2651 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2652 | drm_connector_list_iter_begin(dev, &conn_iter); |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2653 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2654 | for_each_intel_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | 26c17cf | 2016-06-20 15:57:38 +0200 | [diff] [blame] | 2655 | struct drm_crtc *crtc; |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2656 | struct drm_connector_state *state; |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2657 | struct intel_crtc_state *crtc_state; |
Paulo Zanoni | b6ae3c7 | 2014-02-13 17:51:33 -0200 | [diff] [blame] | 2658 | |
Maarten Lankhorst | 26c17cf | 2016-06-20 15:57:38 +0200 | [diff] [blame] | 2659 | if (connector->base.connector_type != DRM_MODE_CONNECTOR_eDP) |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2660 | continue; |
| 2661 | |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2662 | retry: |
| 2663 | ret = drm_modeset_lock(&dev->mode_config.connection_mutex, &ctx); |
| 2664 | if (ret) |
| 2665 | goto err; |
| 2666 | |
| 2667 | state = connector->base.state; |
| 2668 | if (!state->best_encoder) |
| 2669 | continue; |
| 2670 | |
| 2671 | crtc = state->crtc; |
| 2672 | ret = drm_modeset_lock(&crtc->mutex, &ctx); |
| 2673 | if (ret) |
| 2674 | goto err; |
| 2675 | |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2676 | crtc_state = to_intel_crtc_state(crtc->state); |
| 2677 | if (!crtc_state->base.active) |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2678 | continue; |
| 2679 | |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2680 | /* |
| 2681 | * We need to wait for all crtc updates to complete, to make |
| 2682 | * sure any pending modesets and plane updates are completed. |
| 2683 | */ |
| 2684 | if (crtc_state->base.commit) { |
| 2685 | ret = wait_for_completion_interruptible(&crtc_state->base.commit->hw_done); |
| 2686 | |
| 2687 | if (ret) |
| 2688 | goto err; |
| 2689 | } |
| 2690 | |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2691 | intel_dp = enc_to_intel_dp(state->best_encoder); |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2692 | |
Maarten Lankhorst | 9331353 | 2017-11-10 12:34:59 +0100 | [diff] [blame] | 2693 | ret = intel_dp_sink_crc(intel_dp, crtc_state, crc); |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2694 | if (ret) |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2695 | goto err; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2696 | |
| 2697 | seq_printf(m, "%02x%02x%02x%02x%02x%02x\n", |
| 2698 | crc[0], crc[1], crc[2], |
| 2699 | crc[3], crc[4], crc[5]); |
| 2700 | goto out; |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2701 | |
| 2702 | err: |
| 2703 | if (ret == -EDEADLK) { |
| 2704 | ret = drm_modeset_backoff(&ctx); |
| 2705 | if (!ret) |
| 2706 | goto retry; |
| 2707 | } |
| 2708 | goto out; |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2709 | } |
| 2710 | ret = -ENODEV; |
| 2711 | out: |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 2712 | drm_connector_list_iter_end(&conn_iter); |
Maarten Lankhorst | 10bf0a3 | 2017-11-10 12:34:58 +0100 | [diff] [blame] | 2713 | drm_modeset_drop_locks(&ctx); |
| 2714 | drm_modeset_acquire_fini(&ctx); |
| 2715 | |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 2716 | return ret; |
| 2717 | } |
| 2718 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2719 | static int i915_energy_uJ(struct seq_file *m, void *data) |
| 2720 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2721 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2722 | unsigned long long power; |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2723 | u32 units; |
| 2724 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2725 | if (INTEL_GEN(dev_priv) < 6) |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2726 | return -ENODEV; |
| 2727 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 2728 | intel_runtime_pm_get(dev_priv); |
| 2729 | |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2730 | if (rdmsrl_safe(MSR_RAPL_POWER_UNIT, &power)) { |
| 2731 | intel_runtime_pm_put(dev_priv); |
| 2732 | return -ENODEV; |
| 2733 | } |
| 2734 | |
| 2735 | units = (power & 0x1f00) >> 8; |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2736 | power = I915_READ(MCH_SECP_NRG_STTS); |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2737 | power = (1000000 * power) >> units; /* convert to uJ */ |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2738 | |
Paulo Zanoni | 36623ef | 2014-02-21 13:52:23 -0300 | [diff] [blame] | 2739 | intel_runtime_pm_put(dev_priv); |
| 2740 | |
Gabriel Krisman Bertazi | d38014e | 2017-07-26 02:30:16 -0300 | [diff] [blame] | 2741 | seq_printf(m, "%llu", power); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2742 | |
| 2743 | return 0; |
| 2744 | } |
| 2745 | |
Damien Lespiau | 6455c87 | 2015-06-04 18:23:57 +0100 | [diff] [blame] | 2746 | static int i915_runtime_pm_status(struct seq_file *m, void *unused) |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2747 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2748 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 2749 | struct pci_dev *pdev = dev_priv->drm.pdev; |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2750 | |
Chris Wilson | a156e64 | 2016-04-03 14:14:21 +0100 | [diff] [blame] | 2751 | if (!HAS_RUNTIME_PM(dev_priv)) |
| 2752 | seq_puts(m, "Runtime power management not supported\n"); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2753 | |
Chris Wilson | 6f56103 | 2018-01-24 11:36:07 +0000 | [diff] [blame] | 2754 | seq_printf(m, "GPU idle: %s (epoch %u)\n", |
| 2755 | yesno(!dev_priv->gt.awake), dev_priv->gt.epoch); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2756 | seq_printf(m, "IRQs disabled: %s\n", |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 2757 | yesno(!intel_irqs_enabled(dev_priv))); |
Chris Wilson | 0d80418 | 2015-06-15 12:52:28 +0100 | [diff] [blame] | 2758 | #ifdef CONFIG_PM |
Damien Lespiau | a6aaec8 | 2015-06-04 18:23:58 +0100 | [diff] [blame] | 2759 | seq_printf(m, "Usage count: %d\n", |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2760 | atomic_read(&dev_priv->drm.dev->power.usage_count)); |
Chris Wilson | 0d80418 | 2015-06-15 12:52:28 +0100 | [diff] [blame] | 2761 | #else |
| 2762 | seq_printf(m, "Device Power Management (CONFIG_PM) disabled\n"); |
| 2763 | #endif |
Chris Wilson | a156e64 | 2016-04-03 14:14:21 +0100 | [diff] [blame] | 2764 | seq_printf(m, "PCI device power state: %s [%d]\n", |
David Weinehall | 52a05c3 | 2016-08-22 13:32:44 +0300 | [diff] [blame] | 2765 | pci_power_name(pdev->current_state), |
| 2766 | pdev->current_state); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 2767 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 2768 | return 0; |
| 2769 | } |
| 2770 | |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2771 | static int i915_power_domain_info(struct seq_file *m, void *unused) |
| 2772 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2773 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2774 | struct i915_power_domains *power_domains = &dev_priv->power_domains; |
| 2775 | int i; |
| 2776 | |
| 2777 | mutex_lock(&power_domains->lock); |
| 2778 | |
| 2779 | seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count"); |
| 2780 | for (i = 0; i < power_domains->power_well_count; i++) { |
| 2781 | struct i915_power_well *power_well; |
| 2782 | enum intel_display_power_domain power_domain; |
| 2783 | |
| 2784 | power_well = &power_domains->power_wells[i]; |
| 2785 | seq_printf(m, "%-25s %d\n", power_well->name, |
| 2786 | power_well->count); |
| 2787 | |
Joonas Lahtinen | 8385c2e | 2017-02-08 15:12:10 +0200 | [diff] [blame] | 2788 | for_each_power_domain(power_domain, power_well->domains) |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2789 | seq_printf(m, " %-23s %d\n", |
Daniel Stone | 9895ad0 | 2015-11-20 15:55:33 +0000 | [diff] [blame] | 2790 | intel_display_power_domain_str(power_domain), |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2791 | power_domains->domain_use_count[power_domain]); |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 2792 | } |
| 2793 | |
| 2794 | mutex_unlock(&power_domains->lock); |
| 2795 | |
| 2796 | return 0; |
| 2797 | } |
| 2798 | |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2799 | static int i915_dmc_info(struct seq_file *m, void *unused) |
| 2800 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2801 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2802 | struct intel_csr *csr; |
| 2803 | |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 2804 | if (!HAS_CSR(dev_priv)) |
| 2805 | return -ENODEV; |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2806 | |
| 2807 | csr = &dev_priv->csr; |
| 2808 | |
Mika Kuoppala | 6fb403d | 2015-10-30 17:54:47 +0200 | [diff] [blame] | 2809 | intel_runtime_pm_get(dev_priv); |
| 2810 | |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2811 | seq_printf(m, "fw loaded: %s\n", yesno(csr->dmc_payload != NULL)); |
| 2812 | seq_printf(m, "path: %s\n", csr->fw_path); |
| 2813 | |
| 2814 | if (!csr->dmc_payload) |
Mika Kuoppala | 6fb403d | 2015-10-30 17:54:47 +0200 | [diff] [blame] | 2815 | goto out; |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2816 | |
| 2817 | seq_printf(m, "version: %d.%d\n", CSR_VERSION_MAJOR(csr->version), |
| 2818 | CSR_VERSION_MINOR(csr->version)); |
| 2819 | |
Mika Kuoppala | 48de568 | 2017-05-09 13:05:22 +0300 | [diff] [blame] | 2820 | if (IS_KABYLAKE(dev_priv) || |
| 2821 | (IS_SKYLAKE(dev_priv) && csr->version >= CSR_VERSION(1, 6))) { |
Damien Lespiau | 8337206 | 2015-10-30 17:53:32 +0200 | [diff] [blame] | 2822 | seq_printf(m, "DC3 -> DC5 count: %d\n", |
| 2823 | I915_READ(SKL_CSR_DC3_DC5_COUNT)); |
| 2824 | seq_printf(m, "DC5 -> DC6 count: %d\n", |
| 2825 | I915_READ(SKL_CSR_DC5_DC6_COUNT)); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2826 | } else if (IS_BROXTON(dev_priv) && csr->version >= CSR_VERSION(1, 4)) { |
Mika Kuoppala | 16e11b9 | 2015-10-27 14:47:03 +0200 | [diff] [blame] | 2827 | seq_printf(m, "DC3 -> DC5 count: %d\n", |
| 2828 | I915_READ(BXT_CSR_DC3_DC5_COUNT)); |
Damien Lespiau | 8337206 | 2015-10-30 17:53:32 +0200 | [diff] [blame] | 2829 | } |
| 2830 | |
Mika Kuoppala | 6fb403d | 2015-10-30 17:54:47 +0200 | [diff] [blame] | 2831 | out: |
| 2832 | seq_printf(m, "program base: 0x%08x\n", I915_READ(CSR_PROGRAM(0))); |
| 2833 | seq_printf(m, "ssp base: 0x%08x\n", I915_READ(CSR_SSP_BASE)); |
| 2834 | seq_printf(m, "htp: 0x%08x\n", I915_READ(CSR_HTP_SKL)); |
| 2835 | |
Damien Lespiau | 8337206 | 2015-10-30 17:53:32 +0200 | [diff] [blame] | 2836 | intel_runtime_pm_put(dev_priv); |
| 2837 | |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 2838 | return 0; |
| 2839 | } |
| 2840 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2841 | static void intel_seq_print_mode(struct seq_file *m, int tabs, |
| 2842 | struct drm_display_mode *mode) |
| 2843 | { |
| 2844 | int i; |
| 2845 | |
| 2846 | for (i = 0; i < tabs; i++) |
| 2847 | seq_putc(m, '\t'); |
| 2848 | |
| 2849 | 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", |
| 2850 | mode->base.id, mode->name, |
| 2851 | mode->vrefresh, mode->clock, |
| 2852 | mode->hdisplay, mode->hsync_start, |
| 2853 | mode->hsync_end, mode->htotal, |
| 2854 | mode->vdisplay, mode->vsync_start, |
| 2855 | mode->vsync_end, mode->vtotal, |
| 2856 | mode->type, mode->flags); |
| 2857 | } |
| 2858 | |
| 2859 | static void intel_encoder_info(struct seq_file *m, |
| 2860 | struct intel_crtc *intel_crtc, |
| 2861 | struct intel_encoder *intel_encoder) |
| 2862 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2863 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2864 | struct drm_device *dev = &dev_priv->drm; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2865 | struct drm_crtc *crtc = &intel_crtc->base; |
| 2866 | struct intel_connector *intel_connector; |
| 2867 | struct drm_encoder *encoder; |
| 2868 | |
| 2869 | encoder = &intel_encoder->base; |
| 2870 | seq_printf(m, "\tencoder %d: type: %s, connectors:\n", |
Jani Nikula | 8e329a03 | 2014-06-03 14:56:21 +0300 | [diff] [blame] | 2871 | encoder->base.id, encoder->name); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2872 | for_each_connector_on_encoder(dev, encoder, intel_connector) { |
| 2873 | struct drm_connector *connector = &intel_connector->base; |
| 2874 | seq_printf(m, "\t\tconnector %d: type: %s, status: %s", |
| 2875 | connector->base.id, |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 2876 | connector->name, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2877 | drm_get_connector_status_name(connector->status)); |
| 2878 | if (connector->status == connector_status_connected) { |
| 2879 | struct drm_display_mode *mode = &crtc->mode; |
| 2880 | seq_printf(m, ", mode:\n"); |
| 2881 | intel_seq_print_mode(m, 2, mode); |
| 2882 | } else { |
| 2883 | seq_putc(m, '\n'); |
| 2884 | } |
| 2885 | } |
| 2886 | } |
| 2887 | |
| 2888 | static void intel_crtc_info(struct seq_file *m, struct intel_crtc *intel_crtc) |
| 2889 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 2890 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 2891 | struct drm_device *dev = &dev_priv->drm; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2892 | struct drm_crtc *crtc = &intel_crtc->base; |
| 2893 | struct intel_encoder *intel_encoder; |
Maarten Lankhorst | 23a48d5 | 2015-09-10 16:07:57 +0200 | [diff] [blame] | 2894 | struct drm_plane_state *plane_state = crtc->primary->state; |
| 2895 | struct drm_framebuffer *fb = plane_state->fb; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2896 | |
Maarten Lankhorst | 23a48d5 | 2015-09-10 16:07:57 +0200 | [diff] [blame] | 2897 | if (fb) |
Matt Roper | 5aa8a93 | 2014-06-16 10:12:55 -0700 | [diff] [blame] | 2898 | seq_printf(m, "\tfb: %d, pos: %dx%d, size: %dx%d\n", |
Maarten Lankhorst | 23a48d5 | 2015-09-10 16:07:57 +0200 | [diff] [blame] | 2899 | fb->base.id, plane_state->src_x >> 16, |
| 2900 | plane_state->src_y >> 16, fb->width, fb->height); |
Matt Roper | 5aa8a93 | 2014-06-16 10:12:55 -0700 | [diff] [blame] | 2901 | else |
| 2902 | seq_puts(m, "\tprimary plane disabled\n"); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2903 | for_each_encoder_on_crtc(dev, crtc, intel_encoder) |
| 2904 | intel_encoder_info(m, intel_crtc, intel_encoder); |
| 2905 | } |
| 2906 | |
| 2907 | static void intel_panel_info(struct seq_file *m, struct intel_panel *panel) |
| 2908 | { |
| 2909 | struct drm_display_mode *mode = panel->fixed_mode; |
| 2910 | |
| 2911 | seq_printf(m, "\tfixed mode:\n"); |
| 2912 | intel_seq_print_mode(m, 2, mode); |
| 2913 | } |
| 2914 | |
| 2915 | static void intel_dp_info(struct seq_file *m, |
| 2916 | struct intel_connector *intel_connector) |
| 2917 | { |
| 2918 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 2919 | struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base); |
| 2920 | |
| 2921 | 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] | 2922 | seq_printf(m, "\taudio support: %s\n", yesno(intel_dp->has_audio)); |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 2923 | if (intel_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP) |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2924 | intel_panel_info(m, &intel_connector->panel); |
Mika Kahola | 80209e5 | 2016-09-09 14:10:57 +0300 | [diff] [blame] | 2925 | |
| 2926 | drm_dp_downstream_debug(m, intel_dp->dpcd, intel_dp->downstream_ports, |
| 2927 | &intel_dp->aux); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2928 | } |
| 2929 | |
Libin Yang | 9a148a9 | 2016-11-28 20:07:05 +0800 | [diff] [blame] | 2930 | static void intel_dp_mst_info(struct seq_file *m, |
| 2931 | struct intel_connector *intel_connector) |
| 2932 | { |
| 2933 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 2934 | struct intel_dp_mst_encoder *intel_mst = |
| 2935 | enc_to_mst(&intel_encoder->base); |
| 2936 | struct intel_digital_port *intel_dig_port = intel_mst->primary; |
| 2937 | struct intel_dp *intel_dp = &intel_dig_port->dp; |
| 2938 | bool has_audio = drm_dp_mst_port_has_audio(&intel_dp->mst_mgr, |
| 2939 | intel_connector->port); |
| 2940 | |
| 2941 | seq_printf(m, "\taudio support: %s\n", yesno(has_audio)); |
| 2942 | } |
| 2943 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2944 | static void intel_hdmi_info(struct seq_file *m, |
| 2945 | struct intel_connector *intel_connector) |
| 2946 | { |
| 2947 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
| 2948 | struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base); |
| 2949 | |
Jani Nikula | 742f491 | 2015-09-03 11:16:09 +0300 | [diff] [blame] | 2950 | seq_printf(m, "\taudio support: %s\n", yesno(intel_hdmi->has_audio)); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2951 | } |
| 2952 | |
| 2953 | static void intel_lvds_info(struct seq_file *m, |
| 2954 | struct intel_connector *intel_connector) |
| 2955 | { |
| 2956 | intel_panel_info(m, &intel_connector->panel); |
| 2957 | } |
| 2958 | |
| 2959 | static void intel_connector_info(struct seq_file *m, |
| 2960 | struct drm_connector *connector) |
| 2961 | { |
| 2962 | struct intel_connector *intel_connector = to_intel_connector(connector); |
| 2963 | struct intel_encoder *intel_encoder = intel_connector->encoder; |
Jesse Barnes | f103fc7 | 2014-02-20 12:39:57 -0800 | [diff] [blame] | 2964 | struct drm_display_mode *mode; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2965 | |
| 2966 | seq_printf(m, "connector %d: type %s, status: %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 2967 | connector->base.id, connector->name, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 2968 | drm_get_connector_status_name(connector->status)); |
| 2969 | if (connector->status == connector_status_connected) { |
| 2970 | seq_printf(m, "\tname: %s\n", connector->display_info.name); |
| 2971 | seq_printf(m, "\tphysical dimensions: %dx%dmm\n", |
| 2972 | connector->display_info.width_mm, |
| 2973 | connector->display_info.height_mm); |
| 2974 | seq_printf(m, "\tsubpixel order: %s\n", |
| 2975 | drm_get_subpixel_order_name(connector->display_info.subpixel_order)); |
| 2976 | seq_printf(m, "\tCEA rev: %d\n", |
| 2977 | connector->display_info.cea_rev); |
| 2978 | } |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 2979 | |
Maarten Lankhorst | 77d1f61 | 2017-06-26 10:33:49 +0200 | [diff] [blame] | 2980 | if (!intel_encoder) |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 2981 | return; |
| 2982 | |
| 2983 | switch (connector->connector_type) { |
| 2984 | case DRM_MODE_CONNECTOR_DisplayPort: |
| 2985 | case DRM_MODE_CONNECTOR_eDP: |
Libin Yang | 9a148a9 | 2016-11-28 20:07:05 +0800 | [diff] [blame] | 2986 | if (intel_encoder->type == INTEL_OUTPUT_DP_MST) |
| 2987 | intel_dp_mst_info(m, intel_connector); |
| 2988 | else |
| 2989 | intel_dp_info(m, intel_connector); |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 2990 | break; |
| 2991 | case DRM_MODE_CONNECTOR_LVDS: |
| 2992 | if (intel_encoder->type == INTEL_OUTPUT_LVDS) |
Dave Airlie | 36cd744 | 2014-05-02 13:44:18 +1000 | [diff] [blame] | 2993 | intel_lvds_info(m, intel_connector); |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 2994 | break; |
| 2995 | case DRM_MODE_CONNECTOR_HDMIA: |
| 2996 | if (intel_encoder->type == INTEL_OUTPUT_HDMI || |
Ville Syrjälä | 7e732ca | 2017-10-27 22:31:24 +0300 | [diff] [blame] | 2997 | intel_encoder->type == INTEL_OUTPUT_DDI) |
Maarten Lankhorst | ee648a7 | 2016-06-21 12:00:38 +0200 | [diff] [blame] | 2998 | intel_hdmi_info(m, intel_connector); |
| 2999 | break; |
| 3000 | default: |
| 3001 | break; |
Dave Airlie | 36cd744 | 2014-05-02 13:44:18 +1000 | [diff] [blame] | 3002 | } |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3003 | |
Jesse Barnes | f103fc7 | 2014-02-20 12:39:57 -0800 | [diff] [blame] | 3004 | seq_printf(m, "\tmodes:\n"); |
| 3005 | list_for_each_entry(mode, &connector->modes, head) |
| 3006 | intel_seq_print_mode(m, 2, mode); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3007 | } |
| 3008 | |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3009 | static const char *plane_type(enum drm_plane_type type) |
| 3010 | { |
| 3011 | switch (type) { |
| 3012 | case DRM_PLANE_TYPE_OVERLAY: |
| 3013 | return "OVL"; |
| 3014 | case DRM_PLANE_TYPE_PRIMARY: |
| 3015 | return "PRI"; |
| 3016 | case DRM_PLANE_TYPE_CURSOR: |
| 3017 | return "CUR"; |
| 3018 | /* |
| 3019 | * Deliberately omitting default: to generate compiler warnings |
| 3020 | * when a new drm_plane_type gets added. |
| 3021 | */ |
| 3022 | } |
| 3023 | |
| 3024 | return "unknown"; |
| 3025 | } |
| 3026 | |
| 3027 | static const char *plane_rotation(unsigned int rotation) |
| 3028 | { |
| 3029 | static char buf[48]; |
| 3030 | /* |
Robert Foss | c2c446a | 2017-05-19 16:50:17 -0400 | [diff] [blame] | 3031 | * According to doc only one DRM_MODE_ROTATE_ is allowed but this |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3032 | * will print them all to visualize if the values are misused |
| 3033 | */ |
| 3034 | snprintf(buf, sizeof(buf), |
| 3035 | "%s%s%s%s%s%s(0x%08x)", |
Robert Foss | c2c446a | 2017-05-19 16:50:17 -0400 | [diff] [blame] | 3036 | (rotation & DRM_MODE_ROTATE_0) ? "0 " : "", |
| 3037 | (rotation & DRM_MODE_ROTATE_90) ? "90 " : "", |
| 3038 | (rotation & DRM_MODE_ROTATE_180) ? "180 " : "", |
| 3039 | (rotation & DRM_MODE_ROTATE_270) ? "270 " : "", |
| 3040 | (rotation & DRM_MODE_REFLECT_X) ? "FLIPX " : "", |
| 3041 | (rotation & DRM_MODE_REFLECT_Y) ? "FLIPY " : "", |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3042 | rotation); |
| 3043 | |
| 3044 | return buf; |
| 3045 | } |
| 3046 | |
| 3047 | static void intel_plane_info(struct seq_file *m, struct intel_crtc *intel_crtc) |
| 3048 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3049 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3050 | struct drm_device *dev = &dev_priv->drm; |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3051 | struct intel_plane *intel_plane; |
| 3052 | |
| 3053 | for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) { |
| 3054 | struct drm_plane_state *state; |
| 3055 | struct drm_plane *plane = &intel_plane->base; |
Eric Engestrom | b3c11ac | 2016-11-12 01:12:56 +0000 | [diff] [blame] | 3056 | struct drm_format_name_buf format_name; |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3057 | |
| 3058 | if (!plane->state) { |
| 3059 | seq_puts(m, "plane->state is NULL!\n"); |
| 3060 | continue; |
| 3061 | } |
| 3062 | |
| 3063 | state = plane->state; |
| 3064 | |
Eric Engestrom | 90844f0 | 2016-08-15 01:02:38 +0100 | [diff] [blame] | 3065 | if (state->fb) { |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 3066 | drm_get_format_name(state->fb->format->format, |
| 3067 | &format_name); |
Eric Engestrom | 90844f0 | 2016-08-15 01:02:38 +0100 | [diff] [blame] | 3068 | } else { |
Eric Engestrom | b3c11ac | 2016-11-12 01:12:56 +0000 | [diff] [blame] | 3069 | sprintf(format_name.str, "N/A"); |
Eric Engestrom | 90844f0 | 2016-08-15 01:02:38 +0100 | [diff] [blame] | 3070 | } |
| 3071 | |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3072 | 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", |
| 3073 | plane->base.id, |
| 3074 | plane_type(intel_plane->base.type), |
| 3075 | state->crtc_x, state->crtc_y, |
| 3076 | state->crtc_w, state->crtc_h, |
| 3077 | (state->src_x >> 16), |
| 3078 | ((state->src_x & 0xffff) * 15625) >> 10, |
| 3079 | (state->src_y >> 16), |
| 3080 | ((state->src_y & 0xffff) * 15625) >> 10, |
| 3081 | (state->src_w >> 16), |
| 3082 | ((state->src_w & 0xffff) * 15625) >> 10, |
| 3083 | (state->src_h >> 16), |
| 3084 | ((state->src_h & 0xffff) * 15625) >> 10, |
Eric Engestrom | b3c11ac | 2016-11-12 01:12:56 +0000 | [diff] [blame] | 3085 | format_name.str, |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3086 | plane_rotation(state->rotation)); |
| 3087 | } |
| 3088 | } |
| 3089 | |
| 3090 | static void intel_scaler_info(struct seq_file *m, struct intel_crtc *intel_crtc) |
| 3091 | { |
| 3092 | struct intel_crtc_state *pipe_config; |
| 3093 | int num_scalers = intel_crtc->num_scalers; |
| 3094 | int i; |
| 3095 | |
| 3096 | pipe_config = to_intel_crtc_state(intel_crtc->base.state); |
| 3097 | |
| 3098 | /* Not all platformas have a scaler */ |
| 3099 | if (num_scalers) { |
| 3100 | seq_printf(m, "\tnum_scalers=%d, scaler_users=%x scaler_id=%d", |
| 3101 | num_scalers, |
| 3102 | pipe_config->scaler_state.scaler_users, |
| 3103 | pipe_config->scaler_state.scaler_id); |
| 3104 | |
A.Sunil Kamath | 5841591 | 2016-11-20 23:20:26 +0530 | [diff] [blame] | 3105 | for (i = 0; i < num_scalers; i++) { |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3106 | struct intel_scaler *sc = |
| 3107 | &pipe_config->scaler_state.scalers[i]; |
| 3108 | |
| 3109 | seq_printf(m, ", scalers[%d]: use=%s, mode=%x", |
| 3110 | i, yesno(sc->in_use), sc->mode); |
| 3111 | } |
| 3112 | seq_puts(m, "\n"); |
| 3113 | } else { |
| 3114 | seq_puts(m, "\tNo scalers available on this platform\n"); |
| 3115 | } |
| 3116 | } |
| 3117 | |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3118 | static int i915_display_info(struct seq_file *m, void *unused) |
| 3119 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3120 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3121 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 065f2ec2 | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 3122 | struct intel_crtc *crtc; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3123 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3124 | struct drm_connector_list_iter conn_iter; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3125 | |
Paulo Zanoni | b0e5ddf | 2014-04-01 14:55:10 -0300 | [diff] [blame] | 3126 | intel_runtime_pm_get(dev_priv); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3127 | seq_printf(m, "CRTC info\n"); |
| 3128 | seq_printf(m, "---------\n"); |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 3129 | for_each_intel_crtc(dev, crtc) { |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3130 | struct intel_crtc_state *pipe_config; |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3131 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3132 | drm_modeset_lock(&crtc->base.mutex, NULL); |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3133 | pipe_config = to_intel_crtc_state(crtc->base.state); |
| 3134 | |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3135 | seq_printf(m, "CRTC %d: pipe: %c, active=%s, (size=%dx%d), dither=%s, bpp=%d\n", |
Chris Wilson | 065f2ec2 | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 3136 | crtc->base.base.id, pipe_name(crtc->pipe), |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3137 | yesno(pipe_config->base.active), |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3138 | pipe_config->pipe_src_w, pipe_config->pipe_src_h, |
| 3139 | yesno(pipe_config->dither), pipe_config->pipe_bpp); |
| 3140 | |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3141 | if (pipe_config->base.active) { |
Ville Syrjälä | cd5dcbf | 2017-03-27 21:55:35 +0300 | [diff] [blame] | 3142 | struct intel_plane *cursor = |
| 3143 | to_intel_plane(crtc->base.cursor); |
| 3144 | |
Chris Wilson | 065f2ec2 | 2014-03-12 09:13:13 +0000 | [diff] [blame] | 3145 | intel_crtc_info(m, crtc); |
| 3146 | |
Ville Syrjälä | cd5dcbf | 2017-03-27 21:55:35 +0300 | [diff] [blame] | 3147 | seq_printf(m, "\tcursor visible? %s, position (%d, %d), size %dx%d, addr 0x%08x\n", |
| 3148 | yesno(cursor->base.state->visible), |
| 3149 | cursor->base.state->crtc_x, |
| 3150 | cursor->base.state->crtc_y, |
| 3151 | cursor->base.state->crtc_w, |
| 3152 | cursor->base.state->crtc_h, |
| 3153 | cursor->cursor.base); |
Robert Fekete | 3abc4e0 | 2015-10-27 16:58:32 +0100 | [diff] [blame] | 3154 | intel_scaler_info(m, crtc); |
| 3155 | intel_plane_info(m, crtc); |
Paulo Zanoni | a23dc65 | 2014-04-01 14:55:11 -0300 | [diff] [blame] | 3156 | } |
Daniel Vetter | cace841 | 2014-05-22 17:56:31 +0200 | [diff] [blame] | 3157 | |
| 3158 | seq_printf(m, "\tunderrun reporting: cpu=%s pch=%s \n", |
| 3159 | yesno(!crtc->cpu_fifo_underrun_disabled), |
| 3160 | yesno(!crtc->pch_fifo_underrun_disabled)); |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3161 | drm_modeset_unlock(&crtc->base.mutex); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3162 | } |
| 3163 | |
| 3164 | seq_printf(m, "\n"); |
| 3165 | seq_printf(m, "Connector info\n"); |
| 3166 | seq_printf(m, "--------------\n"); |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3167 | mutex_lock(&dev->mode_config.mutex); |
| 3168 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3169 | drm_for_each_connector_iter(connector, &conn_iter) |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3170 | intel_connector_info(m, connector); |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3171 | drm_connector_list_iter_end(&conn_iter); |
| 3172 | mutex_unlock(&dev->mode_config.mutex); |
| 3173 | |
Paulo Zanoni | b0e5ddf | 2014-04-01 14:55:10 -0300 | [diff] [blame] | 3174 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 3175 | |
| 3176 | return 0; |
| 3177 | } |
| 3178 | |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3179 | static int i915_engine_info(struct seq_file *m, void *unused) |
| 3180 | { |
| 3181 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3182 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3183 | enum intel_engine_id id; |
Chris Wilson | f636edb | 2017-10-09 12:02:57 +0100 | [diff] [blame] | 3184 | struct drm_printer p; |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3185 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3186 | intel_runtime_pm_get(dev_priv); |
| 3187 | |
Chris Wilson | 6f56103 | 2018-01-24 11:36:07 +0000 | [diff] [blame] | 3188 | seq_printf(m, "GT awake? %s (epoch %u)\n", |
| 3189 | yesno(dev_priv->gt.awake), dev_priv->gt.epoch); |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 3190 | seq_printf(m, "Global active requests: %d\n", |
| 3191 | dev_priv->gt.active_requests); |
Lionel Landwerlin | f577a03 | 2017-11-13 23:34:53 +0000 | [diff] [blame] | 3192 | seq_printf(m, "CS timestamp frequency: %u kHz\n", |
| 3193 | dev_priv->info.cs_timestamp_frequency_khz); |
Chris Wilson | f73b567 | 2017-03-02 15:03:56 +0000 | [diff] [blame] | 3194 | |
Chris Wilson | f636edb | 2017-10-09 12:02:57 +0100 | [diff] [blame] | 3195 | p = drm_seq_file_printer(m); |
| 3196 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 0db18b1 | 2017-12-08 01:23:00 +0000 | [diff] [blame] | 3197 | intel_engine_dump(engine, &p, "%s\n", engine->name); |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3198 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3199 | intel_runtime_pm_put(dev_priv); |
| 3200 | |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 3201 | return 0; |
| 3202 | } |
| 3203 | |
Chris Wilson | c5418a8 | 2017-10-13 21:26:19 +0100 | [diff] [blame] | 3204 | static int i915_shrinker_info(struct seq_file *m, void *unused) |
| 3205 | { |
| 3206 | struct drm_i915_private *i915 = node_to_i915(m->private); |
| 3207 | |
| 3208 | seq_printf(m, "seeks = %d\n", i915->mm.shrinker.seeks); |
| 3209 | seq_printf(m, "batch = %lu\n", i915->mm.shrinker.batch); |
| 3210 | |
| 3211 | return 0; |
| 3212 | } |
| 3213 | |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3214 | static int i915_shared_dplls_info(struct seq_file *m, void *unused) |
| 3215 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3216 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3217 | struct drm_device *dev = &dev_priv->drm; |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3218 | int i; |
| 3219 | |
| 3220 | drm_modeset_lock_all(dev); |
| 3221 | for (i = 0; i < dev_priv->num_shared_dpll; i++) { |
| 3222 | struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i]; |
| 3223 | |
| 3224 | seq_printf(m, "DPLL%i: %s, id: %i\n", i, pll->name, pll->id); |
Maarten Lankhorst | 2dd66ebd | 2016-03-14 09:27:52 +0100 | [diff] [blame] | 3225 | 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] | 3226 | pll->state.crtc_mask, pll->active_mask, yesno(pll->on)); |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3227 | seq_printf(m, " tracked hardware state:\n"); |
Ander Conselvan de Oliveira | 2c42e53 | 2016-12-29 17:22:09 +0200 | [diff] [blame] | 3228 | 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] | 3229 | seq_printf(m, " dpll_md: 0x%08x\n", |
Ander Conselvan de Oliveira | 2c42e53 | 2016-12-29 17:22:09 +0200 | [diff] [blame] | 3230 | pll->state.hw_state.dpll_md); |
| 3231 | seq_printf(m, " fp0: 0x%08x\n", pll->state.hw_state.fp0); |
| 3232 | seq_printf(m, " fp1: 0x%08x\n", pll->state.hw_state.fp1); |
| 3233 | seq_printf(m, " wrpll: 0x%08x\n", pll->state.hw_state.wrpll); |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 3234 | } |
| 3235 | drm_modeset_unlock_all(dev); |
| 3236 | |
| 3237 | return 0; |
| 3238 | } |
| 3239 | |
Damien Lespiau | 1ed1ef9 | 2014-08-30 16:50:59 +0100 | [diff] [blame] | 3240 | static int i915_wa_registers(struct seq_file *m, void *unused) |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3241 | { |
| 3242 | int i; |
| 3243 | int ret; |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 3244 | struct intel_engine_cs *engine; |
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; |
Arun Siluvery | 33136b0 | 2016-01-21 21:43:47 +0000 | [diff] [blame] | 3247 | struct i915_workarounds *workarounds = &dev_priv->workarounds; |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 3248 | enum intel_engine_id id; |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3249 | |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3250 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 3251 | if (ret) |
| 3252 | return ret; |
| 3253 | |
| 3254 | intel_runtime_pm_get(dev_priv); |
| 3255 | |
Arun Siluvery | 33136b0 | 2016-01-21 21:43:47 +0000 | [diff] [blame] | 3256 | seq_printf(m, "Workarounds applied: %d\n", workarounds->count); |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3257 | for_each_engine(engine, dev_priv, id) |
Arun Siluvery | 33136b0 | 2016-01-21 21:43:47 +0000 | [diff] [blame] | 3258 | seq_printf(m, "HW whitelist count for %s: %d\n", |
Dave Gordon | c3232b1 | 2016-03-23 18:19:53 +0000 | [diff] [blame] | 3259 | engine->name, workarounds->hw_whitelist_count[id]); |
Arun Siluvery | 33136b0 | 2016-01-21 21:43:47 +0000 | [diff] [blame] | 3260 | for (i = 0; i < workarounds->count; ++i) { |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3261 | i915_reg_t addr; |
| 3262 | u32 mask, value, read; |
Mika Kuoppala | 2fa60f6 | 2014-10-07 17:21:27 +0300 | [diff] [blame] | 3263 | bool ok; |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3264 | |
Arun Siluvery | 33136b0 | 2016-01-21 21:43:47 +0000 | [diff] [blame] | 3265 | addr = workarounds->reg[i].addr; |
| 3266 | mask = workarounds->reg[i].mask; |
| 3267 | value = workarounds->reg[i].value; |
Mika Kuoppala | 2fa60f6 | 2014-10-07 17:21:27 +0300 | [diff] [blame] | 3268 | read = I915_READ(addr); |
| 3269 | ok = (value & mask) == (read & mask); |
| 3270 | seq_printf(m, "0x%X: 0x%08X, mask: 0x%08X, read: 0x%08x, status: %s\n", |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 3271 | i915_mmio_reg_offset(addr), value, mask, read, ok ? "OK" : "FAIL"); |
Arun Siluvery | 888b599 | 2014-08-26 14:44:51 +0100 | [diff] [blame] | 3272 | } |
| 3273 | |
| 3274 | intel_runtime_pm_put(dev_priv); |
| 3275 | mutex_unlock(&dev->struct_mutex); |
| 3276 | |
| 3277 | return 0; |
| 3278 | } |
| 3279 | |
Kumar, Mahesh | d2d4f39 | 2017-08-17 19:15:29 +0530 | [diff] [blame] | 3280 | static int i915_ipc_status_show(struct seq_file *m, void *data) |
| 3281 | { |
| 3282 | struct drm_i915_private *dev_priv = m->private; |
| 3283 | |
| 3284 | seq_printf(m, "Isochronous Priority Control: %s\n", |
| 3285 | yesno(dev_priv->ipc_enabled)); |
| 3286 | return 0; |
| 3287 | } |
| 3288 | |
| 3289 | static int i915_ipc_status_open(struct inode *inode, struct file *file) |
| 3290 | { |
| 3291 | struct drm_i915_private *dev_priv = inode->i_private; |
| 3292 | |
| 3293 | if (!HAS_IPC(dev_priv)) |
| 3294 | return -ENODEV; |
| 3295 | |
| 3296 | return single_open(file, i915_ipc_status_show, dev_priv); |
| 3297 | } |
| 3298 | |
| 3299 | static ssize_t i915_ipc_status_write(struct file *file, const char __user *ubuf, |
| 3300 | size_t len, loff_t *offp) |
| 3301 | { |
| 3302 | struct seq_file *m = file->private_data; |
| 3303 | struct drm_i915_private *dev_priv = m->private; |
| 3304 | int ret; |
| 3305 | bool enable; |
| 3306 | |
| 3307 | ret = kstrtobool_from_user(ubuf, len, &enable); |
| 3308 | if (ret < 0) |
| 3309 | return ret; |
| 3310 | |
| 3311 | intel_runtime_pm_get(dev_priv); |
| 3312 | if (!dev_priv->ipc_enabled && enable) |
| 3313 | DRM_INFO("Enabling IPC: WM will be proper only after next commit\n"); |
| 3314 | dev_priv->wm.distrust_bios_wm = true; |
| 3315 | dev_priv->ipc_enabled = enable; |
| 3316 | intel_enable_ipc(dev_priv); |
| 3317 | intel_runtime_pm_put(dev_priv); |
| 3318 | |
| 3319 | return len; |
| 3320 | } |
| 3321 | |
| 3322 | static const struct file_operations i915_ipc_status_fops = { |
| 3323 | .owner = THIS_MODULE, |
| 3324 | .open = i915_ipc_status_open, |
| 3325 | .read = seq_read, |
| 3326 | .llseek = seq_lseek, |
| 3327 | .release = single_release, |
| 3328 | .write = i915_ipc_status_write |
| 3329 | }; |
| 3330 | |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3331 | static int i915_ddb_info(struct seq_file *m, void *unused) |
| 3332 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3333 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3334 | struct drm_device *dev = &dev_priv->drm; |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3335 | struct skl_ddb_allocation *ddb; |
| 3336 | struct skl_ddb_entry *entry; |
| 3337 | enum pipe pipe; |
| 3338 | int plane; |
| 3339 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3340 | if (INTEL_GEN(dev_priv) < 9) |
Michal Wajdeczko | ab309a6 | 2017-12-15 14:36:35 +0000 | [diff] [blame] | 3341 | return -ENODEV; |
Damien Lespiau | 2fcffe1 | 2014-12-03 17:33:24 +0000 | [diff] [blame] | 3342 | |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3343 | drm_modeset_lock_all(dev); |
| 3344 | |
| 3345 | ddb = &dev_priv->wm.skl_hw.ddb; |
| 3346 | |
| 3347 | seq_printf(m, "%-15s%8s%8s%8s\n", "", "Start", "End", "Size"); |
| 3348 | |
| 3349 | for_each_pipe(dev_priv, pipe) { |
| 3350 | seq_printf(m, "Pipe %c\n", pipe_name(pipe)); |
| 3351 | |
Matt Roper | 8b364b4 | 2016-10-26 15:51:28 -0700 | [diff] [blame] | 3352 | for_each_universal_plane(dev_priv, pipe, plane) { |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3353 | entry = &ddb->plane[pipe][plane]; |
| 3354 | seq_printf(m, " Plane%-8d%8u%8u%8u\n", plane + 1, |
| 3355 | entry->start, entry->end, |
| 3356 | skl_ddb_entry_size(entry)); |
| 3357 | } |
| 3358 | |
Matt Roper | 4969d33 | 2015-09-24 15:53:10 -0700 | [diff] [blame] | 3359 | entry = &ddb->plane[pipe][PLANE_CURSOR]; |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 3360 | seq_printf(m, " %-13s%8u%8u%8u\n", "Cursor", entry->start, |
| 3361 | entry->end, skl_ddb_entry_size(entry)); |
| 3362 | } |
| 3363 | |
| 3364 | drm_modeset_unlock_all(dev); |
| 3365 | |
| 3366 | return 0; |
| 3367 | } |
| 3368 | |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3369 | static void drrs_status_per_crtc(struct seq_file *m, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3370 | struct drm_device *dev, |
| 3371 | struct intel_crtc *intel_crtc) |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3372 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 3373 | struct drm_i915_private *dev_priv = to_i915(dev); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3374 | struct i915_drrs *drrs = &dev_priv->drrs; |
| 3375 | int vrefresh = 0; |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3376 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3377 | struct drm_connector_list_iter conn_iter; |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3378 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3379 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3380 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3381 | if (connector->state->crtc != &intel_crtc->base) |
| 3382 | continue; |
| 3383 | |
| 3384 | seq_printf(m, "%s:\n", connector->name); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3385 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3386 | drm_connector_list_iter_end(&conn_iter); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3387 | |
| 3388 | if (dev_priv->vbt.drrs_type == STATIC_DRRS_SUPPORT) |
| 3389 | seq_puts(m, "\tVBT: DRRS_type: Static"); |
| 3390 | else if (dev_priv->vbt.drrs_type == SEAMLESS_DRRS_SUPPORT) |
| 3391 | seq_puts(m, "\tVBT: DRRS_type: Seamless"); |
| 3392 | else if (dev_priv->vbt.drrs_type == DRRS_NOT_SUPPORTED) |
| 3393 | seq_puts(m, "\tVBT: DRRS_type: None"); |
| 3394 | else |
| 3395 | seq_puts(m, "\tVBT: DRRS_type: FIXME: Unrecognized Value"); |
| 3396 | |
| 3397 | seq_puts(m, "\n\n"); |
| 3398 | |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3399 | if (to_intel_crtc_state(intel_crtc->base.state)->has_drrs) { |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3400 | struct intel_panel *panel; |
| 3401 | |
| 3402 | mutex_lock(&drrs->mutex); |
| 3403 | /* DRRS Supported */ |
| 3404 | seq_puts(m, "\tDRRS Supported: Yes\n"); |
| 3405 | |
| 3406 | /* disable_drrs() will make drrs->dp NULL */ |
| 3407 | if (!drrs->dp) { |
C, Ramalingam | ce6e213 | 2017-11-20 09:53:47 +0530 | [diff] [blame] | 3408 | seq_puts(m, "Idleness DRRS: Disabled\n"); |
| 3409 | if (dev_priv->psr.enabled) |
| 3410 | seq_puts(m, |
| 3411 | "\tAs PSR is enabled, DRRS is not enabled\n"); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3412 | mutex_unlock(&drrs->mutex); |
| 3413 | return; |
| 3414 | } |
| 3415 | |
| 3416 | panel = &drrs->dp->attached_connector->panel; |
| 3417 | seq_printf(m, "\t\tBusy_frontbuffer_bits: 0x%X", |
| 3418 | drrs->busy_frontbuffer_bits); |
| 3419 | |
| 3420 | seq_puts(m, "\n\t\t"); |
| 3421 | if (drrs->refresh_rate_type == DRRS_HIGH_RR) { |
| 3422 | seq_puts(m, "DRRS_State: DRRS_HIGH_RR\n"); |
| 3423 | vrefresh = panel->fixed_mode->vrefresh; |
| 3424 | } else if (drrs->refresh_rate_type == DRRS_LOW_RR) { |
| 3425 | seq_puts(m, "DRRS_State: DRRS_LOW_RR\n"); |
| 3426 | vrefresh = panel->downclock_mode->vrefresh; |
| 3427 | } else { |
| 3428 | seq_printf(m, "DRRS_State: Unknown(%d)\n", |
| 3429 | drrs->refresh_rate_type); |
| 3430 | mutex_unlock(&drrs->mutex); |
| 3431 | return; |
| 3432 | } |
| 3433 | seq_printf(m, "\t\tVrefresh: %d", vrefresh); |
| 3434 | |
| 3435 | seq_puts(m, "\n\t\t"); |
| 3436 | mutex_unlock(&drrs->mutex); |
| 3437 | } else { |
| 3438 | /* DRRS not supported. Print the VBT parameter*/ |
| 3439 | seq_puts(m, "\tDRRS Supported : No"); |
| 3440 | } |
| 3441 | seq_puts(m, "\n"); |
| 3442 | } |
| 3443 | |
| 3444 | static int i915_drrs_status(struct seq_file *m, void *unused) |
| 3445 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3446 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3447 | struct drm_device *dev = &dev_priv->drm; |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3448 | struct intel_crtc *intel_crtc; |
| 3449 | int active_crtc_cnt = 0; |
| 3450 | |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3451 | drm_modeset_lock_all(dev); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3452 | for_each_intel_crtc(dev, intel_crtc) { |
Maarten Lankhorst | f77076c | 2015-06-01 12:50:08 +0200 | [diff] [blame] | 3453 | if (intel_crtc->base.state->active) { |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3454 | active_crtc_cnt++; |
| 3455 | seq_printf(m, "\nCRTC %d: ", active_crtc_cnt); |
| 3456 | |
| 3457 | drrs_status_per_crtc(m, dev, intel_crtc); |
| 3458 | } |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3459 | } |
Maarten Lankhorst | 26875fe | 2016-06-20 15:57:36 +0200 | [diff] [blame] | 3460 | drm_modeset_unlock_all(dev); |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 3461 | |
| 3462 | if (!active_crtc_cnt) |
| 3463 | seq_puts(m, "No active crtc found\n"); |
| 3464 | |
| 3465 | return 0; |
| 3466 | } |
| 3467 | |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3468 | static int i915_dp_mst_info(struct seq_file *m, void *unused) |
| 3469 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3470 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 3471 | struct drm_device *dev = &dev_priv->drm; |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3472 | struct intel_encoder *intel_encoder; |
| 3473 | struct intel_digital_port *intel_dig_port; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3474 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3475 | struct drm_connector_list_iter conn_iter; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3476 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3477 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3478 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3479 | if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort) |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3480 | continue; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3481 | |
| 3482 | intel_encoder = intel_attached_encoder(connector); |
| 3483 | if (!intel_encoder || intel_encoder->type == INTEL_OUTPUT_DP_MST) |
| 3484 | continue; |
| 3485 | |
| 3486 | intel_dig_port = enc_to_dig_port(&intel_encoder->base); |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3487 | if (!intel_dig_port->dp.can_mst) |
| 3488 | continue; |
Maarten Lankhorst | b6dabe3 | 2016-06-20 15:57:37 +0200 | [diff] [blame] | 3489 | |
Jim Bride | 40ae80c | 2016-04-14 10:18:37 -0700 | [diff] [blame] | 3490 | seq_printf(m, "MST Source Port %c\n", |
Ville Syrjälä | 8f4f279 | 2017-11-09 17:24:34 +0200 | [diff] [blame] | 3491 | port_name(intel_dig_port->base.port)); |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3492 | drm_dp_mst_dump_topology(m, &intel_dig_port->dp.mst_mgr); |
| 3493 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3494 | drm_connector_list_iter_end(&conn_iter); |
| 3495 | |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 3496 | return 0; |
| 3497 | } |
| 3498 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3499 | static ssize_t i915_displayport_test_active_write(struct file *file, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3500 | const char __user *ubuf, |
| 3501 | size_t len, loff_t *offp) |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3502 | { |
| 3503 | char *input_buffer; |
| 3504 | int status = 0; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3505 | struct drm_device *dev; |
| 3506 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3507 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3508 | struct intel_dp *intel_dp; |
| 3509 | int val = 0; |
| 3510 | |
Sudip Mukherjee | 9aaffa3 | 2015-07-21 17:36:45 +0530 | [diff] [blame] | 3511 | dev = ((struct seq_file *)file->private_data)->private; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3512 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3513 | if (len == 0) |
| 3514 | return 0; |
| 3515 | |
Geliang Tang | 261aeba | 2017-05-06 23:40:17 +0800 | [diff] [blame] | 3516 | input_buffer = memdup_user_nul(ubuf, len); |
| 3517 | if (IS_ERR(input_buffer)) |
| 3518 | return PTR_ERR(input_buffer); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3519 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3520 | DRM_DEBUG_DRIVER("Copied %d bytes from user\n", (unsigned int)len); |
| 3521 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3522 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3523 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3524 | struct intel_encoder *encoder; |
| 3525 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3526 | if (connector->connector_type != |
| 3527 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3528 | continue; |
| 3529 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3530 | encoder = to_intel_encoder(connector->encoder); |
| 3531 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3532 | continue; |
| 3533 | |
| 3534 | if (encoder && connector->status == connector_status_connected) { |
| 3535 | intel_dp = enc_to_intel_dp(&encoder->base); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3536 | status = kstrtoint(input_buffer, 10, &val); |
| 3537 | if (status < 0) |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3538 | break; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3539 | DRM_DEBUG_DRIVER("Got %d for test active\n", val); |
| 3540 | /* To prevent erroneous activation of the compliance |
| 3541 | * testing code, only accept an actual value of 1 here |
| 3542 | */ |
| 3543 | if (val == 1) |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3544 | intel_dp->compliance.test_active = 1; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3545 | else |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3546 | intel_dp->compliance.test_active = 0; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3547 | } |
| 3548 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3549 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3550 | kfree(input_buffer); |
| 3551 | if (status < 0) |
| 3552 | return status; |
| 3553 | |
| 3554 | *offp += len; |
| 3555 | return len; |
| 3556 | } |
| 3557 | |
| 3558 | static int i915_displayport_test_active_show(struct seq_file *m, void *data) |
| 3559 | { |
| 3560 | struct drm_device *dev = m->private; |
| 3561 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3562 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3563 | struct intel_dp *intel_dp; |
| 3564 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3565 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3566 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3567 | struct intel_encoder *encoder; |
| 3568 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3569 | if (connector->connector_type != |
| 3570 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3571 | continue; |
| 3572 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3573 | encoder = to_intel_encoder(connector->encoder); |
| 3574 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3575 | continue; |
| 3576 | |
| 3577 | if (encoder && connector->status == connector_status_connected) { |
| 3578 | intel_dp = enc_to_intel_dp(&encoder->base); |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3579 | if (intel_dp->compliance.test_active) |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3580 | seq_puts(m, "1"); |
| 3581 | else |
| 3582 | seq_puts(m, "0"); |
| 3583 | } else |
| 3584 | seq_puts(m, "0"); |
| 3585 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3586 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3587 | |
| 3588 | return 0; |
| 3589 | } |
| 3590 | |
| 3591 | static int i915_displayport_test_active_open(struct inode *inode, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3592 | struct file *file) |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3593 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3594 | struct drm_i915_private *dev_priv = inode->i_private; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3595 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3596 | return single_open(file, i915_displayport_test_active_show, |
| 3597 | &dev_priv->drm); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3598 | } |
| 3599 | |
| 3600 | static const struct file_operations i915_displayport_test_active_fops = { |
| 3601 | .owner = THIS_MODULE, |
| 3602 | .open = i915_displayport_test_active_open, |
| 3603 | .read = seq_read, |
| 3604 | .llseek = seq_lseek, |
| 3605 | .release = single_release, |
| 3606 | .write = i915_displayport_test_active_write |
| 3607 | }; |
| 3608 | |
| 3609 | static int i915_displayport_test_data_show(struct seq_file *m, void *data) |
| 3610 | { |
| 3611 | struct drm_device *dev = m->private; |
| 3612 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3613 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3614 | struct intel_dp *intel_dp; |
| 3615 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3616 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3617 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3618 | struct intel_encoder *encoder; |
| 3619 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3620 | if (connector->connector_type != |
| 3621 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3622 | continue; |
| 3623 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3624 | encoder = to_intel_encoder(connector->encoder); |
| 3625 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3626 | continue; |
| 3627 | |
| 3628 | if (encoder && connector->status == connector_status_connected) { |
| 3629 | intel_dp = enc_to_intel_dp(&encoder->base); |
Manasi Navare | b48a5ba | 2017-01-20 19:09:28 -0800 | [diff] [blame] | 3630 | if (intel_dp->compliance.test_type == |
| 3631 | DP_TEST_LINK_EDID_READ) |
| 3632 | seq_printf(m, "%lx", |
| 3633 | intel_dp->compliance.test_data.edid); |
Manasi Navare | 611032b | 2017-01-24 08:21:49 -0800 | [diff] [blame] | 3634 | else if (intel_dp->compliance.test_type == |
| 3635 | DP_TEST_LINK_VIDEO_PATTERN) { |
| 3636 | seq_printf(m, "hdisplay: %d\n", |
| 3637 | intel_dp->compliance.test_data.hdisplay); |
| 3638 | seq_printf(m, "vdisplay: %d\n", |
| 3639 | intel_dp->compliance.test_data.vdisplay); |
| 3640 | seq_printf(m, "bpc: %u\n", |
| 3641 | intel_dp->compliance.test_data.bpc); |
| 3642 | } |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3643 | } else |
| 3644 | seq_puts(m, "0"); |
| 3645 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3646 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3647 | |
| 3648 | return 0; |
| 3649 | } |
| 3650 | static int i915_displayport_test_data_open(struct inode *inode, |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3651 | struct file *file) |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3652 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3653 | struct drm_i915_private *dev_priv = inode->i_private; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3654 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3655 | return single_open(file, i915_displayport_test_data_show, |
| 3656 | &dev_priv->drm); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3657 | } |
| 3658 | |
| 3659 | static const struct file_operations i915_displayport_test_data_fops = { |
| 3660 | .owner = THIS_MODULE, |
| 3661 | .open = i915_displayport_test_data_open, |
| 3662 | .read = seq_read, |
| 3663 | .llseek = seq_lseek, |
| 3664 | .release = single_release |
| 3665 | }; |
| 3666 | |
| 3667 | static int i915_displayport_test_type_show(struct seq_file *m, void *data) |
| 3668 | { |
| 3669 | struct drm_device *dev = m->private; |
| 3670 | struct drm_connector *connector; |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3671 | struct drm_connector_list_iter conn_iter; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3672 | struct intel_dp *intel_dp; |
| 3673 | |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3674 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 3675 | drm_for_each_connector_iter(connector, &conn_iter) { |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3676 | struct intel_encoder *encoder; |
| 3677 | |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3678 | if (connector->connector_type != |
| 3679 | DRM_MODE_CONNECTOR_DisplayPort) |
| 3680 | continue; |
| 3681 | |
Maarten Lankhorst | a874b6a | 2017-06-26 10:18:35 +0200 | [diff] [blame] | 3682 | encoder = to_intel_encoder(connector->encoder); |
| 3683 | if (encoder && encoder->type == INTEL_OUTPUT_DP_MST) |
| 3684 | continue; |
| 3685 | |
| 3686 | if (encoder && connector->status == connector_status_connected) { |
| 3687 | intel_dp = enc_to_intel_dp(&encoder->base); |
Manasi Navare | c1617ab | 2016-12-09 16:22:50 -0800 | [diff] [blame] | 3688 | seq_printf(m, "%02lx", intel_dp->compliance.test_type); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3689 | } else |
| 3690 | seq_puts(m, "0"); |
| 3691 | } |
Daniel Vetter | 3f6a5e1 | 2017-03-01 10:52:21 +0100 | [diff] [blame] | 3692 | drm_connector_list_iter_end(&conn_iter); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3693 | |
| 3694 | return 0; |
| 3695 | } |
| 3696 | |
| 3697 | static int i915_displayport_test_type_open(struct inode *inode, |
| 3698 | struct file *file) |
| 3699 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3700 | struct drm_i915_private *dev_priv = inode->i_private; |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3701 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3702 | return single_open(file, i915_displayport_test_type_show, |
| 3703 | &dev_priv->drm); |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 3704 | } |
| 3705 | |
| 3706 | static const struct file_operations i915_displayport_test_type_fops = { |
| 3707 | .owner = THIS_MODULE, |
| 3708 | .open = i915_displayport_test_type_open, |
| 3709 | .read = seq_read, |
| 3710 | .llseek = seq_lseek, |
| 3711 | .release = single_release |
| 3712 | }; |
| 3713 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3714 | 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] | 3715 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3716 | struct drm_i915_private *dev_priv = m->private; |
| 3717 | struct drm_device *dev = &dev_priv->drm; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3718 | int level; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3719 | int num_levels; |
| 3720 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3721 | if (IS_CHERRYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3722 | num_levels = 3; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3723 | else if (IS_VALLEYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3724 | num_levels = 1; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3725 | else if (IS_G4X(dev_priv)) |
| 3726 | num_levels = 3; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3727 | else |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3728 | num_levels = ilk_wm_max_level(dev_priv) + 1; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3729 | |
| 3730 | drm_modeset_lock_all(dev); |
| 3731 | |
| 3732 | for (level = 0; level < num_levels; level++) { |
| 3733 | unsigned int latency = wm[level]; |
| 3734 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3735 | /* |
| 3736 | * - WM1+ latency values in 0.5us units |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3737 | * - latencies are in us on gen9/vlv/chv |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3738 | */ |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3739 | if (INTEL_GEN(dev_priv) >= 9 || |
| 3740 | IS_VALLEYVIEW(dev_priv) || |
| 3741 | IS_CHERRYVIEW(dev_priv) || |
| 3742 | IS_G4X(dev_priv)) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3743 | latency *= 10; |
| 3744 | else if (level > 0) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3745 | latency *= 5; |
| 3746 | |
| 3747 | seq_printf(m, "WM%d %u (%u.%u usec)\n", |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3748 | level, wm[level], latency / 10, latency % 10); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3749 | } |
| 3750 | |
| 3751 | drm_modeset_unlock_all(dev); |
| 3752 | } |
| 3753 | |
| 3754 | static int pri_wm_latency_show(struct seq_file *m, void *data) |
| 3755 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3756 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3757 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3758 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3759 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3760 | latencies = dev_priv->wm.skl_latency; |
| 3761 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3762 | latencies = dev_priv->wm.pri_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3763 | |
| 3764 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3765 | |
| 3766 | return 0; |
| 3767 | } |
| 3768 | |
| 3769 | static int spr_wm_latency_show(struct seq_file *m, void *data) |
| 3770 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3771 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3772 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3773 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3774 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3775 | latencies = dev_priv->wm.skl_latency; |
| 3776 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3777 | latencies = dev_priv->wm.spr_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3778 | |
| 3779 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3780 | |
| 3781 | return 0; |
| 3782 | } |
| 3783 | |
| 3784 | static int cur_wm_latency_show(struct seq_file *m, void *data) |
| 3785 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3786 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3787 | const uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3788 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3789 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3790 | latencies = dev_priv->wm.skl_latency; |
| 3791 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3792 | latencies = dev_priv->wm.cur_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3793 | |
| 3794 | wm_latency_show(m, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3795 | |
| 3796 | return 0; |
| 3797 | } |
| 3798 | |
| 3799 | static int pri_wm_latency_open(struct inode *inode, struct file *file) |
| 3800 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3801 | struct drm_i915_private *dev_priv = inode->i_private; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3802 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3803 | if (INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3804 | return -ENODEV; |
| 3805 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3806 | return single_open(file, pri_wm_latency_show, dev_priv); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3807 | } |
| 3808 | |
| 3809 | static int spr_wm_latency_open(struct inode *inode, struct file *file) |
| 3810 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3811 | struct drm_i915_private *dev_priv = inode->i_private; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3812 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3813 | if (HAS_GMCH_DISPLAY(dev_priv)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3814 | return -ENODEV; |
| 3815 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3816 | return single_open(file, spr_wm_latency_show, dev_priv); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3817 | } |
| 3818 | |
| 3819 | static int cur_wm_latency_open(struct inode *inode, struct file *file) |
| 3820 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3821 | struct drm_i915_private *dev_priv = inode->i_private; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3822 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3823 | if (HAS_GMCH_DISPLAY(dev_priv)) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3824 | return -ENODEV; |
| 3825 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3826 | return single_open(file, cur_wm_latency_show, dev_priv); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3827 | } |
| 3828 | |
| 3829 | 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] | 3830 | size_t len, loff_t *offp, uint16_t wm[8]) |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3831 | { |
| 3832 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3833 | struct drm_i915_private *dev_priv = m->private; |
| 3834 | struct drm_device *dev = &dev_priv->drm; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3835 | uint16_t new[8] = { 0 }; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3836 | int num_levels; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3837 | int level; |
| 3838 | int ret; |
| 3839 | char tmp[32]; |
| 3840 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3841 | if (IS_CHERRYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3842 | num_levels = 3; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3843 | else if (IS_VALLEYVIEW(dev_priv)) |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3844 | num_levels = 1; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 3845 | else if (IS_G4X(dev_priv)) |
| 3846 | num_levels = 3; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3847 | else |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3848 | num_levels = ilk_wm_max_level(dev_priv) + 1; |
Ville Syrjälä | de38b95 | 2015-06-24 22:00:09 +0300 | [diff] [blame] | 3849 | |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3850 | if (len >= sizeof(tmp)) |
| 3851 | return -EINVAL; |
| 3852 | |
| 3853 | if (copy_from_user(tmp, ubuf, len)) |
| 3854 | return -EFAULT; |
| 3855 | |
| 3856 | tmp[len] = '\0'; |
| 3857 | |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3858 | ret = sscanf(tmp, "%hu %hu %hu %hu %hu %hu %hu %hu", |
| 3859 | &new[0], &new[1], &new[2], &new[3], |
| 3860 | &new[4], &new[5], &new[6], &new[7]); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3861 | if (ret != num_levels) |
| 3862 | return -EINVAL; |
| 3863 | |
| 3864 | drm_modeset_lock_all(dev); |
| 3865 | |
| 3866 | for (level = 0; level < num_levels; level++) |
| 3867 | wm[level] = new[level]; |
| 3868 | |
| 3869 | drm_modeset_unlock_all(dev); |
| 3870 | |
| 3871 | return len; |
| 3872 | } |
| 3873 | |
| 3874 | |
| 3875 | static ssize_t pri_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3876 | size_t len, loff_t *offp) |
| 3877 | { |
| 3878 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3879 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3880 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3881 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3882 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3883 | latencies = dev_priv->wm.skl_latency; |
| 3884 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3885 | latencies = dev_priv->wm.pri_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3886 | |
| 3887 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3888 | } |
| 3889 | |
| 3890 | static ssize_t spr_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3891 | size_t len, loff_t *offp) |
| 3892 | { |
| 3893 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3894 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3895 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3896 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3897 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3898 | latencies = dev_priv->wm.skl_latency; |
| 3899 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3900 | latencies = dev_priv->wm.spr_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3901 | |
| 3902 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3903 | } |
| 3904 | |
| 3905 | static ssize_t cur_wm_latency_write(struct file *file, const char __user *ubuf, |
| 3906 | size_t len, loff_t *offp) |
| 3907 | { |
| 3908 | struct seq_file *m = file->private_data; |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3909 | struct drm_i915_private *dev_priv = m->private; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3910 | uint16_t *latencies; |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3911 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3912 | if (INTEL_GEN(dev_priv) >= 9) |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3913 | latencies = dev_priv->wm.skl_latency; |
| 3914 | else |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3915 | latencies = dev_priv->wm.cur_latency; |
Damien Lespiau | 97e94b2 | 2014-11-04 17:06:50 +0000 | [diff] [blame] | 3916 | |
| 3917 | return wm_latency_write(file, ubuf, len, offp, latencies); |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 3918 | } |
| 3919 | |
| 3920 | static const struct file_operations i915_pri_wm_latency_fops = { |
| 3921 | .owner = THIS_MODULE, |
| 3922 | .open = pri_wm_latency_open, |
| 3923 | .read = seq_read, |
| 3924 | .llseek = seq_lseek, |
| 3925 | .release = single_release, |
| 3926 | .write = pri_wm_latency_write |
| 3927 | }; |
| 3928 | |
| 3929 | static const struct file_operations i915_spr_wm_latency_fops = { |
| 3930 | .owner = THIS_MODULE, |
| 3931 | .open = spr_wm_latency_open, |
| 3932 | .read = seq_read, |
| 3933 | .llseek = seq_lseek, |
| 3934 | .release = single_release, |
| 3935 | .write = spr_wm_latency_write |
| 3936 | }; |
| 3937 | |
| 3938 | static const struct file_operations i915_cur_wm_latency_fops = { |
| 3939 | .owner = THIS_MODULE, |
| 3940 | .open = cur_wm_latency_open, |
| 3941 | .read = seq_read, |
| 3942 | .llseek = seq_lseek, |
| 3943 | .release = single_release, |
| 3944 | .write = cur_wm_latency_write |
| 3945 | }; |
| 3946 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3947 | static int |
| 3948 | i915_wedged_get(void *data, u64 *val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3949 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 3950 | struct drm_i915_private *dev_priv = data; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3951 | |
Chris Wilson | d98c52c | 2016-04-13 17:35:05 +0100 | [diff] [blame] | 3952 | *val = i915_terminally_wedged(&dev_priv->gpu_error); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3953 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3954 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3955 | } |
| 3956 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3957 | static int |
| 3958 | i915_wedged_set(void *data, u64 val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3959 | { |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 3960 | struct drm_i915_private *i915 = data; |
| 3961 | struct intel_engine_cs *engine; |
| 3962 | unsigned int tmp; |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 3963 | |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 3964 | /* |
| 3965 | * There is no safeguard against this debugfs entry colliding |
| 3966 | * with the hangcheck calling same i915_handle_error() in |
| 3967 | * parallel, causing an explosion. For now we assume that the |
| 3968 | * test harness is responsible enough not to inject gpu hangs |
| 3969 | * while it is writing to 'i915_wedged' |
| 3970 | */ |
| 3971 | |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 3972 | if (i915_reset_backoff(&i915->gpu_error)) |
Mika Kuoppala | b8d24a0 | 2015-01-28 17:03:14 +0200 | [diff] [blame] | 3973 | return -EAGAIN; |
| 3974 | |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 3975 | for_each_engine_masked(engine, i915, val, tmp) { |
| 3976 | engine->hangcheck.seqno = intel_engine_get_seqno(engine); |
| 3977 | engine->hangcheck.stalled = true; |
| 3978 | } |
Imre Deak | d46c051 | 2014-04-14 20:24:27 +0300 | [diff] [blame] | 3979 | |
Tvrtko Ursulin | c27557ab | 2018-02-28 17:18:44 +0000 | [diff] [blame] | 3980 | i915_handle_error(i915, val, "Manually set wedged engine mask = %llx", |
| 3981 | val); |
Chris Wilson | 598b6b5 | 2017-03-25 13:47:35 +0000 | [diff] [blame] | 3982 | |
| 3983 | wait_on_bit(&i915->gpu_error.flags, |
Chris Wilson | d3df42b | 2017-03-16 17:13:05 +0000 | [diff] [blame] | 3984 | I915_RESET_HANDOFF, |
| 3985 | TASK_UNINTERRUPTIBLE); |
| 3986 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3987 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3988 | } |
| 3989 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3990 | DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops, |
| 3991 | i915_wedged_get, i915_wedged_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 3992 | "%llu\n"); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3993 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3994 | static int |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 3995 | fault_irq_set(struct drm_i915_private *i915, |
| 3996 | unsigned long *irq, |
| 3997 | unsigned long val) |
| 3998 | { |
| 3999 | int err; |
| 4000 | |
| 4001 | err = mutex_lock_interruptible(&i915->drm.struct_mutex); |
| 4002 | if (err) |
| 4003 | return err; |
| 4004 | |
| 4005 | err = i915_gem_wait_for_idle(i915, |
| 4006 | I915_WAIT_LOCKED | |
| 4007 | I915_WAIT_INTERRUPTIBLE); |
| 4008 | if (err) |
| 4009 | goto err_unlock; |
| 4010 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4011 | *irq = val; |
| 4012 | mutex_unlock(&i915->drm.struct_mutex); |
| 4013 | |
| 4014 | /* Flush idle worker to disarm irq */ |
Chris Wilson | 7c26240 | 2017-10-06 11:40:38 +0100 | [diff] [blame] | 4015 | drain_delayed_work(&i915->gt.idle_work); |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4016 | |
| 4017 | return 0; |
| 4018 | |
| 4019 | err_unlock: |
| 4020 | mutex_unlock(&i915->drm.struct_mutex); |
| 4021 | return err; |
| 4022 | } |
| 4023 | |
| 4024 | static int |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4025 | i915_ring_missed_irq_get(void *data, u64 *val) |
| 4026 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4027 | struct drm_i915_private *dev_priv = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4028 | |
| 4029 | *val = dev_priv->gpu_error.missed_irq_rings; |
| 4030 | return 0; |
| 4031 | } |
| 4032 | |
| 4033 | static int |
| 4034 | i915_ring_missed_irq_set(void *data, u64 val) |
| 4035 | { |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4036 | struct drm_i915_private *i915 = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4037 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4038 | return fault_irq_set(i915, &i915->gpu_error.missed_irq_rings, val); |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4039 | } |
| 4040 | |
| 4041 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops, |
| 4042 | i915_ring_missed_irq_get, i915_ring_missed_irq_set, |
| 4043 | "0x%08llx\n"); |
| 4044 | |
| 4045 | static int |
| 4046 | i915_ring_test_irq_get(void *data, u64 *val) |
| 4047 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4048 | struct drm_i915_private *dev_priv = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4049 | |
| 4050 | *val = dev_priv->gpu_error.test_irq_rings; |
| 4051 | |
| 4052 | return 0; |
| 4053 | } |
| 4054 | |
| 4055 | static int |
| 4056 | i915_ring_test_irq_set(void *data, u64 val) |
| 4057 | { |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4058 | struct drm_i915_private *i915 = data; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4059 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4060 | val &= INTEL_INFO(i915)->ring_mask; |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4061 | DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val); |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4062 | |
Chris Wilson | 64486ae | 2017-03-07 15:59:08 +0000 | [diff] [blame] | 4063 | return fault_irq_set(i915, &i915->gpu_error.test_irq_rings, val); |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4064 | } |
| 4065 | |
| 4066 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops, |
| 4067 | i915_ring_test_irq_get, i915_ring_test_irq_set, |
| 4068 | "0x%08llx\n"); |
| 4069 | |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4070 | #define DROP_UNBOUND BIT(0) |
| 4071 | #define DROP_BOUND BIT(1) |
| 4072 | #define DROP_RETIRE BIT(2) |
| 4073 | #define DROP_ACTIVE BIT(3) |
| 4074 | #define DROP_FREED BIT(4) |
| 4075 | #define DROP_SHRINK_ALL BIT(5) |
| 4076 | #define DROP_IDLE BIT(6) |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 4077 | #define DROP_ALL (DROP_UNBOUND | \ |
| 4078 | DROP_BOUND | \ |
| 4079 | DROP_RETIRE | \ |
| 4080 | DROP_ACTIVE | \ |
Chris Wilson | 8eadc19 | 2017-03-08 14:46:22 +0000 | [diff] [blame] | 4081 | DROP_FREED | \ |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4082 | DROP_SHRINK_ALL |\ |
| 4083 | DROP_IDLE) |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4084 | static int |
| 4085 | i915_drop_caches_get(void *data, u64 *val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4086 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4087 | *val = DROP_ALL; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4088 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4089 | return 0; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4090 | } |
| 4091 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4092 | static int |
| 4093 | i915_drop_caches_set(void *data, u64 val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4094 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4095 | struct drm_i915_private *dev_priv = data; |
| 4096 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4097 | int ret = 0; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4098 | |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4099 | DRM_DEBUG("Dropping caches: 0x%08llx [0x%08llx]\n", |
| 4100 | val, val & DROP_ALL); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4101 | |
| 4102 | /* No need to check and wait for gpu resets, only libdrm auto-restarts |
| 4103 | * on ioctls on -EAGAIN. */ |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4104 | if (val & (DROP_ACTIVE | DROP_RETIRE)) { |
| 4105 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4106 | if (ret) |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4107 | return ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4108 | |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4109 | if (val & DROP_ACTIVE) |
| 4110 | ret = i915_gem_wait_for_idle(dev_priv, |
| 4111 | I915_WAIT_INTERRUPTIBLE | |
| 4112 | I915_WAIT_LOCKED); |
| 4113 | |
| 4114 | if (val & DROP_RETIRE) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 4115 | i915_retire_requests(dev_priv); |
Chris Wilson | 00c26cf | 2017-05-24 17:26:53 +0100 | [diff] [blame] | 4116 | |
| 4117 | mutex_unlock(&dev->struct_mutex); |
| 4118 | } |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4119 | |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 4120 | fs_reclaim_acquire(GFP_KERNEL); |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 4121 | if (val & DROP_BOUND) |
Chris Wilson | 912d572 | 2017-09-06 16:19:30 -0700 | [diff] [blame] | 4122 | i915_gem_shrink(dev_priv, LONG_MAX, NULL, I915_SHRINK_BOUND); |
Chris Wilson | 4ad72b7 | 2014-09-03 19:23:37 +0100 | [diff] [blame] | 4123 | |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 4124 | if (val & DROP_UNBOUND) |
Chris Wilson | 912d572 | 2017-09-06 16:19:30 -0700 | [diff] [blame] | 4125 | i915_gem_shrink(dev_priv, LONG_MAX, NULL, I915_SHRINK_UNBOUND); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4126 | |
Chris Wilson | 8eadc19 | 2017-03-08 14:46:22 +0000 | [diff] [blame] | 4127 | if (val & DROP_SHRINK_ALL) |
| 4128 | i915_gem_shrink_all(dev_priv); |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 4129 | fs_reclaim_release(GFP_KERNEL); |
Chris Wilson | 8eadc19 | 2017-03-08 14:46:22 +0000 | [diff] [blame] | 4130 | |
Chris Wilson | b4a0b32 | 2017-10-18 13:16:21 +0100 | [diff] [blame] | 4131 | if (val & DROP_IDLE) |
| 4132 | drain_delayed_work(&dev_priv->gt.idle_work); |
| 4133 | |
Chris Wilson | c9c70471 | 2018-02-19 22:06:31 +0000 | [diff] [blame] | 4134 | if (val & DROP_FREED) |
Chris Wilson | bdeb978 | 2016-12-23 14:57:56 +0000 | [diff] [blame] | 4135 | i915_gem_drain_freed_objects(dev_priv); |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 4136 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4137 | return ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4138 | } |
| 4139 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4140 | DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops, |
| 4141 | i915_drop_caches_get, i915_drop_caches_set, |
| 4142 | "0x%08llx\n"); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 4143 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4144 | static int |
| 4145 | i915_max_freq_get(void *data, u64 *val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4146 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4147 | struct drm_i915_private *dev_priv = data; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4148 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4149 | if (INTEL_GEN(dev_priv) < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4150 | return -ENODEV; |
| 4151 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4152 | *val = intel_gpu_freq(dev_priv, dev_priv->gt_pm.rps.max_freq_softlimit); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4153 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4154 | } |
| 4155 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4156 | static int |
| 4157 | i915_max_freq_set(void *data, u64 val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4158 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4159 | struct drm_i915_private *dev_priv = data; |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4160 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Akash Goel | bc4d91f | 2015-02-26 16:09:47 +0530 | [diff] [blame] | 4161 | u32 hw_max, hw_min; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4162 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4163 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4164 | if (INTEL_GEN(dev_priv) < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4165 | return -ENODEV; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4166 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4167 | DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4168 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 4169 | ret = mutex_lock_interruptible(&dev_priv->pcu_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4170 | if (ret) |
| 4171 | return ret; |
| 4172 | |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4173 | /* |
| 4174 | * Turbo will still be enabled, but won't go above the set value. |
| 4175 | */ |
Akash Goel | bc4d91f | 2015-02-26 16:09:47 +0530 | [diff] [blame] | 4176 | val = intel_freq_opcode(dev_priv, val); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4177 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4178 | hw_max = rps->max_freq; |
| 4179 | hw_min = rps->min_freq; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4180 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4181 | if (val < hw_min || val > hw_max || val < rps->min_freq_softlimit) { |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 4182 | mutex_unlock(&dev_priv->pcu_lock); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4183 | return -EINVAL; |
| 4184 | } |
| 4185 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4186 | rps->max_freq_softlimit = val; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4187 | |
Chris Wilson | 9fcee2f | 2017-01-26 10:19:19 +0000 | [diff] [blame] | 4188 | if (intel_set_rps(dev_priv, val)) |
| 4189 | DRM_DEBUG_DRIVER("failed to update RPS to new softlimit\n"); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4190 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 4191 | mutex_unlock(&dev_priv->pcu_lock); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4192 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4193 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4194 | } |
| 4195 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4196 | DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops, |
| 4197 | i915_max_freq_get, i915_max_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 4198 | "%llu\n"); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 4199 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4200 | static int |
| 4201 | i915_min_freq_get(void *data, u64 *val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4202 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4203 | struct drm_i915_private *dev_priv = data; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4204 | |
Chris Wilson | 62e1baa | 2016-07-13 09:10:36 +0100 | [diff] [blame] | 4205 | if (INTEL_GEN(dev_priv) < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4206 | return -ENODEV; |
| 4207 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4208 | *val = intel_gpu_freq(dev_priv, dev_priv->gt_pm.rps.min_freq_softlimit); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4209 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4210 | } |
| 4211 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4212 | static int |
| 4213 | i915_min_freq_set(void *data, u64 val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4214 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4215 | struct drm_i915_private *dev_priv = data; |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4216 | struct intel_rps *rps = &dev_priv->gt_pm.rps; |
Akash Goel | bc4d91f | 2015-02-26 16:09:47 +0530 | [diff] [blame] | 4217 | u32 hw_max, hw_min; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4218 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4219 | |
Chris Wilson | 62e1baa | 2016-07-13 09:10:36 +0100 | [diff] [blame] | 4220 | if (INTEL_GEN(dev_priv) < 6) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4221 | return -ENODEV; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4222 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4223 | DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4224 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 4225 | ret = mutex_lock_interruptible(&dev_priv->pcu_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4226 | if (ret) |
| 4227 | return ret; |
| 4228 | |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4229 | /* |
| 4230 | * Turbo will still be enabled, but won't go below the set value. |
| 4231 | */ |
Akash Goel | bc4d91f | 2015-02-26 16:09:47 +0530 | [diff] [blame] | 4232 | val = intel_freq_opcode(dev_priv, val); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4233 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4234 | hw_max = rps->max_freq; |
| 4235 | hw_min = rps->min_freq; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4236 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4237 | if (val < hw_min || |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4238 | val > hw_max || val > rps->max_freq_softlimit) { |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 4239 | mutex_unlock(&dev_priv->pcu_lock); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4240 | return -EINVAL; |
| 4241 | } |
| 4242 | |
Sagar Arun Kamble | 562d9ba | 2017-10-10 22:30:06 +0100 | [diff] [blame] | 4243 | rps->min_freq_softlimit = val; |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4244 | |
Chris Wilson | 9fcee2f | 2017-01-26 10:19:19 +0000 | [diff] [blame] | 4245 | if (intel_set_rps(dev_priv, val)) |
| 4246 | DRM_DEBUG_DRIVER("failed to update RPS to new softlimit\n"); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4247 | |
Sagar Arun Kamble | 9f81750 | 2017-10-10 22:30:05 +0100 | [diff] [blame] | 4248 | mutex_unlock(&dev_priv->pcu_lock); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4249 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4250 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4251 | } |
| 4252 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4253 | DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops, |
| 4254 | i915_min_freq_get, i915_min_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 4255 | "%llu\n"); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 4256 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4257 | static int |
| 4258 | i915_cache_sharing_get(void *data, u64 *val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4259 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4260 | struct drm_i915_private *dev_priv = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4261 | u32 snpcr; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4262 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4263 | if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv))) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4264 | return -ENODEV; |
| 4265 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4266 | intel_runtime_pm_get(dev_priv); |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 4267 | |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4268 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4269 | |
| 4270 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4271 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4272 | *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4273 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4274 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4275 | } |
| 4276 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4277 | static int |
| 4278 | i915_cache_sharing_set(void *data, u64 val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4279 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4280 | struct drm_i915_private *dev_priv = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4281 | u32 snpcr; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4282 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4283 | if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv))) |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4284 | return -ENODEV; |
| 4285 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4286 | if (val > 3) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4287 | return -EINVAL; |
| 4288 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4289 | intel_runtime_pm_get(dev_priv); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4290 | DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4291 | |
| 4292 | /* Update the cache sharing policy here as well */ |
| 4293 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 4294 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 4295 | snpcr |= (val << GEN6_MBC_SNPCR_SHIFT); |
| 4296 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
| 4297 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 4298 | intel_runtime_pm_put(dev_priv); |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4299 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4300 | } |
| 4301 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 4302 | DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops, |
| 4303 | i915_cache_sharing_get, i915_cache_sharing_set, |
| 4304 | "%llu\n"); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 4305 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4306 | static void cherryview_sseu_device_status(struct drm_i915_private *dev_priv, |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4307 | struct sseu_dev_info *sseu) |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4308 | { |
Ville Syrjälä | 0a0b457 | 2015-08-21 20:45:27 +0300 | [diff] [blame] | 4309 | int ss_max = 2; |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4310 | int ss; |
| 4311 | u32 sig1[ss_max], sig2[ss_max]; |
| 4312 | |
| 4313 | sig1[0] = I915_READ(CHV_POWER_SS0_SIG1); |
| 4314 | sig1[1] = I915_READ(CHV_POWER_SS1_SIG1); |
| 4315 | sig2[0] = I915_READ(CHV_POWER_SS0_SIG2); |
| 4316 | sig2[1] = I915_READ(CHV_POWER_SS1_SIG2); |
| 4317 | |
| 4318 | for (ss = 0; ss < ss_max; ss++) { |
| 4319 | unsigned int eu_cnt; |
| 4320 | |
| 4321 | if (sig1[ss] & CHV_SS_PG_ENABLE) |
| 4322 | /* skip disabled subslice */ |
| 4323 | continue; |
| 4324 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4325 | sseu->slice_mask = BIT(0); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4326 | sseu->subslice_mask[0] |= BIT(ss); |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4327 | eu_cnt = ((sig1[ss] & CHV_EU08_PG_ENABLE) ? 0 : 2) + |
| 4328 | ((sig1[ss] & CHV_EU19_PG_ENABLE) ? 0 : 2) + |
| 4329 | ((sig1[ss] & CHV_EU210_PG_ENABLE) ? 0 : 2) + |
| 4330 | ((sig2[ss] & CHV_EU311_PG_ENABLE) ? 0 : 2); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4331 | sseu->eu_total += eu_cnt; |
| 4332 | sseu->eu_per_subslice = max_t(unsigned int, |
| 4333 | sseu->eu_per_subslice, eu_cnt); |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4334 | } |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4335 | } |
| 4336 | |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4337 | static void gen10_sseu_device_status(struct drm_i915_private *dev_priv, |
| 4338 | struct sseu_dev_info *sseu) |
| 4339 | { |
| 4340 | const struct intel_device_info *info = INTEL_INFO(dev_priv); |
| 4341 | int s_max = 6, ss_max = 4; |
| 4342 | int s, ss; |
| 4343 | u32 s_reg[s_max], eu_reg[2 * s_max], eu_mask[2]; |
| 4344 | |
| 4345 | for (s = 0; s < s_max; s++) { |
| 4346 | /* |
| 4347 | * FIXME: Valid SS Mask respects the spec and read |
| 4348 | * only valid bits for those registers, excluding reserverd |
| 4349 | * although this seems wrong because it would leave many |
| 4350 | * subslices without ACK. |
| 4351 | */ |
| 4352 | s_reg[s] = I915_READ(GEN10_SLICE_PGCTL_ACK(s)) & |
| 4353 | GEN10_PGCTL_VALID_SS_MASK(s); |
| 4354 | eu_reg[2 * s] = I915_READ(GEN10_SS01_EU_PGCTL_ACK(s)); |
| 4355 | eu_reg[2 * s + 1] = I915_READ(GEN10_SS23_EU_PGCTL_ACK(s)); |
| 4356 | } |
| 4357 | |
| 4358 | eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK | |
| 4359 | GEN9_PGCTL_SSA_EU19_ACK | |
| 4360 | GEN9_PGCTL_SSA_EU210_ACK | |
| 4361 | GEN9_PGCTL_SSA_EU311_ACK; |
| 4362 | eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK | |
| 4363 | GEN9_PGCTL_SSB_EU19_ACK | |
| 4364 | GEN9_PGCTL_SSB_EU210_ACK | |
| 4365 | GEN9_PGCTL_SSB_EU311_ACK; |
| 4366 | |
| 4367 | for (s = 0; s < s_max; s++) { |
| 4368 | if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0) |
| 4369 | /* skip disabled slice */ |
| 4370 | continue; |
| 4371 | |
| 4372 | sseu->slice_mask |= BIT(s); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4373 | sseu->subslice_mask[s] = info->sseu.subslice_mask[s]; |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4374 | |
| 4375 | for (ss = 0; ss < ss_max; ss++) { |
| 4376 | unsigned int eu_cnt; |
| 4377 | |
| 4378 | if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss)))) |
| 4379 | /* skip disabled subslice */ |
| 4380 | continue; |
| 4381 | |
| 4382 | eu_cnt = 2 * hweight32(eu_reg[2 * s + ss / 2] & |
| 4383 | eu_mask[ss % 2]); |
| 4384 | sseu->eu_total += eu_cnt; |
| 4385 | sseu->eu_per_subslice = max_t(unsigned int, |
| 4386 | sseu->eu_per_subslice, |
| 4387 | eu_cnt); |
| 4388 | } |
| 4389 | } |
| 4390 | } |
| 4391 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4392 | static void gen9_sseu_device_status(struct drm_i915_private *dev_priv, |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4393 | struct sseu_dev_info *sseu) |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4394 | { |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4395 | int s_max = 3, ss_max = 4; |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4396 | int s, ss; |
| 4397 | u32 s_reg[s_max], eu_reg[2*s_max], eu_mask[2]; |
| 4398 | |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4399 | /* BXT has a single slice and at most 3 subslices. */ |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 4400 | if (IS_GEN9_LP(dev_priv)) { |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4401 | s_max = 1; |
| 4402 | ss_max = 3; |
| 4403 | } |
| 4404 | |
| 4405 | for (s = 0; s < s_max; s++) { |
| 4406 | s_reg[s] = I915_READ(GEN9_SLICE_PGCTL_ACK(s)); |
| 4407 | eu_reg[2*s] = I915_READ(GEN9_SS01_EU_PGCTL_ACK(s)); |
| 4408 | eu_reg[2*s + 1] = I915_READ(GEN9_SS23_EU_PGCTL_ACK(s)); |
| 4409 | } |
| 4410 | |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4411 | eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK | |
| 4412 | GEN9_PGCTL_SSA_EU19_ACK | |
| 4413 | GEN9_PGCTL_SSA_EU210_ACK | |
| 4414 | GEN9_PGCTL_SSA_EU311_ACK; |
| 4415 | eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK | |
| 4416 | GEN9_PGCTL_SSB_EU19_ACK | |
| 4417 | GEN9_PGCTL_SSB_EU210_ACK | |
| 4418 | GEN9_PGCTL_SSB_EU311_ACK; |
| 4419 | |
| 4420 | for (s = 0; s < s_max; s++) { |
| 4421 | if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0) |
| 4422 | /* skip disabled slice */ |
| 4423 | continue; |
| 4424 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4425 | sseu->slice_mask |= BIT(s); |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4426 | |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4427 | if (IS_GEN9_BC(dev_priv)) |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4428 | sseu->subslice_mask[s] = |
| 4429 | INTEL_INFO(dev_priv)->sseu.subslice_mask[s]; |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4430 | |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4431 | for (ss = 0; ss < ss_max; ss++) { |
| 4432 | unsigned int eu_cnt; |
| 4433 | |
Ander Conselvan de Oliveira | cc3f90f | 2016-12-02 10:23:49 +0200 | [diff] [blame] | 4434 | if (IS_GEN9_LP(dev_priv)) { |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4435 | if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss)))) |
| 4436 | /* skip disabled subslice */ |
| 4437 | continue; |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4438 | |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4439 | sseu->subslice_mask[s] |= BIT(ss); |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4440 | } |
Jeff McGee | 1c046bc | 2015-04-03 18:13:18 -0700 | [diff] [blame] | 4441 | |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4442 | eu_cnt = 2 * hweight32(eu_reg[2*s + ss/2] & |
| 4443 | eu_mask[ss%2]); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4444 | sseu->eu_total += eu_cnt; |
| 4445 | sseu->eu_per_subslice = max_t(unsigned int, |
| 4446 | sseu->eu_per_subslice, |
| 4447 | eu_cnt); |
Jeff McGee | 5d39525 | 2015-04-03 18:13:17 -0700 | [diff] [blame] | 4448 | } |
| 4449 | } |
| 4450 | } |
| 4451 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4452 | static void broadwell_sseu_device_status(struct drm_i915_private *dev_priv, |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4453 | struct sseu_dev_info *sseu) |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4454 | { |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4455 | u32 slice_info = I915_READ(GEN8_GT_SLICE_INFO); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4456 | int s; |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4457 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4458 | sseu->slice_mask = slice_info & GEN8_LSLICESTAT_MASK; |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4459 | |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4460 | if (sseu->slice_mask) { |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 4461 | sseu->eu_per_subslice = |
| 4462 | INTEL_INFO(dev_priv)->sseu.eu_per_subslice; |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4463 | for (s = 0; s < fls(sseu->slice_mask); s++) { |
| 4464 | sseu->subslice_mask[s] = |
| 4465 | INTEL_INFO(dev_priv)->sseu.subslice_mask[s]; |
| 4466 | } |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4467 | sseu->eu_total = sseu->eu_per_subslice * |
| 4468 | sseu_subslice_total(sseu); |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4469 | |
| 4470 | /* subtract fused off EU(s) from enabled slice(s) */ |
Imre Deak | 795b38b | 2016-08-31 19:13:07 +0300 | [diff] [blame] | 4471 | for (s = 0; s < fls(sseu->slice_mask); s++) { |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 4472 | u8 subslice_7eu = |
| 4473 | INTEL_INFO(dev_priv)->sseu.subslice_7eu[s]; |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4474 | |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4475 | sseu->eu_total -= hweight8(subslice_7eu); |
Łukasz Daniluk | 91bedd3 | 2015-09-25 11:54:58 +0200 | [diff] [blame] | 4476 | } |
| 4477 | } |
| 4478 | } |
| 4479 | |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4480 | static void i915_print_sseu_info(struct seq_file *m, bool is_available_info, |
| 4481 | const struct sseu_dev_info *sseu) |
| 4482 | { |
| 4483 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
| 4484 | const char *type = is_available_info ? "Available" : "Enabled"; |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4485 | int s; |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4486 | |
Imre Deak | c67ba53 | 2016-08-31 19:13:06 +0300 | [diff] [blame] | 4487 | seq_printf(m, " %s Slice Mask: %04x\n", type, |
| 4488 | sseu->slice_mask); |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4489 | seq_printf(m, " %s Slice Total: %u\n", type, |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 4490 | hweight8(sseu->slice_mask)); |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4491 | seq_printf(m, " %s Subslice Total: %u\n", type, |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 4492 | sseu_subslice_total(sseu)); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4493 | for (s = 0; s < fls(sseu->slice_mask); s++) { |
| 4494 | seq_printf(m, " %s Slice%i subslices: %u\n", type, |
| 4495 | s, hweight8(sseu->subslice_mask[s])); |
| 4496 | } |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4497 | seq_printf(m, " %s EU Total: %u\n", type, |
| 4498 | sseu->eu_total); |
| 4499 | seq_printf(m, " %s EU Per Subslice: %u\n", type, |
| 4500 | sseu->eu_per_subslice); |
| 4501 | |
| 4502 | if (!is_available_info) |
| 4503 | return; |
| 4504 | |
| 4505 | seq_printf(m, " Has Pooled EU: %s\n", yesno(HAS_POOLED_EU(dev_priv))); |
| 4506 | if (HAS_POOLED_EU(dev_priv)) |
| 4507 | seq_printf(m, " Min EU in pool: %u\n", sseu->min_eu_in_pool); |
| 4508 | |
| 4509 | seq_printf(m, " Has Slice Power Gating: %s\n", |
| 4510 | yesno(sseu->has_slice_pg)); |
| 4511 | seq_printf(m, " Has Subslice Power Gating: %s\n", |
| 4512 | yesno(sseu->has_subslice_pg)); |
| 4513 | seq_printf(m, " Has EU Power Gating: %s\n", |
| 4514 | yesno(sseu->has_eu_pg)); |
| 4515 | } |
| 4516 | |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4517 | static int i915_sseu_status(struct seq_file *m, void *unused) |
| 4518 | { |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4519 | struct drm_i915_private *dev_priv = node_to_i915(m->private); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4520 | struct sseu_dev_info sseu; |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4521 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4522 | if (INTEL_GEN(dev_priv) < 8) |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4523 | return -ENODEV; |
| 4524 | |
| 4525 | seq_puts(m, "SSEU Device Info\n"); |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4526 | i915_print_sseu_info(m, true, &INTEL_INFO(dev_priv)->sseu); |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4527 | |
Jeff McGee | 7f992ab | 2015-02-13 10:27:55 -0600 | [diff] [blame] | 4528 | seq_puts(m, "SSEU Device Status\n"); |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4529 | memset(&sseu, 0, sizeof(sseu)); |
Lionel Landwerlin | 8cc7669 | 2018-03-06 12:28:52 +0000 | [diff] [blame^] | 4530 | sseu.max_slices = INTEL_INFO(dev_priv)->sseu.max_slices; |
| 4531 | sseu.max_subslices = INTEL_INFO(dev_priv)->sseu.max_subslices; |
| 4532 | sseu.max_eus_per_subslice = |
| 4533 | INTEL_INFO(dev_priv)->sseu.max_eus_per_subslice; |
David Weinehall | 238010e | 2016-08-01 17:33:27 +0300 | [diff] [blame] | 4534 | |
| 4535 | intel_runtime_pm_get(dev_priv); |
| 4536 | |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4537 | if (IS_CHERRYVIEW(dev_priv)) { |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4538 | cherryview_sseu_device_status(dev_priv, &sseu); |
David Weinehall | 36cdd01 | 2016-08-22 13:59:31 +0300 | [diff] [blame] | 4539 | } else if (IS_BROADWELL(dev_priv)) { |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4540 | broadwell_sseu_device_status(dev_priv, &sseu); |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4541 | } else if (IS_GEN9(dev_priv)) { |
Imre Deak | 915490d | 2016-08-31 19:13:01 +0300 | [diff] [blame] | 4542 | gen9_sseu_device_status(dev_priv, &sseu); |
Rodrigo Vivi | f8c3dcf | 2017-10-25 17:15:46 -0700 | [diff] [blame] | 4543 | } else if (INTEL_GEN(dev_priv) >= 10) { |
| 4544 | gen10_sseu_device_status(dev_priv, &sseu); |
Jeff McGee | 7f992ab | 2015-02-13 10:27:55 -0600 | [diff] [blame] | 4545 | } |
David Weinehall | 238010e | 2016-08-01 17:33:27 +0300 | [diff] [blame] | 4546 | |
| 4547 | intel_runtime_pm_put(dev_priv); |
| 4548 | |
Imre Deak | 615d890 | 2016-08-31 19:13:03 +0300 | [diff] [blame] | 4549 | i915_print_sseu_info(m, false, &sseu); |
Jeff McGee | 7f992ab | 2015-02-13 10:27:55 -0600 | [diff] [blame] | 4550 | |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4551 | return 0; |
| 4552 | } |
| 4553 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4554 | static int i915_forcewake_open(struct inode *inode, struct file *file) |
| 4555 | { |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4556 | struct drm_i915_private *i915 = inode->i_private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4557 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4558 | if (INTEL_GEN(i915) < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4559 | return 0; |
| 4560 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4561 | intel_runtime_pm_get(i915); |
| 4562 | intel_uncore_forcewake_user_get(i915); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4563 | |
| 4564 | return 0; |
| 4565 | } |
| 4566 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 4567 | static int i915_forcewake_release(struct inode *inode, struct file *file) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4568 | { |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4569 | struct drm_i915_private *i915 = inode->i_private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4570 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4571 | if (INTEL_GEN(i915) < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4572 | return 0; |
| 4573 | |
Chris Wilson | d7a133d | 2017-09-07 14:44:41 +0100 | [diff] [blame] | 4574 | intel_uncore_forcewake_user_put(i915); |
| 4575 | intel_runtime_pm_put(i915); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 4576 | |
| 4577 | return 0; |
| 4578 | } |
| 4579 | |
| 4580 | static const struct file_operations i915_forcewake_fops = { |
| 4581 | .owner = THIS_MODULE, |
| 4582 | .open = i915_forcewake_open, |
| 4583 | .release = i915_forcewake_release, |
| 4584 | }; |
| 4585 | |
Lyude | 317eaa9 | 2017-02-03 21:18:25 -0500 | [diff] [blame] | 4586 | static int i915_hpd_storm_ctl_show(struct seq_file *m, void *data) |
| 4587 | { |
| 4588 | struct drm_i915_private *dev_priv = m->private; |
| 4589 | struct i915_hotplug *hotplug = &dev_priv->hotplug; |
| 4590 | |
| 4591 | seq_printf(m, "Threshold: %d\n", hotplug->hpd_storm_threshold); |
| 4592 | seq_printf(m, "Detected: %s\n", |
| 4593 | yesno(delayed_work_pending(&hotplug->reenable_work))); |
| 4594 | |
| 4595 | return 0; |
| 4596 | } |
| 4597 | |
| 4598 | static ssize_t i915_hpd_storm_ctl_write(struct file *file, |
| 4599 | const char __user *ubuf, size_t len, |
| 4600 | loff_t *offp) |
| 4601 | { |
| 4602 | struct seq_file *m = file->private_data; |
| 4603 | struct drm_i915_private *dev_priv = m->private; |
| 4604 | struct i915_hotplug *hotplug = &dev_priv->hotplug; |
| 4605 | unsigned int new_threshold; |
| 4606 | int i; |
| 4607 | char *newline; |
| 4608 | char tmp[16]; |
| 4609 | |
| 4610 | if (len >= sizeof(tmp)) |
| 4611 | return -EINVAL; |
| 4612 | |
| 4613 | if (copy_from_user(tmp, ubuf, len)) |
| 4614 | return -EFAULT; |
| 4615 | |
| 4616 | tmp[len] = '\0'; |
| 4617 | |
| 4618 | /* Strip newline, if any */ |
| 4619 | newline = strchr(tmp, '\n'); |
| 4620 | if (newline) |
| 4621 | *newline = '\0'; |
| 4622 | |
| 4623 | if (strcmp(tmp, "reset") == 0) |
| 4624 | new_threshold = HPD_STORM_DEFAULT_THRESHOLD; |
| 4625 | else if (kstrtouint(tmp, 10, &new_threshold) != 0) |
| 4626 | return -EINVAL; |
| 4627 | |
| 4628 | if (new_threshold > 0) |
| 4629 | DRM_DEBUG_KMS("Setting HPD storm detection threshold to %d\n", |
| 4630 | new_threshold); |
| 4631 | else |
| 4632 | DRM_DEBUG_KMS("Disabling HPD storm detection\n"); |
| 4633 | |
| 4634 | spin_lock_irq(&dev_priv->irq_lock); |
| 4635 | hotplug->hpd_storm_threshold = new_threshold; |
| 4636 | /* Reset the HPD storm stats so we don't accidentally trigger a storm */ |
| 4637 | for_each_hpd_pin(i) |
| 4638 | hotplug->stats[i].count = 0; |
| 4639 | spin_unlock_irq(&dev_priv->irq_lock); |
| 4640 | |
| 4641 | /* Re-enable hpd immediately if we were in an irq storm */ |
| 4642 | flush_delayed_work(&dev_priv->hotplug.reenable_work); |
| 4643 | |
| 4644 | return len; |
| 4645 | } |
| 4646 | |
| 4647 | static int i915_hpd_storm_ctl_open(struct inode *inode, struct file *file) |
| 4648 | { |
| 4649 | return single_open(file, i915_hpd_storm_ctl_show, inode->i_private); |
| 4650 | } |
| 4651 | |
| 4652 | static const struct file_operations i915_hpd_storm_ctl_fops = { |
| 4653 | .owner = THIS_MODULE, |
| 4654 | .open = i915_hpd_storm_ctl_open, |
| 4655 | .read = seq_read, |
| 4656 | .llseek = seq_lseek, |
| 4657 | .release = single_release, |
| 4658 | .write = i915_hpd_storm_ctl_write |
| 4659 | }; |
| 4660 | |
C, Ramalingam | 35954e8 | 2017-11-08 00:08:23 +0530 | [diff] [blame] | 4661 | static int i915_drrs_ctl_set(void *data, u64 val) |
| 4662 | { |
| 4663 | struct drm_i915_private *dev_priv = data; |
| 4664 | struct drm_device *dev = &dev_priv->drm; |
| 4665 | struct intel_crtc *intel_crtc; |
| 4666 | struct intel_encoder *encoder; |
| 4667 | struct intel_dp *intel_dp; |
| 4668 | |
| 4669 | if (INTEL_GEN(dev_priv) < 7) |
| 4670 | return -ENODEV; |
| 4671 | |
| 4672 | drm_modeset_lock_all(dev); |
| 4673 | for_each_intel_crtc(dev, intel_crtc) { |
| 4674 | if (!intel_crtc->base.state->active || |
| 4675 | !intel_crtc->config->has_drrs) |
| 4676 | continue; |
| 4677 | |
| 4678 | for_each_encoder_on_crtc(dev, &intel_crtc->base, encoder) { |
| 4679 | if (encoder->type != INTEL_OUTPUT_EDP) |
| 4680 | continue; |
| 4681 | |
| 4682 | DRM_DEBUG_DRIVER("Manually %sabling DRRS. %llu\n", |
| 4683 | val ? "en" : "dis", val); |
| 4684 | |
| 4685 | intel_dp = enc_to_intel_dp(&encoder->base); |
| 4686 | if (val) |
| 4687 | intel_edp_drrs_enable(intel_dp, |
| 4688 | intel_crtc->config); |
| 4689 | else |
| 4690 | intel_edp_drrs_disable(intel_dp, |
| 4691 | intel_crtc->config); |
| 4692 | } |
| 4693 | } |
| 4694 | drm_modeset_unlock_all(dev); |
| 4695 | |
| 4696 | return 0; |
| 4697 | } |
| 4698 | |
| 4699 | DEFINE_SIMPLE_ATTRIBUTE(i915_drrs_ctl_fops, NULL, i915_drrs_ctl_set, "%llu\n"); |
| 4700 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 4701 | static const struct drm_info_list i915_debugfs_list[] = { |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 4702 | {"i915_capabilities", i915_capabilities, 0}, |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 4703 | {"i915_gem_objects", i915_gem_object_info, 0}, |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 4704 | {"i915_gem_gtt", i915_gem_gtt_info, 0}, |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 4705 | {"i915_gem_stolen", i915_gem_stolen_list_info }, |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 4706 | {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4707 | {"i915_gem_interrupt", i915_interrupt_info, 0}, |
Brad Volkin | 493018d | 2014-12-11 12:13:08 -0800 | [diff] [blame] | 4708 | {"i915_gem_batch_pool", i915_gem_batch_pool_info, 0}, |
Dave Gordon | 8b417c2 | 2015-08-12 15:43:44 +0100 | [diff] [blame] | 4709 | {"i915_guc_info", i915_guc_info, 0}, |
Alex Dai | fdf5d35 | 2015-08-12 15:43:37 +0100 | [diff] [blame] | 4710 | {"i915_guc_load_status", i915_guc_load_status_info, 0}, |
Alex Dai | 4c7e77f | 2015-08-12 15:43:40 +0100 | [diff] [blame] | 4711 | {"i915_guc_log_dump", i915_guc_log_dump, 0}, |
Daniele Ceraolo Spurio | ac58d2a | 2017-05-22 10:50:28 -0700 | [diff] [blame] | 4712 | {"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] | 4713 | {"i915_guc_stage_pool", i915_guc_stage_pool, 0}, |
Anusha Srivatsa | 0509ead | 2017-01-18 08:05:56 -0800 | [diff] [blame] | 4714 | {"i915_huc_load_status", i915_huc_load_status_info, 0}, |
Deepak S | adb4bd1 | 2014-03-31 11:30:02 +0530 | [diff] [blame] | 4715 | {"i915_frequency_info", i915_frequency_info, 0}, |
Chris Wilson | f654449 | 2015-01-26 18:03:04 +0200 | [diff] [blame] | 4716 | {"i915_hangcheck_info", i915_hangcheck_info, 0}, |
Michel Thierry | 061d06a | 2017-06-20 10:57:49 +0100 | [diff] [blame] | 4717 | {"i915_reset_info", i915_reset_info, 0}, |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 4718 | {"i915_drpc_info", i915_drpc_info, 0}, |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 4719 | {"i915_emon_status", i915_emon_status, 0}, |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 4720 | {"i915_ring_freq_table", i915_ring_freq_table, 0}, |
Daniel Vetter | 9a85178 | 2015-06-18 10:30:22 +0200 | [diff] [blame] | 4721 | {"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0}, |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 4722 | {"i915_fbc_status", i915_fbc_status, 0}, |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 4723 | {"i915_ips_status", i915_ips_status, 0}, |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 4724 | {"i915_sr_status", i915_sr_status, 0}, |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 4725 | {"i915_opregion", i915_opregion, 0}, |
Jani Nikula | ada8f95 | 2015-12-15 13:17:12 +0200 | [diff] [blame] | 4726 | {"i915_vbt", i915_vbt, 0}, |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 4727 | {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0}, |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 4728 | {"i915_context_status", i915_context_status, 0}, |
Mika Kuoppala | f65367b | 2015-01-16 11:34:42 +0200 | [diff] [blame] | 4729 | {"i915_forcewake_domains", i915_forcewake_domains, 0}, |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 4730 | {"i915_swizzle_info", i915_swizzle_info, 0}, |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 4731 | {"i915_ppgtt_info", i915_ppgtt_info, 0}, |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 4732 | {"i915_llc", i915_llc, 0}, |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 4733 | {"i915_edp_psr_status", i915_edp_psr_status, 0}, |
Rodrigo Vivi | d2e216d | 2014-01-24 13:36:17 -0200 | [diff] [blame] | 4734 | {"i915_sink_crc_eDP1", i915_sink_crc, 0}, |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 4735 | {"i915_energy_uJ", i915_energy_uJ, 0}, |
Damien Lespiau | 6455c87 | 2015-06-04 18:23:57 +0100 | [diff] [blame] | 4736 | {"i915_runtime_pm_status", i915_runtime_pm_status, 0}, |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame] | 4737 | {"i915_power_domain_info", i915_power_domain_info, 0}, |
Damien Lespiau | b7cec66 | 2015-10-27 14:47:01 +0200 | [diff] [blame] | 4738 | {"i915_dmc_info", i915_dmc_info, 0}, |
Jesse Barnes | 53f5e3c | 2014-02-07 12:48:15 -0800 | [diff] [blame] | 4739 | {"i915_display_info", i915_display_info, 0}, |
Chris Wilson | 1b36595 | 2016-10-04 21:11:31 +0100 | [diff] [blame] | 4740 | {"i915_engine_info", i915_engine_info, 0}, |
Chris Wilson | c5418a8 | 2017-10-13 21:26:19 +0100 | [diff] [blame] | 4741 | {"i915_shrinker_info", i915_shrinker_info, 0}, |
Daniel Vetter | 728e29d | 2014-06-25 22:01:53 +0300 | [diff] [blame] | 4742 | {"i915_shared_dplls_info", i915_shared_dplls_info, 0}, |
Dave Airlie | 11bed95 | 2014-05-12 15:22:27 +1000 | [diff] [blame] | 4743 | {"i915_dp_mst_info", i915_dp_mst_info, 0}, |
Damien Lespiau | 1ed1ef9 | 2014-08-30 16:50:59 +0100 | [diff] [blame] | 4744 | {"i915_wa_registers", i915_wa_registers, 0}, |
Damien Lespiau | c5511e4 | 2014-11-04 17:06:51 +0000 | [diff] [blame] | 4745 | {"i915_ddb_info", i915_ddb_info, 0}, |
Jeff McGee | 3873218 | 2015-02-13 10:27:54 -0600 | [diff] [blame] | 4746 | {"i915_sseu_status", i915_sseu_status, 0}, |
Vandana Kannan | a54746e | 2015-03-03 20:53:10 +0530 | [diff] [blame] | 4747 | {"i915_drrs_status", i915_drrs_status, 0}, |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 4748 | {"i915_rps_boost_info", i915_rps_boost_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4749 | }; |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4750 | #define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4751 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 4752 | static const struct i915_debugfs_files { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4753 | const char *name; |
| 4754 | const struct file_operations *fops; |
| 4755 | } i915_debugfs_files[] = { |
| 4756 | {"i915_wedged", &i915_wedged_fops}, |
| 4757 | {"i915_max_freq", &i915_max_freq_fops}, |
| 4758 | {"i915_min_freq", &i915_min_freq_fops}, |
| 4759 | {"i915_cache_sharing", &i915_cache_sharing_fops}, |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 4760 | {"i915_ring_missed_irq", &i915_ring_missed_irq_fops}, |
| 4761 | {"i915_ring_test_irq", &i915_ring_test_irq_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4762 | {"i915_gem_drop_caches", &i915_drop_caches_fops}, |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 4763 | #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4764 | {"i915_error_state", &i915_error_state_fops}, |
Chris Wilson | 5a4c6f1 | 2017-02-14 16:46:11 +0000 | [diff] [blame] | 4765 | {"i915_gpu_info", &i915_gpu_info_fops}, |
Chris Wilson | 98a2f41 | 2016-10-12 10:05:18 +0100 | [diff] [blame] | 4766 | #endif |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4767 | {"i915_next_seqno", &i915_next_seqno_fops}, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 4768 | {"i915_display_crc_ctl", &i915_display_crc_ctl_fops}, |
Ville Syrjälä | 369a134 | 2014-01-22 14:36:08 +0200 | [diff] [blame] | 4769 | {"i915_pri_wm_latency", &i915_pri_wm_latency_fops}, |
| 4770 | {"i915_spr_wm_latency", &i915_spr_wm_latency_fops}, |
| 4771 | {"i915_cur_wm_latency", &i915_cur_wm_latency_fops}, |
Ville Syrjälä | 4127dc4 | 2017-06-06 15:44:12 +0300 | [diff] [blame] | 4772 | {"i915_fbc_false_color", &i915_fbc_false_color_fops}, |
Todd Previte | eb3394fa | 2015-04-18 00:04:19 -0700 | [diff] [blame] | 4773 | {"i915_dp_test_data", &i915_displayport_test_data_fops}, |
| 4774 | {"i915_dp_test_type", &i915_displayport_test_type_fops}, |
Sagar Arun Kamble | 685534e | 2016-10-12 21:54:41 +0530 | [diff] [blame] | 4775 | {"i915_dp_test_active", &i915_displayport_test_active_fops}, |
Lyude | 317eaa9 | 2017-02-03 21:18:25 -0500 | [diff] [blame] | 4776 | {"i915_guc_log_control", &i915_guc_log_control_fops}, |
Kumar, Mahesh | d2d4f39 | 2017-08-17 19:15:29 +0530 | [diff] [blame] | 4777 | {"i915_hpd_storm_ctl", &i915_hpd_storm_ctl_fops}, |
C, Ramalingam | 35954e8 | 2017-11-08 00:08:23 +0530 | [diff] [blame] | 4778 | {"i915_ipc_status", &i915_ipc_status_fops}, |
| 4779 | {"i915_drrs_ctl", &i915_drrs_ctl_fops} |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4780 | }; |
| 4781 | |
Chris Wilson | 1dac891 | 2016-06-24 14:00:17 +0100 | [diff] [blame] | 4782 | int i915_debugfs_register(struct drm_i915_private *dev_priv) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4783 | { |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 4784 | struct drm_minor *minor = dev_priv->drm.primary; |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4785 | struct dentry *ent; |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4786 | int ret, i; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 4787 | |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4788 | ent = debugfs_create_file("i915_forcewake_user", S_IRUSR, |
| 4789 | minor->debugfs_root, to_i915(minor->dev), |
| 4790 | &i915_forcewake_fops); |
| 4791 | if (!ent) |
| 4792 | return -ENOMEM; |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 4793 | |
Tomeu Vizoso | 731035f | 2016-12-12 13:29:48 +0100 | [diff] [blame] | 4794 | ret = intel_pipe_crc_create(minor); |
| 4795 | if (ret) |
| 4796 | return ret; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 4797 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4798 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4799 | ent = debugfs_create_file(i915_debugfs_files[i].name, |
| 4800 | S_IRUGO | S_IWUSR, |
| 4801 | minor->debugfs_root, |
| 4802 | to_i915(minor->dev), |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4803 | i915_debugfs_files[i].fops); |
Noralf Trønnes | b05eeb0 | 2017-01-26 23:56:21 +0100 | [diff] [blame] | 4804 | if (!ent) |
| 4805 | return -ENOMEM; |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 4806 | } |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 4807 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 4808 | return drm_debugfs_create_files(i915_debugfs_list, |
| 4809 | I915_DEBUGFS_ENTRIES, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 4810 | minor->debugfs_root, minor); |
| 4811 | } |
| 4812 | |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4813 | struct dpcd_block { |
| 4814 | /* DPCD dump start address. */ |
| 4815 | unsigned int offset; |
| 4816 | /* DPCD dump end address, inclusive. If unset, .size will be used. */ |
| 4817 | unsigned int end; |
| 4818 | /* DPCD dump size. Used if .end is unset. If unset, defaults to 1. */ |
| 4819 | size_t size; |
| 4820 | /* Only valid for eDP. */ |
| 4821 | bool edp; |
| 4822 | }; |
| 4823 | |
| 4824 | static const struct dpcd_block i915_dpcd_debug[] = { |
| 4825 | { .offset = DP_DPCD_REV, .size = DP_RECEIVER_CAP_SIZE }, |
| 4826 | { .offset = DP_PSR_SUPPORT, .end = DP_PSR_CAPS }, |
| 4827 | { .offset = DP_DOWNSTREAM_PORT_0, .size = 16 }, |
| 4828 | { .offset = DP_LINK_BW_SET, .end = DP_EDP_CONFIGURATION_SET }, |
| 4829 | { .offset = DP_SINK_COUNT, .end = DP_ADJUST_REQUEST_LANE2_3 }, |
| 4830 | { .offset = DP_SET_POWER }, |
| 4831 | { .offset = DP_EDP_DPCD_REV }, |
| 4832 | { .offset = DP_EDP_GENERAL_CAP_1, .end = DP_EDP_GENERAL_CAP_3 }, |
| 4833 | { .offset = DP_EDP_DISPLAY_CONTROL_REGISTER, .end = DP_EDP_BACKLIGHT_FREQ_CAP_MAX_LSB }, |
| 4834 | { .offset = DP_EDP_DBC_MINIMUM_BRIGHTNESS_SET, .end = DP_EDP_DBC_MAXIMUM_BRIGHTNESS_SET }, |
| 4835 | }; |
| 4836 | |
| 4837 | static int i915_dpcd_show(struct seq_file *m, void *data) |
| 4838 | { |
| 4839 | struct drm_connector *connector = m->private; |
| 4840 | struct intel_dp *intel_dp = |
| 4841 | enc_to_intel_dp(&intel_attached_encoder(connector)->base); |
| 4842 | uint8_t buf[16]; |
| 4843 | ssize_t err; |
| 4844 | int i; |
| 4845 | |
Mika Kuoppala | 5c1a887 | 2015-05-15 13:09:21 +0300 | [diff] [blame] | 4846 | if (connector->status != connector_status_connected) |
| 4847 | return -ENODEV; |
| 4848 | |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4849 | for (i = 0; i < ARRAY_SIZE(i915_dpcd_debug); i++) { |
| 4850 | const struct dpcd_block *b = &i915_dpcd_debug[i]; |
| 4851 | size_t size = b->end ? b->end - b->offset + 1 : (b->size ?: 1); |
| 4852 | |
| 4853 | if (b->edp && |
| 4854 | connector->connector_type != DRM_MODE_CONNECTOR_eDP) |
| 4855 | continue; |
| 4856 | |
| 4857 | /* low tech for now */ |
| 4858 | if (WARN_ON(size > sizeof(buf))) |
| 4859 | continue; |
| 4860 | |
| 4861 | err = drm_dp_dpcd_read(&intel_dp->aux, b->offset, buf, size); |
| 4862 | if (err <= 0) { |
| 4863 | DRM_ERROR("dpcd read (%zu bytes at %u) failed (%zd)\n", |
| 4864 | size, b->offset, err); |
| 4865 | continue; |
| 4866 | } |
| 4867 | |
| 4868 | seq_printf(m, "%04x: %*ph\n", b->offset, (int) size, buf); |
kbuild test robot | b3f9d7d | 2015-04-16 18:34:06 +0800 | [diff] [blame] | 4869 | } |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4870 | |
| 4871 | return 0; |
| 4872 | } |
| 4873 | |
| 4874 | static int i915_dpcd_open(struct inode *inode, struct file *file) |
| 4875 | { |
| 4876 | return single_open(file, i915_dpcd_show, inode->i_private); |
| 4877 | } |
| 4878 | |
| 4879 | static const struct file_operations i915_dpcd_fops = { |
| 4880 | .owner = THIS_MODULE, |
| 4881 | .open = i915_dpcd_open, |
| 4882 | .read = seq_read, |
| 4883 | .llseek = seq_lseek, |
| 4884 | .release = single_release, |
| 4885 | }; |
| 4886 | |
David Weinehall | ecbd678 | 2016-08-23 12:23:56 +0300 | [diff] [blame] | 4887 | static int i915_panel_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 | |
| 4893 | if (connector->status != connector_status_connected) |
| 4894 | return -ENODEV; |
| 4895 | |
| 4896 | seq_printf(m, "Panel power up delay: %d\n", |
| 4897 | intel_dp->panel_power_up_delay); |
| 4898 | seq_printf(m, "Panel power down delay: %d\n", |
| 4899 | intel_dp->panel_power_down_delay); |
| 4900 | seq_printf(m, "Backlight on delay: %d\n", |
| 4901 | intel_dp->backlight_on_delay); |
| 4902 | seq_printf(m, "Backlight off delay: %d\n", |
| 4903 | intel_dp->backlight_off_delay); |
| 4904 | |
| 4905 | return 0; |
| 4906 | } |
| 4907 | |
| 4908 | static int i915_panel_open(struct inode *inode, struct file *file) |
| 4909 | { |
| 4910 | return single_open(file, i915_panel_show, inode->i_private); |
| 4911 | } |
| 4912 | |
| 4913 | static const struct file_operations i915_panel_fops = { |
| 4914 | .owner = THIS_MODULE, |
| 4915 | .open = i915_panel_open, |
| 4916 | .read = seq_read, |
| 4917 | .llseek = seq_lseek, |
| 4918 | .release = single_release, |
| 4919 | }; |
| 4920 | |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4921 | /** |
| 4922 | * i915_debugfs_connector_add - add i915 specific connector debugfs files |
| 4923 | * @connector: pointer to a registered drm_connector |
| 4924 | * |
| 4925 | * Cleanup will be done by drm_connector_unregister() through a call to |
| 4926 | * drm_debugfs_connector_remove(). |
| 4927 | * |
| 4928 | * Returns 0 on success, negative error codes on error. |
| 4929 | */ |
| 4930 | int i915_debugfs_connector_add(struct drm_connector *connector) |
| 4931 | { |
| 4932 | struct dentry *root = connector->debugfs_entry; |
| 4933 | |
| 4934 | /* The connector must have been registered beforehands. */ |
| 4935 | if (!root) |
| 4936 | return -ENODEV; |
| 4937 | |
| 4938 | if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort || |
| 4939 | connector->connector_type == DRM_MODE_CONNECTOR_eDP) |
David Weinehall | ecbd678 | 2016-08-23 12:23:56 +0300 | [diff] [blame] | 4940 | debugfs_create_file("i915_dpcd", S_IRUGO, root, |
| 4941 | connector, &i915_dpcd_fops); |
| 4942 | |
| 4943 | if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) |
| 4944 | debugfs_create_file("i915_panel_timings", S_IRUGO, root, |
| 4945 | connector, &i915_panel_fops); |
Jani Nikula | aa7471d | 2015-04-01 11:15:21 +0300 | [diff] [blame] | 4946 | |
| 4947 | return 0; |
| 4948 | } |