Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [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 | * Keith Packard <keithp@keithp.com> |
| 25 | * |
| 26 | */ |
| 27 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 28 | #include <drm/drmP.h> |
| 29 | #include <drm/i915_drm.h> |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 30 | #include "i915_drv.h" |
| 31 | |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 32 | #if WATCH_LISTS |
| 33 | int |
| 34 | i915_verify_lists(struct drm_device *dev) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 35 | { |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 36 | static int warned; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 37 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 38 | struct drm_i915_gem_object *obj; |
| 39 | int err = 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 40 | |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 41 | if (warned) |
| 42 | return 0; |
| 43 | |
| 44 | list_for_each_entry(obj, &dev_priv->render_ring.active_list, list) { |
| 45 | if (obj->base.dev != dev || |
| 46 | !atomic_read(&obj->base.refcount.refcount)) { |
| 47 | DRM_ERROR("freed render active %p\n", obj); |
| 48 | err++; |
| 49 | break; |
| 50 | } else if (!obj->active || |
| 51 | (obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0) { |
| 52 | DRM_ERROR("invalid render active %p (a %d r %x)\n", |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 53 | obj, |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 54 | obj->active, |
| 55 | obj->base.read_domains); |
| 56 | err++; |
| 57 | } else if (obj->base.write_domain && list_empty(&obj->gpu_write_list)) { |
| 58 | DRM_ERROR("invalid render active %p (w %x, gwl %d)\n", |
| 59 | obj, |
| 60 | obj->base.write_domain, |
| 61 | !list_empty(&obj->gpu_write_list)); |
| 62 | err++; |
| 63 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 64 | } |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 65 | |
| 66 | list_for_each_entry(obj, &dev_priv->mm.flushing_list, list) { |
| 67 | if (obj->base.dev != dev || |
| 68 | !atomic_read(&obj->base.refcount.refcount)) { |
| 69 | DRM_ERROR("freed flushing %p\n", obj); |
| 70 | err++; |
| 71 | break; |
| 72 | } else if (!obj->active || |
| 73 | (obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0 || |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 74 | list_empty(&obj->gpu_write_list)) { |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 75 | DRM_ERROR("invalid flushing %p (a %d w %x gwl %d)\n", |
| 76 | obj, |
| 77 | obj->active, |
| 78 | obj->base.write_domain, |
| 79 | !list_empty(&obj->gpu_write_list)); |
| 80 | err++; |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | list_for_each_entry(obj, &dev_priv->mm.gpu_write_list, gpu_write_list) { |
| 85 | if (obj->base.dev != dev || |
| 86 | !atomic_read(&obj->base.refcount.refcount)) { |
| 87 | DRM_ERROR("freed gpu write %p\n", obj); |
| 88 | err++; |
| 89 | break; |
| 90 | } else if (!obj->active || |
| 91 | (obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0) { |
| 92 | DRM_ERROR("invalid gpu write %p (a %d w %x)\n", |
| 93 | obj, |
| 94 | obj->active, |
| 95 | obj->base.write_domain); |
| 96 | err++; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | list_for_each_entry(obj, &dev_priv->mm.inactive_list, list) { |
| 101 | if (obj->base.dev != dev || |
| 102 | !atomic_read(&obj->base.refcount.refcount)) { |
| 103 | DRM_ERROR("freed inactive %p\n", obj); |
| 104 | err++; |
| 105 | break; |
| 106 | } else if (obj->pin_count || obj->active || |
| 107 | (obj->base.write_domain & I915_GEM_GPU_DOMAINS)) { |
| 108 | DRM_ERROR("invalid inactive %p (p %d a %d w %x)\n", |
| 109 | obj, |
| 110 | obj->pin_count, obj->active, |
| 111 | obj->base.write_domain); |
| 112 | err++; |
| 113 | } |
| 114 | } |
| 115 | |
Chris Wilson | 23bc598 | 2010-09-29 16:10:57 +0100 | [diff] [blame] | 116 | return warned = err; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 117 | } |
| 118 | #endif /* WATCH_INACTIVE */ |
| 119 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 120 | #if WATCH_COHERENCY |
| 121 | void |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 122 | i915_gem_object_check_coherency(struct drm_i915_gem_object *obj, int handle) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 123 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 124 | struct drm_device *dev = obj->base.dev; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 125 | int page; |
| 126 | uint32_t *gtt_mapping; |
| 127 | uint32_t *backing_map = NULL; |
| 128 | int bad_count = 0; |
| 129 | |
Krzysztof Halasa | cfd43c0 | 2009-06-20 00:31:28 +0200 | [diff] [blame] | 130 | DRM_INFO("%s: checking coherency of object %p@0x%08x (%d, %zdkb):\n", |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 131 | __func__, obj, obj->gtt_offset, handle, |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 132 | obj->size / 1024); |
| 133 | |
Daniel Vetter | dd2757f | 2012-06-07 15:55:57 +0200 | [diff] [blame] | 134 | gtt_mapping = ioremap(dev_priv->mm.gtt_base_addr + obj->gtt_offset, |
| 135 | obj->base.size); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 136 | if (gtt_mapping == NULL) { |
| 137 | DRM_ERROR("failed to map GTT space\n"); |
| 138 | return; |
| 139 | } |
| 140 | |
| 141 | for (page = 0; page < obj->size / PAGE_SIZE; page++) { |
| 142 | int i; |
| 143 | |
Daniel Vetter | 130c256 | 2011-09-17 20:55:46 +0200 | [diff] [blame] | 144 | backing_map = kmap_atomic(obj->pages[page]); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 145 | |
| 146 | if (backing_map == NULL) { |
| 147 | DRM_ERROR("failed to map backing page\n"); |
| 148 | goto out; |
| 149 | } |
| 150 | |
| 151 | for (i = 0; i < PAGE_SIZE / 4; i++) { |
| 152 | uint32_t cpuval = backing_map[i]; |
| 153 | uint32_t gttval = readl(gtt_mapping + |
| 154 | page * 1024 + i); |
| 155 | |
| 156 | if (cpuval != gttval) { |
| 157 | DRM_INFO("incoherent CPU vs GPU at 0x%08x: " |
| 158 | "0x%08x vs 0x%08x\n", |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 159 | (int)(obj->gtt_offset + |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 160 | page * PAGE_SIZE + i * 4), |
| 161 | cpuval, gttval); |
| 162 | if (bad_count++ >= 8) { |
| 163 | DRM_INFO("...\n"); |
| 164 | goto out; |
| 165 | } |
| 166 | } |
| 167 | } |
Daniel Vetter | 130c256 | 2011-09-17 20:55:46 +0200 | [diff] [blame] | 168 | kunmap_atomic(backing_map); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 169 | backing_map = NULL; |
| 170 | } |
| 171 | |
| 172 | out: |
| 173 | if (backing_map != NULL) |
Daniel Vetter | 130c256 | 2011-09-17 20:55:46 +0200 | [diff] [blame] | 174 | kunmap_atomic(backing_map); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 175 | iounmap(gtt_mapping); |
| 176 | |
| 177 | /* give syslog time to catch up */ |
| 178 | msleep(1); |
| 179 | |
| 180 | /* Directly flush the object, since we just loaded values with the CPU |
| 181 | * from the backing pages and we don't want to disturb the cache |
| 182 | * management that we're trying to observe. |
| 183 | */ |
| 184 | |
| 185 | i915_gem_clflush_object(obj); |
| 186 | } |
| 187 | #endif |