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