Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2008-2015 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 | */ |
| 24 | |
| 25 | #include <linux/oom.h> |
| 26 | #include <linux/shmem_fs.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/swap.h> |
| 29 | #include <linux/pci.h> |
| 30 | #include <linux/dma-buf.h> |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 31 | #include <linux/vmalloc.h> |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 32 | #include <drm/drmP.h> |
| 33 | #include <drm/i915_drm.h> |
| 34 | |
| 35 | #include "i915_drv.h" |
| 36 | #include "i915_trace.h" |
| 37 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 38 | static bool shrinker_lock(struct drm_i915_private *dev_priv, bool *unlock) |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 39 | { |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 40 | switch (mutex_trylock_recursive(&dev_priv->drm.struct_mutex)) { |
Linus Torvalds | 9439b37 | 2016-12-13 09:35:09 -0800 | [diff] [blame] | 41 | case MUTEX_TRYLOCK_RECURSIVE: |
| 42 | *unlock = false; |
| 43 | return true; |
Chris Wilson | 290271d | 2017-06-09 12:03:49 +0100 | [diff] [blame] | 44 | |
| 45 | case MUTEX_TRYLOCK_FAILED: |
Chris Wilson | cd82f37 | 2017-08-04 11:41:35 +0100 | [diff] [blame] | 46 | *unlock = false; |
| 47 | preempt_disable(); |
Chris Wilson | 290271d | 2017-06-09 12:03:49 +0100 | [diff] [blame] | 48 | do { |
| 49 | cpu_relax(); |
| 50 | if (mutex_trylock(&dev_priv->drm.struct_mutex)) { |
Chris Wilson | 290271d | 2017-06-09 12:03:49 +0100 | [diff] [blame] | 51 | *unlock = true; |
Chris Wilson | cd82f37 | 2017-08-04 11:41:35 +0100 | [diff] [blame] | 52 | break; |
Chris Wilson | 290271d | 2017-06-09 12:03:49 +0100 | [diff] [blame] | 53 | } |
| 54 | } while (!need_resched()); |
Chris Wilson | cd82f37 | 2017-08-04 11:41:35 +0100 | [diff] [blame] | 55 | preempt_enable(); |
| 56 | return *unlock; |
Chris Wilson | 290271d | 2017-06-09 12:03:49 +0100 | [diff] [blame] | 57 | |
Chris Wilson | cd82f37 | 2017-08-04 11:41:35 +0100 | [diff] [blame] | 58 | case MUTEX_TRYLOCK_SUCCESS: |
| 59 | *unlock = true; |
| 60 | return true; |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 61 | } |
| 62 | |
Linus Torvalds | 9439b37 | 2016-12-13 09:35:09 -0800 | [diff] [blame] | 63 | BUG(); |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 64 | } |
| 65 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 66 | static void shrinker_unlock(struct drm_i915_private *dev_priv, bool unlock) |
Joonas Lahtinen | 8f612d0 | 2017-04-07 13:49:34 +0300 | [diff] [blame] | 67 | { |
| 68 | if (!unlock) |
| 69 | return; |
| 70 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 71 | mutex_unlock(&dev_priv->drm.struct_mutex); |
Joonas Lahtinen | 8f612d0 | 2017-04-07 13:49:34 +0300 | [diff] [blame] | 72 | } |
| 73 | |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 74 | static bool any_vma_pinned(struct drm_i915_gem_object *obj) |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 75 | { |
| 76 | struct i915_vma *vma; |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 77 | |
Chris Wilson | b2241f1 | 2017-05-25 08:25:28 +0100 | [diff] [blame] | 78 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
| 79 | /* Only GGTT vma may be permanently pinned, and are always |
| 80 | * at the start of the list. We can stop hunting as soon |
| 81 | * as we see a ppGTT vma. |
| 82 | */ |
| 83 | if (!i915_vma_is_ggtt(vma)) |
| 84 | break; |
| 85 | |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 86 | if (i915_vma_is_pinned(vma)) |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 87 | return true; |
Chris Wilson | b2241f1 | 2017-05-25 08:25:28 +0100 | [diff] [blame] | 88 | } |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 89 | |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 90 | return false; |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static bool swap_available(void) |
| 94 | { |
| 95 | return get_nr_swap_pages() > 0; |
| 96 | } |
| 97 | |
| 98 | static bool can_release_pages(struct drm_i915_gem_object *obj) |
| 99 | { |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 100 | if (!obj->mm.pages) |
| 101 | return false; |
| 102 | |
Tvrtko Ursulin | 3599a91 | 2016-11-01 14:44:10 +0000 | [diff] [blame] | 103 | /* Consider only shrinkable ojects. */ |
| 104 | if (!i915_gem_object_is_shrinkable(obj)) |
Chris Wilson | 1bec9b0 | 2016-04-20 12:09:52 +0100 | [diff] [blame] | 105 | return false; |
| 106 | |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 107 | /* Only report true if by unbinding the object and putting its pages |
| 108 | * we can actually make forward progress towards freeing physical |
| 109 | * pages. |
| 110 | * |
| 111 | * If the pages are pinned for any other reason than being bound |
| 112 | * to the GPU, simply unbinding from the GPU is not going to succeed |
| 113 | * in releasing our pin count on the pages themselves. |
| 114 | */ |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 115 | if (atomic_read(&obj->mm.pages_pin_count) > obj->bind_count) |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 116 | return false; |
| 117 | |
| 118 | if (any_vma_pinned(obj)) |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 119 | return false; |
| 120 | |
| 121 | /* We can only return physical pages to the system if we can either |
| 122 | * discard the contents (because the user has marked them as being |
| 123 | * purgeable) or if we can move their contents out to swap. |
| 124 | */ |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 125 | return swap_available() || obj->mm.madv == I915_MADV_DONTNEED; |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 128 | static bool unsafe_drop_pages(struct drm_i915_gem_object *obj) |
| 129 | { |
| 130 | if (i915_gem_object_unbind(obj) == 0) |
Chris Wilson | 548625e | 2016-11-01 12:11:34 +0000 | [diff] [blame] | 131 | __i915_gem_object_put_pages(obj, I915_MM_SHRINKER); |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 132 | return !READ_ONCE(obj->mm.pages); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 133 | } |
| 134 | |
Daniel Vetter | eb0b44a | 2015-03-18 14:47:59 +0100 | [diff] [blame] | 135 | /** |
| 136 | * i915_gem_shrink - Shrink buffer object caches |
| 137 | * @dev_priv: i915 device |
| 138 | * @target: amount of memory to make available, in pages |
| 139 | * @flags: control flags for selecting cache types |
| 140 | * |
| 141 | * This function is the main interface to the shrinker. It will try to release |
| 142 | * up to @target pages of main memory backing storage from buffer objects. |
| 143 | * Selection of the specific caches can be done with @flags. This is e.g. useful |
| 144 | * when purgeable objects should be removed from caches preferentially. |
| 145 | * |
| 146 | * Note that it's not guaranteed that released amount is actually available as |
| 147 | * free system memory - the pages might still be in-used to due to other reasons |
| 148 | * (like cpu mmaps) or the mm core has reused them before we could grab them. |
| 149 | * Therefore code that needs to explicitly shrink buffer objects caches (e.g. to |
| 150 | * avoid deadlocks in memory reclaim) must fall back to i915_gem_shrink_all(). |
| 151 | * |
| 152 | * Also note that any kind of pinning (both per-vma address space pins and |
| 153 | * backing storage pins at the buffer object level) result in the shrinker code |
| 154 | * having to skip the object. |
| 155 | * |
| 156 | * Returns: |
| 157 | * The number of pages of backing storage actually released. |
| 158 | */ |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 159 | unsigned long |
| 160 | i915_gem_shrink(struct drm_i915_private *dev_priv, |
Chris Wilson | 1438754 | 2015-10-01 12:18:25 +0100 | [diff] [blame] | 161 | unsigned long target, unsigned flags) |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 162 | { |
| 163 | const struct { |
| 164 | struct list_head *list; |
| 165 | unsigned int bit; |
| 166 | } phases[] = { |
| 167 | { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND }, |
| 168 | { &dev_priv->mm.bound_list, I915_SHRINK_BOUND }, |
| 169 | { NULL, 0 }, |
| 170 | }, *phase; |
| 171 | unsigned long count = 0; |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 172 | bool unlock; |
| 173 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 174 | if (!shrinker_lock(dev_priv, &unlock)) |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 175 | return 0; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 176 | |
Chris Wilson | 3abafa5 | 2015-10-01 12:18:26 +0100 | [diff] [blame] | 177 | trace_i915_gem_shrink(dev_priv, target, flags); |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 178 | i915_gem_retire_requests(dev_priv); |
Chris Wilson | 3abafa5 | 2015-10-01 12:18:26 +0100 | [diff] [blame] | 179 | |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 180 | /* |
Praveen Paneri | 178a30c | 2016-05-02 14:10:28 +0530 | [diff] [blame] | 181 | * Unbinding of objects will require HW access; Let us not wake the |
| 182 | * device just to recover a little memory. If absolutely necessary, |
| 183 | * we will force the wake during oom-notifier. |
| 184 | */ |
| 185 | if ((flags & I915_SHRINK_BOUND) && |
| 186 | !intel_runtime_pm_get_if_in_use(dev_priv)) |
| 187 | flags &= ~I915_SHRINK_BOUND; |
| 188 | |
| 189 | /* |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 190 | * As we may completely rewrite the (un)bound list whilst unbinding |
| 191 | * (due to retiring requests) we have to strictly process only |
| 192 | * one element of the list at the time, and recheck the list |
| 193 | * on every iteration. |
| 194 | * |
| 195 | * In particular, we must hold a reference whilst removing the |
| 196 | * object as we may end up waiting for and/or retiring the objects. |
| 197 | * This might release the final reference (held by the active list) |
| 198 | * and result in the object being freed from under us. This is |
| 199 | * similar to the precautions the eviction code must take whilst |
| 200 | * removing objects. |
| 201 | * |
| 202 | * Also note that although these lists do not hold a reference to |
| 203 | * the object we can safely grab one here: The final object |
| 204 | * unreferencing and the bound_list are both protected by the |
| 205 | * dev->struct_mutex and so we won't ever be able to observe an |
| 206 | * object on the bound_list with a reference count equals 0. |
| 207 | */ |
| 208 | for (phase = phases; phase->list; phase++) { |
| 209 | struct list_head still_in_list; |
Chris Wilson | 2a1d775 | 2016-07-26 12:01:51 +0100 | [diff] [blame] | 210 | struct drm_i915_gem_object *obj; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 211 | |
| 212 | if ((flags & phase->bit) == 0) |
| 213 | continue; |
| 214 | |
| 215 | INIT_LIST_HEAD(&still_in_list); |
Chris Wilson | 2a1d775 | 2016-07-26 12:01:51 +0100 | [diff] [blame] | 216 | while (count < target && |
| 217 | (obj = list_first_entry_or_null(phase->list, |
| 218 | typeof(*obj), |
Joonas Lahtinen | 56cea32 | 2016-11-02 12:16:04 +0200 | [diff] [blame] | 219 | global_link))) { |
| 220 | list_move_tail(&obj->global_link, &still_in_list); |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 221 | if (!obj->mm.pages) { |
Joonas Lahtinen | 56cea32 | 2016-11-02 12:16:04 +0200 | [diff] [blame] | 222 | list_del_init(&obj->global_link); |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 223 | continue; |
| 224 | } |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 225 | |
| 226 | if (flags & I915_SHRINK_PURGEABLE && |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 227 | obj->mm.madv != I915_MADV_DONTNEED) |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 228 | continue; |
| 229 | |
Chris Wilson | eae2c43 | 2016-04-08 12:11:12 +0100 | [diff] [blame] | 230 | if (flags & I915_SHRINK_VMAPS && |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 231 | !is_vmalloc_addr(obj->mm.mapping)) |
Chris Wilson | eae2c43 | 2016-04-08 12:11:12 +0100 | [diff] [blame] | 232 | continue; |
| 233 | |
Chris Wilson | 45353ce | 2016-10-12 13:48:24 +0100 | [diff] [blame] | 234 | if (!(flags & I915_SHRINK_ACTIVE) && |
| 235 | (i915_gem_object_is_active(obj) || |
Chris Wilson | dd68928 | 2017-03-01 15:41:28 +0000 | [diff] [blame] | 236 | i915_gem_object_is_framebuffer(obj))) |
Chris Wilson | 5763ff0 | 2015-10-01 12:18:29 +0100 | [diff] [blame] | 237 | continue; |
| 238 | |
Chris Wilson | c1a415e | 2015-12-04 15:58:54 +0000 | [diff] [blame] | 239 | if (!can_release_pages(obj)) |
| 240 | continue; |
| 241 | |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 242 | if (unsafe_drop_pages(obj)) { |
Chris Wilson | 7b7a119 | 2016-10-31 12:40:48 +0000 | [diff] [blame] | 243 | /* May arrive from get_pages on another bo */ |
| 244 | mutex_lock_nested(&obj->mm.lock, |
Chris Wilson | 548625e | 2016-11-01 12:11:34 +0000 | [diff] [blame] | 245 | I915_MM_SHRINKER); |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 246 | if (!obj->mm.pages) { |
| 247 | __i915_gem_object_invalidate(obj); |
Joonas Lahtinen | 56cea32 | 2016-11-02 12:16:04 +0200 | [diff] [blame] | 248 | list_del_init(&obj->global_link); |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 249 | count += obj->base.size >> PAGE_SHIFT; |
| 250 | } |
| 251 | mutex_unlock(&obj->mm.lock); |
| 252 | } |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 253 | } |
Chris Wilson | 5359727 | 2016-11-01 08:48:43 +0000 | [diff] [blame] | 254 | list_splice_tail(&still_in_list, phase->list); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 255 | } |
| 256 | |
Praveen Paneri | 178a30c | 2016-05-02 14:10:28 +0530 | [diff] [blame] | 257 | if (flags & I915_SHRINK_BOUND) |
| 258 | intel_runtime_pm_put(dev_priv); |
| 259 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 260 | i915_gem_retire_requests(dev_priv); |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 261 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 262 | shrinker_unlock(dev_priv, unlock); |
Chris Wilson | c9c0f5e | 2015-10-01 12:18:27 +0100 | [diff] [blame] | 263 | |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 264 | return count; |
| 265 | } |
| 266 | |
Daniel Vetter | eb0b44a | 2015-03-18 14:47:59 +0100 | [diff] [blame] | 267 | /** |
Daniel Vetter | 1f2449c | 2015-10-06 14:47:55 +0200 | [diff] [blame] | 268 | * i915_gem_shrink_all - Shrink buffer object caches completely |
Daniel Vetter | eb0b44a | 2015-03-18 14:47:59 +0100 | [diff] [blame] | 269 | * @dev_priv: i915 device |
| 270 | * |
| 271 | * This is a simple wraper around i915_gem_shrink() to aggressively shrink all |
| 272 | * caches completely. It also first waits for and retires all outstanding |
| 273 | * requests to also be able to release backing storage for active objects. |
| 274 | * |
| 275 | * This should only be used in code to intentionally quiescent the gpu or as a |
| 276 | * last-ditch effort when memory seems to have run out. |
| 277 | * |
| 278 | * Returns: |
| 279 | * The number of pages of backing storage actually released. |
| 280 | */ |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 281 | unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv) |
| 282 | { |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 283 | unsigned long freed; |
| 284 | |
Chris Wilson | 519d524 | 2017-02-08 10:47:10 +0000 | [diff] [blame] | 285 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 286 | freed = i915_gem_shrink(dev_priv, -1UL, |
| 287 | I915_SHRINK_BOUND | |
| 288 | I915_SHRINK_UNBOUND | |
| 289 | I915_SHRINK_ACTIVE); |
Chris Wilson | 519d524 | 2017-02-08 10:47:10 +0000 | [diff] [blame] | 290 | intel_runtime_pm_put(dev_priv); |
| 291 | |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 292 | return freed; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 293 | } |
| 294 | |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 295 | static unsigned long |
| 296 | i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc) |
| 297 | { |
| 298 | struct drm_i915_private *dev_priv = |
| 299 | container_of(shrinker, struct drm_i915_private, mm.shrinker); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 300 | struct drm_i915_gem_object *obj; |
| 301 | unsigned long count; |
| 302 | bool unlock; |
| 303 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 304 | if (!shrinker_lock(dev_priv, &unlock)) |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 305 | return 0; |
| 306 | |
Chris Wilson | bed50ae | 2016-07-01 17:23:10 +0100 | [diff] [blame] | 307 | i915_gem_retire_requests(dev_priv); |
| 308 | |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 309 | count = 0; |
Joonas Lahtinen | 56cea32 | 2016-11-02 12:16:04 +0200 | [diff] [blame] | 310 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_link) |
Chris Wilson | 6f0ac20 | 2016-04-04 14:46:41 +0100 | [diff] [blame] | 311 | if (can_release_pages(obj)) |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 312 | count += obj->base.size >> PAGE_SHIFT; |
| 313 | |
Joonas Lahtinen | 56cea32 | 2016-11-02 12:16:04 +0200 | [diff] [blame] | 314 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_link) { |
Chris Wilson | 573adb3 | 2016-08-04 16:32:39 +0100 | [diff] [blame] | 315 | if (!i915_gem_object_is_active(obj) && can_release_pages(obj)) |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 316 | count += obj->base.size >> PAGE_SHIFT; |
| 317 | } |
| 318 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 319 | shrinker_unlock(dev_priv, unlock); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 320 | |
| 321 | return count; |
| 322 | } |
| 323 | |
| 324 | static unsigned long |
| 325 | i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc) |
| 326 | { |
| 327 | struct drm_i915_private *dev_priv = |
| 328 | container_of(shrinker, struct drm_i915_private, mm.shrinker); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 329 | unsigned long freed; |
| 330 | bool unlock; |
| 331 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 332 | if (!shrinker_lock(dev_priv, &unlock)) |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 333 | return SHRINK_STOP; |
| 334 | |
| 335 | freed = i915_gem_shrink(dev_priv, |
| 336 | sc->nr_to_scan, |
| 337 | I915_SHRINK_BOUND | |
| 338 | I915_SHRINK_UNBOUND | |
| 339 | I915_SHRINK_PURGEABLE); |
| 340 | if (freed < sc->nr_to_scan) |
| 341 | freed += i915_gem_shrink(dev_priv, |
| 342 | sc->nr_to_scan - freed, |
| 343 | I915_SHRINK_BOUND | |
| 344 | I915_SHRINK_UNBOUND); |
Chris Wilson | 1d24ad4 | 2017-06-01 14:33:29 +0100 | [diff] [blame] | 345 | if (freed < sc->nr_to_scan && current_is_kswapd()) { |
| 346 | intel_runtime_pm_get(dev_priv); |
| 347 | freed += i915_gem_shrink(dev_priv, |
| 348 | sc->nr_to_scan - freed, |
| 349 | I915_SHRINK_ACTIVE | |
| 350 | I915_SHRINK_BOUND | |
| 351 | I915_SHRINK_UNBOUND); |
| 352 | intel_runtime_pm_put(dev_priv); |
| 353 | } |
Joonas Lahtinen | 8f612d0 | 2017-04-07 13:49:34 +0300 | [diff] [blame] | 354 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 355 | shrinker_unlock(dev_priv, unlock); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 356 | |
| 357 | return freed; |
| 358 | } |
| 359 | |
Chris Wilson | 168cf36 | 2016-04-05 10:22:25 +0100 | [diff] [blame] | 360 | static bool |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 361 | shrinker_lock_uninterruptible(struct drm_i915_private *dev_priv, bool *unlock, |
| 362 | int timeout_ms) |
Chris Wilson | 168cf36 | 2016-04-05 10:22:25 +0100 | [diff] [blame] | 363 | { |
Chris Wilson | 5cba5be | 2016-08-05 10:14:13 +0100 | [diff] [blame] | 364 | unsigned long timeout = jiffies + msecs_to_jiffies_timeout(timeout_ms); |
Chris Wilson | 168cf36 | 2016-04-05 10:22:25 +0100 | [diff] [blame] | 365 | |
Chris Wilson | 5cba5be | 2016-08-05 10:14:13 +0100 | [diff] [blame] | 366 | do { |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 367 | if (i915_gem_wait_for_idle(dev_priv, 0) == 0 && |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 368 | shrinker_lock(dev_priv, unlock)) |
Chris Wilson | 5cba5be | 2016-08-05 10:14:13 +0100 | [diff] [blame] | 369 | break; |
| 370 | |
Chris Wilson | 168cf36 | 2016-04-05 10:22:25 +0100 | [diff] [blame] | 371 | schedule_timeout_killable(1); |
| 372 | if (fatal_signal_pending(current)) |
| 373 | return false; |
Chris Wilson | 5cba5be | 2016-08-05 10:14:13 +0100 | [diff] [blame] | 374 | |
| 375 | if (time_after(jiffies, timeout)) { |
Chris Wilson | 168cf36 | 2016-04-05 10:22:25 +0100 | [diff] [blame] | 376 | pr_err("Unable to lock GPU to purge memory.\n"); |
| 377 | return false; |
| 378 | } |
Chris Wilson | 5cba5be | 2016-08-05 10:14:13 +0100 | [diff] [blame] | 379 | } while (1); |
Chris Wilson | 168cf36 | 2016-04-05 10:22:25 +0100 | [diff] [blame] | 380 | |
Chris Wilson | 168cf36 | 2016-04-05 10:22:25 +0100 | [diff] [blame] | 381 | return true; |
| 382 | } |
| 383 | |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 384 | static int |
| 385 | i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr) |
| 386 | { |
| 387 | struct drm_i915_private *dev_priv = |
| 388 | container_of(nb, struct drm_i915_private, mm.oom_notifier); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 389 | struct drm_i915_gem_object *obj; |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 390 | unsigned long unevictable, bound, unbound, freed_pages; |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 391 | bool unlock; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 392 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 393 | if (!shrinker_lock_uninterruptible(dev_priv, &unlock, 5000)) |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 394 | return NOTIFY_DONE; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 395 | |
| 396 | freed_pages = i915_gem_shrink_all(dev_priv); |
| 397 | |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 398 | /* Because we may be allocating inside our own driver, we cannot |
| 399 | * assert that there are no objects with pinned pages that are not |
| 400 | * being pointed to by hardware. |
| 401 | */ |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 402 | unbound = bound = unevictable = 0; |
Joonas Lahtinen | 56cea32 | 2016-11-02 12:16:04 +0200 | [diff] [blame] | 403 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_link) { |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 404 | if (!obj->mm.pages) |
| 405 | continue; |
| 406 | |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 407 | if (!can_release_pages(obj)) |
| 408 | unevictable += obj->base.size >> PAGE_SHIFT; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 409 | else |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 410 | unbound += obj->base.size >> PAGE_SHIFT; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 411 | } |
Joonas Lahtinen | 56cea32 | 2016-11-02 12:16:04 +0200 | [diff] [blame] | 412 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_link) { |
Chris Wilson | fbbd37b | 2016-10-28 13:58:42 +0100 | [diff] [blame] | 413 | if (!obj->mm.pages) |
| 414 | continue; |
| 415 | |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 416 | if (!can_release_pages(obj)) |
| 417 | unevictable += obj->base.size >> PAGE_SHIFT; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 418 | else |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 419 | bound += obj->base.size >> PAGE_SHIFT; |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 420 | } |
| 421 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 422 | shrinker_unlock(dev_priv, unlock); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 423 | |
| 424 | if (freed_pages || unbound || bound) |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 425 | pr_info("Purging GPU memory, %lu pages freed, " |
| 426 | "%lu pages still pinned.\n", |
| 427 | freed_pages, unevictable); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 428 | if (unbound || bound) |
Chris Wilson | 1768d45 | 2016-04-20 12:09:51 +0100 | [diff] [blame] | 429 | pr_err("%lu and %lu pages still available in the " |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 430 | "bound and unbound GPU page lists.\n", |
| 431 | bound, unbound); |
| 432 | |
| 433 | *(unsigned long *)ptr += freed_pages; |
| 434 | return NOTIFY_DONE; |
| 435 | } |
| 436 | |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 437 | static int |
| 438 | i915_gem_shrinker_vmap(struct notifier_block *nb, unsigned long event, void *ptr) |
| 439 | { |
| 440 | struct drm_i915_private *dev_priv = |
| 441 | container_of(nb, struct drm_i915_private, mm.vmap_notifier); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 442 | struct i915_vma *vma, *next; |
| 443 | unsigned long freed_pages = 0; |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 444 | bool unlock; |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 445 | int ret; |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 446 | |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 447 | if (!shrinker_lock_uninterruptible(dev_priv, &unlock, 5000)) |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 448 | return NOTIFY_DONE; |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 449 | |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 450 | /* Force everything onto the inactive lists */ |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 451 | ret = i915_gem_wait_for_idle(dev_priv, I915_WAIT_LOCKED); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 452 | if (ret) |
| 453 | goto out; |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 454 | |
Praveen Paneri | ea9d976 | 2016-05-02 14:10:29 +0530 | [diff] [blame] | 455 | intel_runtime_pm_get(dev_priv); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 456 | freed_pages += i915_gem_shrink(dev_priv, -1UL, |
| 457 | I915_SHRINK_BOUND | |
| 458 | I915_SHRINK_UNBOUND | |
| 459 | I915_SHRINK_ACTIVE | |
| 460 | I915_SHRINK_VMAPS); |
Praveen Paneri | ea9d976 | 2016-05-02 14:10:29 +0530 | [diff] [blame] | 461 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 462 | |
| 463 | /* We also want to clear any cached iomaps as they wrap vmap */ |
| 464 | list_for_each_entry_safe(vma, next, |
| 465 | &dev_priv->ggtt.base.inactive_list, vm_link) { |
| 466 | unsigned long count = vma->node.size >> PAGE_SHIFT; |
| 467 | if (vma->iomap && i915_vma_unbind(vma) == 0) |
| 468 | freed_pages += count; |
| 469 | } |
| 470 | |
| 471 | out: |
Joonas Lahtinen | e92075f | 2017-04-07 13:49:35 +0300 | [diff] [blame] | 472 | shrinker_unlock(dev_priv, unlock); |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 473 | |
| 474 | *(unsigned long *)ptr += freed_pages; |
| 475 | return NOTIFY_DONE; |
| 476 | } |
| 477 | |
Daniel Vetter | eb0b44a | 2015-03-18 14:47:59 +0100 | [diff] [blame] | 478 | /** |
| 479 | * i915_gem_shrinker_init - Initialize i915 shrinker |
| 480 | * @dev_priv: i915 device |
| 481 | * |
| 482 | * This function registers and sets up the i915 shrinker and OOM handler. |
| 483 | */ |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 484 | void i915_gem_shrinker_init(struct drm_i915_private *dev_priv) |
| 485 | { |
| 486 | dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan; |
| 487 | dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count; |
| 488 | dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS; |
Imre Deak | a8a4058 | 2016-01-19 15:26:28 +0200 | [diff] [blame] | 489 | WARN_ON(register_shrinker(&dev_priv->mm.shrinker)); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 490 | |
| 491 | dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom; |
Imre Deak | a8a4058 | 2016-01-19 15:26:28 +0200 | [diff] [blame] | 492 | WARN_ON(register_oom_notifier(&dev_priv->mm.oom_notifier)); |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 493 | |
| 494 | dev_priv->mm.vmap_notifier.notifier_call = i915_gem_shrinker_vmap; |
| 495 | WARN_ON(register_vmap_purge_notifier(&dev_priv->mm.vmap_notifier)); |
Imre Deak | a8a4058 | 2016-01-19 15:26:28 +0200 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | /** |
| 499 | * i915_gem_shrinker_cleanup - Clean up i915 shrinker |
| 500 | * @dev_priv: i915 device |
| 501 | * |
| 502 | * This function unregisters the i915 shrinker and OOM handler. |
| 503 | */ |
| 504 | void i915_gem_shrinker_cleanup(struct drm_i915_private *dev_priv) |
| 505 | { |
Chris Wilson | e87666b | 2016-04-04 14:46:43 +0100 | [diff] [blame] | 506 | WARN_ON(unregister_vmap_purge_notifier(&dev_priv->mm.vmap_notifier)); |
Imre Deak | a8a4058 | 2016-01-19 15:26:28 +0200 | [diff] [blame] | 507 | WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier)); |
| 508 | unregister_shrinker(&dev_priv->mm.shrinker); |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 509 | } |