Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1 | /* |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 2 | * Copyright © 2008-2015 Intel Corporation |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 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 | * |
| 26 | */ |
| 27 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 28 | #include <drm/drmP.h> |
David Herrmann | 0de2397 | 2013-07-24 21:07:52 +0200 | [diff] [blame] | 29 | #include <drm/drm_vma_manager.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 30 | #include <drm/i915_drm.h> |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 31 | #include "i915_drv.h" |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 32 | #include "i915_gem_dmabuf.h" |
Yu Zhang | eb82289 | 2015-02-10 19:05:49 +0800 | [diff] [blame] | 33 | #include "i915_vgpu.h" |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 34 | #include "i915_trace.h" |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 35 | #include "intel_drv.h" |
Chris Wilson | 5d723d7 | 2016-08-04 16:32:35 +0100 | [diff] [blame] | 36 | #include "intel_frontbuffer.h" |
Peter Antoine | 0ccdacf | 2016-04-13 15:03:25 +0100 | [diff] [blame] | 37 | #include "intel_mocs.h" |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 38 | #include <linux/reservation.h> |
Hugh Dickins | 5949eac | 2011-06-27 16:18:18 -0700 | [diff] [blame] | 39 | #include <linux/shmem_fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 40 | #include <linux/slab.h> |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 41 | #include <linux/swap.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 42 | #include <linux/pci.h> |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 43 | #include <linux/dma-buf.h> |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 44 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 45 | static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj); |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 46 | static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj); |
Chris Wilson | 6105080 | 2012-04-17 15:31:31 +0100 | [diff] [blame] | 47 | |
Chris Wilson | c76ce03 | 2013-08-08 14:41:03 +0100 | [diff] [blame] | 48 | static bool cpu_cache_is_coherent(struct drm_device *dev, |
| 49 | enum i915_cache_level level) |
| 50 | { |
| 51 | return HAS_LLC(dev) || level != I915_CACHE_NONE; |
| 52 | } |
| 53 | |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 54 | static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj) |
| 55 | { |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 56 | if (obj->base.write_domain == I915_GEM_DOMAIN_CPU) |
| 57 | return false; |
| 58 | |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 59 | if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) |
| 60 | return true; |
| 61 | |
| 62 | return obj->pin_display; |
| 63 | } |
| 64 | |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 65 | static int |
| 66 | insert_mappable_node(struct drm_i915_private *i915, |
| 67 | struct drm_mm_node *node, u32 size) |
| 68 | { |
| 69 | memset(node, 0, sizeof(*node)); |
| 70 | return drm_mm_insert_node_in_range_generic(&i915->ggtt.base.mm, node, |
| 71 | size, 0, 0, 0, |
| 72 | i915->ggtt.mappable_end, |
| 73 | DRM_MM_SEARCH_DEFAULT, |
| 74 | DRM_MM_CREATE_DEFAULT); |
| 75 | } |
| 76 | |
| 77 | static void |
| 78 | remove_mappable_node(struct drm_mm_node *node) |
| 79 | { |
| 80 | drm_mm_remove_node(node); |
| 81 | } |
| 82 | |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 83 | /* some bookkeeping */ |
| 84 | static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv, |
Chris Wilson | 3ef7f22 | 2016-10-18 13:02:48 +0100 | [diff] [blame] | 85 | u64 size) |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 86 | { |
Daniel Vetter | c20e835 | 2013-07-24 22:40:23 +0200 | [diff] [blame] | 87 | spin_lock(&dev_priv->mm.object_stat_lock); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 88 | dev_priv->mm.object_count++; |
| 89 | dev_priv->mm.object_memory += size; |
Daniel Vetter | c20e835 | 2013-07-24 22:40:23 +0200 | [diff] [blame] | 90 | spin_unlock(&dev_priv->mm.object_stat_lock); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv, |
Chris Wilson | 3ef7f22 | 2016-10-18 13:02:48 +0100 | [diff] [blame] | 94 | u64 size) |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 95 | { |
Daniel Vetter | c20e835 | 2013-07-24 22:40:23 +0200 | [diff] [blame] | 96 | spin_lock(&dev_priv->mm.object_stat_lock); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 97 | dev_priv->mm.object_count--; |
| 98 | dev_priv->mm.object_memory -= size; |
Daniel Vetter | c20e835 | 2013-07-24 22:40:23 +0200 | [diff] [blame] | 99 | spin_unlock(&dev_priv->mm.object_stat_lock); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 100 | } |
| 101 | |
Chris Wilson | 21dd373 | 2011-01-26 15:55:56 +0000 | [diff] [blame] | 102 | static int |
Daniel Vetter | 33196de | 2012-11-14 17:14:05 +0100 | [diff] [blame] | 103 | i915_gem_wait_for_error(struct i915_gpu_error *error) |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 104 | { |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 105 | int ret; |
| 106 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 107 | might_sleep(); |
| 108 | |
Chris Wilson | d98c52c | 2016-04-13 17:35:05 +0100 | [diff] [blame] | 109 | if (!i915_reset_in_progress(error)) |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 110 | return 0; |
| 111 | |
Daniel Vetter | 0a6759c | 2012-07-04 22:18:41 +0200 | [diff] [blame] | 112 | /* |
| 113 | * Only wait 10 seconds for the gpu reset to complete to avoid hanging |
| 114 | * userspace. If it takes that long something really bad is going on and |
| 115 | * we should simply try to bail out and fail as gracefully as possible. |
| 116 | */ |
Daniel Vetter | 1f83fee | 2012-11-15 17:17:22 +0100 | [diff] [blame] | 117 | ret = wait_event_interruptible_timeout(error->reset_queue, |
Chris Wilson | d98c52c | 2016-04-13 17:35:05 +0100 | [diff] [blame] | 118 | !i915_reset_in_progress(error), |
Chris Wilson | b52992c | 2016-10-28 13:58:24 +0100 | [diff] [blame] | 119 | I915_RESET_TIMEOUT); |
Daniel Vetter | 0a6759c | 2012-07-04 22:18:41 +0200 | [diff] [blame] | 120 | if (ret == 0) { |
| 121 | DRM_ERROR("Timed out waiting for the gpu reset to complete\n"); |
| 122 | return -EIO; |
| 123 | } else if (ret < 0) { |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 124 | return ret; |
Chris Wilson | d98c52c | 2016-04-13 17:35:05 +0100 | [diff] [blame] | 125 | } else { |
| 126 | return 0; |
Daniel Vetter | 0a6759c | 2012-07-04 22:18:41 +0200 | [diff] [blame] | 127 | } |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 128 | } |
| 129 | |
Chris Wilson | 54cf91d | 2010-11-25 18:00:26 +0000 | [diff] [blame] | 130 | int i915_mutex_lock_interruptible(struct drm_device *dev) |
Chris Wilson | 76c1dec | 2010-09-25 11:22:51 +0100 | [diff] [blame] | 131 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 132 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 76c1dec | 2010-09-25 11:22:51 +0100 | [diff] [blame] | 133 | int ret; |
| 134 | |
Daniel Vetter | 33196de | 2012-11-14 17:14:05 +0100 | [diff] [blame] | 135 | ret = i915_gem_wait_for_error(&dev_priv->gpu_error); |
Chris Wilson | 76c1dec | 2010-09-25 11:22:51 +0100 | [diff] [blame] | 136 | if (ret) |
| 137 | return ret; |
| 138 | |
| 139 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 140 | if (ret) |
| 141 | return ret; |
| 142 | |
Chris Wilson | 76c1dec | 2010-09-25 11:22:51 +0100 | [diff] [blame] | 143 | return 0; |
| 144 | } |
Chris Wilson | 30dbf0c | 2010-09-25 10:19:17 +0100 | [diff] [blame] | 145 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 146 | int |
Eric Anholt | 5a125c3 | 2008-10-22 21:40:13 -0700 | [diff] [blame] | 147 | i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 148 | struct drm_file *file) |
Eric Anholt | 5a125c3 | 2008-10-22 21:40:13 -0700 | [diff] [blame] | 149 | { |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 150 | struct drm_i915_private *dev_priv = to_i915(dev); |
Joonas Lahtinen | 62106b4 | 2016-03-18 10:42:57 +0200 | [diff] [blame] | 151 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 152 | struct drm_i915_gem_get_aperture *args = data; |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 153 | struct i915_vma *vma; |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 154 | size_t pinned; |
Eric Anholt | 5a125c3 | 2008-10-22 21:40:13 -0700 | [diff] [blame] | 155 | |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 156 | pinned = 0; |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 157 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 158 | list_for_each_entry(vma, &ggtt->base.active_list, vm_link) |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 159 | if (i915_vma_is_pinned(vma)) |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 160 | pinned += vma->node.size; |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 161 | list_for_each_entry(vma, &ggtt->base.inactive_list, vm_link) |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 162 | if (i915_vma_is_pinned(vma)) |
Tvrtko Ursulin | ca1543b | 2015-07-01 11:51:10 +0100 | [diff] [blame] | 163 | pinned += vma->node.size; |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 164 | mutex_unlock(&dev->struct_mutex); |
Eric Anholt | 5a125c3 | 2008-10-22 21:40:13 -0700 | [diff] [blame] | 165 | |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 166 | args->aper_size = ggtt->base.total; |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 167 | args->aper_available_size = args->aper_size - pinned; |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 168 | |
Eric Anholt | 5a125c3 | 2008-10-22 21:40:13 -0700 | [diff] [blame] | 169 | return 0; |
| 170 | } |
| 171 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 172 | static struct sg_table * |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 173 | i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj) |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 174 | { |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 175 | struct address_space *mapping = obj->base.filp->f_mapping; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 176 | char *vaddr = obj->phys_handle->vaddr; |
| 177 | struct sg_table *st; |
| 178 | struct scatterlist *sg; |
| 179 | int i; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 180 | |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 181 | if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj))) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 182 | return ERR_PTR(-EINVAL); |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 183 | |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 184 | for (i = 0; i < obj->base.size / PAGE_SIZE; i++) { |
| 185 | struct page *page; |
| 186 | char *src; |
| 187 | |
| 188 | page = shmem_read_mapping_page(mapping, i); |
| 189 | if (IS_ERR(page)) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 190 | return ERR_CAST(page); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 191 | |
| 192 | src = kmap_atomic(page); |
| 193 | memcpy(vaddr, src, PAGE_SIZE); |
| 194 | drm_clflush_virt_range(vaddr, PAGE_SIZE); |
| 195 | kunmap_atomic(src); |
| 196 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 197 | put_page(page); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 198 | vaddr += PAGE_SIZE; |
| 199 | } |
| 200 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 201 | i915_gem_chipset_flush(to_i915(obj->base.dev)); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 202 | |
| 203 | st = kmalloc(sizeof(*st), GFP_KERNEL); |
| 204 | if (st == NULL) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 205 | return ERR_PTR(-ENOMEM); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 206 | |
| 207 | if (sg_alloc_table(st, 1, GFP_KERNEL)) { |
| 208 | kfree(st); |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 209 | return ERR_PTR(-ENOMEM); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | sg = st->sgl; |
| 213 | sg->offset = 0; |
| 214 | sg->length = obj->base.size; |
| 215 | |
| 216 | sg_dma_address(sg) = obj->phys_handle->busaddr; |
| 217 | sg_dma_len(sg) = obj->base.size; |
| 218 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 219 | return st; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | static void |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 223 | __i915_gem_object_release_shmem(struct drm_i915_gem_object *obj) |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 224 | { |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 225 | GEM_BUG_ON(obj->mm.madv == __I915_MADV_PURGED); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 226 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 227 | if (obj->mm.madv == I915_MADV_DONTNEED) |
| 228 | obj->mm.dirty = false; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 229 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 230 | if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) |
| 231 | i915_gem_clflush_object(obj, false); |
| 232 | |
| 233 | obj->base.read_domains = I915_GEM_DOMAIN_CPU; |
| 234 | obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
| 235 | } |
| 236 | |
| 237 | static void |
| 238 | i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj, |
| 239 | struct sg_table *pages) |
| 240 | { |
| 241 | __i915_gem_object_release_shmem(obj); |
| 242 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 243 | if (obj->mm.dirty) { |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 244 | struct address_space *mapping = obj->base.filp->f_mapping; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 245 | char *vaddr = obj->phys_handle->vaddr; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 246 | int i; |
| 247 | |
| 248 | for (i = 0; i < obj->base.size / PAGE_SIZE; i++) { |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 249 | struct page *page; |
| 250 | char *dst; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 251 | |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 252 | page = shmem_read_mapping_page(mapping, i); |
| 253 | if (IS_ERR(page)) |
| 254 | continue; |
| 255 | |
| 256 | dst = kmap_atomic(page); |
| 257 | drm_clflush_virt_range(vaddr, PAGE_SIZE); |
| 258 | memcpy(dst, vaddr, PAGE_SIZE); |
| 259 | kunmap_atomic(dst); |
| 260 | |
| 261 | set_page_dirty(page); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 262 | if (obj->mm.madv == I915_MADV_WILLNEED) |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 263 | mark_page_accessed(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 264 | put_page(page); |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 265 | vaddr += PAGE_SIZE; |
| 266 | } |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 267 | obj->mm.dirty = false; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 268 | } |
| 269 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 270 | sg_free_table(pages); |
| 271 | kfree(pages); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | static void |
| 275 | i915_gem_object_release_phys(struct drm_i915_gem_object *obj) |
| 276 | { |
| 277 | drm_pci_free(obj->base.dev, obj->phys_handle); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 278 | i915_gem_object_unpin_pages(obj); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | static const struct drm_i915_gem_object_ops i915_gem_phys_ops = { |
| 282 | .get_pages = i915_gem_object_get_pages_phys, |
| 283 | .put_pages = i915_gem_object_put_pages_phys, |
| 284 | .release = i915_gem_object_release_phys, |
| 285 | }; |
| 286 | |
Chris Wilson | 35a9611 | 2016-08-14 18:44:40 +0100 | [diff] [blame] | 287 | int i915_gem_object_unbind(struct drm_i915_gem_object *obj) |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 288 | { |
| 289 | struct i915_vma *vma; |
| 290 | LIST_HEAD(still_in_list); |
Chris Wilson | 02bef8f | 2016-08-14 18:44:41 +0100 | [diff] [blame] | 291 | int ret; |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 292 | |
Chris Wilson | 02bef8f | 2016-08-14 18:44:41 +0100 | [diff] [blame] | 293 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 294 | |
| 295 | /* Closed vma are removed from the obj->vma_list - but they may |
| 296 | * still have an active binding on the object. To remove those we |
| 297 | * must wait for all rendering to complete to the object (as unbinding |
| 298 | * must anyway), and retire the requests. |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 299 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 300 | ret = i915_gem_object_wait(obj, |
| 301 | I915_WAIT_INTERRUPTIBLE | |
| 302 | I915_WAIT_LOCKED | |
| 303 | I915_WAIT_ALL, |
| 304 | MAX_SCHEDULE_TIMEOUT, |
| 305 | NULL); |
Chris Wilson | 02bef8f | 2016-08-14 18:44:41 +0100 | [diff] [blame] | 306 | if (ret) |
| 307 | return ret; |
| 308 | |
| 309 | i915_gem_retire_requests(to_i915(obj->base.dev)); |
| 310 | |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 311 | while ((vma = list_first_entry_or_null(&obj->vma_list, |
| 312 | struct i915_vma, |
| 313 | obj_link))) { |
| 314 | list_move_tail(&vma->obj_link, &still_in_list); |
| 315 | ret = i915_vma_unbind(vma); |
| 316 | if (ret) |
| 317 | break; |
| 318 | } |
| 319 | list_splice(&still_in_list, &obj->vma_list); |
| 320 | |
| 321 | return ret; |
| 322 | } |
| 323 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 324 | static long |
| 325 | i915_gem_object_wait_fence(struct dma_fence *fence, |
| 326 | unsigned int flags, |
| 327 | long timeout, |
| 328 | struct intel_rps_client *rps) |
| 329 | { |
| 330 | struct drm_i915_gem_request *rq; |
| 331 | |
| 332 | BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1); |
| 333 | |
| 334 | if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) |
| 335 | return timeout; |
| 336 | |
| 337 | if (!dma_fence_is_i915(fence)) |
| 338 | return dma_fence_wait_timeout(fence, |
| 339 | flags & I915_WAIT_INTERRUPTIBLE, |
| 340 | timeout); |
| 341 | |
| 342 | rq = to_request(fence); |
| 343 | if (i915_gem_request_completed(rq)) |
| 344 | goto out; |
| 345 | |
| 346 | /* This client is about to stall waiting for the GPU. In many cases |
| 347 | * this is undesirable and limits the throughput of the system, as |
| 348 | * many clients cannot continue processing user input/output whilst |
| 349 | * blocked. RPS autotuning may take tens of milliseconds to respond |
| 350 | * to the GPU load and thus incurs additional latency for the client. |
| 351 | * We can circumvent that by promoting the GPU frequency to maximum |
| 352 | * before we wait. This makes the GPU throttle up much more quickly |
| 353 | * (good for benchmarks and user experience, e.g. window animations), |
| 354 | * but at a cost of spending more power processing the workload |
| 355 | * (bad for battery). Not all clients even want their results |
| 356 | * immediately and for them we should just let the GPU select its own |
| 357 | * frequency to maximise efficiency. To prevent a single client from |
| 358 | * forcing the clocks too high for the whole system, we only allow |
| 359 | * each client to waitboost once in a busy period. |
| 360 | */ |
| 361 | if (rps) { |
| 362 | if (INTEL_GEN(rq->i915) >= 6) |
| 363 | gen6_rps_boost(rq->i915, rps, rq->emitted_jiffies); |
| 364 | else |
| 365 | rps = NULL; |
| 366 | } |
| 367 | |
| 368 | timeout = i915_wait_request(rq, flags, timeout); |
| 369 | |
| 370 | out: |
| 371 | if (flags & I915_WAIT_LOCKED && i915_gem_request_completed(rq)) |
| 372 | i915_gem_request_retire_upto(rq); |
| 373 | |
| 374 | if (rps && rq->fence.seqno == rq->engine->last_submitted_seqno) { |
| 375 | /* The GPU is now idle and this client has stalled. |
| 376 | * Since no other client has submitted a request in the |
| 377 | * meantime, assume that this client is the only one |
| 378 | * supplying work to the GPU but is unable to keep that |
| 379 | * work supplied because it is waiting. Since the GPU is |
| 380 | * then never kept fully busy, RPS autoclocking will |
| 381 | * keep the clocks relatively low, causing further delays. |
| 382 | * Compensate by giving the synchronous client credit for |
| 383 | * a waitboost next time. |
| 384 | */ |
| 385 | spin_lock(&rq->i915->rps.client_lock); |
| 386 | list_del_init(&rps->link); |
| 387 | spin_unlock(&rq->i915->rps.client_lock); |
| 388 | } |
| 389 | |
| 390 | return timeout; |
| 391 | } |
| 392 | |
| 393 | static long |
| 394 | i915_gem_object_wait_reservation(struct reservation_object *resv, |
| 395 | unsigned int flags, |
| 396 | long timeout, |
| 397 | struct intel_rps_client *rps) |
| 398 | { |
| 399 | struct dma_fence *excl; |
| 400 | |
| 401 | if (flags & I915_WAIT_ALL) { |
| 402 | struct dma_fence **shared; |
| 403 | unsigned int count, i; |
| 404 | int ret; |
| 405 | |
| 406 | ret = reservation_object_get_fences_rcu(resv, |
| 407 | &excl, &count, &shared); |
| 408 | if (ret) |
| 409 | return ret; |
| 410 | |
| 411 | for (i = 0; i < count; i++) { |
| 412 | timeout = i915_gem_object_wait_fence(shared[i], |
| 413 | flags, timeout, |
| 414 | rps); |
| 415 | if (timeout <= 0) |
| 416 | break; |
| 417 | |
| 418 | dma_fence_put(shared[i]); |
| 419 | } |
| 420 | |
| 421 | for (; i < count; i++) |
| 422 | dma_fence_put(shared[i]); |
| 423 | kfree(shared); |
| 424 | } else { |
| 425 | excl = reservation_object_get_excl_rcu(resv); |
| 426 | } |
| 427 | |
| 428 | if (excl && timeout > 0) |
| 429 | timeout = i915_gem_object_wait_fence(excl, flags, timeout, rps); |
| 430 | |
| 431 | dma_fence_put(excl); |
| 432 | |
| 433 | return timeout; |
| 434 | } |
| 435 | |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 436 | /** |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 437 | * Waits for rendering to the object to be completed |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 438 | * @obj: i915 gem object |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 439 | * @flags: how to wait (under a lock, for all rendering or just for writes etc) |
| 440 | * @timeout: how long to wait |
| 441 | * @rps: client (user process) to charge for any waitboosting |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 442 | */ |
| 443 | int |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 444 | i915_gem_object_wait(struct drm_i915_gem_object *obj, |
| 445 | unsigned int flags, |
| 446 | long timeout, |
| 447 | struct intel_rps_client *rps) |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 448 | { |
| 449 | struct reservation_object *resv; |
| 450 | struct i915_gem_active *active; |
| 451 | unsigned long active_mask; |
| 452 | int idx; |
| 453 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 454 | might_sleep(); |
| 455 | #if IS_ENABLED(CONFIG_LOCKDEP) |
| 456 | GEM_BUG_ON(debug_locks && |
| 457 | !!lockdep_is_held(&obj->base.dev->struct_mutex) != |
| 458 | !!(flags & I915_WAIT_LOCKED)); |
| 459 | #endif |
| 460 | GEM_BUG_ON(timeout < 0); |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 461 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 462 | if (flags & I915_WAIT_ALL) { |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 463 | active = obj->last_read; |
| 464 | active_mask = i915_gem_object_get_active(obj); |
| 465 | } else { |
| 466 | active_mask = 1; |
| 467 | active = &obj->last_write; |
| 468 | } |
| 469 | |
| 470 | for_each_active(active_mask, idx) { |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 471 | struct drm_i915_gem_request *request; |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 472 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 473 | request = i915_gem_active_get_unlocked(&active[idx]); |
| 474 | if (request) { |
| 475 | timeout = i915_gem_object_wait_fence(&request->fence, |
| 476 | flags, timeout, |
| 477 | rps); |
| 478 | i915_gem_request_put(request); |
| 479 | } |
| 480 | if (timeout < 0) |
| 481 | return timeout; |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | resv = i915_gem_object_get_dmabuf_resv(obj); |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 485 | if (resv) |
| 486 | timeout = i915_gem_object_wait_reservation(resv, |
| 487 | flags, timeout, |
| 488 | rps); |
| 489 | return timeout < 0 ? timeout : 0; |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | static struct intel_rps_client *to_rps_client(struct drm_file *file) |
| 493 | { |
| 494 | struct drm_i915_file_private *fpriv = file->driver_priv; |
| 495 | |
| 496 | return &fpriv->rps; |
| 497 | } |
| 498 | |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 499 | int |
| 500 | i915_gem_object_attach_phys(struct drm_i915_gem_object *obj, |
| 501 | int align) |
| 502 | { |
| 503 | drm_dma_handle_t *phys; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 504 | int ret; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 505 | |
| 506 | if (obj->phys_handle) { |
| 507 | if ((unsigned long)obj->phys_handle->vaddr & (align -1)) |
| 508 | return -EBUSY; |
| 509 | |
| 510 | return 0; |
| 511 | } |
| 512 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 513 | if (obj->mm.madv != I915_MADV_WILLNEED) |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 514 | return -EFAULT; |
| 515 | |
| 516 | if (obj->base.filp == NULL) |
| 517 | return -EINVAL; |
| 518 | |
Chris Wilson | 4717ca9 | 2016-08-04 07:52:28 +0100 | [diff] [blame] | 519 | ret = i915_gem_object_unbind(obj); |
| 520 | if (ret) |
| 521 | return ret; |
| 522 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 523 | __i915_gem_object_put_pages(obj); |
| 524 | if (obj->mm.pages) |
| 525 | return -EBUSY; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 526 | |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 527 | /* create a new object */ |
| 528 | phys = drm_pci_alloc(obj->base.dev, obj->base.size, align); |
| 529 | if (!phys) |
| 530 | return -ENOMEM; |
| 531 | |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 532 | obj->phys_handle = phys; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 533 | obj->ops = &i915_gem_phys_ops; |
| 534 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 535 | return i915_gem_object_pin_pages(obj); |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | static int |
| 539 | i915_gem_phys_pwrite(struct drm_i915_gem_object *obj, |
| 540 | struct drm_i915_gem_pwrite *args, |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 541 | struct drm_file *file) |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 542 | { |
| 543 | struct drm_device *dev = obj->base.dev; |
| 544 | void *vaddr = obj->phys_handle->vaddr + args->offset; |
Gustavo Padovan | 3ed605b | 2016-04-26 12:32:27 -0300 | [diff] [blame] | 545 | char __user *user_data = u64_to_user_ptr(args->data_ptr); |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 546 | int ret; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 547 | |
| 548 | /* We manually control the domain here and pretend that it |
| 549 | * remains coherent i.e. in the GTT domain, like shmem_pwrite. |
| 550 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 551 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 552 | ret = i915_gem_object_wait(obj, |
| 553 | I915_WAIT_INTERRUPTIBLE | |
| 554 | I915_WAIT_LOCKED | |
| 555 | I915_WAIT_ALL, |
| 556 | MAX_SCHEDULE_TIMEOUT, |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 557 | to_rps_client(file)); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 558 | if (ret) |
| 559 | return ret; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 560 | |
Rodrigo Vivi | 77a0d1c | 2015-06-18 11:43:24 -0700 | [diff] [blame] | 561 | intel_fb_obj_invalidate(obj, ORIGIN_CPU); |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 562 | if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) { |
| 563 | unsigned long unwritten; |
| 564 | |
| 565 | /* The physical object once assigned is fixed for the lifetime |
| 566 | * of the obj, so we can safely drop the lock and continue |
| 567 | * to access vaddr. |
| 568 | */ |
| 569 | mutex_unlock(&dev->struct_mutex); |
| 570 | unwritten = copy_from_user(vaddr, user_data, args->size); |
| 571 | mutex_lock(&dev->struct_mutex); |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 572 | if (unwritten) { |
| 573 | ret = -EFAULT; |
| 574 | goto out; |
| 575 | } |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 576 | } |
| 577 | |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 578 | drm_clflush_virt_range(vaddr, args->size); |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 579 | i915_gem_chipset_flush(to_i915(dev)); |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 580 | |
| 581 | out: |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 582 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 583 | return ret; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 584 | } |
| 585 | |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 586 | void *i915_gem_object_alloc(struct drm_device *dev) |
| 587 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 588 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 589 | return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | void i915_gem_object_free(struct drm_i915_gem_object *obj) |
| 593 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 594 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 595 | kmem_cache_free(dev_priv->objects, obj); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 598 | static int |
| 599 | i915_gem_create(struct drm_file *file, |
| 600 | struct drm_device *dev, |
| 601 | uint64_t size, |
| 602 | uint32_t *handle_p) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 603 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 604 | struct drm_i915_gem_object *obj; |
Pekka Paalanen | a1a2d1d | 2009-08-23 12:40:55 +0300 | [diff] [blame] | 605 | int ret; |
| 606 | u32 handle; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 607 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 608 | size = roundup(size, PAGE_SIZE); |
Chris Wilson | 8ffc024 | 2011-09-14 14:14:28 +0200 | [diff] [blame] | 609 | if (size == 0) |
| 610 | return -EINVAL; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 611 | |
| 612 | /* Allocate the new object */ |
Dave Gordon | d37cd8a | 2016-04-22 19:14:32 +0100 | [diff] [blame] | 613 | obj = i915_gem_object_create(dev, size); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 614 | if (IS_ERR(obj)) |
| 615 | return PTR_ERR(obj); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 616 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 617 | ret = drm_gem_handle_create(file, &obj->base, &handle); |
Chris Wilson | 202f2fe | 2010-10-14 13:20:40 +0100 | [diff] [blame] | 618 | /* drop reference from allocate - handle holds it now */ |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 619 | i915_gem_object_put_unlocked(obj); |
Daniel Vetter | d861e33 | 2013-07-24 23:25:03 +0200 | [diff] [blame] | 620 | if (ret) |
| 621 | return ret; |
Chris Wilson | 202f2fe | 2010-10-14 13:20:40 +0100 | [diff] [blame] | 622 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 623 | *handle_p = handle; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 624 | return 0; |
| 625 | } |
| 626 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 627 | int |
| 628 | i915_gem_dumb_create(struct drm_file *file, |
| 629 | struct drm_device *dev, |
| 630 | struct drm_mode_create_dumb *args) |
| 631 | { |
| 632 | /* have to work out size/pitch and return them */ |
Paulo Zanoni | de45eaf | 2013-10-18 18:48:24 -0300 | [diff] [blame] | 633 | args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 634 | args->size = args->pitch * args->height; |
| 635 | return i915_gem_create(file, dev, |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 636 | args->size, &args->handle); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 637 | } |
| 638 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 639 | /** |
| 640 | * Creates a new mm object and returns a handle to it. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 641 | * @dev: drm device pointer |
| 642 | * @data: ioctl data blob |
| 643 | * @file: drm file pointer |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 644 | */ |
| 645 | int |
| 646 | i915_gem_create_ioctl(struct drm_device *dev, void *data, |
| 647 | struct drm_file *file) |
| 648 | { |
| 649 | struct drm_i915_gem_create *args = data; |
Daniel Vetter | 63ed2cb | 2012-04-23 16:50:50 +0200 | [diff] [blame] | 650 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 651 | return i915_gem_create(file, dev, |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 652 | args->size, &args->handle); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 653 | } |
| 654 | |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 655 | static inline int |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 656 | __copy_to_user_swizzled(char __user *cpu_vaddr, |
| 657 | const char *gpu_vaddr, int gpu_offset, |
| 658 | int length) |
| 659 | { |
| 660 | int ret, cpu_offset = 0; |
| 661 | |
| 662 | while (length > 0) { |
| 663 | int cacheline_end = ALIGN(gpu_offset + 1, 64); |
| 664 | int this_length = min(cacheline_end - gpu_offset, length); |
| 665 | int swizzled_gpu_offset = gpu_offset ^ 64; |
| 666 | |
| 667 | ret = __copy_to_user(cpu_vaddr + cpu_offset, |
| 668 | gpu_vaddr + swizzled_gpu_offset, |
| 669 | this_length); |
| 670 | if (ret) |
| 671 | return ret + length; |
| 672 | |
| 673 | cpu_offset += this_length; |
| 674 | gpu_offset += this_length; |
| 675 | length -= this_length; |
| 676 | } |
| 677 | |
| 678 | return 0; |
| 679 | } |
| 680 | |
| 681 | static inline int |
Ben Widawsky | 4f0c7cf | 2012-04-16 14:07:47 -0700 | [diff] [blame] | 682 | __copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset, |
| 683 | const char __user *cpu_vaddr, |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 684 | int length) |
| 685 | { |
| 686 | int ret, cpu_offset = 0; |
| 687 | |
| 688 | while (length > 0) { |
| 689 | int cacheline_end = ALIGN(gpu_offset + 1, 64); |
| 690 | int this_length = min(cacheline_end - gpu_offset, length); |
| 691 | int swizzled_gpu_offset = gpu_offset ^ 64; |
| 692 | |
| 693 | ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset, |
| 694 | cpu_vaddr + cpu_offset, |
| 695 | this_length); |
| 696 | if (ret) |
| 697 | return ret + length; |
| 698 | |
| 699 | cpu_offset += this_length; |
| 700 | gpu_offset += this_length; |
| 701 | length -= this_length; |
| 702 | } |
| 703 | |
| 704 | return 0; |
| 705 | } |
| 706 | |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 707 | /* |
| 708 | * Pins the specified object's pages and synchronizes the object with |
| 709 | * GPU accesses. Sets needs_clflush to non-zero if the caller should |
| 710 | * flush the object from the CPU cache. |
| 711 | */ |
| 712 | int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj, |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 713 | unsigned int *needs_clflush) |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 714 | { |
| 715 | int ret; |
| 716 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 717 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 718 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 719 | *needs_clflush = 0; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 720 | if (!i915_gem_object_has_struct_page(obj)) |
| 721 | return -ENODEV; |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 722 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 723 | ret = i915_gem_object_wait(obj, |
| 724 | I915_WAIT_INTERRUPTIBLE | |
| 725 | I915_WAIT_LOCKED, |
| 726 | MAX_SCHEDULE_TIMEOUT, |
| 727 | NULL); |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 728 | if (ret) |
| 729 | return ret; |
| 730 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 731 | ret = i915_gem_object_pin_pages(obj); |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 732 | if (ret) |
| 733 | return ret; |
| 734 | |
Chris Wilson | a314d5c | 2016-08-18 17:16:48 +0100 | [diff] [blame] | 735 | i915_gem_object_flush_gtt_write_domain(obj); |
| 736 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 737 | /* If we're not in the cpu read domain, set ourself into the gtt |
| 738 | * read domain and manually flush cachelines (if required). This |
| 739 | * optimizes for the case when the gpu will dirty the data |
| 740 | * anyway again before the next pread happens. |
| 741 | */ |
| 742 | if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 743 | *needs_clflush = !cpu_cache_is_coherent(obj->base.dev, |
| 744 | obj->cache_level); |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 745 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 746 | if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) { |
| 747 | ret = i915_gem_object_set_to_cpu_domain(obj, false); |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 748 | if (ret) |
| 749 | goto err_unpin; |
| 750 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 751 | *needs_clflush = 0; |
| 752 | } |
| 753 | |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 754 | /* return with the pages pinned */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 755 | return 0; |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 756 | |
| 757 | err_unpin: |
| 758 | i915_gem_object_unpin_pages(obj); |
| 759 | return ret; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj, |
| 763 | unsigned int *needs_clflush) |
| 764 | { |
| 765 | int ret; |
| 766 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 767 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 768 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 769 | *needs_clflush = 0; |
| 770 | if (!i915_gem_object_has_struct_page(obj)) |
| 771 | return -ENODEV; |
| 772 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 773 | ret = i915_gem_object_wait(obj, |
| 774 | I915_WAIT_INTERRUPTIBLE | |
| 775 | I915_WAIT_LOCKED | |
| 776 | I915_WAIT_ALL, |
| 777 | MAX_SCHEDULE_TIMEOUT, |
| 778 | NULL); |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 779 | if (ret) |
| 780 | return ret; |
| 781 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 782 | ret = i915_gem_object_pin_pages(obj); |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 783 | if (ret) |
| 784 | return ret; |
| 785 | |
Chris Wilson | a314d5c | 2016-08-18 17:16:48 +0100 | [diff] [blame] | 786 | i915_gem_object_flush_gtt_write_domain(obj); |
| 787 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 788 | /* If we're not in the cpu write domain, set ourself into the |
| 789 | * gtt write domain and manually flush cachelines (as required). |
| 790 | * This optimizes for the case when the gpu will use the data |
| 791 | * right away and we therefore have to clflush anyway. |
| 792 | */ |
| 793 | if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) |
| 794 | *needs_clflush |= cpu_write_needs_clflush(obj) << 1; |
| 795 | |
| 796 | /* Same trick applies to invalidate partially written cachelines read |
| 797 | * before writing. |
| 798 | */ |
| 799 | if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) |
| 800 | *needs_clflush |= !cpu_cache_is_coherent(obj->base.dev, |
| 801 | obj->cache_level); |
| 802 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 803 | if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) { |
| 804 | ret = i915_gem_object_set_to_cpu_domain(obj, true); |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 805 | if (ret) |
| 806 | goto err_unpin; |
| 807 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 808 | *needs_clflush = 0; |
| 809 | } |
| 810 | |
| 811 | if ((*needs_clflush & CLFLUSH_AFTER) == 0) |
| 812 | obj->cache_dirty = true; |
| 813 | |
| 814 | intel_fb_obj_invalidate(obj, ORIGIN_CPU); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 815 | obj->mm.dirty = true; |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 816 | /* return with the pages pinned */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 817 | return 0; |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 818 | |
| 819 | err_unpin: |
| 820 | i915_gem_object_unpin_pages(obj); |
| 821 | return ret; |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 822 | } |
| 823 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 824 | /* Per-page copy function for the shmem pread fastpath. |
| 825 | * Flushes invalid cachelines before reading the target if |
| 826 | * needs_clflush is set. */ |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 827 | static int |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 828 | shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length, |
| 829 | char __user *user_data, |
| 830 | bool page_do_bit17_swizzling, bool needs_clflush) |
| 831 | { |
| 832 | char *vaddr; |
| 833 | int ret; |
| 834 | |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 835 | if (unlikely(page_do_bit17_swizzling)) |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 836 | return -EINVAL; |
| 837 | |
| 838 | vaddr = kmap_atomic(page); |
| 839 | if (needs_clflush) |
| 840 | drm_clflush_virt_range(vaddr + shmem_page_offset, |
| 841 | page_length); |
| 842 | ret = __copy_to_user_inatomic(user_data, |
| 843 | vaddr + shmem_page_offset, |
| 844 | page_length); |
| 845 | kunmap_atomic(vaddr); |
| 846 | |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 847 | return ret ? -EFAULT : 0; |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 848 | } |
| 849 | |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 850 | static void |
| 851 | shmem_clflush_swizzled_range(char *addr, unsigned long length, |
| 852 | bool swizzled) |
| 853 | { |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 854 | if (unlikely(swizzled)) { |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 855 | unsigned long start = (unsigned long) addr; |
| 856 | unsigned long end = (unsigned long) addr + length; |
| 857 | |
| 858 | /* For swizzling simply ensure that we always flush both |
| 859 | * channels. Lame, but simple and it works. Swizzled |
| 860 | * pwrite/pread is far from a hotpath - current userspace |
| 861 | * doesn't use it at all. */ |
| 862 | start = round_down(start, 128); |
| 863 | end = round_up(end, 128); |
| 864 | |
| 865 | drm_clflush_virt_range((void *)start, end - start); |
| 866 | } else { |
| 867 | drm_clflush_virt_range(addr, length); |
| 868 | } |
| 869 | |
| 870 | } |
| 871 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 872 | /* Only difference to the fast-path function is that this can handle bit17 |
| 873 | * and uses non-atomic copy and kmap functions. */ |
| 874 | static int |
| 875 | shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length, |
| 876 | char __user *user_data, |
| 877 | bool page_do_bit17_swizzling, bool needs_clflush) |
| 878 | { |
| 879 | char *vaddr; |
| 880 | int ret; |
| 881 | |
| 882 | vaddr = kmap(page); |
| 883 | if (needs_clflush) |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 884 | shmem_clflush_swizzled_range(vaddr + shmem_page_offset, |
| 885 | page_length, |
| 886 | page_do_bit17_swizzling); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 887 | |
| 888 | if (page_do_bit17_swizzling) |
| 889 | ret = __copy_to_user_swizzled(user_data, |
| 890 | vaddr, shmem_page_offset, |
| 891 | page_length); |
| 892 | else |
| 893 | ret = __copy_to_user(user_data, |
| 894 | vaddr + shmem_page_offset, |
| 895 | page_length); |
| 896 | kunmap(page); |
| 897 | |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 898 | return ret ? - EFAULT : 0; |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 899 | } |
| 900 | |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 901 | static inline unsigned long |
| 902 | slow_user_access(struct io_mapping *mapping, |
| 903 | uint64_t page_base, int page_offset, |
| 904 | char __user *user_data, |
| 905 | unsigned long length, bool pwrite) |
| 906 | { |
| 907 | void __iomem *ioaddr; |
| 908 | void *vaddr; |
| 909 | uint64_t unwritten; |
| 910 | |
| 911 | ioaddr = io_mapping_map_wc(mapping, page_base, PAGE_SIZE); |
| 912 | /* We can use the cpu mem copy function because this is X86. */ |
| 913 | vaddr = (void __force *)ioaddr + page_offset; |
| 914 | if (pwrite) |
| 915 | unwritten = __copy_from_user(vaddr, user_data, length); |
| 916 | else |
| 917 | unwritten = __copy_to_user(user_data, vaddr, length); |
| 918 | |
| 919 | io_mapping_unmap(ioaddr); |
| 920 | return unwritten; |
| 921 | } |
| 922 | |
| 923 | static int |
| 924 | i915_gem_gtt_pread(struct drm_device *dev, |
| 925 | struct drm_i915_gem_object *obj, uint64_t size, |
| 926 | uint64_t data_offset, uint64_t data_ptr) |
| 927 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 928 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 929 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 930 | struct i915_vma *vma; |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 931 | struct drm_mm_node node; |
| 932 | char __user *user_data; |
| 933 | uint64_t remain; |
| 934 | uint64_t offset; |
| 935 | int ret; |
| 936 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 937 | intel_runtime_pm_get(to_i915(dev)); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 938 | vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, PIN_MAPPABLE); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 939 | if (!IS_ERR(vma)) { |
| 940 | node.start = i915_ggtt_offset(vma); |
| 941 | node.allocated = false; |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 942 | ret = i915_vma_put_fence(vma); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 943 | if (ret) { |
| 944 | i915_vma_unpin(vma); |
| 945 | vma = ERR_PTR(ret); |
| 946 | } |
| 947 | } |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 948 | if (IS_ERR(vma)) { |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 949 | ret = insert_mappable_node(dev_priv, &node, PAGE_SIZE); |
| 950 | if (ret) |
| 951 | goto out; |
| 952 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 953 | ret = i915_gem_object_pin_pages(obj); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 954 | if (ret) { |
| 955 | remove_mappable_node(&node); |
| 956 | goto out; |
| 957 | } |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | ret = i915_gem_object_set_to_gtt_domain(obj, false); |
| 961 | if (ret) |
| 962 | goto out_unpin; |
| 963 | |
| 964 | user_data = u64_to_user_ptr(data_ptr); |
| 965 | remain = size; |
| 966 | offset = data_offset; |
| 967 | |
| 968 | mutex_unlock(&dev->struct_mutex); |
| 969 | if (likely(!i915.prefault_disable)) { |
Al Viro | 4bce9f6 | 2016-09-17 18:02:44 -0400 | [diff] [blame] | 970 | ret = fault_in_pages_writeable(user_data, remain); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 971 | if (ret) { |
| 972 | mutex_lock(&dev->struct_mutex); |
| 973 | goto out_unpin; |
| 974 | } |
| 975 | } |
| 976 | |
| 977 | while (remain > 0) { |
| 978 | /* Operation in this page |
| 979 | * |
| 980 | * page_base = page offset within aperture |
| 981 | * page_offset = offset within page |
| 982 | * page_length = bytes to copy for this page |
| 983 | */ |
| 984 | u32 page_base = node.start; |
| 985 | unsigned page_offset = offset_in_page(offset); |
| 986 | unsigned page_length = PAGE_SIZE - page_offset; |
| 987 | page_length = remain < page_length ? remain : page_length; |
| 988 | if (node.allocated) { |
| 989 | wmb(); |
| 990 | ggtt->base.insert_page(&ggtt->base, |
| 991 | i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT), |
| 992 | node.start, |
| 993 | I915_CACHE_NONE, 0); |
| 994 | wmb(); |
| 995 | } else { |
| 996 | page_base += offset & PAGE_MASK; |
| 997 | } |
| 998 | /* This is a slow read/write as it tries to read from |
| 999 | * and write to user memory which may result into page |
| 1000 | * faults, and so we cannot perform this under struct_mutex. |
| 1001 | */ |
Chris Wilson | f7bbe78 | 2016-08-19 16:54:27 +0100 | [diff] [blame] | 1002 | if (slow_user_access(&ggtt->mappable, page_base, |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1003 | page_offset, user_data, |
| 1004 | page_length, false)) { |
| 1005 | ret = -EFAULT; |
| 1006 | break; |
| 1007 | } |
| 1008 | |
| 1009 | remain -= page_length; |
| 1010 | user_data += page_length; |
| 1011 | offset += page_length; |
| 1012 | } |
| 1013 | |
| 1014 | mutex_lock(&dev->struct_mutex); |
| 1015 | if (ret == 0 && (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) { |
| 1016 | /* The user has modified the object whilst we tried |
| 1017 | * reading from it, and we now have no idea what domain |
| 1018 | * the pages should be in. As we have just been touching |
| 1019 | * them directly, flush everything back to the GTT |
| 1020 | * domain. |
| 1021 | */ |
| 1022 | ret = i915_gem_object_set_to_gtt_domain(obj, false); |
| 1023 | } |
| 1024 | |
| 1025 | out_unpin: |
| 1026 | if (node.allocated) { |
| 1027 | wmb(); |
| 1028 | ggtt->base.clear_range(&ggtt->base, |
Michał Winiarski | 4fb84d9 | 2016-10-13 14:02:40 +0200 | [diff] [blame] | 1029 | node.start, node.size); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1030 | i915_gem_object_unpin_pages(obj); |
| 1031 | remove_mappable_node(&node); |
| 1032 | } else { |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1033 | i915_vma_unpin(vma); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1034 | } |
| 1035 | out: |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1036 | intel_runtime_pm_put(to_i915(dev)); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1037 | return ret; |
| 1038 | } |
| 1039 | |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1040 | static int |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1041 | i915_gem_shmem_pread(struct drm_device *dev, |
| 1042 | struct drm_i915_gem_object *obj, |
| 1043 | struct drm_i915_gem_pread *args, |
| 1044 | struct drm_file *file) |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1045 | { |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1046 | char __user *user_data; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1047 | ssize_t remain; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1048 | loff_t offset; |
Ben Widawsky | eb2c0c8 | 2012-02-15 14:42:43 +0100 | [diff] [blame] | 1049 | int shmem_page_offset, page_length, ret = 0; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1050 | int obj_do_bit17_swizzling, page_do_bit17_swizzling; |
Daniel Vetter | 96d79b5 | 2012-03-25 19:47:36 +0200 | [diff] [blame] | 1051 | int prefaulted = 0; |
Daniel Vetter | 8489731 | 2012-03-25 19:47:31 +0200 | [diff] [blame] | 1052 | int needs_clflush = 0; |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1053 | struct sg_page_iter sg_iter; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1054 | |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 1055 | ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush); |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1056 | if (ret) |
| 1057 | return ret; |
| 1058 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1059 | obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj); |
| 1060 | user_data = u64_to_user_ptr(args->data_ptr); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1061 | offset = args->offset; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1062 | remain = args->size; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1063 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 1064 | for_each_sg_page(obj->mm.pages->sgl, &sg_iter, obj->mm.pages->nents, |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1065 | offset >> PAGE_SHIFT) { |
Imre Deak | 2db76d7 | 2013-03-26 15:14:18 +0200 | [diff] [blame] | 1066 | struct page *page = sg_page_iter_page(&sg_iter); |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 1067 | |
| 1068 | if (remain <= 0) |
| 1069 | break; |
| 1070 | |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1071 | /* Operation in this page |
| 1072 | * |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1073 | * shmem_page_offset = offset within page in shmem file |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1074 | * page_length = bytes to copy for this page |
| 1075 | */ |
Chris Wilson | c8cbbb8 | 2011-05-12 22:17:11 +0100 | [diff] [blame] | 1076 | shmem_page_offset = offset_in_page(offset); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1077 | page_length = remain; |
| 1078 | if ((shmem_page_offset + page_length) > PAGE_SIZE) |
| 1079 | page_length = PAGE_SIZE - shmem_page_offset; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1080 | |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1081 | page_do_bit17_swizzling = obj_do_bit17_swizzling && |
| 1082 | (page_to_phys(page) & (1 << 17)) != 0; |
| 1083 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1084 | ret = shmem_pread_fast(page, shmem_page_offset, page_length, |
| 1085 | user_data, page_do_bit17_swizzling, |
| 1086 | needs_clflush); |
| 1087 | if (ret == 0) |
| 1088 | goto next_page; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1089 | |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1090 | mutex_unlock(&dev->struct_mutex); |
| 1091 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 1092 | if (likely(!i915.prefault_disable) && !prefaulted) { |
Al Viro | 4bce9f6 | 2016-09-17 18:02:44 -0400 | [diff] [blame] | 1093 | ret = fault_in_pages_writeable(user_data, remain); |
Daniel Vetter | 96d79b5 | 2012-03-25 19:47:36 +0200 | [diff] [blame] | 1094 | /* Userspace is tricking us, but we've already clobbered |
| 1095 | * its pages with the prefault and promised to write the |
| 1096 | * data up to the first fault. Hence ignore any errors |
| 1097 | * and just continue. */ |
| 1098 | (void)ret; |
| 1099 | prefaulted = 1; |
| 1100 | } |
| 1101 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1102 | ret = shmem_pread_slow(page, shmem_page_offset, page_length, |
| 1103 | user_data, page_do_bit17_swizzling, |
| 1104 | needs_clflush); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1105 | |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1106 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1107 | |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1108 | if (ret) |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1109 | goto out; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1110 | |
Chris Wilson | 17793c9 | 2014-03-07 08:30:36 +0000 | [diff] [blame] | 1111 | next_page: |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1112 | remain -= page_length; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1113 | user_data += page_length; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1114 | offset += page_length; |
| 1115 | } |
| 1116 | |
Chris Wilson | 4f27b75 | 2010-10-14 15:26:45 +0100 | [diff] [blame] | 1117 | out: |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1118 | i915_gem_obj_finish_shmem_access(obj); |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1119 | |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1120 | return ret; |
| 1121 | } |
| 1122 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1123 | /** |
| 1124 | * Reads data from the object referenced by handle. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1125 | * @dev: drm device pointer |
| 1126 | * @data: ioctl data blob |
| 1127 | * @file: drm file pointer |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1128 | * |
| 1129 | * On error, the contents of *data are undefined. |
| 1130 | */ |
| 1131 | int |
| 1132 | i915_gem_pread_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1133 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1134 | { |
| 1135 | struct drm_i915_gem_pread *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1136 | struct drm_i915_gem_object *obj; |
Chris Wilson | 35b62a8 | 2010-09-26 20:23:38 +0100 | [diff] [blame] | 1137 | int ret = 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1138 | |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1139 | if (args->size == 0) |
| 1140 | return 0; |
| 1141 | |
| 1142 | if (!access_ok(VERIFY_WRITE, |
Gustavo Padovan | 3ed605b | 2016-04-26 12:32:27 -0300 | [diff] [blame] | 1143 | u64_to_user_ptr(args->data_ptr), |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1144 | args->size)) |
| 1145 | return -EFAULT; |
| 1146 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1147 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1148 | if (!obj) |
| 1149 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1150 | |
Chris Wilson | 7dcd249 | 2010-09-26 20:21:44 +0100 | [diff] [blame] | 1151 | /* Bounds check source. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1152 | if (args->offset > obj->base.size || |
| 1153 | args->size > obj->base.size - args->offset) { |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1154 | ret = -EINVAL; |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1155 | goto err; |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1156 | } |
| 1157 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1158 | trace_i915_gem_object_pread(obj, args->offset, args->size); |
| 1159 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1160 | ret = i915_gem_object_wait(obj, |
| 1161 | I915_WAIT_INTERRUPTIBLE, |
| 1162 | MAX_SCHEDULE_TIMEOUT, |
| 1163 | to_rps_client(file)); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1164 | if (ret) |
| 1165 | goto err; |
| 1166 | |
| 1167 | ret = i915_mutex_lock_interruptible(dev); |
| 1168 | if (ret) |
| 1169 | goto err; |
| 1170 | |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1171 | ret = i915_gem_shmem_pread(dev, obj, args, file); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1172 | |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1173 | /* pread for non shmem backed objects */ |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1174 | if (ret == -EFAULT || ret == -ENODEV) |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1175 | ret = i915_gem_gtt_pread(dev, obj, args->size, |
| 1176 | args->offset, args->data_ptr); |
| 1177 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 1178 | i915_gem_object_put(obj); |
Chris Wilson | 4f27b75 | 2010-10-14 15:26:45 +0100 | [diff] [blame] | 1179 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1180 | |
| 1181 | return ret; |
| 1182 | |
| 1183 | err: |
| 1184 | i915_gem_object_put_unlocked(obj); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1185 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1186 | } |
| 1187 | |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1188 | /* This is the fast write path which cannot handle |
| 1189 | * page faults in the source data |
Linus Torvalds | 9b7530cc | 2008-10-20 14:16:43 -0700 | [diff] [blame] | 1190 | */ |
Linus Torvalds | 9b7530cc | 2008-10-20 14:16:43 -0700 | [diff] [blame] | 1191 | |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1192 | static inline int |
| 1193 | fast_user_write(struct io_mapping *mapping, |
| 1194 | loff_t page_base, int page_offset, |
| 1195 | char __user *user_data, |
| 1196 | int length) |
| 1197 | { |
Ben Widawsky | 4f0c7cf | 2012-04-16 14:07:47 -0700 | [diff] [blame] | 1198 | void __iomem *vaddr_atomic; |
| 1199 | void *vaddr; |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1200 | unsigned long unwritten; |
| 1201 | |
Peter Zijlstra | 3e4d3af | 2010-10-26 14:21:51 -0700 | [diff] [blame] | 1202 | vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base); |
Ben Widawsky | 4f0c7cf | 2012-04-16 14:07:47 -0700 | [diff] [blame] | 1203 | /* We can use the cpu mem copy function because this is X86. */ |
| 1204 | vaddr = (void __force*)vaddr_atomic + page_offset; |
| 1205 | unwritten = __copy_from_user_inatomic_nocache(vaddr, |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1206 | user_data, length); |
Peter Zijlstra | 3e4d3af | 2010-10-26 14:21:51 -0700 | [diff] [blame] | 1207 | io_mapping_unmap_atomic(vaddr_atomic); |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1208 | return unwritten; |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1209 | } |
| 1210 | |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1211 | /** |
| 1212 | * This is the fast pwrite path, where we copy the data directly from the |
| 1213 | * user into the GTT, uncached. |
Daniel Vetter | 62f90b3 | 2016-07-15 21:48:07 +0200 | [diff] [blame] | 1214 | * @i915: i915 device private data |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1215 | * @obj: i915 gem object |
| 1216 | * @args: pwrite arguments structure |
| 1217 | * @file: drm file pointer |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1218 | */ |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1219 | static int |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1220 | i915_gem_gtt_pwrite_fast(struct drm_i915_private *i915, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1221 | struct drm_i915_gem_object *obj, |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1222 | struct drm_i915_gem_pwrite *args, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1223 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1224 | { |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1225 | struct i915_ggtt *ggtt = &i915->ggtt; |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1226 | struct drm_device *dev = obj->base.dev; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1227 | struct i915_vma *vma; |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1228 | struct drm_mm_node node; |
| 1229 | uint64_t remain, offset; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1230 | char __user *user_data; |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1231 | int ret; |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1232 | bool hit_slow_path = false; |
| 1233 | |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 1234 | if (i915_gem_object_is_tiled(obj)) |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1235 | return -EFAULT; |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1236 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1237 | intel_runtime_pm_get(i915); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1238 | vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, |
Chris Wilson | de89508 | 2016-08-04 16:32:34 +0100 | [diff] [blame] | 1239 | PIN_MAPPABLE | PIN_NONBLOCK); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 1240 | if (!IS_ERR(vma)) { |
| 1241 | node.start = i915_ggtt_offset(vma); |
| 1242 | node.allocated = false; |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 1243 | ret = i915_vma_put_fence(vma); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 1244 | if (ret) { |
| 1245 | i915_vma_unpin(vma); |
| 1246 | vma = ERR_PTR(ret); |
| 1247 | } |
| 1248 | } |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1249 | if (IS_ERR(vma)) { |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1250 | ret = insert_mappable_node(i915, &node, PAGE_SIZE); |
| 1251 | if (ret) |
| 1252 | goto out; |
| 1253 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 1254 | ret = i915_gem_object_pin_pages(obj); |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1255 | if (ret) { |
| 1256 | remove_mappable_node(&node); |
| 1257 | goto out; |
| 1258 | } |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1259 | } |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1260 | |
| 1261 | ret = i915_gem_object_set_to_gtt_domain(obj, true); |
| 1262 | if (ret) |
| 1263 | goto out_unpin; |
| 1264 | |
Chris Wilson | b19482d | 2016-08-18 17:16:43 +0100 | [diff] [blame] | 1265 | intel_fb_obj_invalidate(obj, ORIGIN_CPU); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 1266 | obj->mm.dirty = true; |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 1267 | |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1268 | user_data = u64_to_user_ptr(args->data_ptr); |
| 1269 | offset = args->offset; |
| 1270 | remain = args->size; |
| 1271 | while (remain) { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1272 | /* Operation in this page |
| 1273 | * |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1274 | * page_base = page offset within aperture |
| 1275 | * page_offset = offset within page |
| 1276 | * page_length = bytes to copy for this page |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1277 | */ |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1278 | u32 page_base = node.start; |
| 1279 | unsigned page_offset = offset_in_page(offset); |
| 1280 | unsigned page_length = PAGE_SIZE - page_offset; |
| 1281 | page_length = remain < page_length ? remain : page_length; |
| 1282 | if (node.allocated) { |
| 1283 | wmb(); /* flush the write before we modify the GGTT */ |
| 1284 | ggtt->base.insert_page(&ggtt->base, |
| 1285 | i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT), |
| 1286 | node.start, I915_CACHE_NONE, 0); |
| 1287 | wmb(); /* flush modifications to the GGTT (insert_page) */ |
| 1288 | } else { |
| 1289 | page_base += offset & PAGE_MASK; |
| 1290 | } |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1291 | /* If we get a fault while copying data, then (presumably) our |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1292 | * source page isn't available. Return the error and we'll |
| 1293 | * retry in the slow path. |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1294 | * If the object is non-shmem backed, we retry again with the |
| 1295 | * path that handles page fault. |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1296 | */ |
Chris Wilson | f7bbe78 | 2016-08-19 16:54:27 +0100 | [diff] [blame] | 1297 | if (fast_user_write(&ggtt->mappable, page_base, |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1298 | page_offset, user_data, page_length)) { |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1299 | hit_slow_path = true; |
| 1300 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | f7bbe78 | 2016-08-19 16:54:27 +0100 | [diff] [blame] | 1301 | if (slow_user_access(&ggtt->mappable, |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1302 | page_base, |
| 1303 | page_offset, user_data, |
| 1304 | page_length, true)) { |
| 1305 | ret = -EFAULT; |
| 1306 | mutex_lock(&dev->struct_mutex); |
| 1307 | goto out_flush; |
| 1308 | } |
| 1309 | |
| 1310 | mutex_lock(&dev->struct_mutex); |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1311 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1312 | |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1313 | remain -= page_length; |
| 1314 | user_data += page_length; |
| 1315 | offset += page_length; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1316 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1317 | |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 1318 | out_flush: |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1319 | if (hit_slow_path) { |
| 1320 | if (ret == 0 && |
| 1321 | (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) { |
| 1322 | /* The user has modified the object whilst we tried |
| 1323 | * reading from it, and we now have no idea what domain |
| 1324 | * the pages should be in. As we have just been touching |
| 1325 | * them directly, flush everything back to the GTT |
| 1326 | * domain. |
| 1327 | */ |
| 1328 | ret = i915_gem_object_set_to_gtt_domain(obj, false); |
| 1329 | } |
| 1330 | } |
| 1331 | |
Chris Wilson | b19482d | 2016-08-18 17:16:43 +0100 | [diff] [blame] | 1332 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1333 | out_unpin: |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1334 | if (node.allocated) { |
| 1335 | wmb(); |
| 1336 | ggtt->base.clear_range(&ggtt->base, |
Michał Winiarski | 4fb84d9 | 2016-10-13 14:02:40 +0200 | [diff] [blame] | 1337 | node.start, node.size); |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1338 | i915_gem_object_unpin_pages(obj); |
| 1339 | remove_mappable_node(&node); |
| 1340 | } else { |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1341 | i915_vma_unpin(vma); |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1342 | } |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1343 | out: |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1344 | intel_runtime_pm_put(i915); |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1345 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1346 | } |
| 1347 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1348 | /* Per-page copy function for the shmem pwrite fastpath. |
| 1349 | * Flushes invalid cachelines before writing to the target if |
| 1350 | * needs_clflush_before is set and flushes out any written cachelines after |
| 1351 | * writing if needs_clflush is set. */ |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1352 | static int |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1353 | shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length, |
| 1354 | char __user *user_data, |
| 1355 | bool page_do_bit17_swizzling, |
| 1356 | bool needs_clflush_before, |
| 1357 | bool needs_clflush_after) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1358 | { |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1359 | char *vaddr; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1360 | int ret; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1361 | |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 1362 | if (unlikely(page_do_bit17_swizzling)) |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1363 | return -EINVAL; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1364 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1365 | vaddr = kmap_atomic(page); |
| 1366 | if (needs_clflush_before) |
| 1367 | drm_clflush_virt_range(vaddr + shmem_page_offset, |
| 1368 | page_length); |
Chris Wilson | c2831a9 | 2014-03-07 08:30:37 +0000 | [diff] [blame] | 1369 | ret = __copy_from_user_inatomic(vaddr + shmem_page_offset, |
| 1370 | user_data, page_length); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1371 | if (needs_clflush_after) |
| 1372 | drm_clflush_virt_range(vaddr + shmem_page_offset, |
| 1373 | page_length); |
| 1374 | kunmap_atomic(vaddr); |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1375 | |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1376 | return ret ? -EFAULT : 0; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1377 | } |
| 1378 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1379 | /* Only difference to the fast-path function is that this can handle bit17 |
| 1380 | * and uses non-atomic copy and kmap functions. */ |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 1381 | static int |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1382 | shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length, |
| 1383 | char __user *user_data, |
| 1384 | bool page_do_bit17_swizzling, |
| 1385 | bool needs_clflush_before, |
| 1386 | bool needs_clflush_after) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1387 | { |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1388 | char *vaddr; |
| 1389 | int ret; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1390 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1391 | vaddr = kmap(page); |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 1392 | if (unlikely(needs_clflush_before || page_do_bit17_swizzling)) |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 1393 | shmem_clflush_swizzled_range(vaddr + shmem_page_offset, |
| 1394 | page_length, |
| 1395 | page_do_bit17_swizzling); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1396 | if (page_do_bit17_swizzling) |
| 1397 | ret = __copy_from_user_swizzled(vaddr, shmem_page_offset, |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 1398 | user_data, |
| 1399 | page_length); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1400 | else |
| 1401 | ret = __copy_from_user(vaddr + shmem_page_offset, |
| 1402 | user_data, |
| 1403 | page_length); |
| 1404 | if (needs_clflush_after) |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 1405 | shmem_clflush_swizzled_range(vaddr + shmem_page_offset, |
| 1406 | page_length, |
| 1407 | page_do_bit17_swizzling); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1408 | kunmap(page); |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 1409 | |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1410 | return ret ? -EFAULT : 0; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1411 | } |
| 1412 | |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1413 | static int |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1414 | i915_gem_shmem_pwrite(struct drm_device *dev, |
| 1415 | struct drm_i915_gem_object *obj, |
| 1416 | struct drm_i915_gem_pwrite *args, |
| 1417 | struct drm_file *file) |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1418 | { |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1419 | ssize_t remain; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1420 | loff_t offset; |
| 1421 | char __user *user_data; |
Ben Widawsky | eb2c0c8 | 2012-02-15 14:42:43 +0100 | [diff] [blame] | 1422 | int shmem_page_offset, page_length, ret = 0; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1423 | int obj_do_bit17_swizzling, page_do_bit17_swizzling; |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1424 | int hit_slowpath = 0; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1425 | unsigned int needs_clflush; |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1426 | struct sg_page_iter sg_iter; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1427 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1428 | ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush); |
| 1429 | if (ret) |
| 1430 | return ret; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1431 | |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1432 | obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj); |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1433 | user_data = u64_to_user_ptr(args->data_ptr); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1434 | offset = args->offset; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1435 | remain = args->size; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1436 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 1437 | for_each_sg_page(obj->mm.pages->sgl, &sg_iter, obj->mm.pages->nents, |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1438 | offset >> PAGE_SHIFT) { |
Imre Deak | 2db76d7 | 2013-03-26 15:14:18 +0200 | [diff] [blame] | 1439 | struct page *page = sg_page_iter_page(&sg_iter); |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1440 | int partial_cacheline_write; |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 1441 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 1442 | if (remain <= 0) |
| 1443 | break; |
| 1444 | |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1445 | /* Operation in this page |
| 1446 | * |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1447 | * shmem_page_offset = offset within page in shmem file |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1448 | * page_length = bytes to copy for this page |
| 1449 | */ |
Chris Wilson | c8cbbb8 | 2011-05-12 22:17:11 +0100 | [diff] [blame] | 1450 | shmem_page_offset = offset_in_page(offset); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1451 | |
| 1452 | page_length = remain; |
| 1453 | if ((shmem_page_offset + page_length) > PAGE_SIZE) |
| 1454 | page_length = PAGE_SIZE - shmem_page_offset; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1455 | |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1456 | /* If we don't overwrite a cacheline completely we need to be |
| 1457 | * careful to have up-to-date data by first clflushing. Don't |
| 1458 | * overcomplicate things and flush the entire patch. */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1459 | partial_cacheline_write = needs_clflush & CLFLUSH_BEFORE && |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1460 | ((shmem_page_offset | page_length) |
| 1461 | & (boot_cpu_data.x86_clflush_size - 1)); |
| 1462 | |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1463 | page_do_bit17_swizzling = obj_do_bit17_swizzling && |
| 1464 | (page_to_phys(page) & (1 << 17)) != 0; |
| 1465 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1466 | ret = shmem_pwrite_fast(page, shmem_page_offset, page_length, |
| 1467 | user_data, page_do_bit17_swizzling, |
| 1468 | partial_cacheline_write, |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1469 | needs_clflush & CLFLUSH_AFTER); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1470 | if (ret == 0) |
| 1471 | goto next_page; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1472 | |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1473 | hit_slowpath = 1; |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1474 | mutex_unlock(&dev->struct_mutex); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1475 | ret = shmem_pwrite_slow(page, shmem_page_offset, page_length, |
| 1476 | user_data, page_do_bit17_swizzling, |
| 1477 | partial_cacheline_write, |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1478 | needs_clflush & CLFLUSH_AFTER); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1479 | |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1480 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1481 | |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1482 | if (ret) |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1483 | goto out; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1484 | |
Chris Wilson | 17793c9 | 2014-03-07 08:30:36 +0000 | [diff] [blame] | 1485 | next_page: |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1486 | remain -= page_length; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1487 | user_data += page_length; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1488 | offset += page_length; |
| 1489 | } |
| 1490 | |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1491 | out: |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1492 | i915_gem_obj_finish_shmem_access(obj); |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1493 | |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1494 | if (hit_slowpath) { |
Daniel Vetter | 8dcf015 | 2012-11-15 16:53:58 +0100 | [diff] [blame] | 1495 | /* |
| 1496 | * Fixup: Flush cpu caches in case we didn't flush the dirty |
| 1497 | * cachelines in-line while writing and the object moved |
| 1498 | * out of the cpu write domain while we've dropped the lock. |
| 1499 | */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1500 | if (!(needs_clflush & CLFLUSH_AFTER) && |
Daniel Vetter | 8dcf015 | 2012-11-15 16:53:58 +0100 | [diff] [blame] | 1501 | obj->base.write_domain != I915_GEM_DOMAIN_CPU) { |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 1502 | if (i915_gem_clflush_object(obj, obj->pin_display)) |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1503 | needs_clflush |= CLFLUSH_AFTER; |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1504 | } |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1505 | } |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1506 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1507 | if (needs_clflush & CLFLUSH_AFTER) |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1508 | i915_gem_chipset_flush(to_i915(dev)); |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1509 | |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 1510 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1511 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1512 | } |
| 1513 | |
| 1514 | /** |
| 1515 | * Writes data to the object referenced by handle. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1516 | * @dev: drm device |
| 1517 | * @data: ioctl data blob |
| 1518 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1519 | * |
| 1520 | * On error, the contents of the buffer that were to be modified are undefined. |
| 1521 | */ |
| 1522 | int |
| 1523 | i915_gem_pwrite_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1524 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1525 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 1526 | struct drm_i915_private *dev_priv = to_i915(dev); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1527 | struct drm_i915_gem_pwrite *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1528 | struct drm_i915_gem_object *obj; |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1529 | int ret; |
| 1530 | |
| 1531 | if (args->size == 0) |
| 1532 | return 0; |
| 1533 | |
| 1534 | if (!access_ok(VERIFY_READ, |
Gustavo Padovan | 3ed605b | 2016-04-26 12:32:27 -0300 | [diff] [blame] | 1535 | u64_to_user_ptr(args->data_ptr), |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1536 | args->size)) |
| 1537 | return -EFAULT; |
| 1538 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 1539 | if (likely(!i915.prefault_disable)) { |
Al Viro | 4bce9f6 | 2016-09-17 18:02:44 -0400 | [diff] [blame] | 1540 | ret = fault_in_pages_readable(u64_to_user_ptr(args->data_ptr), |
Xiong Zhang | 0b74b50 | 2013-07-19 13:51:24 +0800 | [diff] [blame] | 1541 | args->size); |
| 1542 | if (ret) |
| 1543 | return -EFAULT; |
| 1544 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1545 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1546 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1547 | if (!obj) |
| 1548 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1549 | |
Chris Wilson | 7dcd249 | 2010-09-26 20:21:44 +0100 | [diff] [blame] | 1550 | /* Bounds check destination. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1551 | if (args->offset > obj->base.size || |
| 1552 | args->size > obj->base.size - args->offset) { |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1553 | ret = -EINVAL; |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1554 | goto err; |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1555 | } |
| 1556 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1557 | trace_i915_gem_object_pwrite(obj, args->offset, args->size); |
| 1558 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1559 | ret = i915_gem_object_wait(obj, |
| 1560 | I915_WAIT_INTERRUPTIBLE | |
| 1561 | I915_WAIT_ALL, |
| 1562 | MAX_SCHEDULE_TIMEOUT, |
| 1563 | to_rps_client(file)); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1564 | if (ret) |
| 1565 | goto err; |
| 1566 | |
| 1567 | intel_runtime_pm_get(dev_priv); |
| 1568 | |
| 1569 | ret = i915_mutex_lock_interruptible(dev); |
| 1570 | if (ret) |
| 1571 | goto err_rpm; |
| 1572 | |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1573 | ret = -EFAULT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1574 | /* We can only do the GTT pwrite on untiled buffers, as otherwise |
| 1575 | * it would end up going through the fenced access, and we'll get |
| 1576 | * different detiling behavior between reading and writing. |
| 1577 | * pread/pwrite currently are reading and writing from the CPU |
| 1578 | * perspective, requiring manual detiling by the client. |
| 1579 | */ |
Chris Wilson | 6eae005 | 2016-06-20 15:05:52 +0100 | [diff] [blame] | 1580 | if (!i915_gem_object_has_struct_page(obj) || |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1581 | cpu_write_needs_clflush(obj)) |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1582 | /* Note that the gtt paths might fail with non-page-backed user |
| 1583 | * pointers (e.g. gtt mappings when moving data between |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1584 | * textures). Fallback to the shmem path in that case. |
| 1585 | */ |
| 1586 | ret = i915_gem_gtt_pwrite_fast(dev_priv, obj, args, file); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1587 | |
Chris Wilson | d1054ee | 2016-07-16 18:42:36 +0100 | [diff] [blame] | 1588 | if (ret == -EFAULT || ret == -ENOSPC) { |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 1589 | if (obj->phys_handle) |
| 1590 | ret = i915_gem_phys_pwrite(obj, args, file); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1591 | else |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1592 | ret = i915_gem_shmem_pwrite(dev, obj, args, file); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 1593 | } |
Daniel Vetter | 5c0480f | 2011-12-14 13:57:30 +0100 | [diff] [blame] | 1594 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 1595 | i915_gem_object_put(obj); |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1596 | mutex_unlock(&dev->struct_mutex); |
Imre Deak | 5d77d9c | 2014-11-12 16:40:35 +0200 | [diff] [blame] | 1597 | intel_runtime_pm_put(dev_priv); |
| 1598 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1599 | return ret; |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1600 | |
| 1601 | err_rpm: |
| 1602 | intel_runtime_pm_put(dev_priv); |
| 1603 | err: |
| 1604 | i915_gem_object_put_unlocked(obj); |
| 1605 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1606 | } |
| 1607 | |
Chris Wilson | d243ad8 | 2016-08-18 17:16:44 +0100 | [diff] [blame] | 1608 | static inline enum fb_op_origin |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1609 | write_origin(struct drm_i915_gem_object *obj, unsigned domain) |
| 1610 | { |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 1611 | return (domain == I915_GEM_DOMAIN_GTT ? |
| 1612 | obj->frontbuffer_ggtt_origin : ORIGIN_CPU); |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1613 | } |
| 1614 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1615 | /** |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1616 | * Called when user space prepares to use an object with the CPU, either |
| 1617 | * through the mmap ioctl's mapping or a GTT mapping. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1618 | * @dev: drm device |
| 1619 | * @data: ioctl data blob |
| 1620 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1621 | */ |
| 1622 | int |
| 1623 | i915_gem_set_domain_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1624 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1625 | { |
| 1626 | struct drm_i915_gem_set_domain *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1627 | struct drm_i915_gem_object *obj; |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1628 | uint32_t read_domains = args->read_domains; |
| 1629 | uint32_t write_domain = args->write_domain; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1630 | int ret; |
| 1631 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1632 | /* Only handle setting domains to types used by the CPU. */ |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1633 | if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS) |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1634 | return -EINVAL; |
| 1635 | |
| 1636 | /* Having something in the write domain implies it's in the read |
| 1637 | * domain, and only that read domain. Enforce that in the request. |
| 1638 | */ |
| 1639 | if (write_domain != 0 && read_domains != write_domain) |
| 1640 | return -EINVAL; |
| 1641 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1642 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1643 | if (!obj) |
| 1644 | return -ENOENT; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 1645 | |
Chris Wilson | 3236f57 | 2012-08-24 09:35:09 +0100 | [diff] [blame] | 1646 | /* Try to flush the object off the GPU without holding the lock. |
| 1647 | * We will repeat the flush holding the lock in the normal manner |
| 1648 | * to catch cases where we are gazumped. |
| 1649 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1650 | ret = i915_gem_object_wait(obj, |
| 1651 | I915_WAIT_INTERRUPTIBLE | |
| 1652 | (write_domain ? I915_WAIT_ALL : 0), |
| 1653 | MAX_SCHEDULE_TIMEOUT, |
| 1654 | to_rps_client(file)); |
Chris Wilson | 3236f57 | 2012-08-24 09:35:09 +0100 | [diff] [blame] | 1655 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1656 | goto err; |
| 1657 | |
| 1658 | ret = i915_mutex_lock_interruptible(dev); |
| 1659 | if (ret) |
| 1660 | goto err; |
Chris Wilson | 3236f57 | 2012-08-24 09:35:09 +0100 | [diff] [blame] | 1661 | |
Chris Wilson | 43566de | 2015-01-02 16:29:29 +0530 | [diff] [blame] | 1662 | if (read_domains & I915_GEM_DOMAIN_GTT) |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1663 | ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0); |
Chris Wilson | 43566de | 2015-01-02 16:29:29 +0530 | [diff] [blame] | 1664 | else |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 1665 | ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0); |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1666 | |
Daniel Vetter | 031b698 | 2015-06-26 19:35:16 +0200 | [diff] [blame] | 1667 | if (write_domain != 0) |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1668 | intel_fb_obj_invalidate(obj, write_origin(obj, write_domain)); |
Daniel Vetter | 031b698 | 2015-06-26 19:35:16 +0200 | [diff] [blame] | 1669 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 1670 | i915_gem_object_put(obj); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1671 | mutex_unlock(&dev->struct_mutex); |
| 1672 | return ret; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1673 | |
| 1674 | err: |
| 1675 | i915_gem_object_put_unlocked(obj); |
| 1676 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1677 | } |
| 1678 | |
| 1679 | /** |
| 1680 | * Called when user space has done writes to this buffer |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1681 | * @dev: drm device |
| 1682 | * @data: ioctl data blob |
| 1683 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1684 | */ |
| 1685 | int |
| 1686 | i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1687 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1688 | { |
| 1689 | struct drm_i915_gem_sw_finish *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1690 | struct drm_i915_gem_object *obj; |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1691 | int err = 0; |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 1692 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1693 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1694 | if (!obj) |
| 1695 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1696 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1697 | /* Pinned buffers may be scanout, so flush the cache */ |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1698 | if (READ_ONCE(obj->pin_display)) { |
| 1699 | err = i915_mutex_lock_interruptible(dev); |
| 1700 | if (!err) { |
| 1701 | i915_gem_object_flush_cpu_write_domain(obj); |
| 1702 | mutex_unlock(&dev->struct_mutex); |
| 1703 | } |
| 1704 | } |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 1705 | |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1706 | i915_gem_object_put_unlocked(obj); |
| 1707 | return err; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1708 | } |
| 1709 | |
| 1710 | /** |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1711 | * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address |
| 1712 | * it is mapped to. |
| 1713 | * @dev: drm device |
| 1714 | * @data: ioctl data blob |
| 1715 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1716 | * |
| 1717 | * While the mapping holds a reference on the contents of the object, it doesn't |
| 1718 | * imply a ref on the object itself. |
Daniel Vetter | 3436738 | 2014-10-16 12:28:18 +0200 | [diff] [blame] | 1719 | * |
| 1720 | * IMPORTANT: |
| 1721 | * |
| 1722 | * DRM driver writers who look a this function as an example for how to do GEM |
| 1723 | * mmap support, please don't implement mmap support like here. The modern way |
| 1724 | * to implement DRM mmap support is with an mmap offset ioctl (like |
| 1725 | * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly. |
| 1726 | * That way debug tooling like valgrind will understand what's going on, hiding |
| 1727 | * the mmap call in a driver private ioctl will break that. The i915 driver only |
| 1728 | * does cpu mmaps this way because we didn't know better. |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1729 | */ |
| 1730 | int |
| 1731 | i915_gem_mmap_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1732 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1733 | { |
| 1734 | struct drm_i915_gem_mmap *args = data; |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1735 | struct drm_i915_gem_object *obj; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1736 | unsigned long addr; |
| 1737 | |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1738 | if (args->flags & ~(I915_MMAP_WC)) |
| 1739 | return -EINVAL; |
| 1740 | |
Borislav Petkov | 568a58e | 2016-03-29 17:42:01 +0200 | [diff] [blame] | 1741 | if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT)) |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1742 | return -ENODEV; |
| 1743 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1744 | obj = i915_gem_object_lookup(file, args->handle); |
| 1745 | if (!obj) |
Chris Wilson | bf79cb9 | 2010-08-04 14:19:46 +0100 | [diff] [blame] | 1746 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1747 | |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 1748 | /* prime objects have no backing filp to GEM mmap |
| 1749 | * pages from. |
| 1750 | */ |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1751 | if (!obj->base.filp) { |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 1752 | i915_gem_object_put_unlocked(obj); |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 1753 | return -EINVAL; |
| 1754 | } |
| 1755 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1756 | addr = vm_mmap(obj->base.filp, 0, args->size, |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1757 | PROT_READ | PROT_WRITE, MAP_SHARED, |
| 1758 | args->offset); |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1759 | if (args->flags & I915_MMAP_WC) { |
| 1760 | struct mm_struct *mm = current->mm; |
| 1761 | struct vm_area_struct *vma; |
| 1762 | |
Michal Hocko | 80a89a5 | 2016-05-23 16:26:11 -0700 | [diff] [blame] | 1763 | if (down_write_killable(&mm->mmap_sem)) { |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 1764 | i915_gem_object_put_unlocked(obj); |
Michal Hocko | 80a89a5 | 2016-05-23 16:26:11 -0700 | [diff] [blame] | 1765 | return -EINTR; |
| 1766 | } |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1767 | vma = find_vma(mm, addr); |
| 1768 | if (vma) |
| 1769 | vma->vm_page_prot = |
| 1770 | pgprot_writecombine(vm_get_page_prot(vma->vm_flags)); |
| 1771 | else |
| 1772 | addr = -ENOMEM; |
| 1773 | up_write(&mm->mmap_sem); |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1774 | |
| 1775 | /* This may race, but that's ok, it only gets set */ |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 1776 | WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU); |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1777 | } |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 1778 | i915_gem_object_put_unlocked(obj); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1779 | if (IS_ERR((void *)addr)) |
| 1780 | return addr; |
| 1781 | |
| 1782 | args->addr_ptr = (uint64_t) addr; |
| 1783 | |
| 1784 | return 0; |
| 1785 | } |
| 1786 | |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1787 | static unsigned int tile_row_pages(struct drm_i915_gem_object *obj) |
| 1788 | { |
| 1789 | u64 size; |
| 1790 | |
| 1791 | size = i915_gem_object_get_stride(obj); |
| 1792 | size *= i915_gem_object_get_tiling(obj) == I915_TILING_Y ? 32 : 8; |
| 1793 | |
| 1794 | return size >> PAGE_SHIFT; |
| 1795 | } |
| 1796 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1797 | /** |
Chris Wilson | 4cc6907 | 2016-08-25 19:05:19 +0100 | [diff] [blame] | 1798 | * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps |
| 1799 | * |
| 1800 | * A history of the GTT mmap interface: |
| 1801 | * |
| 1802 | * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to |
| 1803 | * aligned and suitable for fencing, and still fit into the available |
| 1804 | * mappable space left by the pinned display objects. A classic problem |
| 1805 | * we called the page-fault-of-doom where we would ping-pong between |
| 1806 | * two objects that could not fit inside the GTT and so the memcpy |
| 1807 | * would page one object in at the expense of the other between every |
| 1808 | * single byte. |
| 1809 | * |
| 1810 | * 1 - Objects can be any size, and have any compatible fencing (X Y, or none |
| 1811 | * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the |
| 1812 | * object is too large for the available space (or simply too large |
| 1813 | * for the mappable aperture!), a view is created instead and faulted |
| 1814 | * into userspace. (This view is aligned and sized appropriately for |
| 1815 | * fenced access.) |
| 1816 | * |
| 1817 | * Restrictions: |
| 1818 | * |
| 1819 | * * snoopable objects cannot be accessed via the GTT. It can cause machine |
| 1820 | * hangs on some architectures, corruption on others. An attempt to service |
| 1821 | * a GTT page fault from a snoopable object will generate a SIGBUS. |
| 1822 | * |
| 1823 | * * the object must be able to fit into RAM (physical memory, though no |
| 1824 | * limited to the mappable aperture). |
| 1825 | * |
| 1826 | * |
| 1827 | * Caveats: |
| 1828 | * |
| 1829 | * * a new GTT page fault will synchronize rendering from the GPU and flush |
| 1830 | * all data to system memory. Subsequent access will not be synchronized. |
| 1831 | * |
| 1832 | * * all mappings are revoked on runtime device suspend. |
| 1833 | * |
| 1834 | * * there are only 8, 16 or 32 fence registers to share between all users |
| 1835 | * (older machines require fence register for display and blitter access |
| 1836 | * as well). Contention of the fence registers will cause the previous users |
| 1837 | * to be unmapped and any new access will generate new page faults. |
| 1838 | * |
| 1839 | * * running out of memory while servicing a fault may generate a SIGBUS, |
| 1840 | * rather than the expected SIGSEGV. |
| 1841 | */ |
| 1842 | int i915_gem_mmap_gtt_version(void) |
| 1843 | { |
| 1844 | return 1; |
| 1845 | } |
| 1846 | |
| 1847 | /** |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1848 | * i915_gem_fault - fault a page into the GTT |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1849 | * @area: CPU VMA in question |
Geliang Tang | d9072a3 | 2015-09-15 05:58:44 -0700 | [diff] [blame] | 1850 | * @vmf: fault info |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1851 | * |
| 1852 | * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped |
| 1853 | * from userspace. The fault handler takes care of binding the object to |
| 1854 | * the GTT (if needed), allocating and programming a fence register (again, |
| 1855 | * only if needed based on whether the old reg is still valid or the object |
| 1856 | * is tiled) and inserting a new PTE into the faulting process. |
| 1857 | * |
| 1858 | * Note that the faulting process may involve evicting existing objects |
| 1859 | * from the GTT and/or fence registers to make room. So performance may |
| 1860 | * suffer if the GTT working set is large or there are few fence registers |
| 1861 | * left. |
Chris Wilson | 4cc6907 | 2016-08-25 19:05:19 +0100 | [diff] [blame] | 1862 | * |
| 1863 | * The current feature set supported by i915_gem_fault() and thus GTT mmaps |
| 1864 | * is exposed via I915_PARAM_MMAP_GTT_VERSION (see i915_gem_mmap_gtt_version). |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1865 | */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1866 | int i915_gem_fault(struct vm_area_struct *area, struct vm_fault *vmf) |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1867 | { |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1868 | #define MIN_CHUNK_PAGES ((1 << 20) >> PAGE_SHIFT) /* 1 MiB */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1869 | struct drm_i915_gem_object *obj = to_intel_bo(area->vm_private_data); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1870 | struct drm_device *dev = obj->base.dev; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 1871 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 1872 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1873 | bool write = !!(vmf->flags & FAULT_FLAG_WRITE); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1874 | struct i915_vma *vma; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1875 | pgoff_t page_offset; |
Chris Wilson | 8211887 | 2016-08-18 17:17:05 +0100 | [diff] [blame] | 1876 | unsigned int flags; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1877 | int ret; |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 1878 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1879 | /* We don't use vmf->pgoff since that has the fake offset */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1880 | page_offset = ((unsigned long)vmf->virtual_address - area->vm_start) >> |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1881 | PAGE_SHIFT; |
| 1882 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1883 | trace_i915_gem_object_fault(obj, page_offset, true, write); |
| 1884 | |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1885 | /* Try to flush the object off the GPU first without holding the lock. |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1886 | * Upon acquiring the lock, we will perform our sanity checks and then |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1887 | * repeat the flush holding the lock in the normal manner to catch cases |
| 1888 | * where we are gazumped. |
| 1889 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1890 | ret = i915_gem_object_wait(obj, |
| 1891 | I915_WAIT_INTERRUPTIBLE, |
| 1892 | MAX_SCHEDULE_TIMEOUT, |
| 1893 | NULL); |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1894 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1895 | goto err; |
| 1896 | |
| 1897 | intel_runtime_pm_get(dev_priv); |
| 1898 | |
| 1899 | ret = i915_mutex_lock_interruptible(dev); |
| 1900 | if (ret) |
| 1901 | goto err_rpm; |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1902 | |
Chris Wilson | eb119bd | 2012-12-16 12:43:36 +0000 | [diff] [blame] | 1903 | /* Access to snoopable pages through the GTT is incoherent. */ |
| 1904 | if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) { |
Chris Wilson | ddeff6e | 2014-05-28 16:16:41 +0100 | [diff] [blame] | 1905 | ret = -EFAULT; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1906 | goto err_unlock; |
Chris Wilson | eb119bd | 2012-12-16 12:43:36 +0000 | [diff] [blame] | 1907 | } |
| 1908 | |
Chris Wilson | 8211887 | 2016-08-18 17:17:05 +0100 | [diff] [blame] | 1909 | /* If the object is smaller than a couple of partial vma, it is |
| 1910 | * not worth only creating a single partial vma - we may as well |
| 1911 | * clear enough space for the full object. |
| 1912 | */ |
| 1913 | flags = PIN_MAPPABLE; |
| 1914 | if (obj->base.size > 2 * MIN_CHUNK_PAGES << PAGE_SHIFT) |
| 1915 | flags |= PIN_NONBLOCK | PIN_NONFAULT; |
| 1916 | |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1917 | /* Now pin it into the GTT as needed */ |
Chris Wilson | 8211887 | 2016-08-18 17:17:05 +0100 | [diff] [blame] | 1918 | vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, flags); |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1919 | if (IS_ERR(vma)) { |
| 1920 | struct i915_ggtt_view view; |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1921 | unsigned int chunk_size; |
| 1922 | |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1923 | /* Use a partial view if it is bigger than available space */ |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1924 | chunk_size = MIN_CHUNK_PAGES; |
| 1925 | if (i915_gem_object_is_tiled(obj)) |
| 1926 | chunk_size = max(chunk_size, tile_row_pages(obj)); |
Joonas Lahtinen | e7ded2d | 2015-05-08 14:37:39 +0300 | [diff] [blame] | 1927 | |
Joonas Lahtinen | c5ad54c | 2015-05-06 14:36:09 +0300 | [diff] [blame] | 1928 | memset(&view, 0, sizeof(view)); |
| 1929 | view.type = I915_GGTT_VIEW_PARTIAL; |
| 1930 | view.params.partial.offset = rounddown(page_offset, chunk_size); |
| 1931 | view.params.partial.size = |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1932 | min_t(unsigned int, chunk_size, |
Chris Wilson | 908b123 | 2016-10-11 10:06:56 +0100 | [diff] [blame] | 1933 | vma_pages(area) - view.params.partial.offset); |
Joonas Lahtinen | c5ad54c | 2015-05-06 14:36:09 +0300 | [diff] [blame] | 1934 | |
Chris Wilson | aa136d9 | 2016-08-18 17:17:03 +0100 | [diff] [blame] | 1935 | /* If the partial covers the entire object, just create a |
| 1936 | * normal VMA. |
| 1937 | */ |
| 1938 | if (chunk_size >= obj->base.size >> PAGE_SHIFT) |
| 1939 | view.type = I915_GGTT_VIEW_NORMAL; |
| 1940 | |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 1941 | /* Userspace is now writing through an untracked VMA, abandon |
| 1942 | * all hope that the hardware is able to track future writes. |
| 1943 | */ |
| 1944 | obj->frontbuffer_ggtt_origin = ORIGIN_CPU; |
| 1945 | |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1946 | vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, PIN_MAPPABLE); |
| 1947 | } |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1948 | if (IS_ERR(vma)) { |
| 1949 | ret = PTR_ERR(vma); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1950 | goto err_unlock; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1951 | } |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1952 | |
Chris Wilson | c983930 | 2012-11-20 10:45:17 +0000 | [diff] [blame] | 1953 | ret = i915_gem_object_set_to_gtt_domain(obj, write); |
| 1954 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1955 | goto err_unpin; |
Chris Wilson | c983930 | 2012-11-20 10:45:17 +0000 | [diff] [blame] | 1956 | |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 1957 | ret = i915_vma_get_fence(vma); |
Chris Wilson | c983930 | 2012-11-20 10:45:17 +0000 | [diff] [blame] | 1958 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1959 | goto err_unpin; |
Chris Wilson | 7d1c480 | 2010-08-07 21:45:03 +0100 | [diff] [blame] | 1960 | |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 1961 | /* Mark as being mmapped into userspace for later revocation */ |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1962 | assert_rpm_wakelock_held(dev_priv); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 1963 | if (list_empty(&obj->userfault_link)) |
| 1964 | list_add(&obj->userfault_link, &dev_priv->mm.userfault_list); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 1965 | |
Chris Wilson | b90b91d | 2014-06-10 12:14:40 +0100 | [diff] [blame] | 1966 | /* Finally, remap it using the new GTT offset */ |
Chris Wilson | c58305a | 2016-08-19 16:54:28 +0100 | [diff] [blame] | 1967 | ret = remap_io_mapping(area, |
| 1968 | area->vm_start + (vma->ggtt_view.params.partial.offset << PAGE_SHIFT), |
| 1969 | (ggtt->mappable_base + vma->node.start) >> PAGE_SHIFT, |
| 1970 | min_t(u64, vma->size, area->vm_end - area->vm_start), |
| 1971 | &ggtt->mappable); |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1972 | |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1973 | err_unpin: |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1974 | __i915_vma_unpin(vma); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1975 | err_unlock: |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1976 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1977 | err_rpm: |
| 1978 | intel_runtime_pm_put(dev_priv); |
| 1979 | err: |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1980 | switch (ret) { |
Chris Wilson | d9bc7e9 | 2011-02-07 13:09:31 +0000 | [diff] [blame] | 1981 | case -EIO: |
Daniel Vetter | 2232f03 | 2014-09-04 09:36:18 +0200 | [diff] [blame] | 1982 | /* |
| 1983 | * We eat errors when the gpu is terminally wedged to avoid |
| 1984 | * userspace unduly crashing (gl has no provisions for mmaps to |
| 1985 | * fail). But any other -EIO isn't ours (e.g. swap in failure) |
| 1986 | * and so needs to be reported. |
| 1987 | */ |
| 1988 | if (!i915_terminally_wedged(&dev_priv->gpu_error)) { |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 1989 | ret = VM_FAULT_SIGBUS; |
| 1990 | break; |
| 1991 | } |
Chris Wilson | 045e769 | 2010-11-07 09:18:22 +0000 | [diff] [blame] | 1992 | case -EAGAIN: |
Daniel Vetter | 571c608 | 2013-09-12 17:57:28 +0200 | [diff] [blame] | 1993 | /* |
| 1994 | * EAGAIN means the gpu is hung and we'll wait for the error |
| 1995 | * handler to reset everything when re-faulting in |
| 1996 | * i915_mutex_lock_interruptible. |
Chris Wilson | d9bc7e9 | 2011-02-07 13:09:31 +0000 | [diff] [blame] | 1997 | */ |
Chris Wilson | c715089 | 2009-09-23 00:43:56 +0100 | [diff] [blame] | 1998 | case 0: |
| 1999 | case -ERESTARTSYS: |
Chris Wilson | bed636a | 2011-02-11 20:31:19 +0000 | [diff] [blame] | 2000 | case -EINTR: |
Dmitry Rogozhkin | e79e0fe | 2012-10-03 17:15:26 +0300 | [diff] [blame] | 2001 | case -EBUSY: |
| 2002 | /* |
| 2003 | * EBUSY is ok: this just means that another thread |
| 2004 | * already did the job. |
| 2005 | */ |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2006 | ret = VM_FAULT_NOPAGE; |
| 2007 | break; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2008 | case -ENOMEM: |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2009 | ret = VM_FAULT_OOM; |
| 2010 | break; |
Daniel Vetter | a7c2e1a | 2012-10-17 11:17:16 +0200 | [diff] [blame] | 2011 | case -ENOSPC: |
Chris Wilson | 45d6781 | 2014-01-31 11:34:57 +0000 | [diff] [blame] | 2012 | case -EFAULT: |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2013 | ret = VM_FAULT_SIGBUS; |
| 2014 | break; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2015 | default: |
Daniel Vetter | a7c2e1a | 2012-10-17 11:17:16 +0200 | [diff] [blame] | 2016 | WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret); |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2017 | ret = VM_FAULT_SIGBUS; |
| 2018 | break; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2019 | } |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2020 | return ret; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2021 | } |
| 2022 | |
| 2023 | /** |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2024 | * i915_gem_release_mmap - remove physical page mappings |
| 2025 | * @obj: obj in question |
| 2026 | * |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 2027 | * Preserve the reservation of the mmapping with the DRM core code, but |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2028 | * relinquish ownership of the pages back to the system. |
| 2029 | * |
| 2030 | * It is vital that we remove the page mapping if we have mapped a tiled |
| 2031 | * object through the GTT and then lose the fence register due to |
| 2032 | * resource pressure. Similarly if the object has been moved out of the |
| 2033 | * aperture, than pages mapped into userspace must be revoked. Removing the |
| 2034 | * mapping will then trigger a page fault on the next user access, allowing |
| 2035 | * fixup by i915_gem_fault(). |
| 2036 | */ |
Eric Anholt | d05ca30 | 2009-07-10 13:02:26 -0700 | [diff] [blame] | 2037 | void |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2038 | i915_gem_release_mmap(struct drm_i915_gem_object *obj) |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2039 | { |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2040 | struct drm_i915_private *i915 = to_i915(obj->base.dev); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2041 | |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2042 | /* Serialisation between user GTT access and our code depends upon |
| 2043 | * revoking the CPU's PTE whilst the mutex is held. The next user |
| 2044 | * pagefault then has to wait until we release the mutex. |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2045 | * |
| 2046 | * Note that RPM complicates somewhat by adding an additional |
| 2047 | * requirement that operations to the GGTT be made holding the RPM |
| 2048 | * wakeref. |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2049 | */ |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2050 | lockdep_assert_held(&i915->drm.struct_mutex); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2051 | intel_runtime_pm_get(i915); |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2052 | |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2053 | if (list_empty(&obj->userfault_link)) |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2054 | goto out; |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2055 | |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2056 | list_del_init(&obj->userfault_link); |
David Herrmann | 6796cb1 | 2014-01-03 14:24:19 +0100 | [diff] [blame] | 2057 | drm_vma_node_unmap(&obj->base.vma_node, |
| 2058 | obj->base.dev->anon_inode->i_mapping); |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2059 | |
| 2060 | /* Ensure that the CPU's PTE are revoked and there are not outstanding |
| 2061 | * memory transactions from userspace before we return. The TLB |
| 2062 | * flushing implied above by changing the PTE above *should* be |
| 2063 | * sufficient, an extra barrier here just provides us with a bit |
| 2064 | * of paranoid documentation about our requirement to serialise |
| 2065 | * memory writes before touching registers / GSM. |
| 2066 | */ |
| 2067 | wmb(); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2068 | |
| 2069 | out: |
| 2070 | intel_runtime_pm_put(i915); |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2071 | } |
| 2072 | |
Chris Wilson | 7c108fd | 2016-10-24 13:42:18 +0100 | [diff] [blame] | 2073 | void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv) |
Chris Wilson | eedd10f | 2014-06-16 08:57:44 +0100 | [diff] [blame] | 2074 | { |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2075 | struct drm_i915_gem_object *obj, *on; |
Chris Wilson | 7c108fd | 2016-10-24 13:42:18 +0100 | [diff] [blame] | 2076 | int i; |
Chris Wilson | eedd10f | 2014-06-16 08:57:44 +0100 | [diff] [blame] | 2077 | |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2078 | /* |
| 2079 | * Only called during RPM suspend. All users of the userfault_list |
| 2080 | * must be holding an RPM wakeref to ensure that this can not |
| 2081 | * run concurrently with themselves (and use the struct_mutex for |
| 2082 | * protection between themselves). |
| 2083 | */ |
| 2084 | |
| 2085 | list_for_each_entry_safe(obj, on, |
| 2086 | &dev_priv->mm.userfault_list, userfault_link) { |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2087 | list_del_init(&obj->userfault_link); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2088 | drm_vma_node_unmap(&obj->base.vma_node, |
| 2089 | obj->base.dev->anon_inode->i_mapping); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2090 | } |
Chris Wilson | 7c108fd | 2016-10-24 13:42:18 +0100 | [diff] [blame] | 2091 | |
| 2092 | /* The fence will be lost when the device powers down. If any were |
| 2093 | * in use by hardware (i.e. they are pinned), we should not be powering |
| 2094 | * down! All other fences will be reacquired by the user upon waking. |
| 2095 | */ |
| 2096 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
| 2097 | struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i]; |
| 2098 | |
| 2099 | if (WARN_ON(reg->pin_count)) |
| 2100 | continue; |
| 2101 | |
| 2102 | if (!reg->vma) |
| 2103 | continue; |
| 2104 | |
| 2105 | GEM_BUG_ON(!list_empty(®->vma->obj->userfault_link)); |
| 2106 | reg->dirty = true; |
| 2107 | } |
Chris Wilson | eedd10f | 2014-06-16 08:57:44 +0100 | [diff] [blame] | 2108 | } |
| 2109 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2110 | /** |
| 2111 | * i915_gem_get_ggtt_size - return required global GTT size for an object |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2112 | * @dev_priv: i915 device |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2113 | * @size: object size |
| 2114 | * @tiling_mode: tiling mode |
| 2115 | * |
| 2116 | * Return the required global GTT size for an object, taking into account |
| 2117 | * potential fence register mapping. |
| 2118 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2119 | u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv, |
| 2120 | u64 size, int tiling_mode) |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2121 | { |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2122 | u64 ggtt_size; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2123 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2124 | GEM_BUG_ON(size == 0); |
| 2125 | |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2126 | if (INTEL_GEN(dev_priv) >= 4 || |
Chris Wilson | e28f871 | 2011-07-18 13:11:49 -0700 | [diff] [blame] | 2127 | tiling_mode == I915_TILING_NONE) |
| 2128 | return size; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2129 | |
| 2130 | /* Previous chips need a power-of-two fence region when tiling */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2131 | if (IS_GEN3(dev_priv)) |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2132 | ggtt_size = 1024*1024; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2133 | else |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2134 | ggtt_size = 512*1024; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2135 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2136 | while (ggtt_size < size) |
| 2137 | ggtt_size <<= 1; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2138 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2139 | return ggtt_size; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2140 | } |
| 2141 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2142 | /** |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2143 | * i915_gem_get_ggtt_alignment - return required global GTT alignment |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2144 | * @dev_priv: i915 device |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 2145 | * @size: object size |
| 2146 | * @tiling_mode: tiling mode |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2147 | * @fenced: is fenced alignment required or not |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2148 | * |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2149 | * Return the required global GTT alignment for an object, taking into account |
Daniel Vetter | 5e78330 | 2010-11-14 22:32:36 +0100 | [diff] [blame] | 2150 | * potential fence register mapping. |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2151 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2152 | u64 i915_gem_get_ggtt_alignment(struct drm_i915_private *dev_priv, u64 size, |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2153 | int tiling_mode, bool fenced) |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2154 | { |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2155 | GEM_BUG_ON(size == 0); |
| 2156 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2157 | /* |
| 2158 | * Minimum alignment is 4k (GTT page size), but might be greater |
| 2159 | * if a fence register is needed for the object. |
| 2160 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2161 | if (INTEL_GEN(dev_priv) >= 4 || (!fenced && IS_G33(dev_priv)) || |
Chris Wilson | e28f871 | 2011-07-18 13:11:49 -0700 | [diff] [blame] | 2162 | tiling_mode == I915_TILING_NONE) |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2163 | return 4096; |
| 2164 | |
| 2165 | /* |
| 2166 | * Previous chips need to be aligned to the size of the smallest |
| 2167 | * fence register that can contain the object. |
| 2168 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2169 | return i915_gem_get_ggtt_size(dev_priv, size, tiling_mode); |
Chris Wilson | a00b10c | 2010-09-24 21:15:47 +0100 | [diff] [blame] | 2170 | } |
| 2171 | |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2172 | static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj) |
| 2173 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 2174 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2175 | int err; |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2176 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2177 | err = drm_gem_create_mmap_offset(&obj->base); |
| 2178 | if (!err) |
| 2179 | return 0; |
Daniel Vetter | da494d7 | 2012-12-20 15:11:16 +0100 | [diff] [blame] | 2180 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2181 | /* We can idle the GPU locklessly to flush stale objects, but in order |
| 2182 | * to claim that space for ourselves, we need to take the big |
| 2183 | * struct_mutex to free the requests+objects and allocate our slot. |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2184 | */ |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 2185 | err = i915_gem_wait_for_idle(dev_priv, I915_WAIT_INTERRUPTIBLE); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2186 | if (err) |
| 2187 | return err; |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2188 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2189 | err = i915_mutex_lock_interruptible(&dev_priv->drm); |
| 2190 | if (!err) { |
| 2191 | i915_gem_retire_requests(dev_priv); |
| 2192 | err = drm_gem_create_mmap_offset(&obj->base); |
| 2193 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 2194 | } |
Daniel Vetter | da494d7 | 2012-12-20 15:11:16 +0100 | [diff] [blame] | 2195 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2196 | return err; |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2197 | } |
| 2198 | |
| 2199 | static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj) |
| 2200 | { |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2201 | drm_gem_free_mmap_offset(&obj->base); |
| 2202 | } |
| 2203 | |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 2204 | int |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2205 | i915_gem_mmap_gtt(struct drm_file *file, |
| 2206 | struct drm_device *dev, |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 2207 | uint32_t handle, |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2208 | uint64_t *offset) |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2209 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2210 | struct drm_i915_gem_object *obj; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2211 | int ret; |
| 2212 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 2213 | obj = i915_gem_object_lookup(file, handle); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2214 | if (!obj) |
| 2215 | return -ENOENT; |
Chris Wilson | ab18282 | 2009-09-22 18:46:17 +0100 | [diff] [blame] | 2216 | |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2217 | ret = i915_gem_object_create_mmap_offset(obj); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2218 | if (ret == 0) |
| 2219 | *offset = drm_vma_node_offset_addr(&obj->base.vma_node); |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2220 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2221 | i915_gem_object_put_unlocked(obj); |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 2222 | return ret; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2223 | } |
| 2224 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2225 | /** |
| 2226 | * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing |
| 2227 | * @dev: DRM device |
| 2228 | * @data: GTT mapping ioctl data |
| 2229 | * @file: GEM object info |
| 2230 | * |
| 2231 | * Simply returns the fake offset to userspace so it can mmap it. |
| 2232 | * The mmap call will end up in drm_gem_mmap(), which will set things |
| 2233 | * up so we can get faults in the handler above. |
| 2234 | * |
| 2235 | * The fault handler will take care of binding the object into the GTT |
| 2236 | * (since it may have been evicted to make room for something), allocating |
| 2237 | * a fence register, and mapping the appropriate aperture address into |
| 2238 | * userspace. |
| 2239 | */ |
| 2240 | int |
| 2241 | i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data, |
| 2242 | struct drm_file *file) |
| 2243 | { |
| 2244 | struct drm_i915_gem_mmap_gtt *args = data; |
| 2245 | |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 2246 | return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2247 | } |
| 2248 | |
Daniel Vetter | 225067e | 2012-08-20 10:23:20 +0200 | [diff] [blame] | 2249 | /* Immediately discard the backing storage */ |
| 2250 | static void |
| 2251 | i915_gem_object_truncate(struct drm_i915_gem_object *obj) |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2252 | { |
Chris Wilson | 4d6294bf | 2012-08-11 15:41:05 +0100 | [diff] [blame] | 2253 | i915_gem_object_free_mmap_offset(obj); |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 2254 | |
Chris Wilson | 4d6294bf | 2012-08-11 15:41:05 +0100 | [diff] [blame] | 2255 | if (obj->base.filp == NULL) |
| 2256 | return; |
| 2257 | |
Daniel Vetter | 225067e | 2012-08-20 10:23:20 +0200 | [diff] [blame] | 2258 | /* Our goal here is to return as much of the memory as |
| 2259 | * is possible back to the system as we are called from OOM. |
| 2260 | * To do this we must instruct the shmfs to drop all of its |
| 2261 | * backing pages, *now*. |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2262 | */ |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2263 | shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2264 | obj->mm.madv = __I915_MADV_PURGED; |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2265 | } |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2266 | |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2267 | /* Try to discard unwanted pages */ |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2268 | void __i915_gem_object_invalidate(struct drm_i915_gem_object *obj) |
Daniel Vetter | 225067e | 2012-08-20 10:23:20 +0200 | [diff] [blame] | 2269 | { |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2270 | struct address_space *mapping; |
| 2271 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2272 | switch (obj->mm.madv) { |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2273 | case I915_MADV_DONTNEED: |
| 2274 | i915_gem_object_truncate(obj); |
| 2275 | case __I915_MADV_PURGED: |
| 2276 | return; |
| 2277 | } |
| 2278 | |
| 2279 | if (obj->base.filp == NULL) |
| 2280 | return; |
| 2281 | |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 2282 | mapping = obj->base.filp->f_mapping, |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2283 | invalidate_mapping_pages(mapping, 0, (loff_t)-1); |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2284 | } |
| 2285 | |
Chris Wilson | 5cdf588 | 2010-09-27 15:51:07 +0100 | [diff] [blame] | 2286 | static void |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2287 | i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj, |
| 2288 | struct sg_table *pages) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2289 | { |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2290 | struct sgt_iter sgt_iter; |
| 2291 | struct page *page; |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 2292 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2293 | __i915_gem_object_release_shmem(obj); |
Eric Anholt | 856fa19 | 2009-03-19 14:10:50 -0700 | [diff] [blame] | 2294 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2295 | i915_gem_gtt_finish_pages(obj, pages); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2296 | |
Daniel Vetter | 6dacfd2 | 2011-09-12 21:30:02 +0200 | [diff] [blame] | 2297 | if (i915_gem_object_needs_bit17_swizzle(obj)) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2298 | i915_gem_object_save_bit_17_swizzle(obj, pages); |
Eric Anholt | 280b713 | 2009-03-12 16:56:27 -0700 | [diff] [blame] | 2299 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2300 | for_each_sgt_page(page, sgt_iter, pages) { |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2301 | if (obj->mm.dirty) |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2302 | set_page_dirty(page); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 2303 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2304 | if (obj->mm.madv == I915_MADV_WILLNEED) |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2305 | mark_page_accessed(page); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 2306 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2307 | put_page(page); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 2308 | } |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2309 | obj->mm.dirty = false; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2310 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2311 | sg_free_table(pages); |
| 2312 | kfree(pages); |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2313 | } |
| 2314 | |
Chris Wilson | 96d7763 | 2016-10-28 13:58:33 +0100 | [diff] [blame] | 2315 | static void __i915_gem_object_reset_page_iter(struct drm_i915_gem_object *obj) |
| 2316 | { |
| 2317 | struct radix_tree_iter iter; |
| 2318 | void **slot; |
| 2319 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2320 | radix_tree_for_each_slot(slot, &obj->mm.get_page.radix, &iter, 0) |
| 2321 | radix_tree_delete(&obj->mm.get_page.radix, iter.index); |
Chris Wilson | 96d7763 | 2016-10-28 13:58:33 +0100 | [diff] [blame] | 2322 | } |
| 2323 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2324 | void __i915_gem_object_put_pages(struct drm_i915_gem_object *obj) |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2325 | { |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2326 | struct sg_table *pages; |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2327 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 2328 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 2329 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2330 | if (i915_gem_object_has_pinned_pages(obj)) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2331 | return; |
Chris Wilson | a557017 | 2012-09-04 21:02:54 +0100 | [diff] [blame] | 2332 | |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 2333 | GEM_BUG_ON(obj->bind_count); |
Ben Widawsky | 3e12302 | 2013-07-31 17:00:04 -0700 | [diff] [blame] | 2334 | |
Chris Wilson | a2165e3 | 2012-12-03 11:49:00 +0000 | [diff] [blame] | 2335 | /* ->put_pages might need to allocate memory for the bit17 swizzle |
| 2336 | * array, hence protect them from being reaped by removing them from gtt |
| 2337 | * lists early. */ |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2338 | pages = fetch_and_zero(&obj->mm.pages); |
| 2339 | GEM_BUG_ON(!pages); |
Chris Wilson | a2165e3 | 2012-12-03 11:49:00 +0000 | [diff] [blame] | 2340 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2341 | if (obj->mm.mapping) { |
Chris Wilson | 4b30cb2 | 2016-08-18 17:16:42 +0100 | [diff] [blame] | 2342 | void *ptr; |
| 2343 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2344 | ptr = ptr_mask_bits(obj->mm.mapping); |
Chris Wilson | 4b30cb2 | 2016-08-18 17:16:42 +0100 | [diff] [blame] | 2345 | if (is_vmalloc_addr(ptr)) |
| 2346 | vunmap(ptr); |
Chris Wilson | fb8621d | 2016-04-08 12:11:14 +0100 | [diff] [blame] | 2347 | else |
Chris Wilson | 4b30cb2 | 2016-08-18 17:16:42 +0100 | [diff] [blame] | 2348 | kunmap(kmap_to_page(ptr)); |
| 2349 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2350 | obj->mm.mapping = NULL; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2351 | } |
| 2352 | |
Chris Wilson | 96d7763 | 2016-10-28 13:58:33 +0100 | [diff] [blame] | 2353 | __i915_gem_object_reset_page_iter(obj); |
| 2354 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2355 | obj->ops->put_pages(obj, pages); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2356 | } |
| 2357 | |
Chris Wilson | 4ff340f0 | 2016-10-18 13:02:50 +0100 | [diff] [blame] | 2358 | static unsigned int swiotlb_max_size(void) |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2359 | { |
| 2360 | #if IS_ENABLED(CONFIG_SWIOTLB) |
| 2361 | return rounddown(swiotlb_nr_tbl() << IO_TLB_SHIFT, PAGE_SIZE); |
| 2362 | #else |
| 2363 | return 0; |
| 2364 | #endif |
| 2365 | } |
| 2366 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2367 | static struct sg_table * |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2368 | i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2369 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 2370 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2371 | int page_count, i; |
| 2372 | struct address_space *mapping; |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2373 | struct sg_table *st; |
| 2374 | struct scatterlist *sg; |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2375 | struct sgt_iter sgt_iter; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2376 | struct page *page; |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2377 | unsigned long last_pfn = 0; /* suppress gcc warning */ |
Chris Wilson | 4ff340f0 | 2016-10-18 13:02:50 +0100 | [diff] [blame] | 2378 | unsigned int max_segment; |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2379 | int ret; |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2380 | gfp_t gfp; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2381 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2382 | /* Assert that the object is not currently in any GPU domain. As it |
| 2383 | * wasn't in the GTT, there shouldn't be any way it could have been in |
| 2384 | * a GPU cache |
| 2385 | */ |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2386 | GEM_BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS); |
| 2387 | GEM_BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2388 | |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2389 | max_segment = swiotlb_max_size(); |
| 2390 | if (!max_segment) |
Chris Wilson | 4ff340f0 | 2016-10-18 13:02:50 +0100 | [diff] [blame] | 2391 | max_segment = rounddown(UINT_MAX, PAGE_SIZE); |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2392 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2393 | st = kmalloc(sizeof(*st), GFP_KERNEL); |
| 2394 | if (st == NULL) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2395 | return ERR_PTR(-ENOMEM); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2396 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2397 | page_count = obj->base.size / PAGE_SIZE; |
| 2398 | if (sg_alloc_table(st, page_count, GFP_KERNEL)) { |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2399 | kfree(st); |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2400 | return ERR_PTR(-ENOMEM); |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2401 | } |
| 2402 | |
| 2403 | /* Get the list of pages out of our struct file. They'll be pinned |
| 2404 | * at this point until we release them. |
| 2405 | * |
| 2406 | * Fail silently without starting the shrinker |
| 2407 | */ |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 2408 | mapping = obj->base.filp->f_mapping; |
Michal Hocko | c62d255 | 2015-11-06 16:28:49 -0800 | [diff] [blame] | 2409 | gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM)); |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 2410 | gfp |= __GFP_NORETRY | __GFP_NOWARN; |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2411 | sg = st->sgl; |
| 2412 | st->nents = 0; |
| 2413 | for (i = 0; i < page_count; i++) { |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2414 | page = shmem_read_mapping_page_gfp(mapping, i, gfp); |
| 2415 | if (IS_ERR(page)) { |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 2416 | i915_gem_shrink(dev_priv, |
| 2417 | page_count, |
| 2418 | I915_SHRINK_BOUND | |
| 2419 | I915_SHRINK_UNBOUND | |
| 2420 | I915_SHRINK_PURGEABLE); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2421 | page = shmem_read_mapping_page_gfp(mapping, i, gfp); |
| 2422 | } |
| 2423 | if (IS_ERR(page)) { |
| 2424 | /* We've tried hard to allocate the memory by reaping |
| 2425 | * our own buffer, now let the real VM do its job and |
| 2426 | * go down in flames if truly OOM. |
| 2427 | */ |
David Herrmann | f461d1b | 2014-05-25 14:34:10 +0200 | [diff] [blame] | 2428 | page = shmem_read_mapping_page(mapping, i); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2429 | if (IS_ERR(page)) { |
| 2430 | ret = PTR_ERR(page); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2431 | goto err_pages; |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2432 | } |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2433 | } |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2434 | if (!i || |
| 2435 | sg->length >= max_segment || |
| 2436 | page_to_pfn(page) != last_pfn + 1) { |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2437 | if (i) |
| 2438 | sg = sg_next(sg); |
| 2439 | st->nents++; |
| 2440 | sg_set_page(sg, page, PAGE_SIZE, 0); |
| 2441 | } else { |
| 2442 | sg->length += PAGE_SIZE; |
| 2443 | } |
| 2444 | last_pfn = page_to_pfn(page); |
Daniel Vetter | 3bbbe70 | 2013-10-07 17:15:45 -0300 | [diff] [blame] | 2445 | |
| 2446 | /* Check that the i965g/gm workaround works. */ |
| 2447 | WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL)); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2448 | } |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2449 | if (sg) /* loop terminated early; short sg table */ |
Konrad Rzeszutek Wilk | 426729d | 2013-06-24 11:47:48 -0400 | [diff] [blame] | 2450 | sg_mark_end(sg); |
Chris Wilson | 74ce6b6 | 2012-10-19 15:51:06 +0100 | [diff] [blame] | 2451 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2452 | ret = i915_gem_gtt_prepare_pages(obj, st); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2453 | if (ret) |
| 2454 | goto err_pages; |
| 2455 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2456 | if (i915_gem_object_needs_bit17_swizzle(obj)) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2457 | i915_gem_object_do_bit_17_swizzle(obj, st); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2458 | |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 2459 | if (i915_gem_object_is_tiled(obj) && |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 2460 | dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2461 | __i915_gem_object_pin_pages(obj); |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 2462 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2463 | return st; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2464 | |
| 2465 | err_pages: |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2466 | sg_mark_end(sg); |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2467 | for_each_sgt_page(page, sgt_iter, st) |
| 2468 | put_page(page); |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2469 | sg_free_table(st); |
| 2470 | kfree(st); |
Chris Wilson | 0820baf | 2014-03-25 13:23:03 +0000 | [diff] [blame] | 2471 | |
| 2472 | /* shmemfs first checks if there is enough memory to allocate the page |
| 2473 | * and reports ENOSPC should there be insufficient, along with the usual |
| 2474 | * ENOMEM for a genuine allocation failure. |
| 2475 | * |
| 2476 | * We use ENOSPC in our driver to mean that we have run out of aperture |
| 2477 | * space and so want to translate the error from shmemfs back to our |
| 2478 | * usual understanding of ENOMEM. |
| 2479 | */ |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2480 | if (ret == -ENOSPC) |
| 2481 | ret = -ENOMEM; |
| 2482 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2483 | return ERR_PTR(ret); |
| 2484 | } |
| 2485 | |
| 2486 | void __i915_gem_object_set_pages(struct drm_i915_gem_object *obj, |
| 2487 | struct sg_table *pages) |
| 2488 | { |
| 2489 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 2490 | |
| 2491 | obj->mm.get_page.sg_pos = pages->sgl; |
| 2492 | obj->mm.get_page.sg_idx = 0; |
| 2493 | |
| 2494 | obj->mm.pages = pages; |
| 2495 | } |
| 2496 | |
| 2497 | static int ____i915_gem_object_get_pages(struct drm_i915_gem_object *obj) |
| 2498 | { |
| 2499 | struct sg_table *pages; |
| 2500 | |
| 2501 | if (unlikely(obj->mm.madv != I915_MADV_WILLNEED)) { |
| 2502 | DRM_DEBUG("Attempting to obtain a purgeable object\n"); |
| 2503 | return -EFAULT; |
| 2504 | } |
| 2505 | |
| 2506 | pages = obj->ops->get_pages(obj); |
| 2507 | if (unlikely(IS_ERR(pages))) |
| 2508 | return PTR_ERR(pages); |
| 2509 | |
| 2510 | __i915_gem_object_set_pages(obj, pages); |
| 2511 | return 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2512 | } |
| 2513 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2514 | /* Ensure that the associated pages are gathered from the backing storage |
| 2515 | * and pinned into our object. i915_gem_object_get_pages() may be called |
| 2516 | * multiple times before they are released by a single call to |
| 2517 | * i915_gem_object_put_pages() - once the pages are no longer referenced |
| 2518 | * either as a result of memory pressure (reaping pages under the shrinker) |
| 2519 | * or as the object is itself released. |
| 2520 | */ |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2521 | int __i915_gem_object_get_pages(struct drm_i915_gem_object *obj) |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2522 | { |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2523 | int err; |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2524 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 2525 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 2526 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2527 | if (obj->mm.pages) |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2528 | return 0; |
| 2529 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2530 | err = ____i915_gem_object_get_pages(obj); |
| 2531 | if (err) |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2532 | __i915_gem_object_unpin_pages(obj); |
Chris Wilson | 43e28f0 | 2013-01-08 10:53:09 +0000 | [diff] [blame] | 2533 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame^] | 2534 | return err; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2535 | } |
| 2536 | |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2537 | /* The 'mapping' part of i915_gem_object_pin_map() below */ |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2538 | static void *i915_gem_object_map(const struct drm_i915_gem_object *obj, |
| 2539 | enum i915_map_type type) |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2540 | { |
| 2541 | unsigned long n_pages = obj->base.size >> PAGE_SHIFT; |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2542 | struct sg_table *sgt = obj->mm.pages; |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2543 | struct sgt_iter sgt_iter; |
| 2544 | struct page *page; |
Dave Gordon | b338fa4 | 2016-05-20 11:54:05 +0100 | [diff] [blame] | 2545 | struct page *stack_pages[32]; |
| 2546 | struct page **pages = stack_pages; |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2547 | unsigned long i = 0; |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2548 | pgprot_t pgprot; |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2549 | void *addr; |
| 2550 | |
| 2551 | /* A single page can always be kmapped */ |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2552 | if (n_pages == 1 && type == I915_MAP_WB) |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2553 | return kmap(sg_page(sgt->sgl)); |
| 2554 | |
Dave Gordon | b338fa4 | 2016-05-20 11:54:05 +0100 | [diff] [blame] | 2555 | if (n_pages > ARRAY_SIZE(stack_pages)) { |
| 2556 | /* Too big for stack -- allocate temporary array instead */ |
| 2557 | pages = drm_malloc_gfp(n_pages, sizeof(*pages), GFP_TEMPORARY); |
| 2558 | if (!pages) |
| 2559 | return NULL; |
| 2560 | } |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2561 | |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2562 | for_each_sgt_page(page, sgt_iter, sgt) |
| 2563 | pages[i++] = page; |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2564 | |
| 2565 | /* Check that we have the expected number of pages */ |
| 2566 | GEM_BUG_ON(i != n_pages); |
| 2567 | |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2568 | switch (type) { |
| 2569 | case I915_MAP_WB: |
| 2570 | pgprot = PAGE_KERNEL; |
| 2571 | break; |
| 2572 | case I915_MAP_WC: |
| 2573 | pgprot = pgprot_writecombine(PAGE_KERNEL_IO); |
| 2574 | break; |
| 2575 | } |
| 2576 | addr = vmap(pages, n_pages, 0, pgprot); |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2577 | |
Dave Gordon | b338fa4 | 2016-05-20 11:54:05 +0100 | [diff] [blame] | 2578 | if (pages != stack_pages) |
| 2579 | drm_free_large(pages); |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2580 | |
| 2581 | return addr; |
| 2582 | } |
| 2583 | |
| 2584 | /* get, pin, and map the pages of the object into kernel space */ |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2585 | void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj, |
| 2586 | enum i915_map_type type) |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2587 | { |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2588 | enum i915_map_type has_type; |
| 2589 | bool pinned; |
| 2590 | void *ptr; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2591 | int ret; |
| 2592 | |
| 2593 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2594 | GEM_BUG_ON(!i915_gem_object_has_struct_page(obj)); |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2595 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2596 | ret = i915_gem_object_pin_pages(obj); |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2597 | if (ret) |
| 2598 | return ERR_PTR(ret); |
| 2599 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2600 | pinned = obj->mm.pages_pin_count > 1; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2601 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2602 | ptr = ptr_unpack_bits(obj->mm.mapping, has_type); |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2603 | if (ptr && has_type != type) { |
| 2604 | if (pinned) { |
| 2605 | ret = -EBUSY; |
| 2606 | goto err; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2607 | } |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2608 | |
| 2609 | if (is_vmalloc_addr(ptr)) |
| 2610 | vunmap(ptr); |
| 2611 | else |
| 2612 | kunmap(kmap_to_page(ptr)); |
| 2613 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2614 | ptr = obj->mm.mapping = NULL; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2615 | } |
| 2616 | |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2617 | if (!ptr) { |
| 2618 | ptr = i915_gem_object_map(obj, type); |
| 2619 | if (!ptr) { |
| 2620 | ret = -ENOMEM; |
| 2621 | goto err; |
| 2622 | } |
| 2623 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2624 | obj->mm.mapping = ptr_pack_bits(ptr, type); |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2625 | } |
| 2626 | |
| 2627 | return ptr; |
| 2628 | |
| 2629 | err: |
| 2630 | i915_gem_object_unpin_pages(obj); |
| 2631 | return ERR_PTR(ret); |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2632 | } |
| 2633 | |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2634 | static void |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2635 | i915_gem_object_retire__write(struct i915_gem_active *active, |
| 2636 | struct drm_i915_gem_request *request) |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2637 | { |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2638 | struct drm_i915_gem_object *obj = |
| 2639 | container_of(active, struct drm_i915_gem_object, last_write); |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2640 | |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 2641 | intel_fb_obj_flush(obj, true, ORIGIN_CS); |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2642 | } |
| 2643 | |
| 2644 | static void |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2645 | i915_gem_object_retire__read(struct i915_gem_active *active, |
| 2646 | struct drm_i915_gem_request *request) |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2647 | { |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2648 | int idx = request->engine->id; |
| 2649 | struct drm_i915_gem_object *obj = |
| 2650 | container_of(active, struct drm_i915_gem_object, last_read[idx]); |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2651 | |
Chris Wilson | 573adb3 | 2016-08-04 16:32:39 +0100 | [diff] [blame] | 2652 | GEM_BUG_ON(!i915_gem_object_has_active_engine(obj, idx)); |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2653 | |
Chris Wilson | 573adb3 | 2016-08-04 16:32:39 +0100 | [diff] [blame] | 2654 | i915_gem_object_clear_active(obj, idx); |
| 2655 | if (i915_gem_object_is_active(obj)) |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2656 | return; |
Chris Wilson | 65ce302 | 2012-07-20 12:41:02 +0100 | [diff] [blame] | 2657 | |
Chris Wilson | 6c24695 | 2015-07-27 10:26:26 +0100 | [diff] [blame] | 2658 | /* Bump our place on the bound list to keep it roughly in LRU order |
| 2659 | * so that we don't steal from recently used but inactive objects |
| 2660 | * (unless we are forced to ofc!) |
| 2661 | */ |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 2662 | if (obj->bind_count) |
| 2663 | list_move_tail(&obj->global_list, |
| 2664 | &request->i915->mm.bound_list); |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2665 | |
Chris Wilson | f8a7fde | 2016-10-28 13:58:29 +0100 | [diff] [blame] | 2666 | if (i915_gem_object_has_active_reference(obj)) { |
| 2667 | i915_gem_object_clear_active_reference(obj); |
| 2668 | i915_gem_object_put(obj); |
| 2669 | } |
Chris Wilson | c8725f3 | 2014-03-17 12:21:55 +0000 | [diff] [blame] | 2670 | } |
| 2671 | |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2672 | static bool i915_context_is_banned(const struct i915_gem_context *ctx) |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2673 | { |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2674 | unsigned long elapsed; |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2675 | |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2676 | if (ctx->hang_stats.banned) |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2677 | return true; |
| 2678 | |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2679 | elapsed = get_seconds() - ctx->hang_stats.guilty_ts; |
Chris Wilson | 676fa57 | 2014-12-24 08:13:39 -0800 | [diff] [blame] | 2680 | if (ctx->hang_stats.ban_period_seconds && |
| 2681 | elapsed <= ctx->hang_stats.ban_period_seconds) { |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2682 | DRM_DEBUG("context hanging too fast, banning!\n"); |
| 2683 | return true; |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2684 | } |
| 2685 | |
| 2686 | return false; |
| 2687 | } |
| 2688 | |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2689 | static void i915_set_reset_status(struct i915_gem_context *ctx, |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2690 | const bool guilty) |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2691 | { |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2692 | struct i915_ctx_hang_stats *hs = &ctx->hang_stats; |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2693 | |
| 2694 | if (guilty) { |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2695 | hs->banned = i915_context_is_banned(ctx); |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2696 | hs->batch_active++; |
| 2697 | hs->guilty_ts = get_seconds(); |
| 2698 | } else { |
| 2699 | hs->batch_pending++; |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2700 | } |
| 2701 | } |
| 2702 | |
Chris Wilson | 8d9fc7f | 2014-02-25 17:11:23 +0200 | [diff] [blame] | 2703 | struct drm_i915_gem_request * |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2704 | i915_gem_find_active_request(struct intel_engine_cs *engine) |
Chris Wilson | 9375e44 | 2010-09-19 12:21:28 +0100 | [diff] [blame] | 2705 | { |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2706 | struct drm_i915_gem_request *request; |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2707 | |
Chris Wilson | f69a02c | 2016-07-01 17:23:16 +0100 | [diff] [blame] | 2708 | /* We are called by the error capture and reset at a random |
| 2709 | * point in time. In particular, note that neither is crucially |
| 2710 | * ordered with an interrupt. After a hang, the GPU is dead and we |
| 2711 | * assume that no more writes can happen (we waited long enough for |
| 2712 | * all writes that were in transaction to be flushed) - adding an |
| 2713 | * extra delay for a recent interrupt is pointless. Hence, we do |
| 2714 | * not need an engine->irq_seqno_barrier() before the seqno reads. |
| 2715 | */ |
Chris Wilson | efdf7c0 | 2016-08-04 07:52:33 +0100 | [diff] [blame] | 2716 | list_for_each_entry(request, &engine->request_list, link) { |
Chris Wilson | f69a02c | 2016-07-01 17:23:16 +0100 | [diff] [blame] | 2717 | if (i915_gem_request_completed(request)) |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2718 | continue; |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2719 | |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 2720 | if (!i915_sw_fence_done(&request->submit)) |
| 2721 | break; |
| 2722 | |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2723 | return request; |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2724 | } |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2725 | |
| 2726 | return NULL; |
| 2727 | } |
| 2728 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2729 | static void reset_request(struct drm_i915_gem_request *request) |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2730 | { |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2731 | void *vaddr = request->ring->vaddr; |
| 2732 | u32 head; |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2733 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2734 | /* As this request likely depends on state from the lost |
| 2735 | * context, clear out all the user operations leaving the |
| 2736 | * breadcrumb at the end (so we get the fence notifications). |
| 2737 | */ |
| 2738 | head = request->head; |
| 2739 | if (request->postfix < head) { |
| 2740 | memset(vaddr + head, 0, request->ring->size - head); |
| 2741 | head = 0; |
| 2742 | } |
| 2743 | memset(vaddr + head, 0, request->postfix - head); |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2744 | } |
| 2745 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2746 | static void i915_gem_reset_engine(struct intel_engine_cs *engine) |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2747 | { |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 2748 | struct drm_i915_gem_request *request; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2749 | struct i915_gem_context *incomplete_ctx; |
| 2750 | bool ring_hung; |
Chris Wilson | 608c1a5 | 2015-09-03 13:01:40 +0100 | [diff] [blame] | 2751 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2752 | if (engine->irq_seqno_barrier) |
| 2753 | engine->irq_seqno_barrier(engine); |
| 2754 | |
| 2755 | request = i915_gem_find_active_request(engine); |
| 2756 | if (!request) |
| 2757 | return; |
| 2758 | |
| 2759 | ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG; |
Chris Wilson | 77c6070 | 2016-10-04 21:11:29 +0100 | [diff] [blame] | 2760 | if (engine->hangcheck.seqno != intel_engine_get_seqno(engine)) |
| 2761 | ring_hung = false; |
| 2762 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2763 | i915_set_reset_status(request->ctx, ring_hung); |
| 2764 | if (!ring_hung) |
| 2765 | return; |
| 2766 | |
| 2767 | DRM_DEBUG_DRIVER("resetting %s to restart from tail of request 0x%x\n", |
| 2768 | engine->name, request->fence.seqno); |
| 2769 | |
| 2770 | /* Setup the CS to resume from the breadcrumb of the hung request */ |
| 2771 | engine->reset_hw(engine, request); |
| 2772 | |
| 2773 | /* Users of the default context do not rely on logical state |
| 2774 | * preserved between batches. They have to emit full state on |
| 2775 | * every batch and so it is safe to execute queued requests following |
| 2776 | * the hang. |
| 2777 | * |
| 2778 | * Other contexts preserve state, now corrupt. We want to skip all |
| 2779 | * queued requests that reference the corrupt context. |
| 2780 | */ |
| 2781 | incomplete_ctx = request->ctx; |
| 2782 | if (i915_gem_context_is_default(incomplete_ctx)) |
| 2783 | return; |
| 2784 | |
| 2785 | list_for_each_entry_continue(request, &engine->request_list, link) |
| 2786 | if (request->ctx == incomplete_ctx) |
| 2787 | reset_request(request); |
| 2788 | } |
| 2789 | |
| 2790 | void i915_gem_reset(struct drm_i915_private *dev_priv) |
| 2791 | { |
| 2792 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2793 | enum intel_engine_id id; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2794 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 2795 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 2796 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2797 | i915_gem_retire_requests(dev_priv); |
| 2798 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2799 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2800 | i915_gem_reset_engine(engine); |
| 2801 | |
| 2802 | i915_gem_restore_fences(&dev_priv->drm); |
Chris Wilson | f2a91d1 | 2016-09-21 14:51:06 +0100 | [diff] [blame] | 2803 | |
| 2804 | if (dev_priv->gt.awake) { |
| 2805 | intel_sanitize_gt_powersave(dev_priv); |
| 2806 | intel_enable_gt_powersave(dev_priv); |
| 2807 | if (INTEL_GEN(dev_priv) >= 6) |
| 2808 | gen6_rps_busy(dev_priv); |
| 2809 | } |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2810 | } |
| 2811 | |
| 2812 | static void nop_submit_request(struct drm_i915_gem_request *request) |
| 2813 | { |
| 2814 | } |
| 2815 | |
| 2816 | static void i915_gem_cleanup_engine(struct intel_engine_cs *engine) |
| 2817 | { |
| 2818 | engine->submit_request = nop_submit_request; |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 2819 | |
Chris Wilson | c4b0930 | 2016-07-20 09:21:10 +0100 | [diff] [blame] | 2820 | /* Mark all pending requests as complete so that any concurrent |
| 2821 | * (lockless) lookup doesn't try and wait upon the request as we |
| 2822 | * reset it. |
| 2823 | */ |
Chris Wilson | 87b723a | 2016-08-09 08:37:02 +0100 | [diff] [blame] | 2824 | intel_engine_init_seqno(engine, engine->last_submitted_seqno); |
Chris Wilson | c4b0930 | 2016-07-20 09:21:10 +0100 | [diff] [blame] | 2825 | |
Ben Widawsky | 1d62bee | 2014-01-01 10:15:13 -0800 | [diff] [blame] | 2826 | /* |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 2827 | * Clear the execlists queue up before freeing the requests, as those |
| 2828 | * are the ones that keep the context and ringbuffer backing objects |
| 2829 | * pinned in place. |
| 2830 | */ |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 2831 | |
Tomas Elf | 7de1691a | 2015-10-19 16:32:32 +0100 | [diff] [blame] | 2832 | if (i915.enable_execlists) { |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 2833 | spin_lock(&engine->execlist_lock); |
| 2834 | INIT_LIST_HEAD(&engine->execlist_queue); |
| 2835 | i915_gem_request_put(engine->execlist_port[0].request); |
| 2836 | i915_gem_request_put(engine->execlist_port[1].request); |
| 2837 | memset(engine->execlist_port, 0, sizeof(engine->execlist_port)); |
| 2838 | spin_unlock(&engine->execlist_lock); |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 2839 | } |
| 2840 | |
Chris Wilson | b913b33 | 2016-07-13 09:10:31 +0100 | [diff] [blame] | 2841 | engine->i915->gt.active_engines &= ~intel_engine_flag(engine); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2842 | } |
| 2843 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2844 | void i915_gem_set_wedged(struct drm_i915_private *dev_priv) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2845 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2846 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2847 | enum intel_engine_id id; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2848 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2849 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 2850 | set_bit(I915_WEDGED, &dev_priv->gpu_error.flags); |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2851 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2852 | i915_gem_context_lost(dev_priv); |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2853 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2854 | i915_gem_cleanup_engine(engine); |
Chris Wilson | b913b33 | 2016-07-13 09:10:31 +0100 | [diff] [blame] | 2855 | mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0); |
Chris Wilson | dfaae39 | 2010-09-22 10:31:52 +0100 | [diff] [blame] | 2856 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2857 | i915_gem_retire_requests(dev_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2858 | } |
| 2859 | |
Daniel Vetter | 75ef9da | 2010-08-21 00:25:16 +0200 | [diff] [blame] | 2860 | static void |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2861 | i915_gem_retire_work_handler(struct work_struct *work) |
| 2862 | { |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2863 | struct drm_i915_private *dev_priv = |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2864 | container_of(work, typeof(*dev_priv), gt.retire_work.work); |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 2865 | struct drm_device *dev = &dev_priv->drm; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2866 | |
Chris Wilson | 891b48c | 2010-09-29 12:26:37 +0100 | [diff] [blame] | 2867 | /* Come back later if the device is busy... */ |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2868 | if (mutex_trylock(&dev->struct_mutex)) { |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2869 | i915_gem_retire_requests(dev_priv); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2870 | mutex_unlock(&dev->struct_mutex); |
| 2871 | } |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2872 | |
| 2873 | /* Keep the retire handler running until we are finally idle. |
| 2874 | * We do not need to do this test under locking as in the worst-case |
| 2875 | * we queue the retire worker once too often. |
| 2876 | */ |
Chris Wilson | c961561 | 2016-07-09 10:12:06 +0100 | [diff] [blame] | 2877 | if (READ_ONCE(dev_priv->gt.awake)) { |
| 2878 | i915_queue_hangcheck(dev_priv); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2879 | queue_delayed_work(dev_priv->wq, |
| 2880 | &dev_priv->gt.retire_work, |
Chris Wilson | bcb4508 | 2012-10-05 17:02:57 +0100 | [diff] [blame] | 2881 | round_jiffies_up_relative(HZ)); |
Chris Wilson | c961561 | 2016-07-09 10:12:06 +0100 | [diff] [blame] | 2882 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2883 | } |
Chris Wilson | 891b48c | 2010-09-29 12:26:37 +0100 | [diff] [blame] | 2884 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2885 | static void |
| 2886 | i915_gem_idle_work_handler(struct work_struct *work) |
| 2887 | { |
| 2888 | struct drm_i915_private *dev_priv = |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2889 | container_of(work, typeof(*dev_priv), gt.idle_work.work); |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 2890 | struct drm_device *dev = &dev_priv->drm; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 2891 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2892 | enum intel_engine_id id; |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2893 | bool rearm_hangcheck; |
| 2894 | |
| 2895 | if (!READ_ONCE(dev_priv->gt.awake)) |
| 2896 | return; |
| 2897 | |
| 2898 | if (READ_ONCE(dev_priv->gt.active_engines)) |
| 2899 | return; |
| 2900 | |
| 2901 | rearm_hangcheck = |
| 2902 | cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work); |
| 2903 | |
| 2904 | if (!mutex_trylock(&dev->struct_mutex)) { |
| 2905 | /* Currently busy, come back later */ |
| 2906 | mod_delayed_work(dev_priv->wq, |
| 2907 | &dev_priv->gt.idle_work, |
| 2908 | msecs_to_jiffies(50)); |
| 2909 | goto out_rearm; |
| 2910 | } |
| 2911 | |
| 2912 | if (dev_priv->gt.active_engines) |
| 2913 | goto out_unlock; |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 2914 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2915 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2916 | i915_gem_batch_pool_fini(&engine->batch_pool); |
Zou Nan hai | 852835f | 2010-05-21 09:08:56 +0800 | [diff] [blame] | 2917 | |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2918 | GEM_BUG_ON(!dev_priv->gt.awake); |
| 2919 | dev_priv->gt.awake = false; |
| 2920 | rearm_hangcheck = false; |
Daniel Vetter | 30ecad7 | 2015-12-09 09:29:36 +0100 | [diff] [blame] | 2921 | |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2922 | if (INTEL_GEN(dev_priv) >= 6) |
| 2923 | gen6_rps_idle(dev_priv); |
| 2924 | intel_runtime_pm_put(dev_priv); |
| 2925 | out_unlock: |
| 2926 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 35c9418 | 2015-04-07 16:20:37 +0100 | [diff] [blame] | 2927 | |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2928 | out_rearm: |
| 2929 | if (rearm_hangcheck) { |
| 2930 | GEM_BUG_ON(!dev_priv->gt.awake); |
| 2931 | i915_queue_hangcheck(dev_priv); |
Chris Wilson | 35c9418 | 2015-04-07 16:20:37 +0100 | [diff] [blame] | 2932 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2933 | } |
| 2934 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 2935 | void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file) |
| 2936 | { |
| 2937 | struct drm_i915_gem_object *obj = to_intel_bo(gem); |
| 2938 | struct drm_i915_file_private *fpriv = file->driver_priv; |
| 2939 | struct i915_vma *vma, *vn; |
| 2940 | |
| 2941 | mutex_lock(&obj->base.dev->struct_mutex); |
| 2942 | list_for_each_entry_safe(vma, vn, &obj->vma_list, obj_link) |
| 2943 | if (vma->vm->file == fpriv) |
| 2944 | i915_vma_close(vma); |
Chris Wilson | f8a7fde | 2016-10-28 13:58:29 +0100 | [diff] [blame] | 2945 | |
| 2946 | if (i915_gem_object_is_active(obj) && |
| 2947 | !i915_gem_object_has_active_reference(obj)) { |
| 2948 | i915_gem_object_set_active_reference(obj); |
| 2949 | i915_gem_object_get(obj); |
| 2950 | } |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 2951 | mutex_unlock(&obj->base.dev->struct_mutex); |
| 2952 | } |
| 2953 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 2954 | static unsigned long to_wait_timeout(s64 timeout_ns) |
| 2955 | { |
| 2956 | if (timeout_ns < 0) |
| 2957 | return MAX_SCHEDULE_TIMEOUT; |
| 2958 | |
| 2959 | if (timeout_ns == 0) |
| 2960 | return 0; |
| 2961 | |
| 2962 | return nsecs_to_jiffies_timeout(timeout_ns); |
| 2963 | } |
| 2964 | |
Ben Widawsky | 5816d64 | 2012-04-11 11:18:19 -0700 | [diff] [blame] | 2965 | /** |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 2966 | * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 2967 | * @dev: drm device pointer |
| 2968 | * @data: ioctl data blob |
| 2969 | * @file: drm file pointer |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 2970 | * |
| 2971 | * Returns 0 if successful, else an error is returned with the remaining time in |
| 2972 | * the timeout parameter. |
| 2973 | * -ETIME: object is still busy after timeout |
| 2974 | * -ERESTARTSYS: signal interrupted the wait |
| 2975 | * -ENONENT: object doesn't exist |
| 2976 | * Also possible, but rare: |
| 2977 | * -EAGAIN: GPU wedged |
| 2978 | * -ENOMEM: damn |
| 2979 | * -ENODEV: Internal IRQ fail |
| 2980 | * -E?: The add request failed |
| 2981 | * |
| 2982 | * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any |
| 2983 | * non-zero timeout parameter the wait ioctl will wait for the given number of |
| 2984 | * nanoseconds on an object becoming unbusy. Since the wait itself does so |
| 2985 | * without holding struct_mutex the object may become re-busied before this |
| 2986 | * function completes. A similar but shorter * race condition exists in the busy |
| 2987 | * ioctl |
| 2988 | */ |
| 2989 | int |
| 2990 | i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file) |
| 2991 | { |
| 2992 | struct drm_i915_gem_wait *args = data; |
| 2993 | struct drm_i915_gem_object *obj; |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 2994 | ktime_t start; |
| 2995 | long ret; |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 2996 | |
Daniel Vetter | 11b5d51 | 2014-09-29 15:31:26 +0200 | [diff] [blame] | 2997 | if (args->flags != 0) |
| 2998 | return -EINVAL; |
| 2999 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 3000 | obj = i915_gem_object_lookup(file, args->bo_handle); |
Chris Wilson | 033d549 | 2016-08-05 10:14:17 +0100 | [diff] [blame] | 3001 | if (!obj) |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 3002 | return -ENOENT; |
Chris Wilson | 033d549 | 2016-08-05 10:14:17 +0100 | [diff] [blame] | 3003 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3004 | start = ktime_get(); |
| 3005 | |
| 3006 | ret = i915_gem_object_wait(obj, |
| 3007 | I915_WAIT_INTERRUPTIBLE | I915_WAIT_ALL, |
| 3008 | to_wait_timeout(args->timeout_ns), |
| 3009 | to_rps_client(file)); |
| 3010 | |
| 3011 | if (args->timeout_ns > 0) { |
| 3012 | args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 3013 | if (args->timeout_ns < 0) |
| 3014 | args->timeout_ns = 0; |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 3015 | } |
| 3016 | |
Chris Wilson | 033d549 | 2016-08-05 10:14:17 +0100 | [diff] [blame] | 3017 | i915_gem_object_put_unlocked(obj); |
John Harrison | ff86588 | 2014-11-24 18:49:28 +0000 | [diff] [blame] | 3018 | return ret; |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 3019 | } |
| 3020 | |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3021 | static void __i915_vma_iounmap(struct i915_vma *vma) |
| 3022 | { |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3023 | GEM_BUG_ON(i915_vma_is_pinned(vma)); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3024 | |
| 3025 | if (vma->iomap == NULL) |
| 3026 | return; |
| 3027 | |
| 3028 | io_mapping_unmap(vma->iomap); |
| 3029 | vma->iomap = NULL; |
| 3030 | } |
| 3031 | |
Chris Wilson | df0e9a2 | 2016-08-04 07:52:47 +0100 | [diff] [blame] | 3032 | int i915_vma_unbind(struct i915_vma *vma) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3033 | { |
Ben Widawsky | 07fe0b1 | 2013-07-31 17:00:10 -0700 | [diff] [blame] | 3034 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3035 | unsigned long active; |
Chris Wilson | 43e28f0 | 2013-01-08 10:53:09 +0000 | [diff] [blame] | 3036 | int ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3037 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 3038 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 3039 | |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3040 | /* First wait upon any activity as retiring the request may |
| 3041 | * have side-effects such as unpinning or even unbinding this vma. |
| 3042 | */ |
| 3043 | active = i915_vma_get_active(vma); |
Chris Wilson | df0e9a2 | 2016-08-04 07:52:47 +0100 | [diff] [blame] | 3044 | if (active) { |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3045 | int idx; |
| 3046 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3047 | /* When a closed VMA is retired, it is unbound - eek. |
| 3048 | * In order to prevent it from being recursively closed, |
| 3049 | * take a pin on the vma so that the second unbind is |
| 3050 | * aborted. |
| 3051 | */ |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3052 | __i915_vma_pin(vma); |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3053 | |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3054 | for_each_active(active, idx) { |
| 3055 | ret = i915_gem_active_retire(&vma->last_read[idx], |
| 3056 | &vma->vm->dev->struct_mutex); |
| 3057 | if (ret) |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3058 | break; |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3059 | } |
| 3060 | |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3061 | __i915_vma_unpin(vma); |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3062 | if (ret) |
| 3063 | return ret; |
| 3064 | |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3065 | GEM_BUG_ON(i915_vma_is_active(vma)); |
| 3066 | } |
| 3067 | |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3068 | if (i915_vma_is_pinned(vma)) |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3069 | return -EBUSY; |
| 3070 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3071 | if (!drm_mm_node_allocated(&vma->node)) |
| 3072 | goto destroy; |
Ben Widawsky | 433544b | 2013-08-13 18:09:06 -0700 | [diff] [blame] | 3073 | |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3074 | GEM_BUG_ON(obj->bind_count == 0); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3075 | GEM_BUG_ON(!obj->mm.pages); |
Chris Wilson | c4670ad | 2012-08-20 10:23:27 +0100 | [diff] [blame] | 3076 | |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3077 | if (i915_vma_is_map_and_fenceable(vma)) { |
Daniel Vetter | 8b1bc9b | 2014-02-14 14:06:07 +0100 | [diff] [blame] | 3078 | /* release the fence reg _after_ flushing */ |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 3079 | ret = i915_vma_put_fence(vma); |
Daniel Vetter | 8b1bc9b | 2014-02-14 14:06:07 +0100 | [diff] [blame] | 3080 | if (ret) |
| 3081 | return ret; |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3082 | |
Chris Wilson | cd3127d | 2016-08-18 17:17:09 +0100 | [diff] [blame] | 3083 | /* Force a pagefault for domain tracking on next user access */ |
| 3084 | i915_gem_release_mmap(obj); |
| 3085 | |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3086 | __i915_vma_iounmap(vma); |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3087 | vma->flags &= ~I915_VMA_CAN_FENCE; |
Daniel Vetter | 8b1bc9b | 2014-02-14 14:06:07 +0100 | [diff] [blame] | 3088 | } |
Daniel Vetter | 96b47b6 | 2009-12-15 17:50:00 +0100 | [diff] [blame] | 3089 | |
Chris Wilson | 50e046b | 2016-08-04 07:52:46 +0100 | [diff] [blame] | 3090 | if (likely(!vma->vm->closed)) { |
| 3091 | trace_i915_vma_unbind(vma); |
| 3092 | vma->vm->unbind_vma(vma); |
| 3093 | } |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3094 | vma->flags &= ~(I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND); |
Ben Widawsky | 6f65e29 | 2013-12-06 14:10:56 -0800 | [diff] [blame] | 3095 | |
Chris Wilson | 50e046b | 2016-08-04 07:52:46 +0100 | [diff] [blame] | 3096 | drm_mm_remove_node(&vma->node); |
| 3097 | list_move_tail(&vma->vm_link, &vma->vm->unbound_list); |
| 3098 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3099 | if (vma->pages != obj->mm.pages) { |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3100 | GEM_BUG_ON(!vma->pages); |
| 3101 | sg_free_table(vma->pages); |
| 3102 | kfree(vma->pages); |
Tvrtko Ursulin | fe14d5f | 2014-12-10 17:27:58 +0000 | [diff] [blame] | 3103 | } |
Chris Wilson | 247177d | 2016-08-15 10:48:47 +0100 | [diff] [blame] | 3104 | vma->pages = NULL; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3105 | |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 3106 | /* Since the unbound list is global, only move to that list if |
Daniel Vetter | b93dab6 | 2013-08-26 11:23:47 +0200 | [diff] [blame] | 3107 | * no more VMAs exist. */ |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3108 | if (--obj->bind_count == 0) |
| 3109 | list_move_tail(&obj->global_list, |
| 3110 | &to_i915(obj->base.dev)->mm.unbound_list); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3111 | |
Chris Wilson | 70903c3 | 2013-12-04 09:59:09 +0000 | [diff] [blame] | 3112 | /* And finally now the object is completely decoupled from this vma, |
| 3113 | * we can drop its hold on the backing storage and allow it to be |
| 3114 | * reaped by the shrinker. |
| 3115 | */ |
| 3116 | i915_gem_object_unpin_pages(obj); |
| 3117 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3118 | destroy: |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3119 | if (unlikely(i915_vma_is_closed(vma))) |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3120 | i915_vma_destroy(vma); |
| 3121 | |
Chris Wilson | 8824178 | 2011-01-07 17:09:48 +0000 | [diff] [blame] | 3122 | return 0; |
Chris Wilson | 54cf91d | 2010-11-25 18:00:26 +0000 | [diff] [blame] | 3123 | } |
| 3124 | |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 3125 | int i915_gem_wait_for_idle(struct drm_i915_private *dev_priv, |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 3126 | unsigned int flags) |
Daniel Vetter | 4df2faf | 2010-02-19 11:52:00 +0100 | [diff] [blame] | 3127 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 3128 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3129 | enum intel_engine_id id; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 3130 | int ret; |
Daniel Vetter | 4df2faf | 2010-02-19 11:52:00 +0100 | [diff] [blame] | 3131 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3132 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | 62e6300 | 2016-06-24 14:55:52 +0100 | [diff] [blame] | 3133 | if (engine->last_context == NULL) |
| 3134 | continue; |
| 3135 | |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 3136 | ret = intel_engine_idle(engine, flags); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 3137 | if (ret) |
| 3138 | return ret; |
| 3139 | } |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 3140 | |
Daniel Vetter | 8a1a49f | 2010-02-11 22:29:04 +0100 | [diff] [blame] | 3141 | return 0; |
Daniel Vetter | 4df2faf | 2010-02-19 11:52:00 +0100 | [diff] [blame] | 3142 | } |
| 3143 | |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3144 | static bool i915_gem_valid_gtt_space(struct i915_vma *vma, |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3145 | unsigned long cache_level) |
| 3146 | { |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3147 | struct drm_mm_node *gtt_space = &vma->node; |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3148 | struct drm_mm_node *other; |
| 3149 | |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3150 | /* |
| 3151 | * On some machines we have to be careful when putting differing types |
| 3152 | * of snoopable memory together to avoid the prefetcher crossing memory |
| 3153 | * domains and dying. During vm initialisation, we decide whether or not |
| 3154 | * these constraints apply and set the drm_mm.color_adjust |
| 3155 | * appropriately. |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3156 | */ |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3157 | if (vma->vm->mm.color_adjust == NULL) |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3158 | return true; |
| 3159 | |
Ben Widawsky | c6cfb32 | 2013-07-05 14:41:06 -0700 | [diff] [blame] | 3160 | if (!drm_mm_node_allocated(gtt_space)) |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3161 | return true; |
| 3162 | |
| 3163 | if (list_empty(>t_space->node_list)) |
| 3164 | return true; |
| 3165 | |
| 3166 | other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list); |
| 3167 | if (other->allocated && !other->hole_follows && other->color != cache_level) |
| 3168 | return false; |
| 3169 | |
| 3170 | other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list); |
| 3171 | if (other->allocated && !gtt_space->hole_follows && other->color != cache_level) |
| 3172 | return false; |
| 3173 | |
| 3174 | return true; |
| 3175 | } |
| 3176 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 3177 | /** |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3178 | * i915_vma_insert - finds a slot for the vma in its address space |
| 3179 | * @vma: the vma |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3180 | * @size: requested size in bytes (can be larger than the VMA) |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3181 | * @alignment: required alignment |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3182 | * @flags: mask of PIN_* flags to use |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3183 | * |
| 3184 | * First we try to allocate some free space that meets the requirements for |
| 3185 | * the VMA. Failiing that, if the flags permit, it will evict an old VMA, |
| 3186 | * preferrably the oldest idle entry to make room for the new VMA. |
| 3187 | * |
| 3188 | * Returns: |
| 3189 | * 0 on success, negative error code otherwise. |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3190 | */ |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3191 | static int |
| 3192 | i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3193 | { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3194 | struct drm_i915_private *dev_priv = to_i915(vma->vm->dev); |
| 3195 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3196 | u64 start, end; |
Chris Wilson | 07f73f6 | 2009-09-14 16:50:30 +0100 | [diff] [blame] | 3197 | int ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3198 | |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3199 | GEM_BUG_ON(vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND)); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3200 | GEM_BUG_ON(drm_mm_node_allocated(&vma->node)); |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 3201 | |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3202 | size = max(size, vma->size); |
| 3203 | if (flags & PIN_MAPPABLE) |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 3204 | size = i915_gem_get_ggtt_size(dev_priv, size, |
| 3205 | i915_gem_object_get_tiling(obj)); |
Joonas Lahtinen | 91e6711 | 2015-05-06 14:33:58 +0300 | [diff] [blame] | 3206 | |
Chris Wilson | d8923dc | 2016-08-18 17:17:07 +0100 | [diff] [blame] | 3207 | alignment = max(max(alignment, vma->display_alignment), |
| 3208 | i915_gem_get_ggtt_alignment(dev_priv, size, |
| 3209 | i915_gem_object_get_tiling(obj), |
| 3210 | flags & PIN_MAPPABLE)); |
Chris Wilson | a00b10c | 2010-09-24 21:15:47 +0100 | [diff] [blame] | 3211 | |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3212 | start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3213 | |
| 3214 | end = vma->vm->total; |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3215 | if (flags & PIN_MAPPABLE) |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3216 | end = min_t(u64, end, dev_priv->ggtt.mappable_end); |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3217 | if (flags & PIN_ZONE_4G) |
Michel Thierry | 48ea1e3 | 2016-01-11 11:39:27 +0000 | [diff] [blame] | 3218 | end = min_t(u64, end, (1ULL << 32) - PAGE_SIZE); |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3219 | |
Joonas Lahtinen | 91e6711 | 2015-05-06 14:33:58 +0300 | [diff] [blame] | 3220 | /* If binding the object/GGTT view requires more space than the entire |
| 3221 | * aperture has, reject it early before evicting everything in a vain |
| 3222 | * attempt to find space. |
Chris Wilson | 654fc60 | 2010-05-27 13:18:21 +0100 | [diff] [blame] | 3223 | */ |
Joonas Lahtinen | 91e6711 | 2015-05-06 14:33:58 +0300 | [diff] [blame] | 3224 | if (size > end) { |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3225 | DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu [object=%zd] > %s aperture=%llu\n", |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3226 | size, obj->base.size, |
Daniel Vetter | 1ec9e26 | 2014-02-14 14:01:11 +0100 | [diff] [blame] | 3227 | flags & PIN_MAPPABLE ? "mappable" : "total", |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3228 | end); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3229 | return -E2BIG; |
Chris Wilson | 654fc60 | 2010-05-27 13:18:21 +0100 | [diff] [blame] | 3230 | } |
| 3231 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3232 | ret = i915_gem_object_pin_pages(obj); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 3233 | if (ret) |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3234 | return ret; |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 3235 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3236 | if (flags & PIN_OFFSET_FIXED) { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3237 | u64 offset = flags & PIN_OFFSET_MASK; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3238 | if (offset & (alignment - 1) || offset > end - size) { |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3239 | ret = -EINVAL; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3240 | goto err_unpin; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3241 | } |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3242 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3243 | vma->node.start = offset; |
| 3244 | vma->node.size = size; |
| 3245 | vma->node.color = obj->cache_level; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3246 | ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node); |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3247 | if (ret) { |
| 3248 | ret = i915_gem_evict_for_vma(vma); |
| 3249 | if (ret == 0) |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3250 | ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node); |
| 3251 | if (ret) |
| 3252 | goto err_unpin; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3253 | } |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3254 | } else { |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3255 | u32 search_flag, alloc_flag; |
| 3256 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3257 | if (flags & PIN_HIGH) { |
| 3258 | search_flag = DRM_MM_SEARCH_BELOW; |
| 3259 | alloc_flag = DRM_MM_CREATE_TOP; |
| 3260 | } else { |
| 3261 | search_flag = DRM_MM_SEARCH_DEFAULT; |
| 3262 | alloc_flag = DRM_MM_CREATE_DEFAULT; |
| 3263 | } |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3264 | |
Chris Wilson | 954c469 | 2016-08-04 16:32:26 +0100 | [diff] [blame] | 3265 | /* We only allocate in PAGE_SIZE/GTT_PAGE_SIZE (4096) chunks, |
| 3266 | * so we know that we always have a minimum alignment of 4096. |
| 3267 | * The drm_mm range manager is optimised to return results |
| 3268 | * with zero alignment, so where possible use the optimal |
| 3269 | * path. |
| 3270 | */ |
| 3271 | if (alignment <= 4096) |
| 3272 | alignment = 0; |
| 3273 | |
Ben Widawsky | 0a9ae0d | 2013-05-25 12:26:35 -0700 | [diff] [blame] | 3274 | search_free: |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3275 | ret = drm_mm_insert_node_in_range_generic(&vma->vm->mm, |
| 3276 | &vma->node, |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3277 | size, alignment, |
| 3278 | obj->cache_level, |
| 3279 | start, end, |
| 3280 | search_flag, |
| 3281 | alloc_flag); |
| 3282 | if (ret) { |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3283 | ret = i915_gem_evict_something(vma->vm, size, alignment, |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3284 | obj->cache_level, |
| 3285 | start, end, |
| 3286 | flags); |
| 3287 | if (ret == 0) |
| 3288 | goto search_free; |
Chris Wilson | 9731129 | 2009-09-21 00:22:34 +0100 | [diff] [blame] | 3289 | |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3290 | goto err_unpin; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3291 | } |
Chris Wilson | ad16d2e | 2016-10-13 09:55:04 +0100 | [diff] [blame] | 3292 | |
| 3293 | GEM_BUG_ON(vma->node.start < start); |
| 3294 | GEM_BUG_ON(vma->node.start + vma->node.size > end); |
Chris Wilson | dc9dd7a | 2012-12-07 20:37:07 +0000 | [diff] [blame] | 3295 | } |
Chris Wilson | 3750858 | 2016-08-04 16:32:24 +0100 | [diff] [blame] | 3296 | GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level)); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3297 | |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 3298 | list_move_tail(&obj->global_list, &dev_priv->mm.bound_list); |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3299 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3300 | obj->bind_count++; |
Chris Wilson | bf1a109 | 2010-08-07 11:01:20 +0100 | [diff] [blame] | 3301 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3302 | return 0; |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 3303 | |
Daniel Vetter | bc6bc15 | 2013-07-22 12:12:38 +0200 | [diff] [blame] | 3304 | err_unpin: |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 3305 | i915_gem_object_unpin_pages(obj); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3306 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3307 | } |
| 3308 | |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3309 | bool |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 3310 | i915_gem_clflush_object(struct drm_i915_gem_object *obj, |
| 3311 | bool force) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3312 | { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3313 | /* If we don't have a page list set up, then we're not pinned |
| 3314 | * to GPU, and we can ignore the cache flush because it'll happen |
| 3315 | * again at bind time. |
| 3316 | */ |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3317 | if (!obj->mm.pages) |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3318 | return false; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3319 | |
Imre Deak | 769ce46 | 2013-02-13 21:56:05 +0200 | [diff] [blame] | 3320 | /* |
| 3321 | * Stolen memory is always coherent with the GPU as it is explicitly |
| 3322 | * marked as wc by the system, or the system is cache-coherent. |
| 3323 | */ |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 3324 | if (obj->stolen || obj->phys_handle) |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3325 | return false; |
Imre Deak | 769ce46 | 2013-02-13 21:56:05 +0200 | [diff] [blame] | 3326 | |
Chris Wilson | 9c23f7f | 2011-03-29 16:59:52 -0700 | [diff] [blame] | 3327 | /* If the GPU is snooping the contents of the CPU cache, |
| 3328 | * we do not need to manually clear the CPU cache lines. However, |
| 3329 | * the caches are only snooped when the render cache is |
| 3330 | * flushed/invalidated. As we always have to emit invalidations |
| 3331 | * and flushes when moving into and out of the RENDER domain, correct |
| 3332 | * snooping behaviour occurs naturally as the result of our domain |
| 3333 | * tracking. |
| 3334 | */ |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3335 | if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) { |
| 3336 | obj->cache_dirty = true; |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3337 | return false; |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3338 | } |
Chris Wilson | 9c23f7f | 2011-03-29 16:59:52 -0700 | [diff] [blame] | 3339 | |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3340 | trace_i915_gem_object_clflush(obj); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3341 | drm_clflush_sg(obj->mm.pages); |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3342 | obj->cache_dirty = false; |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3343 | |
| 3344 | return true; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3345 | } |
| 3346 | |
| 3347 | /** Flushes the GTT write domain for the object if it's dirty. */ |
| 3348 | static void |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3349 | i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj) |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3350 | { |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3351 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3352 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3353 | if (obj->base.write_domain != I915_GEM_DOMAIN_GTT) |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3354 | return; |
| 3355 | |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3356 | /* No actual flushing is required for the GTT write domain. Writes |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3357 | * to it "immediately" go to main memory as far as we know, so there's |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3358 | * no chipset flush. It also doesn't land in render cache. |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3359 | * |
| 3360 | * However, we do have to enforce the order so that all writes through |
| 3361 | * the GTT land before any writes to the device, such as updates to |
| 3362 | * the GATT itself. |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3363 | * |
| 3364 | * We also have to wait a bit for the writes to land from the GTT. |
| 3365 | * An uncached read (i.e. mmio) seems to be ideal for the round-trip |
| 3366 | * timing. This issue has only been observed when switching quickly |
| 3367 | * between GTT writes and CPU reads from inside the kernel on recent hw, |
| 3368 | * and it appears to only affect discrete GTT blocks (i.e. on LLC |
| 3369 | * system agents we cannot reproduce this behaviour). |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3370 | */ |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3371 | wmb(); |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3372 | if (INTEL_GEN(dev_priv) >= 6 && !HAS_LLC(dev_priv)) |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3373 | POSTING_READ(RING_ACTHD(dev_priv->engine[RCS]->mmio_base)); |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3374 | |
Chris Wilson | d243ad8 | 2016-08-18 17:16:44 +0100 | [diff] [blame] | 3375 | intel_fb_obj_flush(obj, false, write_origin(obj, I915_GEM_DOMAIN_GTT)); |
Daniel Vetter | f99d706 | 2014-06-19 16:01:59 +0200 | [diff] [blame] | 3376 | |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3377 | obj->base.write_domain = 0; |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3378 | trace_i915_gem_object_change_domain(obj, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3379 | obj->base.read_domains, |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3380 | I915_GEM_DOMAIN_GTT); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3381 | } |
| 3382 | |
| 3383 | /** Flushes the CPU write domain for the object if it's dirty. */ |
| 3384 | static void |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3385 | i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj) |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3386 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3387 | if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3388 | return; |
| 3389 | |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3390 | if (i915_gem_clflush_object(obj, obj->pin_display)) |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3391 | i915_gem_chipset_flush(to_i915(obj->base.dev)); |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3392 | |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 3393 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Daniel Vetter | f99d706 | 2014-06-19 16:01:59 +0200 | [diff] [blame] | 3394 | |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3395 | obj->base.write_domain = 0; |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3396 | trace_i915_gem_object_change_domain(obj, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3397 | obj->base.read_domains, |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3398 | I915_GEM_DOMAIN_CPU); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3399 | } |
| 3400 | |
Chris Wilson | 383d582 | 2016-08-18 17:17:08 +0100 | [diff] [blame] | 3401 | static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj) |
| 3402 | { |
| 3403 | struct i915_vma *vma; |
| 3404 | |
| 3405 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
| 3406 | if (!i915_vma_is_ggtt(vma)) |
| 3407 | continue; |
| 3408 | |
| 3409 | if (i915_vma_is_active(vma)) |
| 3410 | continue; |
| 3411 | |
| 3412 | if (!drm_mm_node_allocated(&vma->node)) |
| 3413 | continue; |
| 3414 | |
| 3415 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
| 3416 | } |
| 3417 | } |
| 3418 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3419 | /** |
| 3420 | * Moves a single object to the GTT read, and possibly write domain. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3421 | * @obj: object to act on |
| 3422 | * @write: ask for write access or read only |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3423 | * |
| 3424 | * This function returns when the move is complete, including waiting on |
| 3425 | * flushes to occur. |
| 3426 | */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3427 | int |
Chris Wilson | 2021746 | 2010-11-23 15:26:33 +0000 | [diff] [blame] | 3428 | i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write) |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3429 | { |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3430 | uint32_t old_write_domain, old_read_domains; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3431 | int ret; |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3432 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3433 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 3434 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3435 | ret = i915_gem_object_wait(obj, |
| 3436 | I915_WAIT_INTERRUPTIBLE | |
| 3437 | I915_WAIT_LOCKED | |
| 3438 | (write ? I915_WAIT_ALL : 0), |
| 3439 | MAX_SCHEDULE_TIMEOUT, |
| 3440 | NULL); |
Chris Wilson | 8824178 | 2011-01-07 17:09:48 +0000 | [diff] [blame] | 3441 | if (ret) |
| 3442 | return ret; |
| 3443 | |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 3444 | if (obj->base.write_domain == I915_GEM_DOMAIN_GTT) |
| 3445 | return 0; |
| 3446 | |
Chris Wilson | 43566de | 2015-01-02 16:29:29 +0530 | [diff] [blame] | 3447 | /* Flush and acquire obj->pages so that we are coherent through |
| 3448 | * direct access in memory with previous cached writes through |
| 3449 | * shmemfs and that our cache domain tracking remains valid. |
| 3450 | * For example, if the obj->filp was moved to swap without us |
| 3451 | * being notified and releasing the pages, we would mistakenly |
| 3452 | * continue to assume that the obj remained out of the CPU cached |
| 3453 | * domain. |
| 3454 | */ |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3455 | ret = i915_gem_object_pin_pages(obj); |
Chris Wilson | 43566de | 2015-01-02 16:29:29 +0530 | [diff] [blame] | 3456 | if (ret) |
| 3457 | return ret; |
| 3458 | |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3459 | i915_gem_object_flush_cpu_write_domain(obj); |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3460 | |
Chris Wilson | d0a5778 | 2012-10-09 19:24:37 +0100 | [diff] [blame] | 3461 | /* Serialise direct access to this object with the barriers for |
| 3462 | * coherent writes from the GPU, by effectively invalidating the |
| 3463 | * GTT domain upon first access. |
| 3464 | */ |
| 3465 | if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) |
| 3466 | mb(); |
| 3467 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3468 | old_write_domain = obj->base.write_domain; |
| 3469 | old_read_domains = obj->base.read_domains; |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3470 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3471 | /* It should now be out of any other write domains, and we can update |
| 3472 | * the domain values for our changes. |
| 3473 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3474 | BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0); |
| 3475 | obj->base.read_domains |= I915_GEM_DOMAIN_GTT; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3476 | if (write) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3477 | obj->base.read_domains = I915_GEM_DOMAIN_GTT; |
| 3478 | obj->base.write_domain = I915_GEM_DOMAIN_GTT; |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3479 | obj->mm.dirty = true; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3480 | } |
| 3481 | |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3482 | trace_i915_gem_object_change_domain(obj, |
| 3483 | old_read_domains, |
| 3484 | old_write_domain); |
| 3485 | |
Chris Wilson | 8325a09 | 2012-04-24 15:52:35 +0100 | [diff] [blame] | 3486 | /* And bump the LRU for this access */ |
Chris Wilson | 383d582 | 2016-08-18 17:17:08 +0100 | [diff] [blame] | 3487 | i915_gem_object_bump_inactive_ggtt(obj); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 3488 | i915_gem_object_unpin_pages(obj); |
Chris Wilson | 8325a09 | 2012-04-24 15:52:35 +0100 | [diff] [blame] | 3489 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3490 | return 0; |
| 3491 | } |
| 3492 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3493 | /** |
| 3494 | * Changes the cache-level of an object across all VMA. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3495 | * @obj: object to act on |
| 3496 | * @cache_level: new cache level to set for the object |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3497 | * |
| 3498 | * After this function returns, the object will be in the new cache-level |
| 3499 | * across all GTT and the contents of the backing storage will be coherent, |
| 3500 | * with respect to the new cache-level. In order to keep the backing storage |
| 3501 | * coherent for all users, we only allow a single cache level to be set |
| 3502 | * globally on the object and prevent it from being changed whilst the |
| 3503 | * hardware is reading from the object. That is if the object is currently |
| 3504 | * on the scanout it will be set to uncached (or equivalent display |
| 3505 | * cache coherency) and all non-MOCS GPU access will also be uncached so |
| 3506 | * that all direct access to the scanout remains coherent. |
| 3507 | */ |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3508 | int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj, |
| 3509 | enum i915_cache_level cache_level) |
| 3510 | { |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3511 | struct i915_vma *vma; |
Ville Syrjälä | ed75a55 | 2015-08-11 19:47:10 +0300 | [diff] [blame] | 3512 | int ret = 0; |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3513 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 3514 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 3515 | |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3516 | if (obj->cache_level == cache_level) |
Ville Syrjälä | ed75a55 | 2015-08-11 19:47:10 +0300 | [diff] [blame] | 3517 | goto out; |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3518 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3519 | /* Inspect the list of currently bound VMA and unbind any that would |
| 3520 | * be invalid given the new cache-level. This is principally to |
| 3521 | * catch the issue of the CS prefetch crossing page boundaries and |
| 3522 | * reading an invalid PTE on older architectures. |
| 3523 | */ |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3524 | restart: |
| 3525 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3526 | if (!drm_mm_node_allocated(&vma->node)) |
| 3527 | continue; |
| 3528 | |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3529 | if (i915_vma_is_pinned(vma)) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3530 | DRM_DEBUG("can not change the cache level of pinned objects\n"); |
| 3531 | return -EBUSY; |
| 3532 | } |
| 3533 | |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3534 | if (i915_gem_valid_gtt_space(vma, cache_level)) |
| 3535 | continue; |
| 3536 | |
| 3537 | ret = i915_vma_unbind(vma); |
| 3538 | if (ret) |
| 3539 | return ret; |
| 3540 | |
| 3541 | /* As unbinding may affect other elements in the |
| 3542 | * obj->vma_list (due to side-effects from retiring |
| 3543 | * an active vma), play safe and restart the iterator. |
| 3544 | */ |
| 3545 | goto restart; |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3546 | } |
| 3547 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3548 | /* We can reuse the existing drm_mm nodes but need to change the |
| 3549 | * cache-level on the PTE. We could simply unbind them all and |
| 3550 | * rebind with the correct cache-level on next use. However since |
| 3551 | * we already have a valid slot, dma mapping, pages etc, we may as |
| 3552 | * rewrite the PTE in the belief that doing so tramples upon less |
| 3553 | * state and so involves less work. |
| 3554 | */ |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3555 | if (obj->bind_count) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3556 | /* Before we change the PTE, the GPU must not be accessing it. |
| 3557 | * If we wait upon the object, we know that all the bound |
| 3558 | * VMA are no longer active. |
| 3559 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3560 | ret = i915_gem_object_wait(obj, |
| 3561 | I915_WAIT_INTERRUPTIBLE | |
| 3562 | I915_WAIT_LOCKED | |
| 3563 | I915_WAIT_ALL, |
| 3564 | MAX_SCHEDULE_TIMEOUT, |
| 3565 | NULL); |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3566 | if (ret) |
| 3567 | return ret; |
| 3568 | |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3569 | if (!HAS_LLC(obj->base.dev) && cache_level != I915_CACHE_NONE) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3570 | /* Access to snoopable pages through the GTT is |
| 3571 | * incoherent and on some machines causes a hard |
| 3572 | * lockup. Relinquish the CPU mmaping to force |
| 3573 | * userspace to refault in the pages and we can |
| 3574 | * then double check if the GTT mapping is still |
| 3575 | * valid for that pointer access. |
| 3576 | */ |
| 3577 | i915_gem_release_mmap(obj); |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3578 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3579 | /* As we no longer need a fence for GTT access, |
| 3580 | * we can relinquish it now (and so prevent having |
| 3581 | * to steal a fence from someone else on the next |
| 3582 | * fence request). Note GPU activity would have |
| 3583 | * dropped the fence as all snoopable access is |
| 3584 | * supposed to be linear. |
| 3585 | */ |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 3586 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
| 3587 | ret = i915_vma_put_fence(vma); |
| 3588 | if (ret) |
| 3589 | return ret; |
| 3590 | } |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3591 | } else { |
| 3592 | /* We either have incoherent backing store and |
| 3593 | * so no GTT access or the architecture is fully |
| 3594 | * coherent. In such cases, existing GTT mmaps |
| 3595 | * ignore the cache bit in the PTE and we can |
| 3596 | * rewrite it without confusing the GPU or having |
| 3597 | * to force userspace to fault back in its mmaps. |
| 3598 | */ |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3599 | } |
| 3600 | |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 3601 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3602 | if (!drm_mm_node_allocated(&vma->node)) |
| 3603 | continue; |
| 3604 | |
| 3605 | ret = i915_vma_bind(vma, cache_level, PIN_UPDATE); |
| 3606 | if (ret) |
| 3607 | return ret; |
| 3608 | } |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3609 | } |
| 3610 | |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 3611 | list_for_each_entry(vma, &obj->vma_list, obj_link) |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 3612 | vma->node.color = cache_level; |
| 3613 | obj->cache_level = cache_level; |
| 3614 | |
Ville Syrjälä | ed75a55 | 2015-08-11 19:47:10 +0300 | [diff] [blame] | 3615 | out: |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3616 | /* Flush the dirty CPU caches to the backing storage so that the |
| 3617 | * object is now coherent at its new cache level (with respect |
| 3618 | * to the access domain). |
| 3619 | */ |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 3620 | if (obj->cache_dirty && cpu_write_needs_clflush(obj)) { |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3621 | if (i915_gem_clflush_object(obj, true)) |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3622 | i915_gem_chipset_flush(to_i915(obj->base.dev)); |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3623 | } |
| 3624 | |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3625 | return 0; |
| 3626 | } |
| 3627 | |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3628 | int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data, |
| 3629 | struct drm_file *file) |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3630 | { |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3631 | struct drm_i915_gem_caching *args = data; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3632 | struct drm_i915_gem_object *obj; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3633 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 3634 | obj = i915_gem_object_lookup(file, args->handle); |
| 3635 | if (!obj) |
Chris Wilson | 432be69 | 2015-05-07 12:14:55 +0100 | [diff] [blame] | 3636 | return -ENOENT; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3637 | |
Chris Wilson | 651d794 | 2013-08-08 14:41:10 +0100 | [diff] [blame] | 3638 | switch (obj->cache_level) { |
| 3639 | case I915_CACHE_LLC: |
| 3640 | case I915_CACHE_L3_LLC: |
| 3641 | args->caching = I915_CACHING_CACHED; |
| 3642 | break; |
| 3643 | |
Chris Wilson | 4257d3b | 2013-08-08 14:41:11 +0100 | [diff] [blame] | 3644 | case I915_CACHE_WT: |
| 3645 | args->caching = I915_CACHING_DISPLAY; |
| 3646 | break; |
| 3647 | |
Chris Wilson | 651d794 | 2013-08-08 14:41:10 +0100 | [diff] [blame] | 3648 | default: |
| 3649 | args->caching = I915_CACHING_NONE; |
| 3650 | break; |
| 3651 | } |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3652 | |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 3653 | i915_gem_object_put_unlocked(obj); |
Chris Wilson | 432be69 | 2015-05-07 12:14:55 +0100 | [diff] [blame] | 3654 | return 0; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3655 | } |
| 3656 | |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3657 | int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data, |
| 3658 | struct drm_file *file) |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3659 | { |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3660 | struct drm_i915_private *i915 = to_i915(dev); |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3661 | struct drm_i915_gem_caching *args = data; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3662 | struct drm_i915_gem_object *obj; |
| 3663 | enum i915_cache_level level; |
| 3664 | int ret; |
| 3665 | |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3666 | switch (args->caching) { |
| 3667 | case I915_CACHING_NONE: |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3668 | level = I915_CACHE_NONE; |
| 3669 | break; |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3670 | case I915_CACHING_CACHED: |
Imre Deak | e5756c1 | 2015-08-14 18:43:30 +0300 | [diff] [blame] | 3671 | /* |
| 3672 | * Due to a HW issue on BXT A stepping, GPU stores via a |
| 3673 | * snooped mapping may leave stale data in a corresponding CPU |
| 3674 | * cacheline, whereas normally such cachelines would get |
| 3675 | * invalidated. |
| 3676 | */ |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3677 | if (!HAS_LLC(i915) && !HAS_SNOOP(i915)) |
Imre Deak | e5756c1 | 2015-08-14 18:43:30 +0300 | [diff] [blame] | 3678 | return -ENODEV; |
| 3679 | |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3680 | level = I915_CACHE_LLC; |
| 3681 | break; |
Chris Wilson | 4257d3b | 2013-08-08 14:41:11 +0100 | [diff] [blame] | 3682 | case I915_CACHING_DISPLAY: |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3683 | level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE; |
Chris Wilson | 4257d3b | 2013-08-08 14:41:11 +0100 | [diff] [blame] | 3684 | break; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3685 | default: |
| 3686 | return -EINVAL; |
| 3687 | } |
| 3688 | |
Ben Widawsky | 3bc2913 | 2012-09-26 16:15:20 -0700 | [diff] [blame] | 3689 | ret = i915_mutex_lock_interruptible(dev); |
| 3690 | if (ret) |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3691 | return ret; |
Ben Widawsky | 3bc2913 | 2012-09-26 16:15:20 -0700 | [diff] [blame] | 3692 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 3693 | obj = i915_gem_object_lookup(file, args->handle); |
| 3694 | if (!obj) { |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3695 | ret = -ENOENT; |
| 3696 | goto unlock; |
| 3697 | } |
| 3698 | |
| 3699 | ret = i915_gem_object_set_cache_level(obj, level); |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 3700 | i915_gem_object_put(obj); |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3701 | unlock: |
| 3702 | mutex_unlock(&dev->struct_mutex); |
| 3703 | return ret; |
| 3704 | } |
| 3705 | |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3706 | /* |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3707 | * Prepare buffer for display plane (scanout, cursors, etc). |
| 3708 | * Can be called from an uninterruptible phase (modesetting) and allows |
| 3709 | * any flushes to be pipelined (for pageflips). |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3710 | */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3711 | struct i915_vma * |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3712 | i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj, |
| 3713 | u32 alignment, |
Tvrtko Ursulin | e661733 | 2015-03-23 11:10:33 +0000 | [diff] [blame] | 3714 | const struct i915_ggtt_view *view) |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3715 | { |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3716 | struct i915_vma *vma; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3717 | u32 old_read_domains, old_write_domain; |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3718 | int ret; |
| 3719 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 3720 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 3721 | |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3722 | /* Mark the pin_display early so that we account for the |
| 3723 | * display coherency whilst setting up the cache domains. |
| 3724 | */ |
Tvrtko Ursulin | 8a0c39b | 2015-04-13 11:50:09 +0100 | [diff] [blame] | 3725 | obj->pin_display++; |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3726 | |
Eric Anholt | a7ef064 | 2011-03-29 16:59:54 -0700 | [diff] [blame] | 3727 | /* The display engine is not coherent with the LLC cache on gen6. As |
| 3728 | * a result, we make sure that the pinning that is about to occur is |
| 3729 | * done with uncached PTEs. This is lowest common denominator for all |
| 3730 | * chipsets. |
| 3731 | * |
| 3732 | * However for gen6+, we could do better by using the GFDT bit instead |
| 3733 | * of uncaching, which would allow us to flush all the LLC-cached data |
| 3734 | * with that bit in the PTE to main memory with just one PIPE_CONTROL. |
| 3735 | */ |
Chris Wilson | 651d794 | 2013-08-08 14:41:10 +0100 | [diff] [blame] | 3736 | ret = i915_gem_object_set_cache_level(obj, |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3737 | HAS_WT(to_i915(obj->base.dev)) ? |
| 3738 | I915_CACHE_WT : I915_CACHE_NONE); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3739 | if (ret) { |
| 3740 | vma = ERR_PTR(ret); |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3741 | goto err_unpin_display; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3742 | } |
Eric Anholt | a7ef064 | 2011-03-29 16:59:54 -0700 | [diff] [blame] | 3743 | |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3744 | /* As the user may map the buffer once pinned in the display plane |
| 3745 | * (e.g. libkms for the bootup splash), we have to ensure that we |
Chris Wilson | 2efb813 | 2016-08-18 17:17:06 +0100 | [diff] [blame] | 3746 | * always use map_and_fenceable for all scanout buffers. However, |
| 3747 | * it may simply be too big to fit into mappable, in which case |
| 3748 | * put it anyway and hope that userspace can cope (but always first |
| 3749 | * try to preserve the existing ABI). |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3750 | */ |
Chris Wilson | 2efb813 | 2016-08-18 17:17:06 +0100 | [diff] [blame] | 3751 | vma = ERR_PTR(-ENOSPC); |
| 3752 | if (view->type == I915_GGTT_VIEW_NORMAL) |
| 3753 | vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, |
| 3754 | PIN_MAPPABLE | PIN_NONBLOCK); |
| 3755 | if (IS_ERR(vma)) |
| 3756 | vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, 0); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3757 | if (IS_ERR(vma)) |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3758 | goto err_unpin_display; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3759 | |
Chris Wilson | d8923dc | 2016-08-18 17:17:07 +0100 | [diff] [blame] | 3760 | vma->display_alignment = max_t(u64, vma->display_alignment, alignment); |
| 3761 | |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3762 | i915_gem_object_flush_cpu_write_domain(obj); |
Chris Wilson | b118c1e | 2010-05-27 13:18:14 +0100 | [diff] [blame] | 3763 | |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3764 | old_write_domain = obj->base.write_domain; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3765 | old_read_domains = obj->base.read_domains; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3766 | |
| 3767 | /* It should now be out of any other write domains, and we can update |
| 3768 | * the domain values for our changes. |
| 3769 | */ |
Chris Wilson | e5f1d96 | 2012-07-20 12:41:00 +0100 | [diff] [blame] | 3770 | obj->base.write_domain = 0; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3771 | obj->base.read_domains |= I915_GEM_DOMAIN_GTT; |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3772 | |
| 3773 | trace_i915_gem_object_change_domain(obj, |
| 3774 | old_read_domains, |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3775 | old_write_domain); |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3776 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3777 | return vma; |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3778 | |
| 3779 | err_unpin_display: |
Tvrtko Ursulin | 8a0c39b | 2015-04-13 11:50:09 +0100 | [diff] [blame] | 3780 | obj->pin_display--; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3781 | return vma; |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3782 | } |
| 3783 | |
| 3784 | void |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3785 | i915_gem_object_unpin_from_display_plane(struct i915_vma *vma) |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3786 | { |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 3787 | lockdep_assert_held(&vma->vm->dev->struct_mutex); |
| 3788 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3789 | if (WARN_ON(vma->obj->pin_display == 0)) |
Tvrtko Ursulin | 8a0c39b | 2015-04-13 11:50:09 +0100 | [diff] [blame] | 3790 | return; |
| 3791 | |
Chris Wilson | d8923dc | 2016-08-18 17:17:07 +0100 | [diff] [blame] | 3792 | if (--vma->obj->pin_display == 0) |
| 3793 | vma->display_alignment = 0; |
Tvrtko Ursulin | e661733 | 2015-03-23 11:10:33 +0000 | [diff] [blame] | 3794 | |
Chris Wilson | 383d582 | 2016-08-18 17:17:08 +0100 | [diff] [blame] | 3795 | /* Bump the LRU to try and avoid premature eviction whilst flipping */ |
| 3796 | if (!i915_vma_is_active(vma)) |
| 3797 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
| 3798 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3799 | i915_vma_unpin(vma); |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3800 | } |
| 3801 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3802 | /** |
| 3803 | * Moves a single object to the CPU read, and possibly write domain. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3804 | * @obj: object to act on |
| 3805 | * @write: requesting write or read-only access |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3806 | * |
| 3807 | * This function returns when the move is complete, including waiting on |
| 3808 | * flushes to occur. |
| 3809 | */ |
Chris Wilson | dabdfe0 | 2012-03-26 10:10:27 +0200 | [diff] [blame] | 3810 | int |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 3811 | i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write) |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3812 | { |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3813 | uint32_t old_write_domain, old_read_domains; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3814 | int ret; |
| 3815 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3816 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 3817 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3818 | ret = i915_gem_object_wait(obj, |
| 3819 | I915_WAIT_INTERRUPTIBLE | |
| 3820 | I915_WAIT_LOCKED | |
| 3821 | (write ? I915_WAIT_ALL : 0), |
| 3822 | MAX_SCHEDULE_TIMEOUT, |
| 3823 | NULL); |
Chris Wilson | 8824178 | 2011-01-07 17:09:48 +0000 | [diff] [blame] | 3824 | if (ret) |
| 3825 | return ret; |
| 3826 | |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 3827 | if (obj->base.write_domain == I915_GEM_DOMAIN_CPU) |
| 3828 | return 0; |
| 3829 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3830 | i915_gem_object_flush_gtt_write_domain(obj); |
| 3831 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3832 | old_write_domain = obj->base.write_domain; |
| 3833 | old_read_domains = obj->base.read_domains; |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3834 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3835 | /* Flush the CPU cache if it's still invalid. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3836 | if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) { |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 3837 | i915_gem_clflush_object(obj, false); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3838 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3839 | obj->base.read_domains |= I915_GEM_DOMAIN_CPU; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3840 | } |
| 3841 | |
| 3842 | /* It should now be out of any other write domains, and we can update |
| 3843 | * the domain values for our changes. |
| 3844 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3845 | BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3846 | |
| 3847 | /* If we're writing through the CPU, then the GPU read domains will |
| 3848 | * need to be invalidated at next use. |
| 3849 | */ |
| 3850 | if (write) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3851 | obj->base.read_domains = I915_GEM_DOMAIN_CPU; |
| 3852 | obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3853 | } |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3854 | |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3855 | trace_i915_gem_object_change_domain(obj, |
| 3856 | old_read_domains, |
| 3857 | old_write_domain); |
| 3858 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3859 | return 0; |
| 3860 | } |
| 3861 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3862 | /* Throttle our rendering by waiting until the ring has completed our requests |
| 3863 | * emitted over 20 msec ago. |
| 3864 | * |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 3865 | * Note that if we were to use the current jiffies each time around the loop, |
| 3866 | * we wouldn't escape the function with any frames outstanding if the time to |
| 3867 | * render a frame was over 20ms. |
| 3868 | * |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3869 | * This should get us reasonable parallelism between CPU and GPU but also |
| 3870 | * relatively low latency when blocking on a particular request to finish. |
| 3871 | */ |
| 3872 | static int |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3873 | i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3874 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 3875 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3876 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Chris Wilson | d0bc54f | 2015-05-21 21:01:48 +0100 | [diff] [blame] | 3877 | unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES; |
John Harrison | 54fb241 | 2014-11-24 18:49:27 +0000 | [diff] [blame] | 3878 | struct drm_i915_gem_request *request, *target = NULL; |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3879 | long ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3880 | |
Chris Wilson | f4457ae | 2016-04-13 17:35:08 +0100 | [diff] [blame] | 3881 | /* ABI: return -EIO if already wedged */ |
| 3882 | if (i915_terminally_wedged(&dev_priv->gpu_error)) |
| 3883 | return -EIO; |
Chris Wilson | e110e8d | 2011-01-26 15:39:14 +0000 | [diff] [blame] | 3884 | |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 3885 | spin_lock(&file_priv->mm.lock); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3886 | list_for_each_entry(request, &file_priv->mm.request_list, client_list) { |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 3887 | if (time_after_eq(request->emitted_jiffies, recent_enough)) |
| 3888 | break; |
| 3889 | |
John Harrison | fcfa423c | 2015-05-29 17:44:12 +0100 | [diff] [blame] | 3890 | /* |
| 3891 | * Note that the request might not have been submitted yet. |
| 3892 | * In which case emitted_jiffies will be zero. |
| 3893 | */ |
| 3894 | if (!request->emitted_jiffies) |
| 3895 | continue; |
| 3896 | |
John Harrison | 54fb241 | 2014-11-24 18:49:27 +0000 | [diff] [blame] | 3897 | target = request; |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 3898 | } |
John Harrison | ff86588 | 2014-11-24 18:49:28 +0000 | [diff] [blame] | 3899 | if (target) |
Chris Wilson | e8a261e | 2016-07-20 13:31:49 +0100 | [diff] [blame] | 3900 | i915_gem_request_get(target); |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 3901 | spin_unlock(&file_priv->mm.lock); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3902 | |
John Harrison | 54fb241 | 2014-11-24 18:49:27 +0000 | [diff] [blame] | 3903 | if (target == NULL) |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3904 | return 0; |
| 3905 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3906 | ret = i915_wait_request(target, |
| 3907 | I915_WAIT_INTERRUPTIBLE, |
| 3908 | MAX_SCHEDULE_TIMEOUT); |
Chris Wilson | e8a261e | 2016-07-20 13:31:49 +0100 | [diff] [blame] | 3909 | i915_gem_request_put(target); |
John Harrison | ff86588 | 2014-11-24 18:49:28 +0000 | [diff] [blame] | 3910 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3911 | return ret < 0 ? ret : 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3912 | } |
| 3913 | |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3914 | static bool |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3915 | i915_vma_misplaced(struct i915_vma *vma, u64 size, u64 alignment, u64 flags) |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3916 | { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3917 | if (!drm_mm_node_allocated(&vma->node)) |
| 3918 | return false; |
| 3919 | |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3920 | if (vma->node.size < size) |
| 3921 | return true; |
| 3922 | |
| 3923 | if (alignment && vma->node.start & (alignment - 1)) |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3924 | return true; |
| 3925 | |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3926 | if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma)) |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3927 | return true; |
| 3928 | |
| 3929 | if (flags & PIN_OFFSET_BIAS && |
| 3930 | vma->node.start < (flags & PIN_OFFSET_MASK)) |
| 3931 | return true; |
| 3932 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3933 | if (flags & PIN_OFFSET_FIXED && |
| 3934 | vma->node.start != (flags & PIN_OFFSET_MASK)) |
| 3935 | return true; |
| 3936 | |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3937 | return false; |
| 3938 | } |
| 3939 | |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3940 | void __i915_vma_set_map_and_fenceable(struct i915_vma *vma) |
| 3941 | { |
| 3942 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3943 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3944 | bool mappable, fenceable; |
| 3945 | u32 fence_size, fence_alignment; |
| 3946 | |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3947 | fence_size = i915_gem_get_ggtt_size(dev_priv, |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3948 | vma->size, |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 3949 | i915_gem_object_get_tiling(obj)); |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3950 | fence_alignment = i915_gem_get_ggtt_alignment(dev_priv, |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3951 | vma->size, |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 3952 | i915_gem_object_get_tiling(obj), |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 3953 | true); |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3954 | |
| 3955 | fenceable = (vma->node.size == fence_size && |
| 3956 | (vma->node.start & (fence_alignment - 1)) == 0); |
| 3957 | |
| 3958 | mappable = (vma->node.start + fence_size <= |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3959 | dev_priv->ggtt.mappable_end); |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3960 | |
Tvrtko Ursulin | 07ee2bc | 2016-10-25 17:40:35 +0100 | [diff] [blame] | 3961 | /* |
| 3962 | * Explicitly disable for rotated VMA since the display does not |
| 3963 | * need the fence and the VMA is not accessible to other users. |
| 3964 | */ |
| 3965 | if (mappable && fenceable && |
| 3966 | vma->ggtt_view.type != I915_GGTT_VIEW_ROTATED) |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3967 | vma->flags |= I915_VMA_CAN_FENCE; |
| 3968 | else |
| 3969 | vma->flags &= ~I915_VMA_CAN_FENCE; |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3970 | } |
| 3971 | |
Chris Wilson | 305bc23 | 2016-08-04 16:32:33 +0100 | [diff] [blame] | 3972 | int __i915_vma_do_pin(struct i915_vma *vma, |
| 3973 | u64 size, u64 alignment, u64 flags) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3974 | { |
Chris Wilson | 305bc23 | 2016-08-04 16:32:33 +0100 | [diff] [blame] | 3975 | unsigned int bound = vma->flags; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3976 | int ret; |
| 3977 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 3978 | lockdep_assert_held(&vma->vm->dev->struct_mutex); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3979 | GEM_BUG_ON((flags & (PIN_GLOBAL | PIN_USER)) == 0); |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3980 | GEM_BUG_ON((flags & PIN_GLOBAL) && !i915_vma_is_ggtt(vma)); |
Ben Widawsky | 6e7186a | 2014-05-06 22:21:36 -0700 | [diff] [blame] | 3981 | |
Chris Wilson | 305bc23 | 2016-08-04 16:32:33 +0100 | [diff] [blame] | 3982 | if (WARN_ON(bound & I915_VMA_PIN_OVERFLOW)) { |
| 3983 | ret = -EBUSY; |
| 3984 | goto err; |
| 3985 | } |
Chris Wilson | c826c44 | 2014-10-31 13:53:53 +0000 | [diff] [blame] | 3986 | |
Chris Wilson | de89508 | 2016-08-04 16:32:34 +0100 | [diff] [blame] | 3987 | if ((bound & I915_VMA_BIND_MASK) == 0) { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3988 | ret = i915_vma_insert(vma, size, alignment, flags); |
| 3989 | if (ret) |
| 3990 | goto err; |
Chris Wilson | ac0c6b5 | 2010-05-27 13:18:18 +0100 | [diff] [blame] | 3991 | } |
| 3992 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3993 | ret = i915_vma_bind(vma, vma->obj->cache_level, flags); |
Chris Wilson | 3b16525 | 2016-08-04 16:32:25 +0100 | [diff] [blame] | 3994 | if (ret) |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3995 | goto err; |
Chris Wilson | 3b16525 | 2016-08-04 16:32:25 +0100 | [diff] [blame] | 3996 | |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3997 | if ((bound ^ vma->flags) & I915_VMA_GLOBAL_BIND) |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3998 | __i915_vma_set_map_and_fenceable(vma); |
Chris Wilson | ef79e17 | 2014-10-31 13:53:52 +0000 | [diff] [blame] | 3999 | |
Chris Wilson | 3b16525 | 2016-08-04 16:32:25 +0100 | [diff] [blame] | 4000 | GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags)); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4001 | return 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4002 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4003 | err: |
| 4004 | __i915_vma_unpin(vma); |
| 4005 | return ret; |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4006 | } |
| 4007 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4008 | struct i915_vma * |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4009 | i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj, |
| 4010 | const struct i915_ggtt_view *view, |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 4011 | u64 size, |
Chris Wilson | 2ffffd0 | 2016-08-04 16:32:22 +0100 | [diff] [blame] | 4012 | u64 alignment, |
| 4013 | u64 flags) |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4014 | { |
Chris Wilson | ad16d2e | 2016-10-13 09:55:04 +0100 | [diff] [blame] | 4015 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
| 4016 | struct i915_address_space *vm = &dev_priv->ggtt.base; |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4017 | struct i915_vma *vma; |
| 4018 | int ret; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 4019 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame] | 4020 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 4021 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4022 | vma = i915_gem_obj_lookup_or_create_vma(obj, vm, view); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4023 | if (IS_ERR(vma)) |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4024 | return vma; |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4025 | |
| 4026 | if (i915_vma_misplaced(vma, size, alignment, flags)) { |
| 4027 | if (flags & PIN_NONBLOCK && |
| 4028 | (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))) |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4029 | return ERR_PTR(-ENOSPC); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4030 | |
Chris Wilson | ad16d2e | 2016-10-13 09:55:04 +0100 | [diff] [blame] | 4031 | if (flags & PIN_MAPPABLE) { |
| 4032 | u32 fence_size; |
| 4033 | |
| 4034 | fence_size = i915_gem_get_ggtt_size(dev_priv, vma->size, |
| 4035 | i915_gem_object_get_tiling(obj)); |
| 4036 | /* If the required space is larger than the available |
| 4037 | * aperture, we will not able to find a slot for the |
| 4038 | * object and unbinding the object now will be in |
| 4039 | * vain. Worse, doing so may cause us to ping-pong |
| 4040 | * the object in and out of the Global GTT and |
| 4041 | * waste a lot of cycles under the mutex. |
| 4042 | */ |
| 4043 | if (fence_size > dev_priv->ggtt.mappable_end) |
| 4044 | return ERR_PTR(-E2BIG); |
| 4045 | |
| 4046 | /* If NONBLOCK is set the caller is optimistically |
| 4047 | * trying to cache the full object within the mappable |
| 4048 | * aperture, and *must* have a fallback in place for |
| 4049 | * situations where we cannot bind the object. We |
| 4050 | * can be a little more lax here and use the fallback |
| 4051 | * more often to avoid costly migrations of ourselves |
| 4052 | * and other objects within the aperture. |
| 4053 | * |
| 4054 | * Half-the-aperture is used as a simple heuristic. |
| 4055 | * More interesting would to do search for a free |
| 4056 | * block prior to making the commitment to unbind. |
| 4057 | * That caters for the self-harm case, and with a |
| 4058 | * little more heuristics (e.g. NOFAULT, NOEVICT) |
| 4059 | * we could try to minimise harm to others. |
| 4060 | */ |
| 4061 | if (flags & PIN_NONBLOCK && |
| 4062 | fence_size > dev_priv->ggtt.mappable_end / 2) |
| 4063 | return ERR_PTR(-ENOSPC); |
| 4064 | } |
| 4065 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4066 | WARN(i915_vma_is_pinned(vma), |
| 4067 | "bo is already pinned in ggtt with incorrect alignment:" |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 4068 | " offset=%08x, req.alignment=%llx," |
| 4069 | " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n", |
| 4070 | i915_ggtt_offset(vma), alignment, |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4071 | !!(flags & PIN_MAPPABLE), |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 4072 | i915_vma_is_map_and_fenceable(vma)); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4073 | ret = i915_vma_unbind(vma); |
| 4074 | if (ret) |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4075 | return ERR_PTR(ret); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4076 | } |
| 4077 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4078 | ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL); |
| 4079 | if (ret) |
| 4080 | return ERR_PTR(ret); |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4081 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4082 | return vma; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4083 | } |
| 4084 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4085 | static __always_inline unsigned int __busy_read_flag(unsigned int id) |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4086 | { |
| 4087 | /* Note that we could alias engines in the execbuf API, but |
| 4088 | * that would be very unwise as it prevents userspace from |
| 4089 | * fine control over engine selection. Ahem. |
| 4090 | * |
| 4091 | * This should be something like EXEC_MAX_ENGINE instead of |
| 4092 | * I915_NUM_ENGINES. |
| 4093 | */ |
| 4094 | BUILD_BUG_ON(I915_NUM_ENGINES > 16); |
| 4095 | return 0x10000 << id; |
| 4096 | } |
| 4097 | |
| 4098 | static __always_inline unsigned int __busy_write_id(unsigned int id) |
| 4099 | { |
Chris Wilson | 70cb472 | 2016-08-09 18:08:25 +0100 | [diff] [blame] | 4100 | /* The uABI guarantees an active writer is also amongst the read |
| 4101 | * engines. This would be true if we accessed the activity tracking |
| 4102 | * under the lock, but as we perform the lookup of the object and |
| 4103 | * its activity locklessly we can not guarantee that the last_write |
| 4104 | * being active implies that we have set the same engine flag from |
| 4105 | * last_read - hence we always set both read and write busy for |
| 4106 | * last_write. |
| 4107 | */ |
| 4108 | return id | __busy_read_flag(id); |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4109 | } |
| 4110 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4111 | static __always_inline unsigned int |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4112 | __busy_set_if_active(const struct i915_gem_active *active, |
| 4113 | unsigned int (*flag)(unsigned int id)) |
| 4114 | { |
Chris Wilson | 1255501 | 2016-08-16 09:50:40 +0100 | [diff] [blame] | 4115 | struct drm_i915_gem_request *request; |
| 4116 | |
| 4117 | request = rcu_dereference(active->request); |
| 4118 | if (!request || i915_gem_request_completed(request)) |
| 4119 | return 0; |
| 4120 | |
| 4121 | /* This is racy. See __i915_gem_active_get_rcu() for an in detail |
| 4122 | * discussion of how to handle the race correctly, but for reporting |
| 4123 | * the busy state we err on the side of potentially reporting the |
| 4124 | * wrong engine as being busy (but we guarantee that the result |
| 4125 | * is at least self-consistent). |
| 4126 | * |
| 4127 | * As we use SLAB_DESTROY_BY_RCU, the request may be reallocated |
| 4128 | * whilst we are inspecting it, even under the RCU read lock as we are. |
| 4129 | * This means that there is a small window for the engine and/or the |
| 4130 | * seqno to have been overwritten. The seqno will always be in the |
| 4131 | * future compared to the intended, and so we know that if that |
| 4132 | * seqno is idle (on whatever engine) our request is idle and the |
| 4133 | * return 0 above is correct. |
| 4134 | * |
| 4135 | * The issue is that if the engine is switched, it is just as likely |
| 4136 | * to report that it is busy (but since the switch happened, we know |
| 4137 | * the request should be idle). So there is a small chance that a busy |
| 4138 | * result is actually the wrong engine. |
| 4139 | * |
| 4140 | * So why don't we care? |
| 4141 | * |
| 4142 | * For starters, the busy ioctl is a heuristic that is by definition |
| 4143 | * racy. Even with perfect serialisation in the driver, the hardware |
| 4144 | * state is constantly advancing - the state we report to the user |
| 4145 | * is stale. |
| 4146 | * |
| 4147 | * The critical information for the busy-ioctl is whether the object |
| 4148 | * is idle as userspace relies on that to detect whether its next |
| 4149 | * access will stall, or if it has missed submitting commands to |
| 4150 | * the hardware allowing the GPU to stall. We never generate a |
| 4151 | * false-positive for idleness, thus busy-ioctl is reliable at the |
| 4152 | * most fundamental level, and we maintain the guarantee that a |
| 4153 | * busy object left to itself will eventually become idle (and stay |
| 4154 | * idle!). |
| 4155 | * |
| 4156 | * We allow ourselves the leeway of potentially misreporting the busy |
| 4157 | * state because that is an optimisation heuristic that is constantly |
| 4158 | * in flux. Being quickly able to detect the busy/idle state is much |
| 4159 | * more important than accurate logging of exactly which engines were |
| 4160 | * busy. |
| 4161 | * |
| 4162 | * For accuracy in reporting the engine, we could use |
| 4163 | * |
| 4164 | * result = 0; |
| 4165 | * request = __i915_gem_active_get_rcu(active); |
| 4166 | * if (request) { |
| 4167 | * if (!i915_gem_request_completed(request)) |
| 4168 | * result = flag(request->engine->exec_id); |
| 4169 | * i915_gem_request_put(request); |
| 4170 | * } |
| 4171 | * |
| 4172 | * but that still remains susceptible to both hardware and userspace |
| 4173 | * races. So we accept making the result of that race slightly worse, |
| 4174 | * given the rarity of the race and its low impact on the result. |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4175 | */ |
Chris Wilson | 1255501 | 2016-08-16 09:50:40 +0100 | [diff] [blame] | 4176 | return flag(READ_ONCE(request->engine->exec_id)); |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4177 | } |
| 4178 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4179 | static __always_inline unsigned int |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4180 | busy_check_reader(const struct i915_gem_active *active) |
| 4181 | { |
| 4182 | return __busy_set_if_active(active, __busy_read_flag); |
| 4183 | } |
| 4184 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4185 | static __always_inline unsigned int |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4186 | busy_check_writer(const struct i915_gem_active *active) |
| 4187 | { |
| 4188 | return __busy_set_if_active(active, __busy_write_id); |
| 4189 | } |
| 4190 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4191 | int |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4192 | i915_gem_busy_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4193 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4194 | { |
| 4195 | struct drm_i915_gem_busy *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4196 | struct drm_i915_gem_object *obj; |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4197 | unsigned long active; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4198 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 4199 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4200 | if (!obj) |
| 4201 | return -ENOENT; |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 4202 | |
Chris Wilson | 426960b | 2016-01-15 16:51:46 +0000 | [diff] [blame] | 4203 | args->busy = 0; |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4204 | active = __I915_BO_ACTIVE(obj); |
| 4205 | if (active) { |
| 4206 | int idx; |
Chris Wilson | 426960b | 2016-01-15 16:51:46 +0000 | [diff] [blame] | 4207 | |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4208 | /* Yes, the lookups are intentionally racy. |
| 4209 | * |
| 4210 | * First, we cannot simply rely on __I915_BO_ACTIVE. We have |
| 4211 | * to regard the value as stale and as our ABI guarantees |
| 4212 | * forward progress, we confirm the status of each active |
| 4213 | * request with the hardware. |
| 4214 | * |
| 4215 | * Even though we guard the pointer lookup by RCU, that only |
| 4216 | * guarantees that the pointer and its contents remain |
| 4217 | * dereferencable and does *not* mean that the request we |
| 4218 | * have is the same as the one being tracked by the object. |
| 4219 | * |
| 4220 | * Consider that we lookup the request just as it is being |
| 4221 | * retired and freed. We take a local copy of the pointer, |
| 4222 | * but before we add its engine into the busy set, the other |
| 4223 | * thread reallocates it and assigns it to a task on another |
Chris Wilson | 1255501 | 2016-08-16 09:50:40 +0100 | [diff] [blame] | 4224 | * engine with a fresh and incomplete seqno. Guarding against |
| 4225 | * that requires careful serialisation and reference counting, |
| 4226 | * i.e. using __i915_gem_active_get_request_rcu(). We don't, |
| 4227 | * instead we expect that if the result is busy, which engines |
| 4228 | * are busy is not completely reliable - we only guarantee |
| 4229 | * that the object was busy. |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4230 | */ |
| 4231 | rcu_read_lock(); |
| 4232 | |
| 4233 | for_each_active(active, idx) |
| 4234 | args->busy |= busy_check_reader(&obj->last_read[idx]); |
| 4235 | |
| 4236 | /* For ABI sanity, we only care that the write engine is in |
Chris Wilson | 70cb472 | 2016-08-09 18:08:25 +0100 | [diff] [blame] | 4237 | * the set of read engines. This should be ensured by the |
| 4238 | * ordering of setting last_read/last_write in |
| 4239 | * i915_vma_move_to_active(), and then in reverse in retire. |
| 4240 | * However, for good measure, we always report the last_write |
| 4241 | * request as a busy read as well as being a busy write. |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4242 | * |
| 4243 | * We don't care that the set of active read/write engines |
| 4244 | * may change during construction of the result, as it is |
| 4245 | * equally liable to change before userspace can inspect |
| 4246 | * the result. |
| 4247 | */ |
| 4248 | args->busy |= busy_check_writer(&obj->last_write); |
| 4249 | |
| 4250 | rcu_read_unlock(); |
Chris Wilson | 426960b | 2016-01-15 16:51:46 +0000 | [diff] [blame] | 4251 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4252 | |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4253 | i915_gem_object_put_unlocked(obj); |
| 4254 | return 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4255 | } |
| 4256 | |
| 4257 | int |
| 4258 | i915_gem_throttle_ioctl(struct drm_device *dev, void *data, |
| 4259 | struct drm_file *file_priv) |
| 4260 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 4261 | return i915_gem_ring_throttle(dev, file_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4262 | } |
| 4263 | |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4264 | int |
| 4265 | i915_gem_madvise_ioctl(struct drm_device *dev, void *data, |
| 4266 | struct drm_file *file_priv) |
| 4267 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4268 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4269 | struct drm_i915_gem_madvise *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4270 | struct drm_i915_gem_object *obj; |
Chris Wilson | 76c1dec | 2010-09-25 11:22:51 +0100 | [diff] [blame] | 4271 | int ret; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4272 | |
| 4273 | switch (args->madv) { |
| 4274 | case I915_MADV_DONTNEED: |
| 4275 | case I915_MADV_WILLNEED: |
| 4276 | break; |
| 4277 | default: |
| 4278 | return -EINVAL; |
| 4279 | } |
| 4280 | |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4281 | ret = i915_mutex_lock_interruptible(dev); |
| 4282 | if (ret) |
| 4283 | return ret; |
| 4284 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 4285 | obj = i915_gem_object_lookup(file_priv, args->handle); |
| 4286 | if (!obj) { |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4287 | ret = -ENOENT; |
| 4288 | goto unlock; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4289 | } |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4290 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4291 | if (obj->mm.pages && |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 4292 | i915_gem_object_is_tiled(obj) && |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4293 | dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) { |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4294 | if (obj->mm.madv == I915_MADV_WILLNEED) |
| 4295 | __i915_gem_object_unpin_pages(obj); |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4296 | if (args->madv == I915_MADV_WILLNEED) |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4297 | __i915_gem_object_pin_pages(obj); |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4298 | } |
| 4299 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4300 | if (obj->mm.madv != __I915_MADV_PURGED) |
| 4301 | obj->mm.madv = args->madv; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4302 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 4303 | /* if the object is no longer attached, discard its backing storage */ |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4304 | if (obj->mm.madv == I915_MADV_DONTNEED && !obj->mm.pages) |
Chris Wilson | 2d7ef39 | 2009-09-20 23:13:10 +0100 | [diff] [blame] | 4305 | i915_gem_object_truncate(obj); |
| 4306 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4307 | args->retained = obj->mm.madv != __I915_MADV_PURGED; |
Chris Wilson | bb6baf7 | 2009-09-22 14:24:13 +0100 | [diff] [blame] | 4308 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 4309 | i915_gem_object_put(obj); |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4310 | unlock: |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4311 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4312 | return ret; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4313 | } |
| 4314 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4315 | void i915_gem_object_init(struct drm_i915_gem_object *obj, |
| 4316 | const struct drm_i915_gem_object_ops *ops) |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4317 | { |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 4318 | int i; |
| 4319 | |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 4320 | INIT_LIST_HEAD(&obj->global_list); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 4321 | INIT_LIST_HEAD(&obj->userfault_link); |
Tvrtko Ursulin | 666796d | 2016-03-16 11:00:39 +0000 | [diff] [blame] | 4322 | for (i = 0; i < I915_NUM_ENGINES; i++) |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 4323 | init_request_active(&obj->last_read[i], |
| 4324 | i915_gem_object_retire__read); |
| 4325 | init_request_active(&obj->last_write, |
| 4326 | i915_gem_object_retire__write); |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 4327 | INIT_LIST_HEAD(&obj->obj_exec_link); |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 4328 | INIT_LIST_HEAD(&obj->vma_list); |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 4329 | INIT_LIST_HEAD(&obj->batch_pool_link); |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4330 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4331 | obj->ops = ops; |
| 4332 | |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 4333 | obj->frontbuffer_ggtt_origin = ORIGIN_GTT; |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4334 | |
| 4335 | obj->mm.madv = I915_MADV_WILLNEED; |
| 4336 | INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN); |
| 4337 | mutex_init(&obj->mm.get_page.lock); |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4338 | |
Dave Gordon | f19ec8c | 2016-07-04 11:34:37 +0100 | [diff] [blame] | 4339 | i915_gem_info_add_obj(to_i915(obj->base.dev), obj->base.size); |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4340 | } |
| 4341 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4342 | static const struct drm_i915_gem_object_ops i915_gem_object_ops = { |
Chris Wilson | de47266 | 2016-01-22 18:32:31 +0000 | [diff] [blame] | 4343 | .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE, |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4344 | .get_pages = i915_gem_object_get_pages_gtt, |
| 4345 | .put_pages = i915_gem_object_put_pages_gtt, |
| 4346 | }; |
| 4347 | |
Chris Wilson | b4bcbe2 | 2016-10-18 13:02:49 +0100 | [diff] [blame] | 4348 | /* Note we don't consider signbits :| */ |
| 4349 | #define overflows_type(x, T) \ |
| 4350 | (sizeof(x) > sizeof(T) && (x) >> (sizeof(T) * BITS_PER_BYTE)) |
| 4351 | |
| 4352 | struct drm_i915_gem_object * |
| 4353 | i915_gem_object_create(struct drm_device *dev, u64 size) |
Daniel Vetter | ac52bc5 | 2010-04-09 19:05:06 +0000 | [diff] [blame] | 4354 | { |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4355 | struct drm_i915_gem_object *obj; |
Hugh Dickins | 5949eac | 2011-06-27 16:18:18 -0700 | [diff] [blame] | 4356 | struct address_space *mapping; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 4357 | gfp_t mask; |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4358 | int ret; |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4359 | |
Chris Wilson | b4bcbe2 | 2016-10-18 13:02:49 +0100 | [diff] [blame] | 4360 | /* There is a prevalence of the assumption that we fit the object's |
| 4361 | * page count inside a 32bit _signed_ variable. Let's document this and |
| 4362 | * catch if we ever need to fix it. In the meantime, if you do spot |
| 4363 | * such a local variable, please consider fixing! |
| 4364 | */ |
| 4365 | if (WARN_ON(size >> PAGE_SHIFT > INT_MAX)) |
| 4366 | return ERR_PTR(-E2BIG); |
| 4367 | |
| 4368 | if (overflows_type(size, obj->base.size)) |
| 4369 | return ERR_PTR(-E2BIG); |
| 4370 | |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4371 | obj = i915_gem_object_alloc(dev); |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4372 | if (obj == NULL) |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4373 | return ERR_PTR(-ENOMEM); |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4374 | |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4375 | ret = drm_gem_object_init(dev, &obj->base, size); |
| 4376 | if (ret) |
| 4377 | goto fail; |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4378 | |
Chris Wilson | bed1ea9 | 2012-05-24 20:48:12 +0100 | [diff] [blame] | 4379 | mask = GFP_HIGHUSER | __GFP_RECLAIMABLE; |
| 4380 | if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) { |
| 4381 | /* 965gm cannot relocate objects above 4GiB. */ |
| 4382 | mask &= ~__GFP_HIGHMEM; |
| 4383 | mask |= __GFP_DMA32; |
| 4384 | } |
| 4385 | |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 4386 | mapping = obj->base.filp->f_mapping; |
Chris Wilson | bed1ea9 | 2012-05-24 20:48:12 +0100 | [diff] [blame] | 4387 | mapping_set_gfp_mask(mapping, mask); |
Hugh Dickins | 5949eac | 2011-06-27 16:18:18 -0700 | [diff] [blame] | 4388 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4389 | i915_gem_object_init(obj, &i915_gem_object_ops); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 4390 | |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4391 | obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
| 4392 | obj->base.read_domains = I915_GEM_DOMAIN_CPU; |
| 4393 | |
Eugeni Dodonov | 3d29b84 | 2012-01-17 14:43:53 -0200 | [diff] [blame] | 4394 | if (HAS_LLC(dev)) { |
| 4395 | /* On some devices, we can have the GPU use the LLC (the CPU |
Eric Anholt | a187111 | 2011-03-29 16:59:55 -0700 | [diff] [blame] | 4396 | * cache) for about a 10% performance improvement |
| 4397 | * compared to uncached. Graphics requests other than |
| 4398 | * display scanout are coherent with the CPU in |
| 4399 | * accessing this cache. This means in this mode we |
| 4400 | * don't need to clflush on the CPU side, and on the |
| 4401 | * GPU side we only need to flush internal caches to |
| 4402 | * get data visible to the CPU. |
| 4403 | * |
| 4404 | * However, we maintain the display planes as UC, and so |
| 4405 | * need to rebind when first used as such. |
| 4406 | */ |
| 4407 | obj->cache_level = I915_CACHE_LLC; |
| 4408 | } else |
| 4409 | obj->cache_level = I915_CACHE_NONE; |
| 4410 | |
Daniel Vetter | d861e33 | 2013-07-24 23:25:03 +0200 | [diff] [blame] | 4411 | trace_i915_gem_object_create(obj); |
| 4412 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4413 | return obj; |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4414 | |
| 4415 | fail: |
| 4416 | i915_gem_object_free(obj); |
| 4417 | |
| 4418 | return ERR_PTR(ret); |
Daniel Vetter | ac52bc5 | 2010-04-09 19:05:06 +0000 | [diff] [blame] | 4419 | } |
| 4420 | |
Chris Wilson | 340fbd8 | 2014-05-22 09:16:52 +0100 | [diff] [blame] | 4421 | static bool discard_backing_storage(struct drm_i915_gem_object *obj) |
| 4422 | { |
| 4423 | /* If we are the last user of the backing storage (be it shmemfs |
| 4424 | * pages or stolen etc), we know that the pages are going to be |
| 4425 | * immediately released. In this case, we can then skip copying |
| 4426 | * back the contents from the GPU. |
| 4427 | */ |
| 4428 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4429 | if (obj->mm.madv != I915_MADV_WILLNEED) |
Chris Wilson | 340fbd8 | 2014-05-22 09:16:52 +0100 | [diff] [blame] | 4430 | return false; |
| 4431 | |
| 4432 | if (obj->base.filp == NULL) |
| 4433 | return true; |
| 4434 | |
| 4435 | /* At first glance, this looks racy, but then again so would be |
| 4436 | * userspace racing mmap against close. However, the first external |
| 4437 | * reference to the filp can only be obtained through the |
| 4438 | * i915_gem_mmap_ioctl() which safeguards us against the user |
| 4439 | * acquiring such a reference whilst we are in the middle of |
| 4440 | * freeing the object. |
| 4441 | */ |
| 4442 | return atomic_long_read(&obj->base.filp->f_count) == 1; |
| 4443 | } |
| 4444 | |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4445 | void i915_gem_free_object(struct drm_gem_object *gem_obj) |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4446 | { |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4447 | struct drm_i915_gem_object *obj = to_intel_bo(gem_obj); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4448 | struct drm_device *dev = obj->base.dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4449 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | 07fe0b1 | 2013-07-31 17:00:10 -0700 | [diff] [blame] | 4450 | struct i915_vma *vma, *next; |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4451 | |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 4452 | intel_runtime_pm_get(dev_priv); |
| 4453 | |
Chris Wilson | 26e12f8 | 2011-03-20 11:20:19 +0000 | [diff] [blame] | 4454 | trace_i915_gem_object_destroy(obj); |
| 4455 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 4456 | /* All file-owned VMA should have been released by this point through |
| 4457 | * i915_gem_close_object(), or earlier by i915_gem_context_close(). |
| 4458 | * However, the object may also be bound into the global GTT (e.g. |
| 4459 | * older GPUs without per-process support, or for direct access through |
| 4460 | * the GTT either for the user or for scanout). Those VMA still need to |
| 4461 | * unbound now. |
| 4462 | */ |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 4463 | list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) { |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 4464 | GEM_BUG_ON(!i915_vma_is_ggtt(vma)); |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 4465 | GEM_BUG_ON(i915_vma_is_active(vma)); |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 4466 | vma->flags &= ~I915_VMA_PIN_MASK; |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 4467 | i915_vma_close(vma); |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4468 | } |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 4469 | GEM_BUG_ON(obj->bind_count); |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4470 | |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 4471 | WARN_ON(atomic_read(&obj->frontbuffer_bits)); |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 4472 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4473 | if (obj->mm.pages && obj->mm.madv == I915_MADV_WILLNEED && |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4474 | dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES && |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 4475 | i915_gem_object_is_tiled(obj)) |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4476 | __i915_gem_object_unpin_pages(obj); |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4477 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 4478 | if (obj->ops->release) |
| 4479 | obj->ops->release(obj); |
| 4480 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 4481 | if (WARN_ON(i915_gem_object_has_pinned_pages(obj))) |
| 4482 | obj->mm.pages_pin_count = 0; |
| 4483 | if (discard_backing_storage(obj)) |
| 4484 | obj->mm.madv = I915_MADV_DONTNEED; |
| 4485 | __i915_gem_object_put_pages(obj); |
| 4486 | |
| 4487 | GEM_BUG_ON(obj->mm.pages); |
| 4488 | |
| 4489 | if (obj->base.import_attach) |
| 4490 | drm_prime_gem_destroy(&obj->base, NULL); |
| 4491 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4492 | drm_gem_object_release(&obj->base); |
| 4493 | i915_gem_info_remove_obj(dev_priv, obj->base.size); |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4494 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4495 | kfree(obj->bit_17); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4496 | i915_gem_object_free(obj); |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 4497 | |
| 4498 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4499 | } |
| 4500 | |
Chris Wilson | f8a7fde | 2016-10-28 13:58:29 +0100 | [diff] [blame] | 4501 | void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj) |
| 4502 | { |
| 4503 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 4504 | |
| 4505 | GEM_BUG_ON(i915_gem_object_has_active_reference(obj)); |
| 4506 | if (i915_gem_object_is_active(obj)) |
| 4507 | i915_gem_object_set_active_reference(obj); |
| 4508 | else |
| 4509 | i915_gem_object_put(obj); |
| 4510 | } |
| 4511 | |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 4512 | int i915_gem_suspend(struct drm_device *dev) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4513 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4514 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 4515 | int ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4516 | |
Chris Wilson | 54b4f68 | 2016-07-21 21:16:19 +0100 | [diff] [blame] | 4517 | intel_suspend_gt_powersave(dev_priv); |
| 4518 | |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4519 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 5ab57c7 | 2016-07-15 14:56:20 +0100 | [diff] [blame] | 4520 | |
| 4521 | /* We have to flush all the executing contexts to main memory so |
| 4522 | * that they can saved in the hibernation image. To ensure the last |
| 4523 | * context image is coherent, we have to switch away from it. That |
| 4524 | * leaves the dev_priv->kernel_context still active when |
| 4525 | * we actually suspend, and its image in memory may not match the GPU |
| 4526 | * state. Fortunately, the kernel_context is disposable and we do |
| 4527 | * not rely on its state. |
| 4528 | */ |
| 4529 | ret = i915_gem_switch_to_kernel_context(dev_priv); |
| 4530 | if (ret) |
| 4531 | goto err; |
| 4532 | |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 4533 | ret = i915_gem_wait_for_idle(dev_priv, |
| 4534 | I915_WAIT_INTERRUPTIBLE | |
| 4535 | I915_WAIT_LOCKED); |
Chris Wilson | f740334 | 2013-09-13 23:57:04 +0100 | [diff] [blame] | 4536 | if (ret) |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4537 | goto err; |
Chris Wilson | f740334 | 2013-09-13 23:57:04 +0100 | [diff] [blame] | 4538 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 4539 | i915_gem_retire_requests(dev_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4540 | |
Chris Wilson | b2e862d | 2016-04-28 09:56:41 +0100 | [diff] [blame] | 4541 | i915_gem_context_lost(dev_priv); |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4542 | mutex_unlock(&dev->struct_mutex); |
| 4543 | |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 4544 | cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4545 | cancel_delayed_work_sync(&dev_priv->gt.retire_work); |
| 4546 | flush_delayed_work(&dev_priv->gt.idle_work); |
Chris Wilson | 29105cc | 2010-01-07 10:39:13 +0000 | [diff] [blame] | 4547 | |
Chris Wilson | bdcf120 | 2014-11-25 11:56:33 +0000 | [diff] [blame] | 4548 | /* Assert that we sucessfully flushed all the work and |
| 4549 | * reset the GPU back to its idle, low power state. |
| 4550 | */ |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4551 | WARN_ON(dev_priv->gt.awake); |
Chris Wilson | bdcf120 | 2014-11-25 11:56:33 +0000 | [diff] [blame] | 4552 | |
Imre Deak | 1c777c5 | 2016-10-12 17:46:37 +0300 | [diff] [blame] | 4553 | /* |
| 4554 | * Neither the BIOS, ourselves or any other kernel |
| 4555 | * expects the system to be in execlists mode on startup, |
| 4556 | * so we need to reset the GPU back to legacy mode. And the only |
| 4557 | * known way to disable logical contexts is through a GPU reset. |
| 4558 | * |
| 4559 | * So in order to leave the system in a known default configuration, |
| 4560 | * always reset the GPU upon unload and suspend. Afterwards we then |
| 4561 | * clean up the GEM state tracking, flushing off the requests and |
| 4562 | * leaving the system in a known idle state. |
| 4563 | * |
| 4564 | * Note that is of the upmost importance that the GPU is idle and |
| 4565 | * all stray writes are flushed *before* we dismantle the backing |
| 4566 | * storage for the pinned objects. |
| 4567 | * |
| 4568 | * However, since we are uncertain that resetting the GPU on older |
| 4569 | * machines is a good idea, we don't - just in case it leaves the |
| 4570 | * machine in an unusable condition. |
| 4571 | */ |
| 4572 | if (HAS_HW_CONTEXTS(dev)) { |
| 4573 | int reset = intel_gpu_reset(dev_priv, ALL_ENGINES); |
| 4574 | WARN_ON(reset && reset != -ENODEV); |
| 4575 | } |
| 4576 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4577 | return 0; |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4578 | |
| 4579 | err: |
| 4580 | mutex_unlock(&dev->struct_mutex); |
| 4581 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4582 | } |
| 4583 | |
Chris Wilson | 5ab57c7 | 2016-07-15 14:56:20 +0100 | [diff] [blame] | 4584 | void i915_gem_resume(struct drm_device *dev) |
| 4585 | { |
| 4586 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 4587 | |
| 4588 | mutex_lock(&dev->struct_mutex); |
| 4589 | i915_gem_restore_gtt_mappings(dev); |
| 4590 | |
| 4591 | /* As we didn't flush the kernel context before suspend, we cannot |
| 4592 | * guarantee that the context image is complete. So let's just reset |
| 4593 | * it and start again. |
| 4594 | */ |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4595 | dev_priv->gt.resume(dev_priv); |
Chris Wilson | 5ab57c7 | 2016-07-15 14:56:20 +0100 | [diff] [blame] | 4596 | |
| 4597 | mutex_unlock(&dev->struct_mutex); |
| 4598 | } |
| 4599 | |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4600 | void i915_gem_init_swizzling(struct drm_device *dev) |
| 4601 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4602 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4603 | |
Daniel Vetter | 11782b0 | 2012-01-31 16:47:55 +0100 | [diff] [blame] | 4604 | if (INTEL_INFO(dev)->gen < 5 || |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4605 | dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE) |
| 4606 | return; |
| 4607 | |
| 4608 | I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) | |
| 4609 | DISP_TILE_SURFACE_SWIZZLING); |
| 4610 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4611 | if (IS_GEN5(dev_priv)) |
Daniel Vetter | 11782b0 | 2012-01-31 16:47:55 +0100 | [diff] [blame] | 4612 | return; |
| 4613 | |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4614 | I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4615 | if (IS_GEN6(dev_priv)) |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 4616 | I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB)); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4617 | else if (IS_GEN7(dev_priv)) |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 4618 | I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB)); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4619 | else if (IS_GEN8(dev_priv)) |
Ben Widawsky | 31a5336 | 2013-11-02 21:07:04 -0700 | [diff] [blame] | 4620 | I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW)); |
Ben Widawsky | 8782e26 | 2012-12-18 10:31:23 -0800 | [diff] [blame] | 4621 | else |
| 4622 | BUG(); |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4623 | } |
Daniel Vetter | e21af88 | 2012-02-09 20:53:27 +0100 | [diff] [blame] | 4624 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4625 | static void init_unused_ring(struct drm_i915_private *dev_priv, u32 base) |
Ville Syrjälä | 81e7f20 | 2014-08-15 01:21:55 +0300 | [diff] [blame] | 4626 | { |
Ville Syrjälä | 81e7f20 | 2014-08-15 01:21:55 +0300 | [diff] [blame] | 4627 | I915_WRITE(RING_CTL(base), 0); |
| 4628 | I915_WRITE(RING_HEAD(base), 0); |
| 4629 | I915_WRITE(RING_TAIL(base), 0); |
| 4630 | I915_WRITE(RING_START(base), 0); |
| 4631 | } |
| 4632 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4633 | static void init_unused_rings(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 81e7f20 | 2014-08-15 01:21:55 +0300 | [diff] [blame] | 4634 | { |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4635 | if (IS_I830(dev_priv)) { |
| 4636 | init_unused_ring(dev_priv, PRB1_BASE); |
| 4637 | init_unused_ring(dev_priv, SRB0_BASE); |
| 4638 | init_unused_ring(dev_priv, SRB1_BASE); |
| 4639 | init_unused_ring(dev_priv, SRB2_BASE); |
| 4640 | init_unused_ring(dev_priv, SRB3_BASE); |
| 4641 | } else if (IS_GEN2(dev_priv)) { |
| 4642 | init_unused_ring(dev_priv, SRB0_BASE); |
| 4643 | init_unused_ring(dev_priv, SRB1_BASE); |
| 4644 | } else if (IS_GEN3(dev_priv)) { |
| 4645 | init_unused_ring(dev_priv, PRB1_BASE); |
| 4646 | init_unused_ring(dev_priv, PRB2_BASE); |
Ville Syrjälä | 81e7f20 | 2014-08-15 01:21:55 +0300 | [diff] [blame] | 4647 | } |
| 4648 | } |
| 4649 | |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4650 | int |
| 4651 | i915_gem_init_hw(struct drm_device *dev) |
| 4652 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4653 | struct drm_i915_private *dev_priv = to_i915(dev); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 4654 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4655 | enum intel_engine_id id; |
Chris Wilson | d200cda | 2016-04-28 09:56:44 +0100 | [diff] [blame] | 4656 | int ret; |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4657 | |
Chris Wilson | de867c2 | 2016-10-25 13:16:02 +0100 | [diff] [blame] | 4658 | dev_priv->gt.last_init_time = ktime_get(); |
| 4659 | |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4660 | /* Double layer security blanket, see i915_gem_init() */ |
| 4661 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 4662 | |
Mika Kuoppala | 3accaf7 | 2016-04-13 17:26:43 +0300 | [diff] [blame] | 4663 | if (HAS_EDRAM(dev) && INTEL_GEN(dev_priv) < 9) |
Ben Widawsky | 05e21cc | 2013-07-04 11:02:04 -0700 | [diff] [blame] | 4664 | I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf)); |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4665 | |
Tvrtko Ursulin | 772c2a5 | 2016-10-13 11:03:01 +0100 | [diff] [blame] | 4666 | if (IS_HASWELL(dev_priv)) |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4667 | I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ? |
Ville Syrjälä | 0bf2134 | 2013-11-29 14:56:12 +0200 | [diff] [blame] | 4668 | LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED); |
Rodrigo Vivi | 9435373 | 2013-08-28 16:45:46 -0300 | [diff] [blame] | 4669 | |
Tvrtko Ursulin | 6e26695 | 2016-10-13 11:02:53 +0100 | [diff] [blame] | 4670 | if (HAS_PCH_NOP(dev_priv)) { |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 4671 | if (IS_IVYBRIDGE(dev_priv)) { |
Daniel Vetter | 6ba844b | 2014-01-22 23:39:30 +0100 | [diff] [blame] | 4672 | u32 temp = I915_READ(GEN7_MSG_CTL); |
| 4673 | temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK); |
| 4674 | I915_WRITE(GEN7_MSG_CTL, temp); |
| 4675 | } else if (INTEL_INFO(dev)->gen >= 7) { |
| 4676 | u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT); |
| 4677 | temp &= ~RESET_PCH_HANDSHAKE_ENABLE; |
| 4678 | I915_WRITE(HSW_NDE_RSTWRN_OPT, temp); |
| 4679 | } |
Ben Widawsky | 88a2b2a | 2013-04-05 13:12:43 -0700 | [diff] [blame] | 4680 | } |
| 4681 | |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4682 | i915_gem_init_swizzling(dev); |
| 4683 | |
Daniel Vetter | d5abdfd | 2014-11-20 09:45:19 +0100 | [diff] [blame] | 4684 | /* |
| 4685 | * At least 830 can leave some of the unused rings |
| 4686 | * "active" (ie. head != tail) after resume which |
| 4687 | * will prevent c3 entry. Makes sure all unused rings |
| 4688 | * are totally idle. |
| 4689 | */ |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4690 | init_unused_rings(dev_priv); |
Daniel Vetter | d5abdfd | 2014-11-20 09:45:19 +0100 | [diff] [blame] | 4691 | |
Dave Gordon | ed54c1a | 2016-01-19 19:02:54 +0000 | [diff] [blame] | 4692 | BUG_ON(!dev_priv->kernel_context); |
John Harrison | 90638cc | 2015-05-29 17:43:37 +0100 | [diff] [blame] | 4693 | |
John Harrison | 4ad2fd8 | 2015-06-18 13:11:20 +0100 | [diff] [blame] | 4694 | ret = i915_ppgtt_init_hw(dev); |
| 4695 | if (ret) { |
| 4696 | DRM_ERROR("PPGTT enable HW failed %d\n", ret); |
| 4697 | goto out; |
| 4698 | } |
| 4699 | |
| 4700 | /* Need to do basic initialisation of all rings first: */ |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4701 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 4702 | ret = engine->init_hw(engine); |
Daniel Vetter | 35a57ff | 2014-11-20 00:33:07 +0100 | [diff] [blame] | 4703 | if (ret) |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4704 | goto out; |
Daniel Vetter | 35a57ff | 2014-11-20 00:33:07 +0100 | [diff] [blame] | 4705 | } |
Mika Kuoppala | 9943393 | 2013-01-22 14:12:17 +0200 | [diff] [blame] | 4706 | |
Peter Antoine | 0ccdacf | 2016-04-13 15:03:25 +0100 | [diff] [blame] | 4707 | intel_mocs_init_l3cc_table(dev); |
| 4708 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 4709 | /* We can't enable contexts until all firmware is loaded */ |
Dave Gordon | e556f7c | 2016-06-07 09:14:49 +0100 | [diff] [blame] | 4710 | ret = intel_guc_setup(dev); |
| 4711 | if (ret) |
| 4712 | goto out; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 4713 | |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4714 | out: |
| 4715 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 2fa48d8 | 2013-12-06 14:11:04 -0800 | [diff] [blame] | 4716 | return ret; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4717 | } |
| 4718 | |
Chris Wilson | 39df919 | 2016-07-20 13:31:57 +0100 | [diff] [blame] | 4719 | bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value) |
| 4720 | { |
| 4721 | if (INTEL_INFO(dev_priv)->gen < 6) |
| 4722 | return false; |
| 4723 | |
| 4724 | /* TODO: make semaphores and Execlists play nicely together */ |
| 4725 | if (i915.enable_execlists) |
| 4726 | return false; |
| 4727 | |
| 4728 | if (value >= 0) |
| 4729 | return value; |
| 4730 | |
| 4731 | #ifdef CONFIG_INTEL_IOMMU |
| 4732 | /* Enable semaphores on SNB when IO remapping is off */ |
| 4733 | if (INTEL_INFO(dev_priv)->gen == 6 && intel_iommu_gfx_mapped) |
| 4734 | return false; |
| 4735 | #endif |
| 4736 | |
| 4737 | return true; |
| 4738 | } |
| 4739 | |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4740 | int i915_gem_init(struct drm_device *dev) |
| 4741 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4742 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4743 | int ret; |
| 4744 | |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4745 | mutex_lock(&dev->struct_mutex); |
Jesse Barnes | d62b489 | 2013-03-08 10:45:53 -0800 | [diff] [blame] | 4746 | |
Oscar Mateo | a83014d | 2014-07-24 17:04:21 +0100 | [diff] [blame] | 4747 | if (!i915.enable_execlists) { |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4748 | dev_priv->gt.resume = intel_legacy_submission_resume; |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 4749 | dev_priv->gt.cleanup_engine = intel_engine_cleanup; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 4750 | } else { |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4751 | dev_priv->gt.resume = intel_lr_context_resume; |
Tvrtko Ursulin | 117897f | 2016-03-16 11:00:40 +0000 | [diff] [blame] | 4752 | dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup; |
Oscar Mateo | a83014d | 2014-07-24 17:04:21 +0100 | [diff] [blame] | 4753 | } |
| 4754 | |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4755 | /* This is just a security blanket to placate dragons. |
| 4756 | * On some systems, we very sporadically observe that the first TLBs |
| 4757 | * used by the CS may be stale, despite us poking the TLB reset. If |
| 4758 | * we hold the forcewake during initialisation these problems |
| 4759 | * just magically go away. |
| 4760 | */ |
| 4761 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 4762 | |
Chris Wilson | 72778cb | 2016-05-19 16:17:16 +0100 | [diff] [blame] | 4763 | i915_gem_init_userptr(dev_priv); |
Chris Wilson | f6b9d5c | 2016-08-04 07:52:23 +0100 | [diff] [blame] | 4764 | |
| 4765 | ret = i915_gem_init_ggtt(dev_priv); |
| 4766 | if (ret) |
| 4767 | goto out_unlock; |
Jesse Barnes | d62b489 | 2013-03-08 10:45:53 -0800 | [diff] [blame] | 4768 | |
Ben Widawsky | 2fa48d8 | 2013-12-06 14:11:04 -0800 | [diff] [blame] | 4769 | ret = i915_gem_context_init(dev); |
Jani Nikula | 7bcc377 | 2014-12-05 14:17:42 +0200 | [diff] [blame] | 4770 | if (ret) |
| 4771 | goto out_unlock; |
Ben Widawsky | 2fa48d8 | 2013-12-06 14:11:04 -0800 | [diff] [blame] | 4772 | |
Tvrtko Ursulin | 8b3e2d3 | 2016-07-13 16:03:37 +0100 | [diff] [blame] | 4773 | ret = intel_engines_init(dev); |
Daniel Vetter | 35a57ff | 2014-11-20 00:33:07 +0100 | [diff] [blame] | 4774 | if (ret) |
Jani Nikula | 7bcc377 | 2014-12-05 14:17:42 +0200 | [diff] [blame] | 4775 | goto out_unlock; |
Daniel Vetter | 53ca26c | 2012-04-26 23:28:03 +0200 | [diff] [blame] | 4776 | |
| 4777 | ret = i915_gem_init_hw(dev); |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4778 | if (ret == -EIO) { |
Chris Wilson | 7e21d64 | 2016-07-27 09:07:29 +0100 | [diff] [blame] | 4779 | /* Allow engine initialisation to fail by marking the GPU as |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4780 | * wedged. But we only want to do this where the GPU is angry, |
| 4781 | * for all other failure, such as an allocation failure, bail. |
| 4782 | */ |
| 4783 | DRM_ERROR("Failed to initialize GPU, declaring it wedged\n"); |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4784 | i915_gem_set_wedged(dev_priv); |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4785 | ret = 0; |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4786 | } |
Jani Nikula | 7bcc377 | 2014-12-05 14:17:42 +0200 | [diff] [blame] | 4787 | |
| 4788 | out_unlock: |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4789 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4790 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4791 | |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4792 | return ret; |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4793 | } |
| 4794 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4795 | void |
Tvrtko Ursulin | 117897f | 2016-03-16 11:00:40 +0000 | [diff] [blame] | 4796 | i915_gem_cleanup_engines(struct drm_device *dev) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4797 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4798 | struct drm_i915_private *dev_priv = to_i915(dev); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 4799 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4800 | enum intel_engine_id id; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4801 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4802 | for_each_engine(engine, dev_priv, id) |
Tvrtko Ursulin | 117897f | 2016-03-16 11:00:40 +0000 | [diff] [blame] | 4803 | dev_priv->gt.cleanup_engine(engine); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4804 | } |
| 4805 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4806 | void |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4807 | i915_gem_load_init_fences(struct drm_i915_private *dev_priv) |
| 4808 | { |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 4809 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 4810 | int i; |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4811 | |
| 4812 | if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) && |
| 4813 | !IS_CHERRYVIEW(dev_priv)) |
| 4814 | dev_priv->num_fence_regs = 32; |
| 4815 | else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) || |
| 4816 | IS_I945GM(dev_priv) || IS_G33(dev_priv)) |
| 4817 | dev_priv->num_fence_regs = 16; |
| 4818 | else |
| 4819 | dev_priv->num_fence_regs = 8; |
| 4820 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 4821 | if (intel_vgpu_active(dev_priv)) |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4822 | dev_priv->num_fence_regs = |
| 4823 | I915_READ(vgtif_reg(avail_rs.fence_num)); |
| 4824 | |
| 4825 | /* Initialize fence registers to zero */ |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 4826 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
| 4827 | struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i]; |
| 4828 | |
| 4829 | fence->i915 = dev_priv; |
| 4830 | fence->id = i; |
| 4831 | list_add_tail(&fence->link, &dev_priv->mm.fence_list); |
| 4832 | } |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4833 | i915_gem_restore_fences(dev); |
| 4834 | |
| 4835 | i915_gem_detect_bit_6_swizzle(dev); |
| 4836 | } |
| 4837 | |
| 4838 | void |
Imre Deak | d64aa09 | 2016-01-19 15:26:29 +0200 | [diff] [blame] | 4839 | i915_gem_load_init(struct drm_device *dev) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4840 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4841 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4842 | |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 4843 | dev_priv->objects = |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4844 | kmem_cache_create("i915_gem_object", |
| 4845 | sizeof(struct drm_i915_gem_object), 0, |
| 4846 | SLAB_HWCACHE_ALIGN, |
| 4847 | NULL); |
Chris Wilson | e20d2ab | 2015-04-07 16:20:58 +0100 | [diff] [blame] | 4848 | dev_priv->vmas = |
| 4849 | kmem_cache_create("i915_gem_vma", |
| 4850 | sizeof(struct i915_vma), 0, |
| 4851 | SLAB_HWCACHE_ALIGN, |
| 4852 | NULL); |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 4853 | dev_priv->requests = |
| 4854 | kmem_cache_create("i915_gem_request", |
| 4855 | sizeof(struct drm_i915_gem_request), 0, |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 4856 | SLAB_HWCACHE_ALIGN | |
| 4857 | SLAB_RECLAIM_ACCOUNT | |
| 4858 | SLAB_DESTROY_BY_RCU, |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 4859 | NULL); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4860 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 4861 | INIT_LIST_HEAD(&dev_priv->context_list); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 4862 | INIT_LIST_HEAD(&dev_priv->mm.unbound_list); |
| 4863 | INIT_LIST_HEAD(&dev_priv->mm.bound_list); |
Eric Anholt | a09ba7f | 2009-08-29 12:49:51 -0700 | [diff] [blame] | 4864 | INIT_LIST_HEAD(&dev_priv->mm.fence_list); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 4865 | INIT_LIST_HEAD(&dev_priv->mm.userfault_list); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4866 | INIT_DELAYED_WORK(&dev_priv->gt.retire_work, |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4867 | i915_gem_retire_work_handler); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4868 | INIT_DELAYED_WORK(&dev_priv->gt.idle_work, |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4869 | i915_gem_idle_work_handler); |
Chris Wilson | 1f15b76 | 2016-07-01 17:23:14 +0100 | [diff] [blame] | 4870 | init_waitqueue_head(&dev_priv->gpu_error.wait_queue); |
Daniel Vetter | 1f83fee | 2012-11-15 17:17:22 +0100 | [diff] [blame] | 4871 | init_waitqueue_head(&dev_priv->gpu_error.reset_queue); |
Chris Wilson | 3116971 | 2009-09-14 16:50:28 +0100 | [diff] [blame] | 4872 | |
Chris Wilson | 72bfa19 | 2010-12-19 11:42:05 +0000 | [diff] [blame] | 4873 | dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL; |
| 4874 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4875 | init_waitqueue_head(&dev_priv->pending_flip_queue); |
Chris Wilson | 17250b7 | 2010-10-28 12:51:39 +0100 | [diff] [blame] | 4876 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 4877 | dev_priv->mm.interruptible = true; |
| 4878 | |
Joonas Lahtinen | 6f63340 | 2016-09-01 14:58:21 +0300 | [diff] [blame] | 4879 | atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0); |
| 4880 | |
Chris Wilson | b5add95 | 2016-08-04 16:32:36 +0100 | [diff] [blame] | 4881 | spin_lock_init(&dev_priv->fb_tracking.lock); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4882 | } |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4883 | |
Imre Deak | d64aa09 | 2016-01-19 15:26:29 +0200 | [diff] [blame] | 4884 | void i915_gem_load_cleanup(struct drm_device *dev) |
| 4885 | { |
| 4886 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 4887 | |
| 4888 | kmem_cache_destroy(dev_priv->requests); |
| 4889 | kmem_cache_destroy(dev_priv->vmas); |
| 4890 | kmem_cache_destroy(dev_priv->objects); |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 4891 | |
| 4892 | /* And ensure that our DESTROY_BY_RCU slabs are truly destroyed */ |
| 4893 | rcu_barrier(); |
Imre Deak | d64aa09 | 2016-01-19 15:26:29 +0200 | [diff] [blame] | 4894 | } |
| 4895 | |
Chris Wilson | 6a800ea | 2016-09-21 14:51:07 +0100 | [diff] [blame] | 4896 | int i915_gem_freeze(struct drm_i915_private *dev_priv) |
| 4897 | { |
| 4898 | intel_runtime_pm_get(dev_priv); |
| 4899 | |
| 4900 | mutex_lock(&dev_priv->drm.struct_mutex); |
| 4901 | i915_gem_shrink_all(dev_priv); |
| 4902 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 4903 | |
| 4904 | intel_runtime_pm_put(dev_priv); |
| 4905 | |
| 4906 | return 0; |
| 4907 | } |
| 4908 | |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4909 | int i915_gem_freeze_late(struct drm_i915_private *dev_priv) |
| 4910 | { |
| 4911 | struct drm_i915_gem_object *obj; |
Chris Wilson | 7aab2d5 | 2016-09-09 20:02:18 +0100 | [diff] [blame] | 4912 | struct list_head *phases[] = { |
| 4913 | &dev_priv->mm.unbound_list, |
| 4914 | &dev_priv->mm.bound_list, |
| 4915 | NULL |
| 4916 | }, **p; |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4917 | |
| 4918 | /* Called just before we write the hibernation image. |
| 4919 | * |
| 4920 | * We need to update the domain tracking to reflect that the CPU |
| 4921 | * will be accessing all the pages to create and restore from the |
| 4922 | * hibernation, and so upon restoration those pages will be in the |
| 4923 | * CPU domain. |
| 4924 | * |
| 4925 | * To make sure the hibernation image contains the latest state, |
| 4926 | * we update that state just before writing out the image. |
Chris Wilson | 7aab2d5 | 2016-09-09 20:02:18 +0100 | [diff] [blame] | 4927 | * |
| 4928 | * To try and reduce the hibernation image, we manually shrink |
| 4929 | * the objects as well. |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4930 | */ |
| 4931 | |
Chris Wilson | 6a800ea | 2016-09-21 14:51:07 +0100 | [diff] [blame] | 4932 | mutex_lock(&dev_priv->drm.struct_mutex); |
| 4933 | i915_gem_shrink(dev_priv, -1UL, I915_SHRINK_UNBOUND); |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4934 | |
Chris Wilson | 7aab2d5 | 2016-09-09 20:02:18 +0100 | [diff] [blame] | 4935 | for (p = phases; *p; p++) { |
| 4936 | list_for_each_entry(obj, *p, global_list) { |
| 4937 | obj->base.read_domains = I915_GEM_DOMAIN_CPU; |
| 4938 | obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
| 4939 | } |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4940 | } |
Chris Wilson | 6a800ea | 2016-09-21 14:51:07 +0100 | [diff] [blame] | 4941 | mutex_unlock(&dev_priv->drm.struct_mutex); |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4942 | |
| 4943 | return 0; |
| 4944 | } |
| 4945 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 4946 | void i915_gem_release(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 4947 | { |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 4948 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Chris Wilson | 15f7bbc | 2016-07-26 12:01:52 +0100 | [diff] [blame] | 4949 | struct drm_i915_gem_request *request; |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 4950 | |
| 4951 | /* Clean up our request list when the client is going away, so that |
| 4952 | * later retire_requests won't dereference our soon-to-be-gone |
| 4953 | * file_priv. |
| 4954 | */ |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 4955 | spin_lock(&file_priv->mm.lock); |
Chris Wilson | 15f7bbc | 2016-07-26 12:01:52 +0100 | [diff] [blame] | 4956 | list_for_each_entry(request, &file_priv->mm.request_list, client_list) |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 4957 | request->file_priv = NULL; |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 4958 | spin_unlock(&file_priv->mm.lock); |
Chris Wilson | 3116971 | 2009-09-14 16:50:28 +0100 | [diff] [blame] | 4959 | |
Chris Wilson | 2e1b873 | 2015-04-27 13:41:22 +0100 | [diff] [blame] | 4960 | if (!list_empty(&file_priv->rps.link)) { |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 4961 | spin_lock(&to_i915(dev)->rps.client_lock); |
Chris Wilson | 2e1b873 | 2015-04-27 13:41:22 +0100 | [diff] [blame] | 4962 | list_del(&file_priv->rps.link); |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 4963 | spin_unlock(&to_i915(dev)->rps.client_lock); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 4964 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4965 | } |
| 4966 | |
| 4967 | int i915_gem_open(struct drm_device *dev, struct drm_file *file) |
| 4968 | { |
| 4969 | struct drm_i915_file_private *file_priv; |
Ben Widawsky | e422b88 | 2013-12-06 14:10:58 -0800 | [diff] [blame] | 4970 | int ret; |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4971 | |
| 4972 | DRM_DEBUG_DRIVER("\n"); |
| 4973 | |
| 4974 | file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL); |
| 4975 | if (!file_priv) |
| 4976 | return -ENOMEM; |
| 4977 | |
| 4978 | file->driver_priv = file_priv; |
Dave Gordon | f19ec8c | 2016-07-04 11:34:37 +0100 | [diff] [blame] | 4979 | file_priv->dev_priv = to_i915(dev); |
Chris Wilson | ab0e7ff | 2014-02-25 17:11:24 +0200 | [diff] [blame] | 4980 | file_priv->file = file; |
Chris Wilson | 2e1b873 | 2015-04-27 13:41:22 +0100 | [diff] [blame] | 4981 | INIT_LIST_HEAD(&file_priv->rps.link); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4982 | |
| 4983 | spin_lock_init(&file_priv->mm.lock); |
| 4984 | INIT_LIST_HEAD(&file_priv->mm.request_list); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4985 | |
Chris Wilson | c80ff16 | 2016-07-27 09:07:27 +0100 | [diff] [blame] | 4986 | file_priv->bsd_engine = -1; |
Tvrtko Ursulin | de1add3 | 2016-01-15 15:12:50 +0000 | [diff] [blame] | 4987 | |
Ben Widawsky | e422b88 | 2013-12-06 14:10:58 -0800 | [diff] [blame] | 4988 | ret = i915_gem_context_open(dev, file); |
| 4989 | if (ret) |
| 4990 | kfree(file_priv); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4991 | |
Ben Widawsky | e422b88 | 2013-12-06 14:10:58 -0800 | [diff] [blame] | 4992 | return ret; |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4993 | } |
| 4994 | |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 4995 | /** |
| 4996 | * i915_gem_track_fb - update frontbuffer tracking |
Geliang Tang | d9072a3 | 2015-09-15 05:58:44 -0700 | [diff] [blame] | 4997 | * @old: current GEM buffer for the frontbuffer slots |
| 4998 | * @new: new GEM buffer for the frontbuffer slots |
| 4999 | * @frontbuffer_bits: bitmask of frontbuffer slots |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 5000 | * |
| 5001 | * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them |
| 5002 | * from @old and setting them in @new. Both @old and @new can be NULL. |
| 5003 | */ |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5004 | void i915_gem_track_fb(struct drm_i915_gem_object *old, |
| 5005 | struct drm_i915_gem_object *new, |
| 5006 | unsigned frontbuffer_bits) |
| 5007 | { |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 5008 | /* Control of individual bits within the mask are guarded by |
| 5009 | * the owning plane->mutex, i.e. we can never see concurrent |
| 5010 | * manipulation of individual bits. But since the bitfield as a whole |
| 5011 | * is updated using RMW, we need to use atomics in order to update |
| 5012 | * the bits. |
| 5013 | */ |
| 5014 | BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES > |
| 5015 | sizeof(atomic_t) * BITS_PER_BYTE); |
| 5016 | |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5017 | if (old) { |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 5018 | WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits)); |
| 5019 | atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits); |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5020 | } |
| 5021 | |
| 5022 | if (new) { |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 5023 | WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits); |
| 5024 | atomic_or(frontbuffer_bits, &new->frontbuffer_bits); |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5025 | } |
| 5026 | } |
| 5027 | |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5028 | /* Allocate a new GEM object and fill it with the supplied data */ |
| 5029 | struct drm_i915_gem_object * |
| 5030 | i915_gem_object_create_from_data(struct drm_device *dev, |
| 5031 | const void *data, size_t size) |
| 5032 | { |
| 5033 | struct drm_i915_gem_object *obj; |
| 5034 | struct sg_table *sg; |
| 5035 | size_t bytes; |
| 5036 | int ret; |
| 5037 | |
Dave Gordon | d37cd8a | 2016-04-22 19:14:32 +0100 | [diff] [blame] | 5038 | obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE)); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 5039 | if (IS_ERR(obj)) |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5040 | return obj; |
| 5041 | |
| 5042 | ret = i915_gem_object_set_to_cpu_domain(obj, true); |
| 5043 | if (ret) |
| 5044 | goto fail; |
| 5045 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 5046 | ret = i915_gem_object_pin_pages(obj); |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5047 | if (ret) |
| 5048 | goto fail; |
| 5049 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 5050 | sg = obj->mm.pages; |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5051 | bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 5052 | obj->mm.dirty = true; /* Backing store is now out of date */ |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5053 | i915_gem_object_unpin_pages(obj); |
| 5054 | |
| 5055 | if (WARN_ON(bytes != size)) { |
| 5056 | DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size); |
| 5057 | ret = -EFAULT; |
| 5058 | goto fail; |
| 5059 | } |
| 5060 | |
| 5061 | return obj; |
| 5062 | |
| 5063 | fail: |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 5064 | i915_gem_object_put(obj); |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5065 | return ERR_PTR(ret); |
| 5066 | } |
Chris Wilson | 96d7763 | 2016-10-28 13:58:33 +0100 | [diff] [blame] | 5067 | |
| 5068 | struct scatterlist * |
| 5069 | i915_gem_object_get_sg(struct drm_i915_gem_object *obj, |
| 5070 | unsigned int n, |
| 5071 | unsigned int *offset) |
| 5072 | { |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 5073 | struct i915_gem_object_page_iter *iter = &obj->mm.get_page; |
Chris Wilson | 96d7763 | 2016-10-28 13:58:33 +0100 | [diff] [blame] | 5074 | struct scatterlist *sg; |
| 5075 | unsigned int idx, count; |
| 5076 | |
| 5077 | might_sleep(); |
| 5078 | GEM_BUG_ON(n >= obj->base.size >> PAGE_SHIFT); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 5079 | GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj)); |
Chris Wilson | 96d7763 | 2016-10-28 13:58:33 +0100 | [diff] [blame] | 5080 | |
| 5081 | /* As we iterate forward through the sg, we record each entry in a |
| 5082 | * radixtree for quick repeated (backwards) lookups. If we have seen |
| 5083 | * this index previously, we will have an entry for it. |
| 5084 | * |
| 5085 | * Initial lookup is O(N), but this is amortized to O(1) for |
| 5086 | * sequential page access (where each new request is consecutive |
| 5087 | * to the previous one). Repeated lookups are O(lg(obj->base.size)), |
| 5088 | * i.e. O(1) with a large constant! |
| 5089 | */ |
| 5090 | if (n < READ_ONCE(iter->sg_idx)) |
| 5091 | goto lookup; |
| 5092 | |
| 5093 | mutex_lock(&iter->lock); |
| 5094 | |
| 5095 | /* We prefer to reuse the last sg so that repeated lookup of this |
| 5096 | * (or the subsequent) sg are fast - comparing against the last |
| 5097 | * sg is faster than going through the radixtree. |
| 5098 | */ |
| 5099 | |
| 5100 | sg = iter->sg_pos; |
| 5101 | idx = iter->sg_idx; |
| 5102 | count = __sg_page_count(sg); |
| 5103 | |
| 5104 | while (idx + count <= n) { |
| 5105 | unsigned long exception, i; |
| 5106 | int ret; |
| 5107 | |
| 5108 | /* If we cannot allocate and insert this entry, or the |
| 5109 | * individual pages from this range, cancel updating the |
| 5110 | * sg_idx so that on this lookup we are forced to linearly |
| 5111 | * scan onwards, but on future lookups we will try the |
| 5112 | * insertion again (in which case we need to be careful of |
| 5113 | * the error return reporting that we have already inserted |
| 5114 | * this index). |
| 5115 | */ |
| 5116 | ret = radix_tree_insert(&iter->radix, idx, sg); |
| 5117 | if (ret && ret != -EEXIST) |
| 5118 | goto scan; |
| 5119 | |
| 5120 | exception = |
| 5121 | RADIX_TREE_EXCEPTIONAL_ENTRY | |
| 5122 | idx << RADIX_TREE_EXCEPTIONAL_SHIFT; |
| 5123 | for (i = 1; i < count; i++) { |
| 5124 | ret = radix_tree_insert(&iter->radix, idx + i, |
| 5125 | (void *)exception); |
| 5126 | if (ret && ret != -EEXIST) |
| 5127 | goto scan; |
| 5128 | } |
| 5129 | |
| 5130 | idx += count; |
| 5131 | sg = ____sg_next(sg); |
| 5132 | count = __sg_page_count(sg); |
| 5133 | } |
| 5134 | |
| 5135 | scan: |
| 5136 | iter->sg_pos = sg; |
| 5137 | iter->sg_idx = idx; |
| 5138 | |
| 5139 | mutex_unlock(&iter->lock); |
| 5140 | |
| 5141 | if (unlikely(n < idx)) /* insertion completed by another thread */ |
| 5142 | goto lookup; |
| 5143 | |
| 5144 | /* In case we failed to insert the entry into the radixtree, we need |
| 5145 | * to look beyond the current sg. |
| 5146 | */ |
| 5147 | while (idx + count <= n) { |
| 5148 | idx += count; |
| 5149 | sg = ____sg_next(sg); |
| 5150 | count = __sg_page_count(sg); |
| 5151 | } |
| 5152 | |
| 5153 | *offset = n - idx; |
| 5154 | return sg; |
| 5155 | |
| 5156 | lookup: |
| 5157 | rcu_read_lock(); |
| 5158 | |
| 5159 | sg = radix_tree_lookup(&iter->radix, n); |
| 5160 | GEM_BUG_ON(!sg); |
| 5161 | |
| 5162 | /* If this index is in the middle of multi-page sg entry, |
| 5163 | * the radixtree will contain an exceptional entry that points |
| 5164 | * to the start of that range. We will return the pointer to |
| 5165 | * the base page and the offset of this page within the |
| 5166 | * sg entry's range. |
| 5167 | */ |
| 5168 | *offset = 0; |
| 5169 | if (unlikely(radix_tree_exception(sg))) { |
| 5170 | unsigned long base = |
| 5171 | (unsigned long)sg >> RADIX_TREE_EXCEPTIONAL_SHIFT; |
| 5172 | |
| 5173 | sg = radix_tree_lookup(&iter->radix, base); |
| 5174 | GEM_BUG_ON(!sg); |
| 5175 | |
| 5176 | *offset = n - base; |
| 5177 | } |
| 5178 | |
| 5179 | rcu_read_unlock(); |
| 5180 | |
| 5181 | return sg; |
| 5182 | } |
| 5183 | |
| 5184 | struct page * |
| 5185 | i915_gem_object_get_page(struct drm_i915_gem_object *obj, unsigned int n) |
| 5186 | { |
| 5187 | struct scatterlist *sg; |
| 5188 | unsigned int offset; |
| 5189 | |
| 5190 | GEM_BUG_ON(!i915_gem_object_has_struct_page(obj)); |
| 5191 | |
| 5192 | sg = i915_gem_object_get_sg(obj, n, &offset); |
| 5193 | return nth_page(sg_page(sg), offset); |
| 5194 | } |
| 5195 | |
| 5196 | /* Like i915_gem_object_get_page(), but mark the returned page dirty */ |
| 5197 | struct page * |
| 5198 | i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj, |
| 5199 | unsigned int n) |
| 5200 | { |
| 5201 | struct page *page; |
| 5202 | |
| 5203 | page = i915_gem_object_get_page(obj, n); |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 5204 | if (!obj->mm.dirty) |
Chris Wilson | 96d7763 | 2016-10-28 13:58:33 +0100 | [diff] [blame] | 5205 | set_page_dirty(page); |
| 5206 | |
| 5207 | return page; |
| 5208 | } |
| 5209 | |
| 5210 | dma_addr_t |
| 5211 | i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj, |
| 5212 | unsigned long n) |
| 5213 | { |
| 5214 | struct scatterlist *sg; |
| 5215 | unsigned int offset; |
| 5216 | |
| 5217 | sg = i915_gem_object_get_sg(obj, n, &offset); |
| 5218 | return sg_dma_address(sg) + (offset << PAGE_SHIFT); |
| 5219 | } |