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 | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 172 | static int |
| 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))) |
| 182 | return -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)) |
| 190 | return PTR_ERR(page); |
| 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) |
| 205 | return -ENOMEM; |
| 206 | |
| 207 | if (sg_alloc_table(st, 1, GFP_KERNEL)) { |
| 208 | kfree(st); |
| 209 | return -ENOMEM; |
| 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 | |
| 219 | obj->pages = st; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | static void |
| 224 | i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj) |
| 225 | { |
| 226 | int ret; |
| 227 | |
| 228 | BUG_ON(obj->madv == __I915_MADV_PURGED); |
| 229 | |
| 230 | ret = i915_gem_object_set_to_cpu_domain(obj, true); |
Chris Wilson | f4457ae | 2016-04-13 17:35:08 +0100 | [diff] [blame] | 231 | if (WARN_ON(ret)) { |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 232 | /* In the event of a disaster, abandon all caches and |
| 233 | * hope for the best. |
| 234 | */ |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 235 | obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
| 236 | } |
| 237 | |
| 238 | if (obj->madv == I915_MADV_DONTNEED) |
| 239 | obj->dirty = 0; |
| 240 | |
| 241 | if (obj->dirty) { |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 242 | struct address_space *mapping = obj->base.filp->f_mapping; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 243 | char *vaddr = obj->phys_handle->vaddr; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 244 | int i; |
| 245 | |
| 246 | for (i = 0; i < obj->base.size / PAGE_SIZE; i++) { |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 247 | struct page *page; |
| 248 | char *dst; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 249 | |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 250 | page = shmem_read_mapping_page(mapping, i); |
| 251 | if (IS_ERR(page)) |
| 252 | continue; |
| 253 | |
| 254 | dst = kmap_atomic(page); |
| 255 | drm_clflush_virt_range(vaddr, PAGE_SIZE); |
| 256 | memcpy(dst, vaddr, PAGE_SIZE); |
| 257 | kunmap_atomic(dst); |
| 258 | |
| 259 | set_page_dirty(page); |
| 260 | if (obj->madv == I915_MADV_WILLNEED) |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 261 | mark_page_accessed(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 262 | put_page(page); |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 263 | vaddr += PAGE_SIZE; |
| 264 | } |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 265 | obj->dirty = 0; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 266 | } |
| 267 | |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 268 | sg_free_table(obj->pages); |
| 269 | kfree(obj->pages); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | static void |
| 273 | i915_gem_object_release_phys(struct drm_i915_gem_object *obj) |
| 274 | { |
| 275 | drm_pci_free(obj->base.dev, obj->phys_handle); |
| 276 | } |
| 277 | |
| 278 | static const struct drm_i915_gem_object_ops i915_gem_phys_ops = { |
| 279 | .get_pages = i915_gem_object_get_pages_phys, |
| 280 | .put_pages = i915_gem_object_put_pages_phys, |
| 281 | .release = i915_gem_object_release_phys, |
| 282 | }; |
| 283 | |
Chris Wilson | 35a9611 | 2016-08-14 18:44:40 +0100 | [diff] [blame] | 284 | int i915_gem_object_unbind(struct drm_i915_gem_object *obj) |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 285 | { |
| 286 | struct i915_vma *vma; |
| 287 | LIST_HEAD(still_in_list); |
Chris Wilson | 02bef8f | 2016-08-14 18:44:41 +0100 | [diff] [blame] | 288 | int ret; |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 289 | |
Chris Wilson | 02bef8f | 2016-08-14 18:44:41 +0100 | [diff] [blame] | 290 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 291 | |
| 292 | /* Closed vma are removed from the obj->vma_list - but they may |
| 293 | * still have an active binding on the object. To remove those we |
| 294 | * must wait for all rendering to complete to the object (as unbinding |
| 295 | * must anyway), and retire the requests. |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 296 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 297 | ret = i915_gem_object_wait(obj, |
| 298 | I915_WAIT_INTERRUPTIBLE | |
| 299 | I915_WAIT_LOCKED | |
| 300 | I915_WAIT_ALL, |
| 301 | MAX_SCHEDULE_TIMEOUT, |
| 302 | NULL); |
Chris Wilson | 02bef8f | 2016-08-14 18:44:41 +0100 | [diff] [blame] | 303 | if (ret) |
| 304 | return ret; |
| 305 | |
| 306 | i915_gem_retire_requests(to_i915(obj->base.dev)); |
| 307 | |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 308 | while ((vma = list_first_entry_or_null(&obj->vma_list, |
| 309 | struct i915_vma, |
| 310 | obj_link))) { |
| 311 | list_move_tail(&vma->obj_link, &still_in_list); |
| 312 | ret = i915_vma_unbind(vma); |
| 313 | if (ret) |
| 314 | break; |
| 315 | } |
| 316 | list_splice(&still_in_list, &obj->vma_list); |
| 317 | |
| 318 | return ret; |
| 319 | } |
| 320 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 321 | static long |
| 322 | i915_gem_object_wait_fence(struct dma_fence *fence, |
| 323 | unsigned int flags, |
| 324 | long timeout, |
| 325 | struct intel_rps_client *rps) |
| 326 | { |
| 327 | struct drm_i915_gem_request *rq; |
| 328 | |
| 329 | BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1); |
| 330 | |
| 331 | if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) |
| 332 | return timeout; |
| 333 | |
| 334 | if (!dma_fence_is_i915(fence)) |
| 335 | return dma_fence_wait_timeout(fence, |
| 336 | flags & I915_WAIT_INTERRUPTIBLE, |
| 337 | timeout); |
| 338 | |
| 339 | rq = to_request(fence); |
| 340 | if (i915_gem_request_completed(rq)) |
| 341 | goto out; |
| 342 | |
| 343 | /* This client is about to stall waiting for the GPU. In many cases |
| 344 | * this is undesirable and limits the throughput of the system, as |
| 345 | * many clients cannot continue processing user input/output whilst |
| 346 | * blocked. RPS autotuning may take tens of milliseconds to respond |
| 347 | * to the GPU load and thus incurs additional latency for the client. |
| 348 | * We can circumvent that by promoting the GPU frequency to maximum |
| 349 | * before we wait. This makes the GPU throttle up much more quickly |
| 350 | * (good for benchmarks and user experience, e.g. window animations), |
| 351 | * but at a cost of spending more power processing the workload |
| 352 | * (bad for battery). Not all clients even want their results |
| 353 | * immediately and for them we should just let the GPU select its own |
| 354 | * frequency to maximise efficiency. To prevent a single client from |
| 355 | * forcing the clocks too high for the whole system, we only allow |
| 356 | * each client to waitboost once in a busy period. |
| 357 | */ |
| 358 | if (rps) { |
| 359 | if (INTEL_GEN(rq->i915) >= 6) |
| 360 | gen6_rps_boost(rq->i915, rps, rq->emitted_jiffies); |
| 361 | else |
| 362 | rps = NULL; |
| 363 | } |
| 364 | |
| 365 | timeout = i915_wait_request(rq, flags, timeout); |
| 366 | |
| 367 | out: |
| 368 | if (flags & I915_WAIT_LOCKED && i915_gem_request_completed(rq)) |
| 369 | i915_gem_request_retire_upto(rq); |
| 370 | |
| 371 | if (rps && rq->fence.seqno == rq->engine->last_submitted_seqno) { |
| 372 | /* The GPU is now idle and this client has stalled. |
| 373 | * Since no other client has submitted a request in the |
| 374 | * meantime, assume that this client is the only one |
| 375 | * supplying work to the GPU but is unable to keep that |
| 376 | * work supplied because it is waiting. Since the GPU is |
| 377 | * then never kept fully busy, RPS autoclocking will |
| 378 | * keep the clocks relatively low, causing further delays. |
| 379 | * Compensate by giving the synchronous client credit for |
| 380 | * a waitboost next time. |
| 381 | */ |
| 382 | spin_lock(&rq->i915->rps.client_lock); |
| 383 | list_del_init(&rps->link); |
| 384 | spin_unlock(&rq->i915->rps.client_lock); |
| 385 | } |
| 386 | |
| 387 | return timeout; |
| 388 | } |
| 389 | |
| 390 | static long |
| 391 | i915_gem_object_wait_reservation(struct reservation_object *resv, |
| 392 | unsigned int flags, |
| 393 | long timeout, |
| 394 | struct intel_rps_client *rps) |
| 395 | { |
| 396 | struct dma_fence *excl; |
| 397 | |
| 398 | if (flags & I915_WAIT_ALL) { |
| 399 | struct dma_fence **shared; |
| 400 | unsigned int count, i; |
| 401 | int ret; |
| 402 | |
| 403 | ret = reservation_object_get_fences_rcu(resv, |
| 404 | &excl, &count, &shared); |
| 405 | if (ret) |
| 406 | return ret; |
| 407 | |
| 408 | for (i = 0; i < count; i++) { |
| 409 | timeout = i915_gem_object_wait_fence(shared[i], |
| 410 | flags, timeout, |
| 411 | rps); |
| 412 | if (timeout <= 0) |
| 413 | break; |
| 414 | |
| 415 | dma_fence_put(shared[i]); |
| 416 | } |
| 417 | |
| 418 | for (; i < count; i++) |
| 419 | dma_fence_put(shared[i]); |
| 420 | kfree(shared); |
| 421 | } else { |
| 422 | excl = reservation_object_get_excl_rcu(resv); |
| 423 | } |
| 424 | |
| 425 | if (excl && timeout > 0) |
| 426 | timeout = i915_gem_object_wait_fence(excl, flags, timeout, rps); |
| 427 | |
| 428 | dma_fence_put(excl); |
| 429 | |
| 430 | return timeout; |
| 431 | } |
| 432 | |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 433 | /** |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 434 | * Waits for rendering to the object to be completed |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 435 | * @obj: i915 gem object |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 436 | * @flags: how to wait (under a lock, for all rendering or just for writes etc) |
| 437 | * @timeout: how long to wait |
| 438 | * @rps: client (user process) to charge for any waitboosting |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 439 | */ |
| 440 | int |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 441 | i915_gem_object_wait(struct drm_i915_gem_object *obj, |
| 442 | unsigned int flags, |
| 443 | long timeout, |
| 444 | struct intel_rps_client *rps) |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 445 | { |
| 446 | struct reservation_object *resv; |
| 447 | struct i915_gem_active *active; |
| 448 | unsigned long active_mask; |
| 449 | int idx; |
| 450 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 451 | might_sleep(); |
| 452 | #if IS_ENABLED(CONFIG_LOCKDEP) |
| 453 | GEM_BUG_ON(debug_locks && |
| 454 | !!lockdep_is_held(&obj->base.dev->struct_mutex) != |
| 455 | !!(flags & I915_WAIT_LOCKED)); |
| 456 | #endif |
| 457 | GEM_BUG_ON(timeout < 0); |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 458 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 459 | if (flags & I915_WAIT_ALL) { |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 460 | active = obj->last_read; |
| 461 | active_mask = i915_gem_object_get_active(obj); |
| 462 | } else { |
| 463 | active_mask = 1; |
| 464 | active = &obj->last_write; |
| 465 | } |
| 466 | |
| 467 | for_each_active(active_mask, idx) { |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 468 | struct drm_i915_gem_request *request; |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 469 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 470 | request = i915_gem_active_get_unlocked(&active[idx]); |
| 471 | if (request) { |
| 472 | timeout = i915_gem_object_wait_fence(&request->fence, |
| 473 | flags, timeout, |
| 474 | rps); |
| 475 | i915_gem_request_put(request); |
| 476 | } |
| 477 | if (timeout < 0) |
| 478 | return timeout; |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | resv = i915_gem_object_get_dmabuf_resv(obj); |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 482 | if (resv) |
| 483 | timeout = i915_gem_object_wait_reservation(resv, |
| 484 | flags, timeout, |
| 485 | rps); |
| 486 | return timeout < 0 ? timeout : 0; |
Chris Wilson | 00e60f2 | 2016-08-04 16:32:40 +0100 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | static struct intel_rps_client *to_rps_client(struct drm_file *file) |
| 490 | { |
| 491 | struct drm_i915_file_private *fpriv = file->driver_priv; |
| 492 | |
| 493 | return &fpriv->rps; |
| 494 | } |
| 495 | |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 496 | int |
| 497 | i915_gem_object_attach_phys(struct drm_i915_gem_object *obj, |
| 498 | int align) |
| 499 | { |
| 500 | drm_dma_handle_t *phys; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 501 | int ret; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 502 | |
| 503 | if (obj->phys_handle) { |
| 504 | if ((unsigned long)obj->phys_handle->vaddr & (align -1)) |
| 505 | return -EBUSY; |
| 506 | |
| 507 | return 0; |
| 508 | } |
| 509 | |
| 510 | if (obj->madv != I915_MADV_WILLNEED) |
| 511 | return -EFAULT; |
| 512 | |
| 513 | if (obj->base.filp == NULL) |
| 514 | return -EINVAL; |
| 515 | |
Chris Wilson | 4717ca9 | 2016-08-04 07:52:28 +0100 | [diff] [blame] | 516 | ret = i915_gem_object_unbind(obj); |
| 517 | if (ret) |
| 518 | return ret; |
| 519 | |
| 520 | ret = i915_gem_object_put_pages(obj); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 521 | if (ret) |
| 522 | return ret; |
| 523 | |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 524 | /* create a new object */ |
| 525 | phys = drm_pci_alloc(obj->base.dev, obj->base.size, align); |
| 526 | if (!phys) |
| 527 | return -ENOMEM; |
| 528 | |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 529 | obj->phys_handle = phys; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 530 | obj->ops = &i915_gem_phys_ops; |
| 531 | |
| 532 | return i915_gem_object_get_pages(obj); |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | static int |
| 536 | i915_gem_phys_pwrite(struct drm_i915_gem_object *obj, |
| 537 | struct drm_i915_gem_pwrite *args, |
| 538 | struct drm_file *file_priv) |
| 539 | { |
| 540 | struct drm_device *dev = obj->base.dev; |
| 541 | void *vaddr = obj->phys_handle->vaddr + args->offset; |
Gustavo Padovan | 3ed605b | 2016-04-26 12:32:27 -0300 | [diff] [blame] | 542 | char __user *user_data = u64_to_user_ptr(args->data_ptr); |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 543 | int ret; |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 544 | |
| 545 | /* We manually control the domain here and pretend that it |
| 546 | * remains coherent i.e. in the GTT domain, like shmem_pwrite. |
| 547 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 548 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 549 | ret = i915_gem_object_wait(obj, |
| 550 | I915_WAIT_INTERRUPTIBLE | |
| 551 | I915_WAIT_LOCKED | |
| 552 | I915_WAIT_ALL, |
| 553 | MAX_SCHEDULE_TIMEOUT, |
| 554 | to_rps_client(file_priv)); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 555 | if (ret) |
| 556 | return ret; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 557 | |
Rodrigo Vivi | 77a0d1c | 2015-06-18 11:43:24 -0700 | [diff] [blame] | 558 | intel_fb_obj_invalidate(obj, ORIGIN_CPU); |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 559 | if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) { |
| 560 | unsigned long unwritten; |
| 561 | |
| 562 | /* The physical object once assigned is fixed for the lifetime |
| 563 | * of the obj, so we can safely drop the lock and continue |
| 564 | * to access vaddr. |
| 565 | */ |
| 566 | mutex_unlock(&dev->struct_mutex); |
| 567 | unwritten = copy_from_user(vaddr, user_data, args->size); |
| 568 | mutex_lock(&dev->struct_mutex); |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 569 | if (unwritten) { |
| 570 | ret = -EFAULT; |
| 571 | goto out; |
| 572 | } |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 573 | } |
| 574 | |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 575 | drm_clflush_virt_range(vaddr, args->size); |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 576 | i915_gem_chipset_flush(to_i915(dev)); |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 577 | |
| 578 | out: |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 579 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 580 | return ret; |
Chris Wilson | 0073115 | 2014-05-21 12:42:56 +0100 | [diff] [blame] | 581 | } |
| 582 | |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 583 | void *i915_gem_object_alloc(struct drm_device *dev) |
| 584 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 585 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 586 | return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | void i915_gem_object_free(struct drm_i915_gem_object *obj) |
| 590 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 591 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 592 | kmem_cache_free(dev_priv->objects, obj); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 593 | } |
| 594 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 595 | static int |
| 596 | i915_gem_create(struct drm_file *file, |
| 597 | struct drm_device *dev, |
| 598 | uint64_t size, |
| 599 | uint32_t *handle_p) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 600 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 601 | struct drm_i915_gem_object *obj; |
Pekka Paalanen | a1a2d1d | 2009-08-23 12:40:55 +0300 | [diff] [blame] | 602 | int ret; |
| 603 | u32 handle; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 604 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 605 | size = roundup(size, PAGE_SIZE); |
Chris Wilson | 8ffc024 | 2011-09-14 14:14:28 +0200 | [diff] [blame] | 606 | if (size == 0) |
| 607 | return -EINVAL; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 608 | |
| 609 | /* Allocate the new object */ |
Dave Gordon | d37cd8a | 2016-04-22 19:14:32 +0100 | [diff] [blame] | 610 | obj = i915_gem_object_create(dev, size); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 611 | if (IS_ERR(obj)) |
| 612 | return PTR_ERR(obj); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 613 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 614 | ret = drm_gem_handle_create(file, &obj->base, &handle); |
Chris Wilson | 202f2fe | 2010-10-14 13:20:40 +0100 | [diff] [blame] | 615 | /* drop reference from allocate - handle holds it now */ |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 616 | i915_gem_object_put_unlocked(obj); |
Daniel Vetter | d861e33 | 2013-07-24 23:25:03 +0200 | [diff] [blame] | 617 | if (ret) |
| 618 | return ret; |
Chris Wilson | 202f2fe | 2010-10-14 13:20:40 +0100 | [diff] [blame] | 619 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 620 | *handle_p = handle; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 621 | return 0; |
| 622 | } |
| 623 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 624 | int |
| 625 | i915_gem_dumb_create(struct drm_file *file, |
| 626 | struct drm_device *dev, |
| 627 | struct drm_mode_create_dumb *args) |
| 628 | { |
| 629 | /* have to work out size/pitch and return them */ |
Paulo Zanoni | de45eaf | 2013-10-18 18:48:24 -0300 | [diff] [blame] | 630 | args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 631 | args->size = args->pitch * args->height; |
| 632 | return i915_gem_create(file, dev, |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 633 | args->size, &args->handle); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 634 | } |
| 635 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 636 | /** |
| 637 | * Creates a new mm object and returns a handle to it. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 638 | * @dev: drm device pointer |
| 639 | * @data: ioctl data blob |
| 640 | * @file: drm file pointer |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 641 | */ |
| 642 | int |
| 643 | i915_gem_create_ioctl(struct drm_device *dev, void *data, |
| 644 | struct drm_file *file) |
| 645 | { |
| 646 | struct drm_i915_gem_create *args = data; |
Daniel Vetter | 63ed2cb | 2012-04-23 16:50:50 +0200 | [diff] [blame] | 647 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 648 | return i915_gem_create(file, dev, |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 649 | args->size, &args->handle); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 650 | } |
| 651 | |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 652 | static inline int |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 653 | __copy_to_user_swizzled(char __user *cpu_vaddr, |
| 654 | const char *gpu_vaddr, int gpu_offset, |
| 655 | int length) |
| 656 | { |
| 657 | int ret, cpu_offset = 0; |
| 658 | |
| 659 | while (length > 0) { |
| 660 | int cacheline_end = ALIGN(gpu_offset + 1, 64); |
| 661 | int this_length = min(cacheline_end - gpu_offset, length); |
| 662 | int swizzled_gpu_offset = gpu_offset ^ 64; |
| 663 | |
| 664 | ret = __copy_to_user(cpu_vaddr + cpu_offset, |
| 665 | gpu_vaddr + swizzled_gpu_offset, |
| 666 | this_length); |
| 667 | if (ret) |
| 668 | return ret + length; |
| 669 | |
| 670 | cpu_offset += this_length; |
| 671 | gpu_offset += this_length; |
| 672 | length -= this_length; |
| 673 | } |
| 674 | |
| 675 | return 0; |
| 676 | } |
| 677 | |
| 678 | static inline int |
Ben Widawsky | 4f0c7cf | 2012-04-16 14:07:47 -0700 | [diff] [blame] | 679 | __copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset, |
| 680 | const char __user *cpu_vaddr, |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 681 | int length) |
| 682 | { |
| 683 | int ret, cpu_offset = 0; |
| 684 | |
| 685 | while (length > 0) { |
| 686 | int cacheline_end = ALIGN(gpu_offset + 1, 64); |
| 687 | int this_length = min(cacheline_end - gpu_offset, length); |
| 688 | int swizzled_gpu_offset = gpu_offset ^ 64; |
| 689 | |
| 690 | ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset, |
| 691 | cpu_vaddr + cpu_offset, |
| 692 | this_length); |
| 693 | if (ret) |
| 694 | return ret + length; |
| 695 | |
| 696 | cpu_offset += this_length; |
| 697 | gpu_offset += this_length; |
| 698 | length -= this_length; |
| 699 | } |
| 700 | |
| 701 | return 0; |
| 702 | } |
| 703 | |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 704 | /* |
| 705 | * Pins the specified object's pages and synchronizes the object with |
| 706 | * GPU accesses. Sets needs_clflush to non-zero if the caller should |
| 707 | * flush the object from the CPU cache. |
| 708 | */ |
| 709 | 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] | 710 | unsigned int *needs_clflush) |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 711 | { |
| 712 | int ret; |
| 713 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 714 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 715 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 716 | *needs_clflush = 0; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 717 | if (!i915_gem_object_has_struct_page(obj)) |
| 718 | return -ENODEV; |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 719 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 720 | ret = i915_gem_object_wait(obj, |
| 721 | I915_WAIT_INTERRUPTIBLE | |
| 722 | I915_WAIT_LOCKED, |
| 723 | MAX_SCHEDULE_TIMEOUT, |
| 724 | NULL); |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 725 | if (ret) |
| 726 | return ret; |
| 727 | |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 728 | ret = i915_gem_object_get_pages(obj); |
| 729 | if (ret) |
| 730 | return ret; |
| 731 | |
| 732 | i915_gem_object_pin_pages(obj); |
| 733 | |
Chris Wilson | a314d5c | 2016-08-18 17:16:48 +0100 | [diff] [blame] | 734 | i915_gem_object_flush_gtt_write_domain(obj); |
| 735 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 736 | /* If we're not in the cpu read domain, set ourself into the gtt |
| 737 | * read domain and manually flush cachelines (if required). This |
| 738 | * optimizes for the case when the gpu will dirty the data |
| 739 | * anyway again before the next pread happens. |
| 740 | */ |
| 741 | if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 742 | *needs_clflush = !cpu_cache_is_coherent(obj->base.dev, |
| 743 | obj->cache_level); |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 744 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 745 | if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) { |
| 746 | ret = i915_gem_object_set_to_cpu_domain(obj, false); |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 747 | if (ret) |
| 748 | goto err_unpin; |
| 749 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 750 | *needs_clflush = 0; |
| 751 | } |
| 752 | |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 753 | /* return with the pages pinned */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 754 | return 0; |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 755 | |
| 756 | err_unpin: |
| 757 | i915_gem_object_unpin_pages(obj); |
| 758 | return ret; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj, |
| 762 | unsigned int *needs_clflush) |
| 763 | { |
| 764 | int ret; |
| 765 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 766 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 767 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 768 | *needs_clflush = 0; |
| 769 | if (!i915_gem_object_has_struct_page(obj)) |
| 770 | return -ENODEV; |
| 771 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 772 | ret = i915_gem_object_wait(obj, |
| 773 | I915_WAIT_INTERRUPTIBLE | |
| 774 | I915_WAIT_LOCKED | |
| 775 | I915_WAIT_ALL, |
| 776 | MAX_SCHEDULE_TIMEOUT, |
| 777 | NULL); |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 778 | if (ret) |
| 779 | return ret; |
| 780 | |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 781 | ret = i915_gem_object_get_pages(obj); |
| 782 | if (ret) |
| 783 | return ret; |
| 784 | |
| 785 | i915_gem_object_pin_pages(obj); |
| 786 | |
Chris Wilson | a314d5c | 2016-08-18 17:16:48 +0100 | [diff] [blame] | 787 | i915_gem_object_flush_gtt_write_domain(obj); |
| 788 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 789 | /* If we're not in the cpu write domain, set ourself into the |
| 790 | * gtt write domain and manually flush cachelines (as required). |
| 791 | * This optimizes for the case when the gpu will use the data |
| 792 | * right away and we therefore have to clflush anyway. |
| 793 | */ |
| 794 | if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) |
| 795 | *needs_clflush |= cpu_write_needs_clflush(obj) << 1; |
| 796 | |
| 797 | /* Same trick applies to invalidate partially written cachelines read |
| 798 | * before writing. |
| 799 | */ |
| 800 | if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) |
| 801 | *needs_clflush |= !cpu_cache_is_coherent(obj->base.dev, |
| 802 | obj->cache_level); |
| 803 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 804 | if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) { |
| 805 | ret = i915_gem_object_set_to_cpu_domain(obj, true); |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 806 | if (ret) |
| 807 | goto err_unpin; |
| 808 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 809 | *needs_clflush = 0; |
| 810 | } |
| 811 | |
| 812 | if ((*needs_clflush & CLFLUSH_AFTER) == 0) |
| 813 | obj->cache_dirty = true; |
| 814 | |
| 815 | intel_fb_obj_invalidate(obj, ORIGIN_CPU); |
| 816 | obj->dirty = 1; |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 817 | /* return with the pages pinned */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 818 | return 0; |
Chris Wilson | 9764951 | 2016-08-18 17:16:50 +0100 | [diff] [blame] | 819 | |
| 820 | err_unpin: |
| 821 | i915_gem_object_unpin_pages(obj); |
| 822 | return ret; |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 823 | } |
| 824 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 825 | /* Per-page copy function for the shmem pread fastpath. |
| 826 | * Flushes invalid cachelines before reading the target if |
| 827 | * needs_clflush is set. */ |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 828 | static int |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 829 | shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length, |
| 830 | char __user *user_data, |
| 831 | bool page_do_bit17_swizzling, bool needs_clflush) |
| 832 | { |
| 833 | char *vaddr; |
| 834 | int ret; |
| 835 | |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 836 | if (unlikely(page_do_bit17_swizzling)) |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 837 | return -EINVAL; |
| 838 | |
| 839 | vaddr = kmap_atomic(page); |
| 840 | if (needs_clflush) |
| 841 | drm_clflush_virt_range(vaddr + shmem_page_offset, |
| 842 | page_length); |
| 843 | ret = __copy_to_user_inatomic(user_data, |
| 844 | vaddr + shmem_page_offset, |
| 845 | page_length); |
| 846 | kunmap_atomic(vaddr); |
| 847 | |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 848 | return ret ? -EFAULT : 0; |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 849 | } |
| 850 | |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 851 | static void |
| 852 | shmem_clflush_swizzled_range(char *addr, unsigned long length, |
| 853 | bool swizzled) |
| 854 | { |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 855 | if (unlikely(swizzled)) { |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 856 | unsigned long start = (unsigned long) addr; |
| 857 | unsigned long end = (unsigned long) addr + length; |
| 858 | |
| 859 | /* For swizzling simply ensure that we always flush both |
| 860 | * channels. Lame, but simple and it works. Swizzled |
| 861 | * pwrite/pread is far from a hotpath - current userspace |
| 862 | * doesn't use it at all. */ |
| 863 | start = round_down(start, 128); |
| 864 | end = round_up(end, 128); |
| 865 | |
| 866 | drm_clflush_virt_range((void *)start, end - start); |
| 867 | } else { |
| 868 | drm_clflush_virt_range(addr, length); |
| 869 | } |
| 870 | |
| 871 | } |
| 872 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 873 | /* Only difference to the fast-path function is that this can handle bit17 |
| 874 | * and uses non-atomic copy and kmap functions. */ |
| 875 | static int |
| 876 | shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length, |
| 877 | char __user *user_data, |
| 878 | bool page_do_bit17_swizzling, bool needs_clflush) |
| 879 | { |
| 880 | char *vaddr; |
| 881 | int ret; |
| 882 | |
| 883 | vaddr = kmap(page); |
| 884 | if (needs_clflush) |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 885 | shmem_clflush_swizzled_range(vaddr + shmem_page_offset, |
| 886 | page_length, |
| 887 | page_do_bit17_swizzling); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 888 | |
| 889 | if (page_do_bit17_swizzling) |
| 890 | ret = __copy_to_user_swizzled(user_data, |
| 891 | vaddr, shmem_page_offset, |
| 892 | page_length); |
| 893 | else |
| 894 | ret = __copy_to_user(user_data, |
| 895 | vaddr + shmem_page_offset, |
| 896 | page_length); |
| 897 | kunmap(page); |
| 898 | |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 899 | return ret ? - EFAULT : 0; |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 900 | } |
| 901 | |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 902 | static inline unsigned long |
| 903 | slow_user_access(struct io_mapping *mapping, |
| 904 | uint64_t page_base, int page_offset, |
| 905 | char __user *user_data, |
| 906 | unsigned long length, bool pwrite) |
| 907 | { |
| 908 | void __iomem *ioaddr; |
| 909 | void *vaddr; |
| 910 | uint64_t unwritten; |
| 911 | |
| 912 | ioaddr = io_mapping_map_wc(mapping, page_base, PAGE_SIZE); |
| 913 | /* We can use the cpu mem copy function because this is X86. */ |
| 914 | vaddr = (void __force *)ioaddr + page_offset; |
| 915 | if (pwrite) |
| 916 | unwritten = __copy_from_user(vaddr, user_data, length); |
| 917 | else |
| 918 | unwritten = __copy_to_user(user_data, vaddr, length); |
| 919 | |
| 920 | io_mapping_unmap(ioaddr); |
| 921 | return unwritten; |
| 922 | } |
| 923 | |
| 924 | static int |
| 925 | i915_gem_gtt_pread(struct drm_device *dev, |
| 926 | struct drm_i915_gem_object *obj, uint64_t size, |
| 927 | uint64_t data_offset, uint64_t data_ptr) |
| 928 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 929 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 930 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 931 | struct i915_vma *vma; |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 932 | struct drm_mm_node node; |
| 933 | char __user *user_data; |
| 934 | uint64_t remain; |
| 935 | uint64_t offset; |
| 936 | int ret; |
| 937 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 938 | intel_runtime_pm_get(to_i915(dev)); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 939 | vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, PIN_MAPPABLE); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 940 | if (!IS_ERR(vma)) { |
| 941 | node.start = i915_ggtt_offset(vma); |
| 942 | node.allocated = false; |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 943 | ret = i915_vma_put_fence(vma); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 944 | if (ret) { |
| 945 | i915_vma_unpin(vma); |
| 946 | vma = ERR_PTR(ret); |
| 947 | } |
| 948 | } |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 949 | if (IS_ERR(vma)) { |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 950 | ret = insert_mappable_node(dev_priv, &node, PAGE_SIZE); |
| 951 | if (ret) |
| 952 | goto out; |
| 953 | |
| 954 | ret = i915_gem_object_get_pages(obj); |
| 955 | if (ret) { |
| 956 | remove_mappable_node(&node); |
| 957 | goto out; |
| 958 | } |
| 959 | |
| 960 | i915_gem_object_pin_pages(obj); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 961 | } |
| 962 | |
| 963 | ret = i915_gem_object_set_to_gtt_domain(obj, false); |
| 964 | if (ret) |
| 965 | goto out_unpin; |
| 966 | |
| 967 | user_data = u64_to_user_ptr(data_ptr); |
| 968 | remain = size; |
| 969 | offset = data_offset; |
| 970 | |
| 971 | mutex_unlock(&dev->struct_mutex); |
| 972 | if (likely(!i915.prefault_disable)) { |
Al Viro | 4bce9f6 | 2016-09-17 18:02:44 -0400 | [diff] [blame] | 973 | ret = fault_in_pages_writeable(user_data, remain); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 974 | if (ret) { |
| 975 | mutex_lock(&dev->struct_mutex); |
| 976 | goto out_unpin; |
| 977 | } |
| 978 | } |
| 979 | |
| 980 | while (remain > 0) { |
| 981 | /* Operation in this page |
| 982 | * |
| 983 | * page_base = page offset within aperture |
| 984 | * page_offset = offset within page |
| 985 | * page_length = bytes to copy for this page |
| 986 | */ |
| 987 | u32 page_base = node.start; |
| 988 | unsigned page_offset = offset_in_page(offset); |
| 989 | unsigned page_length = PAGE_SIZE - page_offset; |
| 990 | page_length = remain < page_length ? remain : page_length; |
| 991 | if (node.allocated) { |
| 992 | wmb(); |
| 993 | ggtt->base.insert_page(&ggtt->base, |
| 994 | i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT), |
| 995 | node.start, |
| 996 | I915_CACHE_NONE, 0); |
| 997 | wmb(); |
| 998 | } else { |
| 999 | page_base += offset & PAGE_MASK; |
| 1000 | } |
| 1001 | /* This is a slow read/write as it tries to read from |
| 1002 | * and write to user memory which may result into page |
| 1003 | * faults, and so we cannot perform this under struct_mutex. |
| 1004 | */ |
Chris Wilson | f7bbe78 | 2016-08-19 16:54:27 +0100 | [diff] [blame] | 1005 | if (slow_user_access(&ggtt->mappable, page_base, |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1006 | page_offset, user_data, |
| 1007 | page_length, false)) { |
| 1008 | ret = -EFAULT; |
| 1009 | break; |
| 1010 | } |
| 1011 | |
| 1012 | remain -= page_length; |
| 1013 | user_data += page_length; |
| 1014 | offset += page_length; |
| 1015 | } |
| 1016 | |
| 1017 | mutex_lock(&dev->struct_mutex); |
| 1018 | if (ret == 0 && (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) { |
| 1019 | /* The user has modified the object whilst we tried |
| 1020 | * reading from it, and we now have no idea what domain |
| 1021 | * the pages should be in. As we have just been touching |
| 1022 | * them directly, flush everything back to the GTT |
| 1023 | * domain. |
| 1024 | */ |
| 1025 | ret = i915_gem_object_set_to_gtt_domain(obj, false); |
| 1026 | } |
| 1027 | |
| 1028 | out_unpin: |
| 1029 | if (node.allocated) { |
| 1030 | wmb(); |
| 1031 | ggtt->base.clear_range(&ggtt->base, |
Michał Winiarski | 4fb84d9 | 2016-10-13 14:02:40 +0200 | [diff] [blame] | 1032 | node.start, node.size); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1033 | i915_gem_object_unpin_pages(obj); |
| 1034 | remove_mappable_node(&node); |
| 1035 | } else { |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1036 | i915_vma_unpin(vma); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1037 | } |
| 1038 | out: |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1039 | intel_runtime_pm_put(to_i915(dev)); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1040 | return ret; |
| 1041 | } |
| 1042 | |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1043 | static int |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1044 | i915_gem_shmem_pread(struct drm_device *dev, |
| 1045 | struct drm_i915_gem_object *obj, |
| 1046 | struct drm_i915_gem_pread *args, |
| 1047 | struct drm_file *file) |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1048 | { |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1049 | char __user *user_data; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1050 | ssize_t remain; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1051 | loff_t offset; |
Ben Widawsky | eb2c0c8 | 2012-02-15 14:42:43 +0100 | [diff] [blame] | 1052 | int shmem_page_offset, page_length, ret = 0; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1053 | int obj_do_bit17_swizzling, page_do_bit17_swizzling; |
Daniel Vetter | 96d79b5 | 2012-03-25 19:47:36 +0200 | [diff] [blame] | 1054 | int prefaulted = 0; |
Daniel Vetter | 8489731 | 2012-03-25 19:47:31 +0200 | [diff] [blame] | 1055 | int needs_clflush = 0; |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1056 | struct sg_page_iter sg_iter; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1057 | |
Brad Volkin | 4c914c0 | 2014-02-18 10:15:45 -0800 | [diff] [blame] | 1058 | ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush); |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1059 | if (ret) |
| 1060 | return ret; |
| 1061 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1062 | obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj); |
| 1063 | user_data = u64_to_user_ptr(args->data_ptr); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1064 | offset = args->offset; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1065 | remain = args->size; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1066 | |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1067 | for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, |
| 1068 | offset >> PAGE_SHIFT) { |
Imre Deak | 2db76d7 | 2013-03-26 15:14:18 +0200 | [diff] [blame] | 1069 | struct page *page = sg_page_iter_page(&sg_iter); |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 1070 | |
| 1071 | if (remain <= 0) |
| 1072 | break; |
| 1073 | |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1074 | /* Operation in this page |
| 1075 | * |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1076 | * shmem_page_offset = offset within page in shmem file |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1077 | * page_length = bytes to copy for this page |
| 1078 | */ |
Chris Wilson | c8cbbb8 | 2011-05-12 22:17:11 +0100 | [diff] [blame] | 1079 | shmem_page_offset = offset_in_page(offset); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1080 | page_length = remain; |
| 1081 | if ((shmem_page_offset + page_length) > PAGE_SIZE) |
| 1082 | page_length = PAGE_SIZE - shmem_page_offset; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1083 | |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1084 | page_do_bit17_swizzling = obj_do_bit17_swizzling && |
| 1085 | (page_to_phys(page) & (1 << 17)) != 0; |
| 1086 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1087 | ret = shmem_pread_fast(page, shmem_page_offset, page_length, |
| 1088 | user_data, page_do_bit17_swizzling, |
| 1089 | needs_clflush); |
| 1090 | if (ret == 0) |
| 1091 | goto next_page; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1092 | |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1093 | mutex_unlock(&dev->struct_mutex); |
| 1094 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 1095 | if (likely(!i915.prefault_disable) && !prefaulted) { |
Al Viro | 4bce9f6 | 2016-09-17 18:02:44 -0400 | [diff] [blame] | 1096 | ret = fault_in_pages_writeable(user_data, remain); |
Daniel Vetter | 96d79b5 | 2012-03-25 19:47:36 +0200 | [diff] [blame] | 1097 | /* Userspace is tricking us, but we've already clobbered |
| 1098 | * its pages with the prefault and promised to write the |
| 1099 | * data up to the first fault. Hence ignore any errors |
| 1100 | * and just continue. */ |
| 1101 | (void)ret; |
| 1102 | prefaulted = 1; |
| 1103 | } |
| 1104 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1105 | ret = shmem_pread_slow(page, shmem_page_offset, page_length, |
| 1106 | user_data, page_do_bit17_swizzling, |
| 1107 | needs_clflush); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1108 | |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1109 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1110 | |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1111 | if (ret) |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1112 | goto out; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1113 | |
Chris Wilson | 17793c9 | 2014-03-07 08:30:36 +0000 | [diff] [blame] | 1114 | next_page: |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1115 | remain -= page_length; |
Daniel Vetter | 8461d22 | 2011-12-14 13:57:32 +0100 | [diff] [blame] | 1116 | user_data += page_length; |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1117 | offset += page_length; |
| 1118 | } |
| 1119 | |
Chris Wilson | 4f27b75 | 2010-10-14 15:26:45 +0100 | [diff] [blame] | 1120 | out: |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1121 | i915_gem_obj_finish_shmem_access(obj); |
Chris Wilson | f60d7f0 | 2012-09-04 21:02:56 +0100 | [diff] [blame] | 1122 | |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1123 | return ret; |
| 1124 | } |
| 1125 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1126 | /** |
| 1127 | * Reads data from the object referenced by handle. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1128 | * @dev: drm device pointer |
| 1129 | * @data: ioctl data blob |
| 1130 | * @file: drm file pointer |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1131 | * |
| 1132 | * On error, the contents of *data are undefined. |
| 1133 | */ |
| 1134 | int |
| 1135 | i915_gem_pread_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1136 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1137 | { |
| 1138 | struct drm_i915_gem_pread *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1139 | struct drm_i915_gem_object *obj; |
Chris Wilson | 35b62a8 | 2010-09-26 20:23:38 +0100 | [diff] [blame] | 1140 | int ret = 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1141 | |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1142 | if (args->size == 0) |
| 1143 | return 0; |
| 1144 | |
| 1145 | if (!access_ok(VERIFY_WRITE, |
Gustavo Padovan | 3ed605b | 2016-04-26 12:32:27 -0300 | [diff] [blame] | 1146 | u64_to_user_ptr(args->data_ptr), |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1147 | args->size)) |
| 1148 | return -EFAULT; |
| 1149 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1150 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1151 | if (!obj) |
| 1152 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1153 | |
Chris Wilson | 7dcd249 | 2010-09-26 20:21:44 +0100 | [diff] [blame] | 1154 | /* Bounds check source. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1155 | if (args->offset > obj->base.size || |
| 1156 | args->size > obj->base.size - args->offset) { |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1157 | ret = -EINVAL; |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1158 | goto err; |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1159 | } |
| 1160 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1161 | trace_i915_gem_object_pread(obj, args->offset, args->size); |
| 1162 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1163 | ret = i915_gem_object_wait(obj, |
| 1164 | I915_WAIT_INTERRUPTIBLE, |
| 1165 | MAX_SCHEDULE_TIMEOUT, |
| 1166 | to_rps_client(file)); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1167 | if (ret) |
| 1168 | goto err; |
| 1169 | |
| 1170 | ret = i915_mutex_lock_interruptible(dev); |
| 1171 | if (ret) |
| 1172 | goto err; |
| 1173 | |
Daniel Vetter | dbf7bff | 2012-03-25 19:47:29 +0200 | [diff] [blame] | 1174 | ret = i915_gem_shmem_pread(dev, obj, args, file); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1175 | |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1176 | /* pread for non shmem backed objects */ |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1177 | if (ret == -EFAULT || ret == -ENODEV) |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1178 | ret = i915_gem_gtt_pread(dev, obj, args->size, |
| 1179 | args->offset, args->data_ptr); |
| 1180 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 1181 | i915_gem_object_put(obj); |
Chris Wilson | 4f27b75 | 2010-10-14 15:26:45 +0100 | [diff] [blame] | 1182 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1183 | |
| 1184 | return ret; |
| 1185 | |
| 1186 | err: |
| 1187 | i915_gem_object_put_unlocked(obj); |
Eric Anholt | eb01459 | 2009-03-10 11:44:52 -0700 | [diff] [blame] | 1188 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1191 | /* This is the fast write path which cannot handle |
| 1192 | * page faults in the source data |
Linus Torvalds | 9b7530cc | 2008-10-20 14:16:43 -0700 | [diff] [blame] | 1193 | */ |
Linus Torvalds | 9b7530cc | 2008-10-20 14:16:43 -0700 | [diff] [blame] | 1194 | |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1195 | static inline int |
| 1196 | fast_user_write(struct io_mapping *mapping, |
| 1197 | loff_t page_base, int page_offset, |
| 1198 | char __user *user_data, |
| 1199 | int length) |
| 1200 | { |
Ben Widawsky | 4f0c7cf | 2012-04-16 14:07:47 -0700 | [diff] [blame] | 1201 | void __iomem *vaddr_atomic; |
| 1202 | void *vaddr; |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1203 | unsigned long unwritten; |
| 1204 | |
Peter Zijlstra | 3e4d3af | 2010-10-26 14:21:51 -0700 | [diff] [blame] | 1205 | vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base); |
Ben Widawsky | 4f0c7cf | 2012-04-16 14:07:47 -0700 | [diff] [blame] | 1206 | /* We can use the cpu mem copy function because this is X86. */ |
| 1207 | vaddr = (void __force*)vaddr_atomic + page_offset; |
| 1208 | unwritten = __copy_from_user_inatomic_nocache(vaddr, |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1209 | user_data, length); |
Peter Zijlstra | 3e4d3af | 2010-10-26 14:21:51 -0700 | [diff] [blame] | 1210 | io_mapping_unmap_atomic(vaddr_atomic); |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1211 | return unwritten; |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1212 | } |
| 1213 | |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1214 | /** |
| 1215 | * This is the fast pwrite path, where we copy the data directly from the |
| 1216 | * user into the GTT, uncached. |
Daniel Vetter | 62f90b3 | 2016-07-15 21:48:07 +0200 | [diff] [blame] | 1217 | * @i915: i915 device private data |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1218 | * @obj: i915 gem object |
| 1219 | * @args: pwrite arguments structure |
| 1220 | * @file: drm file pointer |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1221 | */ |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1222 | static int |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1223 | i915_gem_gtt_pwrite_fast(struct drm_i915_private *i915, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1224 | struct drm_i915_gem_object *obj, |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1225 | struct drm_i915_gem_pwrite *args, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1226 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1227 | { |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1228 | struct i915_ggtt *ggtt = &i915->ggtt; |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1229 | struct drm_device *dev = obj->base.dev; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1230 | struct i915_vma *vma; |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1231 | struct drm_mm_node node; |
| 1232 | uint64_t remain, offset; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1233 | char __user *user_data; |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1234 | int ret; |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1235 | bool hit_slow_path = false; |
| 1236 | |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 1237 | if (i915_gem_object_is_tiled(obj)) |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1238 | return -EFAULT; |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1239 | |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1240 | intel_runtime_pm_get(i915); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1241 | vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, |
Chris Wilson | de89508 | 2016-08-04 16:32:34 +0100 | [diff] [blame] | 1242 | PIN_MAPPABLE | PIN_NONBLOCK); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 1243 | if (!IS_ERR(vma)) { |
| 1244 | node.start = i915_ggtt_offset(vma); |
| 1245 | node.allocated = false; |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 1246 | ret = i915_vma_put_fence(vma); |
Chris Wilson | 1803458 | 2016-08-18 17:16:45 +0100 | [diff] [blame] | 1247 | if (ret) { |
| 1248 | i915_vma_unpin(vma); |
| 1249 | vma = ERR_PTR(ret); |
| 1250 | } |
| 1251 | } |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1252 | if (IS_ERR(vma)) { |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1253 | ret = insert_mappable_node(i915, &node, PAGE_SIZE); |
| 1254 | if (ret) |
| 1255 | goto out; |
| 1256 | |
| 1257 | ret = i915_gem_object_get_pages(obj); |
| 1258 | if (ret) { |
| 1259 | remove_mappable_node(&node); |
| 1260 | goto out; |
| 1261 | } |
| 1262 | |
| 1263 | i915_gem_object_pin_pages(obj); |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1264 | } |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1265 | |
| 1266 | ret = i915_gem_object_set_to_gtt_domain(obj, true); |
| 1267 | if (ret) |
| 1268 | goto out_unpin; |
| 1269 | |
Chris Wilson | b19482d | 2016-08-18 17:16:43 +0100 | [diff] [blame] | 1270 | intel_fb_obj_invalidate(obj, ORIGIN_CPU); |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1271 | obj->dirty = true; |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 1272 | |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1273 | user_data = u64_to_user_ptr(args->data_ptr); |
| 1274 | offset = args->offset; |
| 1275 | remain = args->size; |
| 1276 | while (remain) { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1277 | /* Operation in this page |
| 1278 | * |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1279 | * page_base = page offset within aperture |
| 1280 | * page_offset = offset within page |
| 1281 | * page_length = bytes to copy for this page |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1282 | */ |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1283 | u32 page_base = node.start; |
| 1284 | unsigned page_offset = offset_in_page(offset); |
| 1285 | unsigned page_length = PAGE_SIZE - page_offset; |
| 1286 | page_length = remain < page_length ? remain : page_length; |
| 1287 | if (node.allocated) { |
| 1288 | wmb(); /* flush the write before we modify the GGTT */ |
| 1289 | ggtt->base.insert_page(&ggtt->base, |
| 1290 | i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT), |
| 1291 | node.start, I915_CACHE_NONE, 0); |
| 1292 | wmb(); /* flush modifications to the GGTT (insert_page) */ |
| 1293 | } else { |
| 1294 | page_base += offset & PAGE_MASK; |
| 1295 | } |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1296 | /* If we get a fault while copying data, then (presumably) our |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1297 | * source page isn't available. Return the error and we'll |
| 1298 | * retry in the slow path. |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1299 | * If the object is non-shmem backed, we retry again with the |
| 1300 | * path that handles page fault. |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1301 | */ |
Chris Wilson | f7bbe78 | 2016-08-19 16:54:27 +0100 | [diff] [blame] | 1302 | if (fast_user_write(&ggtt->mappable, page_base, |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1303 | page_offset, user_data, page_length)) { |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1304 | hit_slow_path = true; |
| 1305 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | f7bbe78 | 2016-08-19 16:54:27 +0100 | [diff] [blame] | 1306 | if (slow_user_access(&ggtt->mappable, |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1307 | page_base, |
| 1308 | page_offset, user_data, |
| 1309 | page_length, true)) { |
| 1310 | ret = -EFAULT; |
| 1311 | mutex_lock(&dev->struct_mutex); |
| 1312 | goto out_flush; |
| 1313 | } |
| 1314 | |
| 1315 | mutex_lock(&dev->struct_mutex); |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1316 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1317 | |
Keith Packard | 0839ccb | 2008-10-30 19:38:48 -0700 | [diff] [blame] | 1318 | remain -= page_length; |
| 1319 | user_data += page_length; |
| 1320 | offset += page_length; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1321 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1322 | |
Paulo Zanoni | 063e4e6 | 2015-02-13 17:23:45 -0200 | [diff] [blame] | 1323 | out_flush: |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1324 | if (hit_slow_path) { |
| 1325 | if (ret == 0 && |
| 1326 | (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) { |
| 1327 | /* The user has modified the object whilst we tried |
| 1328 | * reading from it, and we now have no idea what domain |
| 1329 | * the pages should be in. As we have just been touching |
| 1330 | * them directly, flush everything back to the GTT |
| 1331 | * domain. |
| 1332 | */ |
| 1333 | ret = i915_gem_object_set_to_gtt_domain(obj, false); |
| 1334 | } |
| 1335 | } |
| 1336 | |
Chris Wilson | b19482d | 2016-08-18 17:16:43 +0100 | [diff] [blame] | 1337 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1338 | out_unpin: |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1339 | if (node.allocated) { |
| 1340 | wmb(); |
| 1341 | ggtt->base.clear_range(&ggtt->base, |
Michał Winiarski | 4fb84d9 | 2016-10-13 14:02:40 +0200 | [diff] [blame] | 1342 | node.start, node.size); |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1343 | i915_gem_object_unpin_pages(obj); |
| 1344 | remove_mappable_node(&node); |
| 1345 | } else { |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1346 | i915_vma_unpin(vma); |
Ankitprasad Sharma | 4f1959e | 2016-06-10 14:23:01 +0530 | [diff] [blame] | 1347 | } |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1348 | out: |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1349 | intel_runtime_pm_put(i915); |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1350 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1353 | /* Per-page copy function for the shmem pwrite fastpath. |
| 1354 | * Flushes invalid cachelines before writing to the target if |
| 1355 | * needs_clflush_before is set and flushes out any written cachelines after |
| 1356 | * writing if needs_clflush is set. */ |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1357 | static int |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1358 | shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length, |
| 1359 | char __user *user_data, |
| 1360 | bool page_do_bit17_swizzling, |
| 1361 | bool needs_clflush_before, |
| 1362 | bool needs_clflush_after) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1363 | { |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1364 | char *vaddr; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1365 | int ret; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1366 | |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 1367 | if (unlikely(page_do_bit17_swizzling)) |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1368 | return -EINVAL; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1369 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1370 | vaddr = kmap_atomic(page); |
| 1371 | if (needs_clflush_before) |
| 1372 | drm_clflush_virt_range(vaddr + shmem_page_offset, |
| 1373 | page_length); |
Chris Wilson | c2831a9 | 2014-03-07 08:30:37 +0000 | [diff] [blame] | 1374 | ret = __copy_from_user_inatomic(vaddr + shmem_page_offset, |
| 1375 | user_data, page_length); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1376 | if (needs_clflush_after) |
| 1377 | drm_clflush_virt_range(vaddr + shmem_page_offset, |
| 1378 | page_length); |
| 1379 | kunmap_atomic(vaddr); |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1380 | |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1381 | return ret ? -EFAULT : 0; |
Eric Anholt | 3de09aa | 2009-03-09 09:42:23 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1384 | /* Only difference to the fast-path function is that this can handle bit17 |
| 1385 | * and uses non-atomic copy and kmap functions. */ |
Eric Anholt | 3043c60 | 2008-10-02 12:24:47 -0700 | [diff] [blame] | 1386 | static int |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1387 | shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length, |
| 1388 | char __user *user_data, |
| 1389 | bool page_do_bit17_swizzling, |
| 1390 | bool needs_clflush_before, |
| 1391 | bool needs_clflush_after) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1392 | { |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1393 | char *vaddr; |
| 1394 | int ret; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1395 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1396 | vaddr = kmap(page); |
Daniel Vetter | e7e58eb | 2012-03-25 19:47:43 +0200 | [diff] [blame] | 1397 | if (unlikely(needs_clflush_before || page_do_bit17_swizzling)) |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 1398 | shmem_clflush_swizzled_range(vaddr + shmem_page_offset, |
| 1399 | page_length, |
| 1400 | page_do_bit17_swizzling); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1401 | if (page_do_bit17_swizzling) |
| 1402 | ret = __copy_from_user_swizzled(vaddr, shmem_page_offset, |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 1403 | user_data, |
| 1404 | page_length); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1405 | else |
| 1406 | ret = __copy_from_user(vaddr + shmem_page_offset, |
| 1407 | user_data, |
| 1408 | page_length); |
| 1409 | if (needs_clflush_after) |
Daniel Vetter | 23c18c7 | 2012-03-25 19:47:42 +0200 | [diff] [blame] | 1410 | shmem_clflush_swizzled_range(vaddr + shmem_page_offset, |
| 1411 | page_length, |
| 1412 | page_do_bit17_swizzling); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1413 | kunmap(page); |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 1414 | |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1415 | return ret ? -EFAULT : 0; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1416 | } |
| 1417 | |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1418 | static int |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1419 | i915_gem_shmem_pwrite(struct drm_device *dev, |
| 1420 | struct drm_i915_gem_object *obj, |
| 1421 | struct drm_i915_gem_pwrite *args, |
| 1422 | struct drm_file *file) |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1423 | { |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1424 | ssize_t remain; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1425 | loff_t offset; |
| 1426 | char __user *user_data; |
Ben Widawsky | eb2c0c8 | 2012-02-15 14:42:43 +0100 | [diff] [blame] | 1427 | int shmem_page_offset, page_length, ret = 0; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1428 | int obj_do_bit17_swizzling, page_do_bit17_swizzling; |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1429 | int hit_slowpath = 0; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1430 | unsigned int needs_clflush; |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1431 | struct sg_page_iter sg_iter; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1432 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1433 | ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush); |
| 1434 | if (ret) |
| 1435 | return ret; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1436 | |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1437 | obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj); |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1438 | user_data = u64_to_user_ptr(args->data_ptr); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1439 | offset = args->offset; |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1440 | remain = args->size; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1441 | |
Imre Deak | 67d5a50 | 2013-02-18 19:28:02 +0200 | [diff] [blame] | 1442 | for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, |
| 1443 | offset >> PAGE_SHIFT) { |
Imre Deak | 2db76d7 | 2013-03-26 15:14:18 +0200 | [diff] [blame] | 1444 | struct page *page = sg_page_iter_page(&sg_iter); |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1445 | int partial_cacheline_write; |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 1446 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 1447 | if (remain <= 0) |
| 1448 | break; |
| 1449 | |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1450 | /* Operation in this page |
| 1451 | * |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1452 | * shmem_page_offset = offset within page in shmem file |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1453 | * page_length = bytes to copy for this page |
| 1454 | */ |
Chris Wilson | c8cbbb8 | 2011-05-12 22:17:11 +0100 | [diff] [blame] | 1455 | shmem_page_offset = offset_in_page(offset); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1456 | |
| 1457 | page_length = remain; |
| 1458 | if ((shmem_page_offset + page_length) > PAGE_SIZE) |
| 1459 | page_length = PAGE_SIZE - shmem_page_offset; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1460 | |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1461 | /* If we don't overwrite a cacheline completely we need to be |
| 1462 | * careful to have up-to-date data by first clflushing. Don't |
| 1463 | * overcomplicate things and flush the entire patch. */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1464 | partial_cacheline_write = needs_clflush & CLFLUSH_BEFORE && |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1465 | ((shmem_page_offset | page_length) |
| 1466 | & (boot_cpu_data.x86_clflush_size - 1)); |
| 1467 | |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1468 | page_do_bit17_swizzling = obj_do_bit17_swizzling && |
| 1469 | (page_to_phys(page) & (1 << 17)) != 0; |
| 1470 | |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1471 | ret = shmem_pwrite_fast(page, shmem_page_offset, page_length, |
| 1472 | user_data, page_do_bit17_swizzling, |
| 1473 | partial_cacheline_write, |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1474 | needs_clflush & CLFLUSH_AFTER); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1475 | if (ret == 0) |
| 1476 | goto next_page; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1477 | |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1478 | hit_slowpath = 1; |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1479 | mutex_unlock(&dev->struct_mutex); |
Daniel Vetter | d174bd6 | 2012-03-25 19:47:40 +0200 | [diff] [blame] | 1480 | ret = shmem_pwrite_slow(page, shmem_page_offset, page_length, |
| 1481 | user_data, page_do_bit17_swizzling, |
| 1482 | partial_cacheline_write, |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1483 | needs_clflush & CLFLUSH_AFTER); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1484 | |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1485 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1486 | |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1487 | if (ret) |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1488 | goto out; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1489 | |
Chris Wilson | 17793c9 | 2014-03-07 08:30:36 +0000 | [diff] [blame] | 1490 | next_page: |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1491 | remain -= page_length; |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1492 | user_data += page_length; |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1493 | offset += page_length; |
| 1494 | } |
| 1495 | |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1496 | out: |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1497 | i915_gem_obj_finish_shmem_access(obj); |
Chris Wilson | 755d221 | 2012-09-04 21:02:55 +0100 | [diff] [blame] | 1498 | |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1499 | if (hit_slowpath) { |
Daniel Vetter | 8dcf015 | 2012-11-15 16:53:58 +0100 | [diff] [blame] | 1500 | /* |
| 1501 | * Fixup: Flush cpu caches in case we didn't flush the dirty |
| 1502 | * cachelines in-line while writing and the object moved |
| 1503 | * out of the cpu write domain while we've dropped the lock. |
| 1504 | */ |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1505 | if (!(needs_clflush & CLFLUSH_AFTER) && |
Daniel Vetter | 8dcf015 | 2012-11-15 16:53:58 +0100 | [diff] [blame] | 1506 | obj->base.write_domain != I915_GEM_DOMAIN_CPU) { |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 1507 | if (i915_gem_clflush_object(obj, obj->pin_display)) |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1508 | needs_clflush |= CLFLUSH_AFTER; |
Daniel Vetter | e244a44 | 2012-03-25 19:47:28 +0200 | [diff] [blame] | 1509 | } |
Daniel Vetter | 8c59967 | 2011-12-14 13:57:31 +0100 | [diff] [blame] | 1510 | } |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1511 | |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1512 | if (needs_clflush & CLFLUSH_AFTER) |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1513 | i915_gem_chipset_flush(to_i915(dev)); |
Daniel Vetter | 5864288 | 2012-03-25 19:47:37 +0200 | [diff] [blame] | 1514 | |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 1515 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Eric Anholt | 40123c1 | 2009-03-09 13:42:30 -0700 | [diff] [blame] | 1516 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1517 | } |
| 1518 | |
| 1519 | /** |
| 1520 | * Writes data to the object referenced by handle. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1521 | * @dev: drm device |
| 1522 | * @data: ioctl data blob |
| 1523 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1524 | * |
| 1525 | * On error, the contents of the buffer that were to be modified are undefined. |
| 1526 | */ |
| 1527 | int |
| 1528 | i915_gem_pwrite_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1529 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1530 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 1531 | struct drm_i915_private *dev_priv = to_i915(dev); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1532 | struct drm_i915_gem_pwrite *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1533 | struct drm_i915_gem_object *obj; |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1534 | int ret; |
| 1535 | |
| 1536 | if (args->size == 0) |
| 1537 | return 0; |
| 1538 | |
| 1539 | if (!access_ok(VERIFY_READ, |
Gustavo Padovan | 3ed605b | 2016-04-26 12:32:27 -0300 | [diff] [blame] | 1540 | u64_to_user_ptr(args->data_ptr), |
Chris Wilson | 51311d0 | 2010-11-17 09:10:42 +0000 | [diff] [blame] | 1541 | args->size)) |
| 1542 | return -EFAULT; |
| 1543 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 1544 | if (likely(!i915.prefault_disable)) { |
Al Viro | 4bce9f6 | 2016-09-17 18:02:44 -0400 | [diff] [blame] | 1545 | ret = fault_in_pages_readable(u64_to_user_ptr(args->data_ptr), |
Xiong Zhang | 0b74b50 | 2013-07-19 13:51:24 +0800 | [diff] [blame] | 1546 | args->size); |
| 1547 | if (ret) |
| 1548 | return -EFAULT; |
| 1549 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1550 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1551 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1552 | if (!obj) |
| 1553 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1554 | |
Chris Wilson | 7dcd249 | 2010-09-26 20:21:44 +0100 | [diff] [blame] | 1555 | /* Bounds check destination. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1556 | if (args->offset > obj->base.size || |
| 1557 | args->size > obj->base.size - args->offset) { |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1558 | ret = -EINVAL; |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1559 | goto err; |
Chris Wilson | ce9d419 | 2010-09-26 20:50:05 +0100 | [diff] [blame] | 1560 | } |
| 1561 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1562 | trace_i915_gem_object_pwrite(obj, args->offset, args->size); |
| 1563 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1564 | ret = i915_gem_object_wait(obj, |
| 1565 | I915_WAIT_INTERRUPTIBLE | |
| 1566 | I915_WAIT_ALL, |
| 1567 | MAX_SCHEDULE_TIMEOUT, |
| 1568 | to_rps_client(file)); |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1569 | if (ret) |
| 1570 | goto err; |
| 1571 | |
| 1572 | intel_runtime_pm_get(dev_priv); |
| 1573 | |
| 1574 | ret = i915_mutex_lock_interruptible(dev); |
| 1575 | if (ret) |
| 1576 | goto err_rpm; |
| 1577 | |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1578 | ret = -EFAULT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1579 | /* We can only do the GTT pwrite on untiled buffers, as otherwise |
| 1580 | * it would end up going through the fenced access, and we'll get |
| 1581 | * different detiling behavior between reading and writing. |
| 1582 | * pread/pwrite currently are reading and writing from the CPU |
| 1583 | * perspective, requiring manual detiling by the client. |
| 1584 | */ |
Chris Wilson | 6eae005 | 2016-06-20 15:05:52 +0100 | [diff] [blame] | 1585 | if (!i915_gem_object_has_struct_page(obj) || |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1586 | cpu_write_needs_clflush(obj)) |
Daniel Vetter | 935aaa6 | 2012-03-25 19:47:35 +0200 | [diff] [blame] | 1587 | /* Note that the gtt paths might fail with non-page-backed user |
| 1588 | * pointers (e.g. gtt mappings when moving data between |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1589 | * textures). Fallback to the shmem path in that case. |
| 1590 | */ |
| 1591 | ret = i915_gem_gtt_pwrite_fast(dev_priv, obj, args, file); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1592 | |
Chris Wilson | d1054ee | 2016-07-16 18:42:36 +0100 | [diff] [blame] | 1593 | if (ret == -EFAULT || ret == -ENOSPC) { |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 1594 | if (obj->phys_handle) |
| 1595 | ret = i915_gem_phys_pwrite(obj, args, file); |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 1596 | else |
Chris Wilson | 43394c7 | 2016-08-18 17:16:47 +0100 | [diff] [blame] | 1597 | ret = i915_gem_shmem_pwrite(dev, obj, args, file); |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 1598 | } |
Daniel Vetter | 5c0480f | 2011-12-14 13:57:30 +0100 | [diff] [blame] | 1599 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 1600 | i915_gem_object_put(obj); |
Chris Wilson | fbd5a26 | 2010-10-14 15:03:58 +0100 | [diff] [blame] | 1601 | mutex_unlock(&dev->struct_mutex); |
Imre Deak | 5d77d9c | 2014-11-12 16:40:35 +0200 | [diff] [blame] | 1602 | intel_runtime_pm_put(dev_priv); |
| 1603 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1604 | return ret; |
Chris Wilson | 258a5ed | 2016-08-05 10:14:16 +0100 | [diff] [blame] | 1605 | |
| 1606 | err_rpm: |
| 1607 | intel_runtime_pm_put(dev_priv); |
| 1608 | err: |
| 1609 | i915_gem_object_put_unlocked(obj); |
| 1610 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1611 | } |
| 1612 | |
Chris Wilson | d243ad8 | 2016-08-18 17:16:44 +0100 | [diff] [blame] | 1613 | static inline enum fb_op_origin |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1614 | write_origin(struct drm_i915_gem_object *obj, unsigned domain) |
| 1615 | { |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 1616 | return (domain == I915_GEM_DOMAIN_GTT ? |
| 1617 | obj->frontbuffer_ggtt_origin : ORIGIN_CPU); |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1618 | } |
| 1619 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1620 | /** |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1621 | * Called when user space prepares to use an object with the CPU, either |
| 1622 | * through the mmap ioctl's mapping or a GTT mapping. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1623 | * @dev: drm device |
| 1624 | * @data: ioctl data blob |
| 1625 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1626 | */ |
| 1627 | int |
| 1628 | i915_gem_set_domain_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1629 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1630 | { |
| 1631 | struct drm_i915_gem_set_domain *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1632 | struct drm_i915_gem_object *obj; |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1633 | uint32_t read_domains = args->read_domains; |
| 1634 | uint32_t write_domain = args->write_domain; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1635 | int ret; |
| 1636 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1637 | /* Only handle setting domains to types used by the CPU. */ |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1638 | if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS) |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1639 | return -EINVAL; |
| 1640 | |
| 1641 | /* Having something in the write domain implies it's in the read |
| 1642 | * domain, and only that read domain. Enforce that in the request. |
| 1643 | */ |
| 1644 | if (write_domain != 0 && read_domains != write_domain) |
| 1645 | return -EINVAL; |
| 1646 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1647 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1648 | if (!obj) |
| 1649 | return -ENOENT; |
Jesse Barnes | 652c393 | 2009-08-17 13:31:43 -0700 | [diff] [blame] | 1650 | |
Chris Wilson | 3236f57 | 2012-08-24 09:35:09 +0100 | [diff] [blame] | 1651 | /* Try to flush the object off the GPU without holding the lock. |
| 1652 | * We will repeat the flush holding the lock in the normal manner |
| 1653 | * to catch cases where we are gazumped. |
| 1654 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1655 | ret = i915_gem_object_wait(obj, |
| 1656 | I915_WAIT_INTERRUPTIBLE | |
| 1657 | (write_domain ? I915_WAIT_ALL : 0), |
| 1658 | MAX_SCHEDULE_TIMEOUT, |
| 1659 | to_rps_client(file)); |
Chris Wilson | 3236f57 | 2012-08-24 09:35:09 +0100 | [diff] [blame] | 1660 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1661 | goto err; |
| 1662 | |
| 1663 | ret = i915_mutex_lock_interruptible(dev); |
| 1664 | if (ret) |
| 1665 | goto err; |
Chris Wilson | 3236f57 | 2012-08-24 09:35:09 +0100 | [diff] [blame] | 1666 | |
Chris Wilson | 43566de | 2015-01-02 16:29:29 +0530 | [diff] [blame] | 1667 | if (read_domains & I915_GEM_DOMAIN_GTT) |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1668 | ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0); |
Chris Wilson | 43566de | 2015-01-02 16:29:29 +0530 | [diff] [blame] | 1669 | else |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 1670 | ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0); |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 1671 | |
Daniel Vetter | 031b698 | 2015-06-26 19:35:16 +0200 | [diff] [blame] | 1672 | if (write_domain != 0) |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1673 | intel_fb_obj_invalidate(obj, write_origin(obj, write_domain)); |
Daniel Vetter | 031b698 | 2015-06-26 19:35:16 +0200 | [diff] [blame] | 1674 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 1675 | i915_gem_object_put(obj); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1676 | mutex_unlock(&dev->struct_mutex); |
| 1677 | return ret; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1678 | |
| 1679 | err: |
| 1680 | i915_gem_object_put_unlocked(obj); |
| 1681 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1682 | } |
| 1683 | |
| 1684 | /** |
| 1685 | * Called when user space has done writes to this buffer |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1686 | * @dev: drm device |
| 1687 | * @data: ioctl data blob |
| 1688 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1689 | */ |
| 1690 | int |
| 1691 | i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1692 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1693 | { |
| 1694 | struct drm_i915_gem_sw_finish *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1695 | struct drm_i915_gem_object *obj; |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1696 | int err = 0; |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 1697 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1698 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1699 | if (!obj) |
| 1700 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1701 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1702 | /* Pinned buffers may be scanout, so flush the cache */ |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1703 | if (READ_ONCE(obj->pin_display)) { |
| 1704 | err = i915_mutex_lock_interruptible(dev); |
| 1705 | if (!err) { |
| 1706 | i915_gem_object_flush_cpu_write_domain(obj); |
| 1707 | mutex_unlock(&dev->struct_mutex); |
| 1708 | } |
| 1709 | } |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 1710 | |
Chris Wilson | c21724c | 2016-08-05 10:14:19 +0100 | [diff] [blame] | 1711 | i915_gem_object_put_unlocked(obj); |
| 1712 | return err; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1713 | } |
| 1714 | |
| 1715 | /** |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1716 | * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address |
| 1717 | * it is mapped to. |
| 1718 | * @dev: drm device |
| 1719 | * @data: ioctl data blob |
| 1720 | * @file: drm file |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1721 | * |
| 1722 | * While the mapping holds a reference on the contents of the object, it doesn't |
| 1723 | * imply a ref on the object itself. |
Daniel Vetter | 3436738 | 2014-10-16 12:28:18 +0200 | [diff] [blame] | 1724 | * |
| 1725 | * IMPORTANT: |
| 1726 | * |
| 1727 | * DRM driver writers who look a this function as an example for how to do GEM |
| 1728 | * mmap support, please don't implement mmap support like here. The modern way |
| 1729 | * to implement DRM mmap support is with an mmap offset ioctl (like |
| 1730 | * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly. |
| 1731 | * That way debug tooling like valgrind will understand what's going on, hiding |
| 1732 | * the mmap call in a driver private ioctl will break that. The i915 driver only |
| 1733 | * does cpu mmaps this way because we didn't know better. |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1734 | */ |
| 1735 | int |
| 1736 | i915_gem_mmap_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1737 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1738 | { |
| 1739 | struct drm_i915_gem_mmap *args = data; |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1740 | struct drm_i915_gem_object *obj; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1741 | unsigned long addr; |
| 1742 | |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1743 | if (args->flags & ~(I915_MMAP_WC)) |
| 1744 | return -EINVAL; |
| 1745 | |
Borislav Petkov | 568a58e | 2016-03-29 17:42:01 +0200 | [diff] [blame] | 1746 | if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT)) |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1747 | return -ENODEV; |
| 1748 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1749 | obj = i915_gem_object_lookup(file, args->handle); |
| 1750 | if (!obj) |
Chris Wilson | bf79cb9 | 2010-08-04 14:19:46 +0100 | [diff] [blame] | 1751 | return -ENOENT; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1752 | |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 1753 | /* prime objects have no backing filp to GEM mmap |
| 1754 | * pages from. |
| 1755 | */ |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1756 | if (!obj->base.filp) { |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 1757 | i915_gem_object_put_unlocked(obj); |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 1758 | return -EINVAL; |
| 1759 | } |
| 1760 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 1761 | addr = vm_mmap(obj->base.filp, 0, args->size, |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1762 | PROT_READ | PROT_WRITE, MAP_SHARED, |
| 1763 | args->offset); |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1764 | if (args->flags & I915_MMAP_WC) { |
| 1765 | struct mm_struct *mm = current->mm; |
| 1766 | struct vm_area_struct *vma; |
| 1767 | |
Michal Hocko | 80a89a5 | 2016-05-23 16:26:11 -0700 | [diff] [blame] | 1768 | if (down_write_killable(&mm->mmap_sem)) { |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 1769 | i915_gem_object_put_unlocked(obj); |
Michal Hocko | 80a89a5 | 2016-05-23 16:26:11 -0700 | [diff] [blame] | 1770 | return -EINTR; |
| 1771 | } |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1772 | vma = find_vma(mm, addr); |
| 1773 | if (vma) |
| 1774 | vma->vm_page_prot = |
| 1775 | pgprot_writecombine(vm_get_page_prot(vma->vm_flags)); |
| 1776 | else |
| 1777 | addr = -ENOMEM; |
| 1778 | up_write(&mm->mmap_sem); |
Chris Wilson | aeecc96 | 2016-06-17 14:46:39 -0300 | [diff] [blame] | 1779 | |
| 1780 | /* This may race, but that's ok, it only gets set */ |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 1781 | WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU); |
Akash Goel | 1816f92 | 2015-01-02 16:29:30 +0530 | [diff] [blame] | 1782 | } |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 1783 | i915_gem_object_put_unlocked(obj); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 1784 | if (IS_ERR((void *)addr)) |
| 1785 | return addr; |
| 1786 | |
| 1787 | args->addr_ptr = (uint64_t) addr; |
| 1788 | |
| 1789 | return 0; |
| 1790 | } |
| 1791 | |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1792 | static unsigned int tile_row_pages(struct drm_i915_gem_object *obj) |
| 1793 | { |
| 1794 | u64 size; |
| 1795 | |
| 1796 | size = i915_gem_object_get_stride(obj); |
| 1797 | size *= i915_gem_object_get_tiling(obj) == I915_TILING_Y ? 32 : 8; |
| 1798 | |
| 1799 | return size >> PAGE_SHIFT; |
| 1800 | } |
| 1801 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1802 | /** |
Chris Wilson | 4cc6907 | 2016-08-25 19:05:19 +0100 | [diff] [blame] | 1803 | * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps |
| 1804 | * |
| 1805 | * A history of the GTT mmap interface: |
| 1806 | * |
| 1807 | * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to |
| 1808 | * aligned and suitable for fencing, and still fit into the available |
| 1809 | * mappable space left by the pinned display objects. A classic problem |
| 1810 | * we called the page-fault-of-doom where we would ping-pong between |
| 1811 | * two objects that could not fit inside the GTT and so the memcpy |
| 1812 | * would page one object in at the expense of the other between every |
| 1813 | * single byte. |
| 1814 | * |
| 1815 | * 1 - Objects can be any size, and have any compatible fencing (X Y, or none |
| 1816 | * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the |
| 1817 | * object is too large for the available space (or simply too large |
| 1818 | * for the mappable aperture!), a view is created instead and faulted |
| 1819 | * into userspace. (This view is aligned and sized appropriately for |
| 1820 | * fenced access.) |
| 1821 | * |
| 1822 | * Restrictions: |
| 1823 | * |
| 1824 | * * snoopable objects cannot be accessed via the GTT. It can cause machine |
| 1825 | * hangs on some architectures, corruption on others. An attempt to service |
| 1826 | * a GTT page fault from a snoopable object will generate a SIGBUS. |
| 1827 | * |
| 1828 | * * the object must be able to fit into RAM (physical memory, though no |
| 1829 | * limited to the mappable aperture). |
| 1830 | * |
| 1831 | * |
| 1832 | * Caveats: |
| 1833 | * |
| 1834 | * * a new GTT page fault will synchronize rendering from the GPU and flush |
| 1835 | * all data to system memory. Subsequent access will not be synchronized. |
| 1836 | * |
| 1837 | * * all mappings are revoked on runtime device suspend. |
| 1838 | * |
| 1839 | * * there are only 8, 16 or 32 fence registers to share between all users |
| 1840 | * (older machines require fence register for display and blitter access |
| 1841 | * as well). Contention of the fence registers will cause the previous users |
| 1842 | * to be unmapped and any new access will generate new page faults. |
| 1843 | * |
| 1844 | * * running out of memory while servicing a fault may generate a SIGBUS, |
| 1845 | * rather than the expected SIGSEGV. |
| 1846 | */ |
| 1847 | int i915_gem_mmap_gtt_version(void) |
| 1848 | { |
| 1849 | return 1; |
| 1850 | } |
| 1851 | |
| 1852 | /** |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1853 | * i915_gem_fault - fault a page into the GTT |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1854 | * @area: CPU VMA in question |
Geliang Tang | d9072a3 | 2015-09-15 05:58:44 -0700 | [diff] [blame] | 1855 | * @vmf: fault info |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1856 | * |
| 1857 | * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped |
| 1858 | * from userspace. The fault handler takes care of binding the object to |
| 1859 | * the GTT (if needed), allocating and programming a fence register (again, |
| 1860 | * only if needed based on whether the old reg is still valid or the object |
| 1861 | * is tiled) and inserting a new PTE into the faulting process. |
| 1862 | * |
| 1863 | * Note that the faulting process may involve evicting existing objects |
| 1864 | * from the GTT and/or fence registers to make room. So performance may |
| 1865 | * suffer if the GTT working set is large or there are few fence registers |
| 1866 | * left. |
Chris Wilson | 4cc6907 | 2016-08-25 19:05:19 +0100 | [diff] [blame] | 1867 | * |
| 1868 | * The current feature set supported by i915_gem_fault() and thus GTT mmaps |
| 1869 | * 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] | 1870 | */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1871 | 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] | 1872 | { |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1873 | #define MIN_CHUNK_PAGES ((1 << 20) >> PAGE_SHIFT) /* 1 MiB */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1874 | 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] | 1875 | struct drm_device *dev = obj->base.dev; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 1876 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 1877 | struct i915_ggtt *ggtt = &dev_priv->ggtt; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1878 | bool write = !!(vmf->flags & FAULT_FLAG_WRITE); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1879 | struct i915_vma *vma; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1880 | pgoff_t page_offset; |
Chris Wilson | 8211887 | 2016-08-18 17:17:05 +0100 | [diff] [blame] | 1881 | unsigned int flags; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1882 | int ret; |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 1883 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1884 | /* We don't use vmf->pgoff since that has the fake offset */ |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1885 | page_offset = ((unsigned long)vmf->virtual_address - area->vm_start) >> |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1886 | PAGE_SHIFT; |
| 1887 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 1888 | trace_i915_gem_object_fault(obj, page_offset, true, write); |
| 1889 | |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1890 | /* 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] | 1891 | * Upon acquiring the lock, we will perform our sanity checks and then |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1892 | * repeat the flush holding the lock in the normal manner to catch cases |
| 1893 | * where we are gazumped. |
| 1894 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 1895 | ret = i915_gem_object_wait(obj, |
| 1896 | I915_WAIT_INTERRUPTIBLE, |
| 1897 | MAX_SCHEDULE_TIMEOUT, |
| 1898 | NULL); |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1899 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1900 | goto err; |
| 1901 | |
| 1902 | intel_runtime_pm_get(dev_priv); |
| 1903 | |
| 1904 | ret = i915_mutex_lock_interruptible(dev); |
| 1905 | if (ret) |
| 1906 | goto err_rpm; |
Chris Wilson | 6e4930f | 2014-02-07 18:37:06 -0200 | [diff] [blame] | 1907 | |
Chris Wilson | eb119bd | 2012-12-16 12:43:36 +0000 | [diff] [blame] | 1908 | /* Access to snoopable pages through the GTT is incoherent. */ |
| 1909 | if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) { |
Chris Wilson | ddeff6e | 2014-05-28 16:16:41 +0100 | [diff] [blame] | 1910 | ret = -EFAULT; |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1911 | goto err_unlock; |
Chris Wilson | eb119bd | 2012-12-16 12:43:36 +0000 | [diff] [blame] | 1912 | } |
| 1913 | |
Chris Wilson | 8211887 | 2016-08-18 17:17:05 +0100 | [diff] [blame] | 1914 | /* If the object is smaller than a couple of partial vma, it is |
| 1915 | * not worth only creating a single partial vma - we may as well |
| 1916 | * clear enough space for the full object. |
| 1917 | */ |
| 1918 | flags = PIN_MAPPABLE; |
| 1919 | if (obj->base.size > 2 * MIN_CHUNK_PAGES << PAGE_SHIFT) |
| 1920 | flags |= PIN_NONBLOCK | PIN_NONFAULT; |
| 1921 | |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1922 | /* Now pin it into the GTT as needed */ |
Chris Wilson | 8211887 | 2016-08-18 17:17:05 +0100 | [diff] [blame] | 1923 | vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, flags); |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1924 | if (IS_ERR(vma)) { |
| 1925 | struct i915_ggtt_view view; |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1926 | unsigned int chunk_size; |
| 1927 | |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1928 | /* Use a partial view if it is bigger than available space */ |
Chris Wilson | 03af84f | 2016-08-18 17:17:01 +0100 | [diff] [blame] | 1929 | chunk_size = MIN_CHUNK_PAGES; |
| 1930 | if (i915_gem_object_is_tiled(obj)) |
| 1931 | chunk_size = max(chunk_size, tile_row_pages(obj)); |
Joonas Lahtinen | e7ded2d | 2015-05-08 14:37:39 +0300 | [diff] [blame] | 1932 | |
Joonas Lahtinen | c5ad54c | 2015-05-06 14:36:09 +0300 | [diff] [blame] | 1933 | memset(&view, 0, sizeof(view)); |
| 1934 | view.type = I915_GGTT_VIEW_PARTIAL; |
| 1935 | view.params.partial.offset = rounddown(page_offset, chunk_size); |
| 1936 | view.params.partial.size = |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1937 | min_t(unsigned int, chunk_size, |
Chris Wilson | 908b123 | 2016-10-11 10:06:56 +0100 | [diff] [blame] | 1938 | vma_pages(area) - view.params.partial.offset); |
Joonas Lahtinen | c5ad54c | 2015-05-06 14:36:09 +0300 | [diff] [blame] | 1939 | |
Chris Wilson | aa136d9 | 2016-08-18 17:17:03 +0100 | [diff] [blame] | 1940 | /* If the partial covers the entire object, just create a |
| 1941 | * normal VMA. |
| 1942 | */ |
| 1943 | if (chunk_size >= obj->base.size >> PAGE_SHIFT) |
| 1944 | view.type = I915_GGTT_VIEW_NORMAL; |
| 1945 | |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 1946 | /* Userspace is now writing through an untracked VMA, abandon |
| 1947 | * all hope that the hardware is able to track future writes. |
| 1948 | */ |
| 1949 | obj->frontbuffer_ggtt_origin = ORIGIN_CPU; |
| 1950 | |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1951 | vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, PIN_MAPPABLE); |
| 1952 | } |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1953 | if (IS_ERR(vma)) { |
| 1954 | ret = PTR_ERR(vma); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1955 | goto err_unlock; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1956 | } |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1957 | |
Chris Wilson | c983930 | 2012-11-20 10:45:17 +0000 | [diff] [blame] | 1958 | ret = i915_gem_object_set_to_gtt_domain(obj, write); |
| 1959 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1960 | goto err_unpin; |
Chris Wilson | c983930 | 2012-11-20 10:45:17 +0000 | [diff] [blame] | 1961 | |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 1962 | ret = i915_vma_get_fence(vma); |
Chris Wilson | c983930 | 2012-11-20 10:45:17 +0000 | [diff] [blame] | 1963 | if (ret) |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1964 | goto err_unpin; |
Chris Wilson | 7d1c480 | 2010-08-07 21:45:03 +0100 | [diff] [blame] | 1965 | |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 1966 | /* Mark as being mmapped into userspace for later revocation */ |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 1967 | assert_rpm_wakelock_held(dev_priv); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 1968 | if (list_empty(&obj->userfault_link)) |
| 1969 | list_add(&obj->userfault_link, &dev_priv->mm.userfault_list); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 1970 | |
Chris Wilson | b90b91d | 2014-06-10 12:14:40 +0100 | [diff] [blame] | 1971 | /* Finally, remap it using the new GTT offset */ |
Chris Wilson | c58305a | 2016-08-19 16:54:28 +0100 | [diff] [blame] | 1972 | ret = remap_io_mapping(area, |
| 1973 | area->vm_start + (vma->ggtt_view.params.partial.offset << PAGE_SHIFT), |
| 1974 | (ggtt->mappable_base + vma->node.start) >> PAGE_SHIFT, |
| 1975 | min_t(u64, vma->size, area->vm_end - area->vm_start), |
| 1976 | &ggtt->mappable); |
Chris Wilson | a61007a | 2016-08-18 17:17:02 +0100 | [diff] [blame] | 1977 | |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1978 | err_unpin: |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 1979 | __i915_vma_unpin(vma); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1980 | err_unlock: |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1981 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | b8f9096 | 2016-08-05 10:14:07 +0100 | [diff] [blame] | 1982 | err_rpm: |
| 1983 | intel_runtime_pm_put(dev_priv); |
| 1984 | err: |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 1985 | switch (ret) { |
Chris Wilson | d9bc7e9 | 2011-02-07 13:09:31 +0000 | [diff] [blame] | 1986 | case -EIO: |
Daniel Vetter | 2232f03 | 2014-09-04 09:36:18 +0200 | [diff] [blame] | 1987 | /* |
| 1988 | * We eat errors when the gpu is terminally wedged to avoid |
| 1989 | * userspace unduly crashing (gl has no provisions for mmaps to |
| 1990 | * fail). But any other -EIO isn't ours (e.g. swap in failure) |
| 1991 | * and so needs to be reported. |
| 1992 | */ |
| 1993 | if (!i915_terminally_wedged(&dev_priv->gpu_error)) { |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 1994 | ret = VM_FAULT_SIGBUS; |
| 1995 | break; |
| 1996 | } |
Chris Wilson | 045e769 | 2010-11-07 09:18:22 +0000 | [diff] [blame] | 1997 | case -EAGAIN: |
Daniel Vetter | 571c608 | 2013-09-12 17:57:28 +0200 | [diff] [blame] | 1998 | /* |
| 1999 | * EAGAIN means the gpu is hung and we'll wait for the error |
| 2000 | * handler to reset everything when re-faulting in |
| 2001 | * i915_mutex_lock_interruptible. |
Chris Wilson | d9bc7e9 | 2011-02-07 13:09:31 +0000 | [diff] [blame] | 2002 | */ |
Chris Wilson | c715089 | 2009-09-23 00:43:56 +0100 | [diff] [blame] | 2003 | case 0: |
| 2004 | case -ERESTARTSYS: |
Chris Wilson | bed636a | 2011-02-11 20:31:19 +0000 | [diff] [blame] | 2005 | case -EINTR: |
Dmitry Rogozhkin | e79e0fe | 2012-10-03 17:15:26 +0300 | [diff] [blame] | 2006 | case -EBUSY: |
| 2007 | /* |
| 2008 | * EBUSY is ok: this just means that another thread |
| 2009 | * already did the job. |
| 2010 | */ |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2011 | ret = VM_FAULT_NOPAGE; |
| 2012 | break; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2013 | case -ENOMEM: |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2014 | ret = VM_FAULT_OOM; |
| 2015 | break; |
Daniel Vetter | a7c2e1a | 2012-10-17 11:17:16 +0200 | [diff] [blame] | 2016 | case -ENOSPC: |
Chris Wilson | 45d6781 | 2014-01-31 11:34:57 +0000 | [diff] [blame] | 2017 | case -EFAULT: |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2018 | ret = VM_FAULT_SIGBUS; |
| 2019 | break; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2020 | default: |
Daniel Vetter | a7c2e1a | 2012-10-17 11:17:16 +0200 | [diff] [blame] | 2021 | WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret); |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2022 | ret = VM_FAULT_SIGBUS; |
| 2023 | break; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2024 | } |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 2025 | return ret; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2026 | } |
| 2027 | |
| 2028 | /** |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2029 | * i915_gem_release_mmap - remove physical page mappings |
| 2030 | * @obj: obj in question |
| 2031 | * |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 2032 | * Preserve the reservation of the mmapping with the DRM core code, but |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2033 | * relinquish ownership of the pages back to the system. |
| 2034 | * |
| 2035 | * It is vital that we remove the page mapping if we have mapped a tiled |
| 2036 | * object through the GTT and then lose the fence register due to |
| 2037 | * resource pressure. Similarly if the object has been moved out of the |
| 2038 | * aperture, than pages mapped into userspace must be revoked. Removing the |
| 2039 | * mapping will then trigger a page fault on the next user access, allowing |
| 2040 | * fixup by i915_gem_fault(). |
| 2041 | */ |
Eric Anholt | d05ca30 | 2009-07-10 13:02:26 -0700 | [diff] [blame] | 2042 | void |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2043 | i915_gem_release_mmap(struct drm_i915_gem_object *obj) |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2044 | { |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2045 | struct drm_i915_private *i915 = to_i915(obj->base.dev); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2046 | |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2047 | /* Serialisation between user GTT access and our code depends upon |
| 2048 | * revoking the CPU's PTE whilst the mutex is held. The next user |
| 2049 | * pagefault then has to wait until we release the mutex. |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2050 | * |
| 2051 | * Note that RPM complicates somewhat by adding an additional |
| 2052 | * requirement that operations to the GGTT be made holding the RPM |
| 2053 | * wakeref. |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2054 | */ |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2055 | lockdep_assert_held(&i915->drm.struct_mutex); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2056 | intel_runtime_pm_get(i915); |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2057 | |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2058 | if (list_empty(&obj->userfault_link)) |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2059 | goto out; |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2060 | |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2061 | list_del_init(&obj->userfault_link); |
David Herrmann | 6796cb1 | 2014-01-03 14:24:19 +0100 | [diff] [blame] | 2062 | drm_vma_node_unmap(&obj->base.vma_node, |
| 2063 | obj->base.dev->anon_inode->i_mapping); |
Chris Wilson | 349f2cc | 2016-04-13 17:35:12 +0100 | [diff] [blame] | 2064 | |
| 2065 | /* Ensure that the CPU's PTE are revoked and there are not outstanding |
| 2066 | * memory transactions from userspace before we return. The TLB |
| 2067 | * flushing implied above by changing the PTE above *should* be |
| 2068 | * sufficient, an extra barrier here just provides us with a bit |
| 2069 | * of paranoid documentation about our requirement to serialise |
| 2070 | * memory writes before touching registers / GSM. |
| 2071 | */ |
| 2072 | wmb(); |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 2073 | |
| 2074 | out: |
| 2075 | intel_runtime_pm_put(i915); |
Chris Wilson | 901782b | 2009-07-10 08:18:50 +0100 | [diff] [blame] | 2076 | } |
| 2077 | |
Chris Wilson | 7c108fd | 2016-10-24 13:42:18 +0100 | [diff] [blame] | 2078 | void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv) |
Chris Wilson | eedd10f | 2014-06-16 08:57:44 +0100 | [diff] [blame] | 2079 | { |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2080 | struct drm_i915_gem_object *obj, *on; |
Chris Wilson | 7c108fd | 2016-10-24 13:42:18 +0100 | [diff] [blame] | 2081 | int i; |
Chris Wilson | eedd10f | 2014-06-16 08:57:44 +0100 | [diff] [blame] | 2082 | |
Chris Wilson | 3594a3e | 2016-10-24 13:42:16 +0100 | [diff] [blame] | 2083 | /* |
| 2084 | * Only called during RPM suspend. All users of the userfault_list |
| 2085 | * must be holding an RPM wakeref to ensure that this can not |
| 2086 | * run concurrently with themselves (and use the struct_mutex for |
| 2087 | * protection between themselves). |
| 2088 | */ |
| 2089 | |
| 2090 | list_for_each_entry_safe(obj, on, |
| 2091 | &dev_priv->mm.userfault_list, userfault_link) { |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2092 | list_del_init(&obj->userfault_link); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2093 | drm_vma_node_unmap(&obj->base.vma_node, |
| 2094 | obj->base.dev->anon_inode->i_mapping); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 2095 | } |
Chris Wilson | 7c108fd | 2016-10-24 13:42:18 +0100 | [diff] [blame] | 2096 | |
| 2097 | /* The fence will be lost when the device powers down. If any were |
| 2098 | * in use by hardware (i.e. they are pinned), we should not be powering |
| 2099 | * down! All other fences will be reacquired by the user upon waking. |
| 2100 | */ |
| 2101 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
| 2102 | struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i]; |
| 2103 | |
| 2104 | if (WARN_ON(reg->pin_count)) |
| 2105 | continue; |
| 2106 | |
| 2107 | if (!reg->vma) |
| 2108 | continue; |
| 2109 | |
| 2110 | GEM_BUG_ON(!list_empty(®->vma->obj->userfault_link)); |
| 2111 | reg->dirty = true; |
| 2112 | } |
Chris Wilson | eedd10f | 2014-06-16 08:57:44 +0100 | [diff] [blame] | 2113 | } |
| 2114 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2115 | /** |
| 2116 | * 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] | 2117 | * @dev_priv: i915 device |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2118 | * @size: object size |
| 2119 | * @tiling_mode: tiling mode |
| 2120 | * |
| 2121 | * Return the required global GTT size for an object, taking into account |
| 2122 | * potential fence register mapping. |
| 2123 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2124 | u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv, |
| 2125 | u64 size, int tiling_mode) |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2126 | { |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2127 | u64 ggtt_size; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2128 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2129 | GEM_BUG_ON(size == 0); |
| 2130 | |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2131 | if (INTEL_GEN(dev_priv) >= 4 || |
Chris Wilson | e28f871 | 2011-07-18 13:11:49 -0700 | [diff] [blame] | 2132 | tiling_mode == I915_TILING_NONE) |
| 2133 | return size; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2134 | |
| 2135 | /* Previous chips need a power-of-two fence region when tiling */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2136 | if (IS_GEN3(dev_priv)) |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2137 | ggtt_size = 1024*1024; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2138 | else |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2139 | ggtt_size = 512*1024; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2140 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2141 | while (ggtt_size < size) |
| 2142 | ggtt_size <<= 1; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2143 | |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2144 | return ggtt_size; |
Chris Wilson | 92b88ae | 2010-11-09 11:47:32 +0000 | [diff] [blame] | 2145 | } |
| 2146 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2147 | /** |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2148 | * i915_gem_get_ggtt_alignment - return required global GTT alignment |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2149 | * @dev_priv: i915 device |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 2150 | * @size: object size |
| 2151 | * @tiling_mode: tiling mode |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2152 | * @fenced: is fenced alignment required or not |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2153 | * |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2154 | * Return the required global GTT alignment for an object, taking into account |
Daniel Vetter | 5e78330 | 2010-11-14 22:32:36 +0100 | [diff] [blame] | 2155 | * potential fence register mapping. |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2156 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2157 | 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] | 2158 | int tiling_mode, bool fenced) |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2159 | { |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 2160 | GEM_BUG_ON(size == 0); |
| 2161 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2162 | /* |
| 2163 | * Minimum alignment is 4k (GTT page size), but might be greater |
| 2164 | * if a fence register is needed for the object. |
| 2165 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2166 | if (INTEL_GEN(dev_priv) >= 4 || (!fenced && IS_G33(dev_priv)) || |
Chris Wilson | e28f871 | 2011-07-18 13:11:49 -0700 | [diff] [blame] | 2167 | tiling_mode == I915_TILING_NONE) |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2168 | return 4096; |
| 2169 | |
| 2170 | /* |
| 2171 | * Previous chips need to be aligned to the size of the smallest |
| 2172 | * fence register that can contain the object. |
| 2173 | */ |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 2174 | return i915_gem_get_ggtt_size(dev_priv, size, tiling_mode); |
Chris Wilson | a00b10c | 2010-09-24 21:15:47 +0100 | [diff] [blame] | 2175 | } |
| 2176 | |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2177 | static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj) |
| 2178 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 2179 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2180 | int err; |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2181 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2182 | err = drm_gem_create_mmap_offset(&obj->base); |
| 2183 | if (!err) |
| 2184 | return 0; |
Daniel Vetter | da494d7 | 2012-12-20 15:11:16 +0100 | [diff] [blame] | 2185 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2186 | /* We can idle the GPU locklessly to flush stale objects, but in order |
| 2187 | * to claim that space for ourselves, we need to take the big |
| 2188 | * struct_mutex to free the requests+objects and allocate our slot. |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2189 | */ |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 2190 | err = i915_gem_wait_for_idle(dev_priv, I915_WAIT_INTERRUPTIBLE); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2191 | if (err) |
| 2192 | return err; |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2193 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2194 | err = i915_mutex_lock_interruptible(&dev_priv->drm); |
| 2195 | if (!err) { |
| 2196 | i915_gem_retire_requests(dev_priv); |
| 2197 | err = drm_gem_create_mmap_offset(&obj->base); |
| 2198 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 2199 | } |
Daniel Vetter | da494d7 | 2012-12-20 15:11:16 +0100 | [diff] [blame] | 2200 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2201 | return err; |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2202 | } |
| 2203 | |
| 2204 | static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj) |
| 2205 | { |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2206 | drm_gem_free_mmap_offset(&obj->base); |
| 2207 | } |
| 2208 | |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 2209 | int |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2210 | i915_gem_mmap_gtt(struct drm_file *file, |
| 2211 | struct drm_device *dev, |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 2212 | uint32_t handle, |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2213 | uint64_t *offset) |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2214 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2215 | struct drm_i915_gem_object *obj; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2216 | int ret; |
| 2217 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 2218 | obj = i915_gem_object_lookup(file, handle); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2219 | if (!obj) |
| 2220 | return -ENOENT; |
Chris Wilson | ab18282 | 2009-09-22 18:46:17 +0100 | [diff] [blame] | 2221 | |
Chris Wilson | d8cb508 | 2012-08-11 15:41:03 +0100 | [diff] [blame] | 2222 | ret = i915_gem_object_create_mmap_offset(obj); |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2223 | if (ret == 0) |
| 2224 | *offset = drm_vma_node_offset_addr(&obj->base.vma_node); |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2225 | |
Chris Wilson | f3f6184 | 2016-08-05 10:14:14 +0100 | [diff] [blame] | 2226 | i915_gem_object_put_unlocked(obj); |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 2227 | return ret; |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 2228 | } |
| 2229 | |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2230 | /** |
| 2231 | * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing |
| 2232 | * @dev: DRM device |
| 2233 | * @data: GTT mapping ioctl data |
| 2234 | * @file: GEM object info |
| 2235 | * |
| 2236 | * Simply returns the fake offset to userspace so it can mmap it. |
| 2237 | * The mmap call will end up in drm_gem_mmap(), which will set things |
| 2238 | * up so we can get faults in the handler above. |
| 2239 | * |
| 2240 | * The fault handler will take care of binding the object into the GTT |
| 2241 | * (since it may have been evicted to make room for something), allocating |
| 2242 | * a fence register, and mapping the appropriate aperture address into |
| 2243 | * userspace. |
| 2244 | */ |
| 2245 | int |
| 2246 | i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data, |
| 2247 | struct drm_file *file) |
| 2248 | { |
| 2249 | struct drm_i915_gem_mmap_gtt *args = data; |
| 2250 | |
Dave Airlie | da6b51d | 2014-12-24 13:11:17 +1000 | [diff] [blame] | 2251 | return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset); |
Dave Airlie | ff72145b | 2011-02-07 12:16:14 +1000 | [diff] [blame] | 2252 | } |
| 2253 | |
Daniel Vetter | 225067e | 2012-08-20 10:23:20 +0200 | [diff] [blame] | 2254 | /* Immediately discard the backing storage */ |
| 2255 | static void |
| 2256 | i915_gem_object_truncate(struct drm_i915_gem_object *obj) |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2257 | { |
Chris Wilson | 4d6294bf | 2012-08-11 15:41:05 +0100 | [diff] [blame] | 2258 | i915_gem_object_free_mmap_offset(obj); |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 2259 | |
Chris Wilson | 4d6294bf | 2012-08-11 15:41:05 +0100 | [diff] [blame] | 2260 | if (obj->base.filp == NULL) |
| 2261 | return; |
| 2262 | |
Daniel Vetter | 225067e | 2012-08-20 10:23:20 +0200 | [diff] [blame] | 2263 | /* Our goal here is to return as much of the memory as |
| 2264 | * is possible back to the system as we are called from OOM. |
| 2265 | * To do this we must instruct the shmfs to drop all of its |
| 2266 | * backing pages, *now*. |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2267 | */ |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2268 | shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1); |
Daniel Vetter | 225067e | 2012-08-20 10:23:20 +0200 | [diff] [blame] | 2269 | obj->madv = __I915_MADV_PURGED; |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2270 | } |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2271 | |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2272 | /* Try to discard unwanted pages */ |
| 2273 | static void |
| 2274 | i915_gem_object_invalidate(struct drm_i915_gem_object *obj) |
Daniel Vetter | 225067e | 2012-08-20 10:23:20 +0200 | [diff] [blame] | 2275 | { |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2276 | struct address_space *mapping; |
| 2277 | |
| 2278 | switch (obj->madv) { |
| 2279 | case I915_MADV_DONTNEED: |
| 2280 | i915_gem_object_truncate(obj); |
| 2281 | case __I915_MADV_PURGED: |
| 2282 | return; |
| 2283 | } |
| 2284 | |
| 2285 | if (obj->base.filp == NULL) |
| 2286 | return; |
| 2287 | |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 2288 | mapping = obj->base.filp->f_mapping, |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2289 | invalidate_mapping_pages(mapping, 0, (loff_t)-1); |
Chris Wilson | e5281cc | 2010-10-28 13:45:36 +0100 | [diff] [blame] | 2290 | } |
| 2291 | |
Chris Wilson | 5cdf588 | 2010-09-27 15:51:07 +0100 | [diff] [blame] | 2292 | static void |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2293 | i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2294 | { |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2295 | struct sgt_iter sgt_iter; |
| 2296 | struct page *page; |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2297 | int ret; |
Daniel Vetter | 1286ff7 | 2012-05-10 15:25:09 +0200 | [diff] [blame] | 2298 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2299 | BUG_ON(obj->madv == __I915_MADV_PURGED); |
Eric Anholt | 856fa19 | 2009-03-19 14:10:50 -0700 | [diff] [blame] | 2300 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2301 | ret = i915_gem_object_set_to_cpu_domain(obj, true); |
Chris Wilson | f4457ae | 2016-04-13 17:35:08 +0100 | [diff] [blame] | 2302 | if (WARN_ON(ret)) { |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2303 | /* In the event of a disaster, abandon all caches and |
| 2304 | * hope for the best. |
| 2305 | */ |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 2306 | i915_gem_clflush_object(obj, true); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2307 | obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
| 2308 | } |
| 2309 | |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2310 | i915_gem_gtt_finish_object(obj); |
| 2311 | |
Daniel Vetter | 6dacfd2 | 2011-09-12 21:30:02 +0200 | [diff] [blame] | 2312 | if (i915_gem_object_needs_bit17_swizzle(obj)) |
Eric Anholt | 280b713 | 2009-03-12 16:56:27 -0700 | [diff] [blame] | 2313 | i915_gem_object_save_bit_17_swizzle(obj); |
| 2314 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2315 | if (obj->madv == I915_MADV_DONTNEED) |
| 2316 | obj->dirty = 0; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 2317 | |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2318 | for_each_sgt_page(page, sgt_iter, obj->pages) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2319 | if (obj->dirty) |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2320 | set_page_dirty(page); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 2321 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2322 | if (obj->madv == I915_MADV_WILLNEED) |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2323 | mark_page_accessed(page); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 2324 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2325 | put_page(page); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 2326 | } |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2327 | obj->dirty = 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2328 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2329 | sg_free_table(obj->pages); |
| 2330 | kfree(obj->pages); |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2331 | } |
| 2332 | |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2333 | int |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2334 | i915_gem_object_put_pages(struct drm_i915_gem_object *obj) |
| 2335 | { |
| 2336 | const struct drm_i915_gem_object_ops *ops = obj->ops; |
| 2337 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 2338 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 2339 | |
Chris Wilson | 2f745ad | 2012-09-04 21:02:58 +0100 | [diff] [blame] | 2340 | if (obj->pages == NULL) |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2341 | return 0; |
| 2342 | |
Chris Wilson | a557017 | 2012-09-04 21:02:54 +0100 | [diff] [blame] | 2343 | if (obj->pages_pin_count) |
| 2344 | return -EBUSY; |
| 2345 | |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 2346 | GEM_BUG_ON(obj->bind_count); |
Ben Widawsky | 3e12302 | 2013-07-31 17:00:04 -0700 | [diff] [blame] | 2347 | |
Chris Wilson | a2165e3 | 2012-12-03 11:49:00 +0000 | [diff] [blame] | 2348 | /* ->put_pages might need to allocate memory for the bit17 swizzle |
| 2349 | * array, hence protect them from being reaped by removing them from gtt |
| 2350 | * lists early. */ |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 2351 | list_del(&obj->global_list); |
Chris Wilson | a2165e3 | 2012-12-03 11:49:00 +0000 | [diff] [blame] | 2352 | |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2353 | if (obj->mapping) { |
Chris Wilson | 4b30cb2 | 2016-08-18 17:16:42 +0100 | [diff] [blame] | 2354 | void *ptr; |
| 2355 | |
| 2356 | ptr = ptr_mask_bits(obj->mapping); |
| 2357 | if (is_vmalloc_addr(ptr)) |
| 2358 | vunmap(ptr); |
Chris Wilson | fb8621d | 2016-04-08 12:11:14 +0100 | [diff] [blame] | 2359 | else |
Chris Wilson | 4b30cb2 | 2016-08-18 17:16:42 +0100 | [diff] [blame] | 2360 | kunmap(kmap_to_page(ptr)); |
| 2361 | |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2362 | obj->mapping = NULL; |
| 2363 | } |
| 2364 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2365 | ops->put_pages(obj); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 2366 | obj->pages = NULL; |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2367 | |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 2368 | i915_gem_object_invalidate(obj); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2369 | |
| 2370 | return 0; |
| 2371 | } |
| 2372 | |
Chris Wilson | 4ff340f0 | 2016-10-18 13:02:50 +0100 | [diff] [blame] | 2373 | static unsigned int swiotlb_max_size(void) |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2374 | { |
| 2375 | #if IS_ENABLED(CONFIG_SWIOTLB) |
| 2376 | return rounddown(swiotlb_nr_tbl() << IO_TLB_SHIFT, PAGE_SIZE); |
| 2377 | #else |
| 2378 | return 0; |
| 2379 | #endif |
| 2380 | } |
| 2381 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2382 | static int |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2383 | i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2384 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 2385 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2386 | int page_count, i; |
| 2387 | struct address_space *mapping; |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2388 | struct sg_table *st; |
| 2389 | struct scatterlist *sg; |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2390 | struct sgt_iter sgt_iter; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2391 | struct page *page; |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2392 | unsigned long last_pfn = 0; /* suppress gcc warning */ |
Chris Wilson | 4ff340f0 | 2016-10-18 13:02:50 +0100 | [diff] [blame] | 2393 | unsigned int max_segment; |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2394 | int ret; |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2395 | gfp_t gfp; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2396 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2397 | /* Assert that the object is not currently in any GPU domain. As it |
| 2398 | * wasn't in the GTT, there shouldn't be any way it could have been in |
| 2399 | * a GPU cache |
| 2400 | */ |
| 2401 | BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS); |
| 2402 | BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS); |
| 2403 | |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2404 | max_segment = swiotlb_max_size(); |
| 2405 | if (!max_segment) |
Chris Wilson | 4ff340f0 | 2016-10-18 13:02:50 +0100 | [diff] [blame] | 2406 | max_segment = rounddown(UINT_MAX, PAGE_SIZE); |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2407 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2408 | st = kmalloc(sizeof(*st), GFP_KERNEL); |
| 2409 | if (st == NULL) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2410 | return -ENOMEM; |
| 2411 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2412 | page_count = obj->base.size / PAGE_SIZE; |
| 2413 | if (sg_alloc_table(st, page_count, GFP_KERNEL)) { |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2414 | kfree(st); |
| 2415 | return -ENOMEM; |
| 2416 | } |
| 2417 | |
| 2418 | /* Get the list of pages out of our struct file. They'll be pinned |
| 2419 | * at this point until we release them. |
| 2420 | * |
| 2421 | * Fail silently without starting the shrinker |
| 2422 | */ |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 2423 | mapping = obj->base.filp->f_mapping; |
Michal Hocko | c62d255 | 2015-11-06 16:28:49 -0800 | [diff] [blame] | 2424 | gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM)); |
Mel Gorman | d0164ad | 2015-11-06 16:28:21 -0800 | [diff] [blame] | 2425 | gfp |= __GFP_NORETRY | __GFP_NOWARN; |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2426 | sg = st->sgl; |
| 2427 | st->nents = 0; |
| 2428 | for (i = 0; i < page_count; i++) { |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2429 | page = shmem_read_mapping_page_gfp(mapping, i, gfp); |
| 2430 | if (IS_ERR(page)) { |
Chris Wilson | 21ab4e7 | 2014-09-09 11:16:08 +0100 | [diff] [blame] | 2431 | i915_gem_shrink(dev_priv, |
| 2432 | page_count, |
| 2433 | I915_SHRINK_BOUND | |
| 2434 | I915_SHRINK_UNBOUND | |
| 2435 | I915_SHRINK_PURGEABLE); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2436 | page = shmem_read_mapping_page_gfp(mapping, i, gfp); |
| 2437 | } |
| 2438 | if (IS_ERR(page)) { |
| 2439 | /* We've tried hard to allocate the memory by reaping |
| 2440 | * our own buffer, now let the real VM do its job and |
| 2441 | * go down in flames if truly OOM. |
| 2442 | */ |
David Herrmann | f461d1b | 2014-05-25 14:34:10 +0200 | [diff] [blame] | 2443 | page = shmem_read_mapping_page(mapping, i); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2444 | if (IS_ERR(page)) { |
| 2445 | ret = PTR_ERR(page); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2446 | goto err_pages; |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2447 | } |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 2448 | } |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2449 | if (!i || |
| 2450 | sg->length >= max_segment || |
| 2451 | page_to_pfn(page) != last_pfn + 1) { |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2452 | if (i) |
| 2453 | sg = sg_next(sg); |
| 2454 | st->nents++; |
| 2455 | sg_set_page(sg, page, PAGE_SIZE, 0); |
| 2456 | } else { |
| 2457 | sg->length += PAGE_SIZE; |
| 2458 | } |
| 2459 | last_pfn = page_to_pfn(page); |
Daniel Vetter | 3bbbe70 | 2013-10-07 17:15:45 -0300 | [diff] [blame] | 2460 | |
| 2461 | /* Check that the i965g/gm workaround works. */ |
| 2462 | WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL)); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2463 | } |
Chris Wilson | 871dfbd | 2016-10-11 09:20:21 +0100 | [diff] [blame] | 2464 | if (sg) /* loop terminated early; short sg table */ |
Konrad Rzeszutek Wilk | 426729d | 2013-06-24 11:47:48 -0400 | [diff] [blame] | 2465 | sg_mark_end(sg); |
Chris Wilson | 74ce6b6 | 2012-10-19 15:51:06 +0100 | [diff] [blame] | 2466 | obj->pages = st; |
| 2467 | |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2468 | ret = i915_gem_gtt_prepare_object(obj); |
| 2469 | if (ret) |
| 2470 | goto err_pages; |
| 2471 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2472 | if (i915_gem_object_needs_bit17_swizzle(obj)) |
| 2473 | i915_gem_object_do_bit_17_swizzle(obj); |
| 2474 | |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 2475 | if (i915_gem_object_is_tiled(obj) && |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 2476 | dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) |
| 2477 | i915_gem_object_pin_pages(obj); |
| 2478 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2479 | return 0; |
| 2480 | |
| 2481 | err_pages: |
Imre Deak | 90797e6 | 2013-02-18 19:28:03 +0200 | [diff] [blame] | 2482 | sg_mark_end(sg); |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2483 | for_each_sgt_page(page, sgt_iter, st) |
| 2484 | put_page(page); |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 2485 | sg_free_table(st); |
| 2486 | kfree(st); |
Chris Wilson | 0820baf | 2014-03-25 13:23:03 +0000 | [diff] [blame] | 2487 | |
| 2488 | /* shmemfs first checks if there is enough memory to allocate the page |
| 2489 | * and reports ENOSPC should there be insufficient, along with the usual |
| 2490 | * ENOMEM for a genuine allocation failure. |
| 2491 | * |
| 2492 | * We use ENOSPC in our driver to mean that we have run out of aperture |
| 2493 | * space and so want to translate the error from shmemfs back to our |
| 2494 | * usual understanding of ENOMEM. |
| 2495 | */ |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 2496 | if (ret == -ENOSPC) |
| 2497 | ret = -ENOMEM; |
| 2498 | |
| 2499 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2500 | } |
| 2501 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2502 | /* Ensure that the associated pages are gathered from the backing storage |
| 2503 | * and pinned into our object. i915_gem_object_get_pages() may be called |
| 2504 | * multiple times before they are released by a single call to |
| 2505 | * i915_gem_object_put_pages() - once the pages are no longer referenced |
| 2506 | * either as a result of memory pressure (reaping pages under the shrinker) |
| 2507 | * or as the object is itself released. |
| 2508 | */ |
| 2509 | int |
| 2510 | i915_gem_object_get_pages(struct drm_i915_gem_object *obj) |
| 2511 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 2512 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2513 | const struct drm_i915_gem_object_ops *ops = obj->ops; |
| 2514 | int ret; |
| 2515 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 2516 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 2517 | |
Chris Wilson | 2f745ad | 2012-09-04 21:02:58 +0100 | [diff] [blame] | 2518 | if (obj->pages) |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2519 | return 0; |
| 2520 | |
Chris Wilson | 43e28f0 | 2013-01-08 10:53:09 +0000 | [diff] [blame] | 2521 | if (obj->madv != I915_MADV_WILLNEED) { |
Chris Wilson | bd9b6a4 | 2014-02-10 09:03:50 +0000 | [diff] [blame] | 2522 | DRM_DEBUG("Attempting to obtain a purgeable object\n"); |
Chris Wilson | 8c99e57 | 2014-01-31 11:34:58 +0000 | [diff] [blame] | 2523 | return -EFAULT; |
Chris Wilson | 43e28f0 | 2013-01-08 10:53:09 +0000 | [diff] [blame] | 2524 | } |
| 2525 | |
Chris Wilson | a557017 | 2012-09-04 21:02:54 +0100 | [diff] [blame] | 2526 | BUG_ON(obj->pages_pin_count); |
| 2527 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2528 | ret = ops->get_pages(obj); |
| 2529 | if (ret) |
| 2530 | return ret; |
| 2531 | |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 2532 | list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list); |
Chris Wilson | ee28637 | 2015-04-07 16:20:25 +0100 | [diff] [blame] | 2533 | |
| 2534 | obj->get_page.sg = obj->pages->sgl; |
| 2535 | obj->get_page.last = 0; |
| 2536 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 2537 | return 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2538 | } |
| 2539 | |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2540 | /* The 'mapping' part of i915_gem_object_pin_map() below */ |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2541 | static void *i915_gem_object_map(const struct drm_i915_gem_object *obj, |
| 2542 | enum i915_map_type type) |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2543 | { |
| 2544 | unsigned long n_pages = obj->base.size >> PAGE_SHIFT; |
| 2545 | struct sg_table *sgt = obj->pages; |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2546 | struct sgt_iter sgt_iter; |
| 2547 | struct page *page; |
Dave Gordon | b338fa4 | 2016-05-20 11:54:05 +0100 | [diff] [blame] | 2548 | struct page *stack_pages[32]; |
| 2549 | struct page **pages = stack_pages; |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2550 | unsigned long i = 0; |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2551 | pgprot_t pgprot; |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2552 | void *addr; |
| 2553 | |
| 2554 | /* A single page can always be kmapped */ |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2555 | if (n_pages == 1 && type == I915_MAP_WB) |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2556 | return kmap(sg_page(sgt->sgl)); |
| 2557 | |
Dave Gordon | b338fa4 | 2016-05-20 11:54:05 +0100 | [diff] [blame] | 2558 | if (n_pages > ARRAY_SIZE(stack_pages)) { |
| 2559 | /* Too big for stack -- allocate temporary array instead */ |
| 2560 | pages = drm_malloc_gfp(n_pages, sizeof(*pages), GFP_TEMPORARY); |
| 2561 | if (!pages) |
| 2562 | return NULL; |
| 2563 | } |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2564 | |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 2565 | for_each_sgt_page(page, sgt_iter, sgt) |
| 2566 | pages[i++] = page; |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2567 | |
| 2568 | /* Check that we have the expected number of pages */ |
| 2569 | GEM_BUG_ON(i != n_pages); |
| 2570 | |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2571 | switch (type) { |
| 2572 | case I915_MAP_WB: |
| 2573 | pgprot = PAGE_KERNEL; |
| 2574 | break; |
| 2575 | case I915_MAP_WC: |
| 2576 | pgprot = pgprot_writecombine(PAGE_KERNEL_IO); |
| 2577 | break; |
| 2578 | } |
| 2579 | addr = vmap(pages, n_pages, 0, pgprot); |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2580 | |
Dave Gordon | b338fa4 | 2016-05-20 11:54:05 +0100 | [diff] [blame] | 2581 | if (pages != stack_pages) |
| 2582 | drm_free_large(pages); |
Dave Gordon | dd6034c | 2016-05-20 11:54:04 +0100 | [diff] [blame] | 2583 | |
| 2584 | return addr; |
| 2585 | } |
| 2586 | |
| 2587 | /* get, pin, and map the pages of the object into kernel space */ |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2588 | void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj, |
| 2589 | enum i915_map_type type) |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2590 | { |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2591 | enum i915_map_type has_type; |
| 2592 | bool pinned; |
| 2593 | void *ptr; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2594 | int ret; |
| 2595 | |
| 2596 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2597 | GEM_BUG_ON(!i915_gem_object_has_struct_page(obj)); |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2598 | |
| 2599 | ret = i915_gem_object_get_pages(obj); |
| 2600 | if (ret) |
| 2601 | return ERR_PTR(ret); |
| 2602 | |
| 2603 | i915_gem_object_pin_pages(obj); |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2604 | pinned = obj->pages_pin_count > 1; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2605 | |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2606 | ptr = ptr_unpack_bits(obj->mapping, has_type); |
| 2607 | if (ptr && has_type != type) { |
| 2608 | if (pinned) { |
| 2609 | ret = -EBUSY; |
| 2610 | goto err; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2611 | } |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2612 | |
| 2613 | if (is_vmalloc_addr(ptr)) |
| 2614 | vunmap(ptr); |
| 2615 | else |
| 2616 | kunmap(kmap_to_page(ptr)); |
| 2617 | |
| 2618 | ptr = obj->mapping = NULL; |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2619 | } |
| 2620 | |
Chris Wilson | d31d7cb | 2016-08-12 12:39:58 +0100 | [diff] [blame] | 2621 | if (!ptr) { |
| 2622 | ptr = i915_gem_object_map(obj, type); |
| 2623 | if (!ptr) { |
| 2624 | ret = -ENOMEM; |
| 2625 | goto err; |
| 2626 | } |
| 2627 | |
| 2628 | obj->mapping = ptr_pack_bits(ptr, type); |
| 2629 | } |
| 2630 | |
| 2631 | return ptr; |
| 2632 | |
| 2633 | err: |
| 2634 | i915_gem_object_unpin_pages(obj); |
| 2635 | return ERR_PTR(ret); |
Chris Wilson | 0a798eb | 2016-04-08 12:11:11 +0100 | [diff] [blame] | 2636 | } |
| 2637 | |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2638 | static void |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2639 | i915_gem_object_retire__write(struct i915_gem_active *active, |
| 2640 | struct drm_i915_gem_request *request) |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2641 | { |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2642 | struct drm_i915_gem_object *obj = |
| 2643 | container_of(active, struct drm_i915_gem_object, last_write); |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2644 | |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 2645 | intel_fb_obj_flush(obj, true, ORIGIN_CS); |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2646 | } |
| 2647 | |
| 2648 | static void |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2649 | i915_gem_object_retire__read(struct i915_gem_active *active, |
| 2650 | struct drm_i915_gem_request *request) |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2651 | { |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 2652 | int idx = request->engine->id; |
| 2653 | struct drm_i915_gem_object *obj = |
| 2654 | container_of(active, struct drm_i915_gem_object, last_read[idx]); |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2655 | |
Chris Wilson | 573adb3 | 2016-08-04 16:32:39 +0100 | [diff] [blame] | 2656 | GEM_BUG_ON(!i915_gem_object_has_active_engine(obj, idx)); |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2657 | |
Chris Wilson | 573adb3 | 2016-08-04 16:32:39 +0100 | [diff] [blame] | 2658 | i915_gem_object_clear_active(obj, idx); |
| 2659 | if (i915_gem_object_is_active(obj)) |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 2660 | return; |
Chris Wilson | 65ce302 | 2012-07-20 12:41:02 +0100 | [diff] [blame] | 2661 | |
Chris Wilson | 6c24695 | 2015-07-27 10:26:26 +0100 | [diff] [blame] | 2662 | /* Bump our place on the bound list to keep it roughly in LRU order |
| 2663 | * so that we don't steal from recently used but inactive objects |
| 2664 | * (unless we are forced to ofc!) |
| 2665 | */ |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 2666 | if (obj->bind_count) |
| 2667 | list_move_tail(&obj->global_list, |
| 2668 | &request->i915->mm.bound_list); |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 2669 | |
Chris Wilson | f8a7fde | 2016-10-28 13:58:29 +0100 | [diff] [blame] | 2670 | if (i915_gem_object_has_active_reference(obj)) { |
| 2671 | i915_gem_object_clear_active_reference(obj); |
| 2672 | i915_gem_object_put(obj); |
| 2673 | } |
Chris Wilson | c8725f3 | 2014-03-17 12:21:55 +0000 | [diff] [blame] | 2674 | } |
| 2675 | |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2676 | static bool i915_context_is_banned(const struct i915_gem_context *ctx) |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2677 | { |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2678 | unsigned long elapsed; |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2679 | |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2680 | if (ctx->hang_stats.banned) |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2681 | return true; |
| 2682 | |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2683 | elapsed = get_seconds() - ctx->hang_stats.guilty_ts; |
Chris Wilson | 676fa57 | 2014-12-24 08:13:39 -0800 | [diff] [blame] | 2684 | if (ctx->hang_stats.ban_period_seconds && |
| 2685 | elapsed <= ctx->hang_stats.ban_period_seconds) { |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2686 | DRM_DEBUG("context hanging too fast, banning!\n"); |
| 2687 | return true; |
Mika Kuoppala | be62acb | 2013-08-30 16:19:28 +0300 | [diff] [blame] | 2688 | } |
| 2689 | |
| 2690 | return false; |
| 2691 | } |
| 2692 | |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2693 | static void i915_set_reset_status(struct i915_gem_context *ctx, |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2694 | const bool guilty) |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2695 | { |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2696 | struct i915_ctx_hang_stats *hs = &ctx->hang_stats; |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2697 | |
| 2698 | if (guilty) { |
Chris Wilson | 7b4d3a1 | 2016-07-04 08:08:37 +0100 | [diff] [blame] | 2699 | hs->banned = i915_context_is_banned(ctx); |
Mika Kuoppala | 44e2c07 | 2014-01-30 16:01:15 +0200 | [diff] [blame] | 2700 | hs->batch_active++; |
| 2701 | hs->guilty_ts = get_seconds(); |
| 2702 | } else { |
| 2703 | hs->batch_pending++; |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2704 | } |
| 2705 | } |
| 2706 | |
Chris Wilson | 8d9fc7f | 2014-02-25 17:11:23 +0200 | [diff] [blame] | 2707 | struct drm_i915_gem_request * |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2708 | i915_gem_find_active_request(struct intel_engine_cs *engine) |
Chris Wilson | 9375e44 | 2010-09-19 12:21:28 +0100 | [diff] [blame] | 2709 | { |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2710 | struct drm_i915_gem_request *request; |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2711 | |
Chris Wilson | f69a02c | 2016-07-01 17:23:16 +0100 | [diff] [blame] | 2712 | /* We are called by the error capture and reset at a random |
| 2713 | * point in time. In particular, note that neither is crucially |
| 2714 | * ordered with an interrupt. After a hang, the GPU is dead and we |
| 2715 | * assume that no more writes can happen (we waited long enough for |
| 2716 | * all writes that were in transaction to be flushed) - adding an |
| 2717 | * extra delay for a recent interrupt is pointless. Hence, we do |
| 2718 | * not need an engine->irq_seqno_barrier() before the seqno reads. |
| 2719 | */ |
Chris Wilson | efdf7c0 | 2016-08-04 07:52:33 +0100 | [diff] [blame] | 2720 | list_for_each_entry(request, &engine->request_list, link) { |
Chris Wilson | f69a02c | 2016-07-01 17:23:16 +0100 | [diff] [blame] | 2721 | if (i915_gem_request_completed(request)) |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2722 | continue; |
Mika Kuoppala | aa60c66 | 2013-06-12 15:13:20 +0300 | [diff] [blame] | 2723 | |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 2724 | if (!i915_sw_fence_done(&request->submit)) |
| 2725 | break; |
| 2726 | |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2727 | return request; |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2728 | } |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2729 | |
| 2730 | return NULL; |
| 2731 | } |
| 2732 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2733 | static void reset_request(struct drm_i915_gem_request *request) |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2734 | { |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2735 | void *vaddr = request->ring->vaddr; |
| 2736 | u32 head; |
Mika Kuoppala | b6b0fac | 2014-01-30 19:04:43 +0200 | [diff] [blame] | 2737 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2738 | /* As this request likely depends on state from the lost |
| 2739 | * context, clear out all the user operations leaving the |
| 2740 | * breadcrumb at the end (so we get the fence notifications). |
| 2741 | */ |
| 2742 | head = request->head; |
| 2743 | if (request->postfix < head) { |
| 2744 | memset(vaddr + head, 0, request->ring->size - head); |
| 2745 | head = 0; |
| 2746 | } |
| 2747 | memset(vaddr + head, 0, request->postfix - head); |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2748 | } |
| 2749 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2750 | static void i915_gem_reset_engine(struct intel_engine_cs *engine) |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2751 | { |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 2752 | struct drm_i915_gem_request *request; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2753 | struct i915_gem_context *incomplete_ctx; |
| 2754 | bool ring_hung; |
Chris Wilson | 608c1a5 | 2015-09-03 13:01:40 +0100 | [diff] [blame] | 2755 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2756 | if (engine->irq_seqno_barrier) |
| 2757 | engine->irq_seqno_barrier(engine); |
| 2758 | |
| 2759 | request = i915_gem_find_active_request(engine); |
| 2760 | if (!request) |
| 2761 | return; |
| 2762 | |
| 2763 | ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG; |
Chris Wilson | 77c6070 | 2016-10-04 21:11:29 +0100 | [diff] [blame] | 2764 | if (engine->hangcheck.seqno != intel_engine_get_seqno(engine)) |
| 2765 | ring_hung = false; |
| 2766 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2767 | i915_set_reset_status(request->ctx, ring_hung); |
| 2768 | if (!ring_hung) |
| 2769 | return; |
| 2770 | |
| 2771 | DRM_DEBUG_DRIVER("resetting %s to restart from tail of request 0x%x\n", |
| 2772 | engine->name, request->fence.seqno); |
| 2773 | |
| 2774 | /* Setup the CS to resume from the breadcrumb of the hung request */ |
| 2775 | engine->reset_hw(engine, request); |
| 2776 | |
| 2777 | /* Users of the default context do not rely on logical state |
| 2778 | * preserved between batches. They have to emit full state on |
| 2779 | * every batch and so it is safe to execute queued requests following |
| 2780 | * the hang. |
| 2781 | * |
| 2782 | * Other contexts preserve state, now corrupt. We want to skip all |
| 2783 | * queued requests that reference the corrupt context. |
| 2784 | */ |
| 2785 | incomplete_ctx = request->ctx; |
| 2786 | if (i915_gem_context_is_default(incomplete_ctx)) |
| 2787 | return; |
| 2788 | |
| 2789 | list_for_each_entry_continue(request, &engine->request_list, link) |
| 2790 | if (request->ctx == incomplete_ctx) |
| 2791 | reset_request(request); |
| 2792 | } |
| 2793 | |
| 2794 | void i915_gem_reset(struct drm_i915_private *dev_priv) |
| 2795 | { |
| 2796 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2797 | enum intel_engine_id id; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2798 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 2799 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 2800 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2801 | i915_gem_retire_requests(dev_priv); |
| 2802 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2803 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2804 | i915_gem_reset_engine(engine); |
| 2805 | |
| 2806 | i915_gem_restore_fences(&dev_priv->drm); |
Chris Wilson | f2a91d1 | 2016-09-21 14:51:06 +0100 | [diff] [blame] | 2807 | |
| 2808 | if (dev_priv->gt.awake) { |
| 2809 | intel_sanitize_gt_powersave(dev_priv); |
| 2810 | intel_enable_gt_powersave(dev_priv); |
| 2811 | if (INTEL_GEN(dev_priv) >= 6) |
| 2812 | gen6_rps_busy(dev_priv); |
| 2813 | } |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2814 | } |
| 2815 | |
| 2816 | static void nop_submit_request(struct drm_i915_gem_request *request) |
| 2817 | { |
| 2818 | } |
| 2819 | |
| 2820 | static void i915_gem_cleanup_engine(struct intel_engine_cs *engine) |
| 2821 | { |
| 2822 | engine->submit_request = nop_submit_request; |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 2823 | |
Chris Wilson | c4b0930 | 2016-07-20 09:21:10 +0100 | [diff] [blame] | 2824 | /* Mark all pending requests as complete so that any concurrent |
| 2825 | * (lockless) lookup doesn't try and wait upon the request as we |
| 2826 | * reset it. |
| 2827 | */ |
Chris Wilson | 87b723a | 2016-08-09 08:37:02 +0100 | [diff] [blame] | 2828 | intel_engine_init_seqno(engine, engine->last_submitted_seqno); |
Chris Wilson | c4b0930 | 2016-07-20 09:21:10 +0100 | [diff] [blame] | 2829 | |
Ben Widawsky | 1d62bee | 2014-01-01 10:15:13 -0800 | [diff] [blame] | 2830 | /* |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 2831 | * Clear the execlists queue up before freeing the requests, as those |
| 2832 | * are the ones that keep the context and ringbuffer backing objects |
| 2833 | * pinned in place. |
| 2834 | */ |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 2835 | |
Tomas Elf | 7de1691a | 2015-10-19 16:32:32 +0100 | [diff] [blame] | 2836 | if (i915.enable_execlists) { |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 2837 | spin_lock(&engine->execlist_lock); |
| 2838 | INIT_LIST_HEAD(&engine->execlist_queue); |
| 2839 | i915_gem_request_put(engine->execlist_port[0].request); |
| 2840 | i915_gem_request_put(engine->execlist_port[1].request); |
| 2841 | memset(engine->execlist_port, 0, sizeof(engine->execlist_port)); |
| 2842 | spin_unlock(&engine->execlist_lock); |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 2843 | } |
| 2844 | |
Chris Wilson | b913b33 | 2016-07-13 09:10:31 +0100 | [diff] [blame] | 2845 | engine->i915->gt.active_engines &= ~intel_engine_flag(engine); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2846 | } |
| 2847 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2848 | void i915_gem_set_wedged(struct drm_i915_private *dev_priv) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2849 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2850 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2851 | enum intel_engine_id id; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2852 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2853 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 2854 | set_bit(I915_WEDGED, &dev_priv->gpu_error.flags); |
Chris Wilson | 4db080f | 2013-12-04 11:37:09 +0000 | [diff] [blame] | 2855 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2856 | i915_gem_context_lost(dev_priv); |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2857 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2858 | i915_gem_cleanup_engine(engine); |
Chris Wilson | b913b33 | 2016-07-13 09:10:31 +0100 | [diff] [blame] | 2859 | mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0); |
Chris Wilson | dfaae39 | 2010-09-22 10:31:52 +0100 | [diff] [blame] | 2860 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2861 | i915_gem_retire_requests(dev_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2862 | } |
| 2863 | |
Daniel Vetter | 75ef9da | 2010-08-21 00:25:16 +0200 | [diff] [blame] | 2864 | static void |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2865 | i915_gem_retire_work_handler(struct work_struct *work) |
| 2866 | { |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2867 | struct drm_i915_private *dev_priv = |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2868 | container_of(work, typeof(*dev_priv), gt.retire_work.work); |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 2869 | struct drm_device *dev = &dev_priv->drm; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2870 | |
Chris Wilson | 891b48c | 2010-09-29 12:26:37 +0100 | [diff] [blame] | 2871 | /* Come back later if the device is busy... */ |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2872 | if (mutex_trylock(&dev->struct_mutex)) { |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2873 | i915_gem_retire_requests(dev_priv); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2874 | mutex_unlock(&dev->struct_mutex); |
| 2875 | } |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2876 | |
| 2877 | /* Keep the retire handler running until we are finally idle. |
| 2878 | * We do not need to do this test under locking as in the worst-case |
| 2879 | * we queue the retire worker once too often. |
| 2880 | */ |
Chris Wilson | c961561 | 2016-07-09 10:12:06 +0100 | [diff] [blame] | 2881 | if (READ_ONCE(dev_priv->gt.awake)) { |
| 2882 | i915_queue_hangcheck(dev_priv); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2883 | queue_delayed_work(dev_priv->wq, |
| 2884 | &dev_priv->gt.retire_work, |
Chris Wilson | bcb4508 | 2012-10-05 17:02:57 +0100 | [diff] [blame] | 2885 | round_jiffies_up_relative(HZ)); |
Chris Wilson | c961561 | 2016-07-09 10:12:06 +0100 | [diff] [blame] | 2886 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2887 | } |
Chris Wilson | 891b48c | 2010-09-29 12:26:37 +0100 | [diff] [blame] | 2888 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 2889 | static void |
| 2890 | i915_gem_idle_work_handler(struct work_struct *work) |
| 2891 | { |
| 2892 | struct drm_i915_private *dev_priv = |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2893 | container_of(work, typeof(*dev_priv), gt.idle_work.work); |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 2894 | struct drm_device *dev = &dev_priv->drm; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 2895 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2896 | enum intel_engine_id id; |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2897 | bool rearm_hangcheck; |
| 2898 | |
| 2899 | if (!READ_ONCE(dev_priv->gt.awake)) |
| 2900 | return; |
| 2901 | |
| 2902 | if (READ_ONCE(dev_priv->gt.active_engines)) |
| 2903 | return; |
| 2904 | |
| 2905 | rearm_hangcheck = |
| 2906 | cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work); |
| 2907 | |
| 2908 | if (!mutex_trylock(&dev->struct_mutex)) { |
| 2909 | /* Currently busy, come back later */ |
| 2910 | mod_delayed_work(dev_priv->wq, |
| 2911 | &dev_priv->gt.idle_work, |
| 2912 | msecs_to_jiffies(50)); |
| 2913 | goto out_rearm; |
| 2914 | } |
| 2915 | |
| 2916 | if (dev_priv->gt.active_engines) |
| 2917 | goto out_unlock; |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 2918 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2919 | for_each_engine(engine, dev_priv, id) |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2920 | i915_gem_batch_pool_fini(&engine->batch_pool); |
Zou Nan hai | 852835f | 2010-05-21 09:08:56 +0800 | [diff] [blame] | 2921 | |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2922 | GEM_BUG_ON(!dev_priv->gt.awake); |
| 2923 | dev_priv->gt.awake = false; |
| 2924 | rearm_hangcheck = false; |
Daniel Vetter | 30ecad7 | 2015-12-09 09:29:36 +0100 | [diff] [blame] | 2925 | |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2926 | if (INTEL_GEN(dev_priv) >= 6) |
| 2927 | gen6_rps_idle(dev_priv); |
| 2928 | intel_runtime_pm_put(dev_priv); |
| 2929 | out_unlock: |
| 2930 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 35c9418 | 2015-04-07 16:20:37 +0100 | [diff] [blame] | 2931 | |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 2932 | out_rearm: |
| 2933 | if (rearm_hangcheck) { |
| 2934 | GEM_BUG_ON(!dev_priv->gt.awake); |
| 2935 | i915_queue_hangcheck(dev_priv); |
Chris Wilson | 35c9418 | 2015-04-07 16:20:37 +0100 | [diff] [blame] | 2936 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 2937 | } |
| 2938 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 2939 | void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file) |
| 2940 | { |
| 2941 | struct drm_i915_gem_object *obj = to_intel_bo(gem); |
| 2942 | struct drm_i915_file_private *fpriv = file->driver_priv; |
| 2943 | struct i915_vma *vma, *vn; |
| 2944 | |
| 2945 | mutex_lock(&obj->base.dev->struct_mutex); |
| 2946 | list_for_each_entry_safe(vma, vn, &obj->vma_list, obj_link) |
| 2947 | if (vma->vm->file == fpriv) |
| 2948 | i915_vma_close(vma); |
Chris Wilson | f8a7fde | 2016-10-28 13:58:29 +0100 | [diff] [blame] | 2949 | |
| 2950 | if (i915_gem_object_is_active(obj) && |
| 2951 | !i915_gem_object_has_active_reference(obj)) { |
| 2952 | i915_gem_object_set_active_reference(obj); |
| 2953 | i915_gem_object_get(obj); |
| 2954 | } |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 2955 | mutex_unlock(&obj->base.dev->struct_mutex); |
| 2956 | } |
| 2957 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 2958 | static unsigned long to_wait_timeout(s64 timeout_ns) |
| 2959 | { |
| 2960 | if (timeout_ns < 0) |
| 2961 | return MAX_SCHEDULE_TIMEOUT; |
| 2962 | |
| 2963 | if (timeout_ns == 0) |
| 2964 | return 0; |
| 2965 | |
| 2966 | return nsecs_to_jiffies_timeout(timeout_ns); |
| 2967 | } |
| 2968 | |
Ben Widawsky | 5816d64 | 2012-04-11 11:18:19 -0700 | [diff] [blame] | 2969 | /** |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 2970 | * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 2971 | * @dev: drm device pointer |
| 2972 | * @data: ioctl data blob |
| 2973 | * @file: drm file pointer |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 2974 | * |
| 2975 | * Returns 0 if successful, else an error is returned with the remaining time in |
| 2976 | * the timeout parameter. |
| 2977 | * -ETIME: object is still busy after timeout |
| 2978 | * -ERESTARTSYS: signal interrupted the wait |
| 2979 | * -ENONENT: object doesn't exist |
| 2980 | * Also possible, but rare: |
| 2981 | * -EAGAIN: GPU wedged |
| 2982 | * -ENOMEM: damn |
| 2983 | * -ENODEV: Internal IRQ fail |
| 2984 | * -E?: The add request failed |
| 2985 | * |
| 2986 | * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any |
| 2987 | * non-zero timeout parameter the wait ioctl will wait for the given number of |
| 2988 | * nanoseconds on an object becoming unbusy. Since the wait itself does so |
| 2989 | * without holding struct_mutex the object may become re-busied before this |
| 2990 | * function completes. A similar but shorter * race condition exists in the busy |
| 2991 | * ioctl |
| 2992 | */ |
| 2993 | int |
| 2994 | i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file) |
| 2995 | { |
| 2996 | struct drm_i915_gem_wait *args = data; |
| 2997 | struct drm_i915_gem_object *obj; |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 2998 | ktime_t start; |
| 2999 | long ret; |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 3000 | |
Daniel Vetter | 11b5d51 | 2014-09-29 15:31:26 +0200 | [diff] [blame] | 3001 | if (args->flags != 0) |
| 3002 | return -EINVAL; |
| 3003 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 3004 | obj = i915_gem_object_lookup(file, args->bo_handle); |
Chris Wilson | 033d549 | 2016-08-05 10:14:17 +0100 | [diff] [blame] | 3005 | if (!obj) |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 3006 | return -ENOENT; |
Chris Wilson | 033d549 | 2016-08-05 10:14:17 +0100 | [diff] [blame] | 3007 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3008 | start = ktime_get(); |
| 3009 | |
| 3010 | ret = i915_gem_object_wait(obj, |
| 3011 | I915_WAIT_INTERRUPTIBLE | I915_WAIT_ALL, |
| 3012 | to_wait_timeout(args->timeout_ns), |
| 3013 | to_rps_client(file)); |
| 3014 | |
| 3015 | if (args->timeout_ns > 0) { |
| 3016 | args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start)); |
| 3017 | if (args->timeout_ns < 0) |
| 3018 | args->timeout_ns = 0; |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 3019 | } |
| 3020 | |
Chris Wilson | 033d549 | 2016-08-05 10:14:17 +0100 | [diff] [blame] | 3021 | i915_gem_object_put_unlocked(obj); |
John Harrison | ff86588 | 2014-11-24 18:49:28 +0000 | [diff] [blame] | 3022 | return ret; |
Ben Widawsky | 23ba4fd | 2012-05-24 15:03:10 -0700 | [diff] [blame] | 3023 | } |
| 3024 | |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3025 | static void __i915_vma_iounmap(struct i915_vma *vma) |
| 3026 | { |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3027 | GEM_BUG_ON(i915_vma_is_pinned(vma)); |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3028 | |
| 3029 | if (vma->iomap == NULL) |
| 3030 | return; |
| 3031 | |
| 3032 | io_mapping_unmap(vma->iomap); |
| 3033 | vma->iomap = NULL; |
| 3034 | } |
| 3035 | |
Chris Wilson | df0e9a2 | 2016-08-04 07:52:47 +0100 | [diff] [blame] | 3036 | int i915_vma_unbind(struct i915_vma *vma) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3037 | { |
Ben Widawsky | 07fe0b1 | 2013-07-31 17:00:10 -0700 | [diff] [blame] | 3038 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3039 | unsigned long active; |
Chris Wilson | 43e28f0 | 2013-01-08 10:53:09 +0000 | [diff] [blame] | 3040 | int ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3041 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 3042 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 3043 | |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3044 | /* First wait upon any activity as retiring the request may |
| 3045 | * have side-effects such as unpinning or even unbinding this vma. |
| 3046 | */ |
| 3047 | active = i915_vma_get_active(vma); |
Chris Wilson | df0e9a2 | 2016-08-04 07:52:47 +0100 | [diff] [blame] | 3048 | if (active) { |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3049 | int idx; |
| 3050 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3051 | /* When a closed VMA is retired, it is unbound - eek. |
| 3052 | * In order to prevent it from being recursively closed, |
| 3053 | * take a pin on the vma so that the second unbind is |
| 3054 | * aborted. |
| 3055 | */ |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3056 | __i915_vma_pin(vma); |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3057 | |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3058 | for_each_active(active, idx) { |
| 3059 | ret = i915_gem_active_retire(&vma->last_read[idx], |
| 3060 | &vma->vm->dev->struct_mutex); |
| 3061 | if (ret) |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3062 | break; |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3063 | } |
| 3064 | |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3065 | __i915_vma_unpin(vma); |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3066 | if (ret) |
| 3067 | return ret; |
| 3068 | |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3069 | GEM_BUG_ON(i915_vma_is_active(vma)); |
| 3070 | } |
| 3071 | |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3072 | if (i915_vma_is_pinned(vma)) |
Chris Wilson | b0decaf | 2016-08-04 07:52:44 +0100 | [diff] [blame] | 3073 | return -EBUSY; |
| 3074 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3075 | if (!drm_mm_node_allocated(&vma->node)) |
| 3076 | goto destroy; |
Ben Widawsky | 433544b | 2013-08-13 18:09:06 -0700 | [diff] [blame] | 3077 | |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3078 | GEM_BUG_ON(obj->bind_count == 0); |
| 3079 | GEM_BUG_ON(!obj->pages); |
Chris Wilson | c4670ad | 2012-08-20 10:23:27 +0100 | [diff] [blame] | 3080 | |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3081 | if (i915_vma_is_map_and_fenceable(vma)) { |
Daniel Vetter | 8b1bc9b | 2014-02-14 14:06:07 +0100 | [diff] [blame] | 3082 | /* release the fence reg _after_ flushing */ |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 3083 | ret = i915_vma_put_fence(vma); |
Daniel Vetter | 8b1bc9b | 2014-02-14 14:06:07 +0100 | [diff] [blame] | 3084 | if (ret) |
| 3085 | return ret; |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3086 | |
Chris Wilson | cd3127d | 2016-08-18 17:17:09 +0100 | [diff] [blame] | 3087 | /* Force a pagefault for domain tracking on next user access */ |
| 3088 | i915_gem_release_mmap(obj); |
| 3089 | |
Chris Wilson | 8ef8561 | 2016-04-28 09:56:39 +0100 | [diff] [blame] | 3090 | __i915_vma_iounmap(vma); |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3091 | vma->flags &= ~I915_VMA_CAN_FENCE; |
Daniel Vetter | 8b1bc9b | 2014-02-14 14:06:07 +0100 | [diff] [blame] | 3092 | } |
Daniel Vetter | 96b47b6 | 2009-12-15 17:50:00 +0100 | [diff] [blame] | 3093 | |
Chris Wilson | 50e046b | 2016-08-04 07:52:46 +0100 | [diff] [blame] | 3094 | if (likely(!vma->vm->closed)) { |
| 3095 | trace_i915_vma_unbind(vma); |
| 3096 | vma->vm->unbind_vma(vma); |
| 3097 | } |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3098 | vma->flags &= ~(I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND); |
Ben Widawsky | 6f65e29 | 2013-12-06 14:10:56 -0800 | [diff] [blame] | 3099 | |
Chris Wilson | 50e046b | 2016-08-04 07:52:46 +0100 | [diff] [blame] | 3100 | drm_mm_remove_node(&vma->node); |
| 3101 | list_move_tail(&vma->vm_link, &vma->vm->unbound_list); |
| 3102 | |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3103 | if (vma->pages != obj->pages) { |
| 3104 | GEM_BUG_ON(!vma->pages); |
| 3105 | sg_free_table(vma->pages); |
| 3106 | kfree(vma->pages); |
Tvrtko Ursulin | fe14d5f | 2014-12-10 17:27:58 +0000 | [diff] [blame] | 3107 | } |
Chris Wilson | 247177d | 2016-08-15 10:48:47 +0100 | [diff] [blame] | 3108 | vma->pages = NULL; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3109 | |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 3110 | /* Since the unbound list is global, only move to that list if |
Daniel Vetter | b93dab6 | 2013-08-26 11:23:47 +0200 | [diff] [blame] | 3111 | * no more VMAs exist. */ |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3112 | if (--obj->bind_count == 0) |
| 3113 | list_move_tail(&obj->global_list, |
| 3114 | &to_i915(obj->base.dev)->mm.unbound_list); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3115 | |
Chris Wilson | 70903c3 | 2013-12-04 09:59:09 +0000 | [diff] [blame] | 3116 | /* And finally now the object is completely decoupled from this vma, |
| 3117 | * we can drop its hold on the backing storage and allow it to be |
| 3118 | * reaped by the shrinker. |
| 3119 | */ |
| 3120 | i915_gem_object_unpin_pages(obj); |
| 3121 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3122 | destroy: |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3123 | if (unlikely(i915_vma_is_closed(vma))) |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 3124 | i915_vma_destroy(vma); |
| 3125 | |
Chris Wilson | 8824178 | 2011-01-07 17:09:48 +0000 | [diff] [blame] | 3126 | return 0; |
Chris Wilson | 54cf91d | 2010-11-25 18:00:26 +0000 | [diff] [blame] | 3127 | } |
| 3128 | |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 3129 | int i915_gem_wait_for_idle(struct drm_i915_private *dev_priv, |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 3130 | unsigned int flags) |
Daniel Vetter | 4df2faf | 2010-02-19 11:52:00 +0100 | [diff] [blame] | 3131 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 3132 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3133 | enum intel_engine_id id; |
Dave Gordon | b4ac5af | 2016-03-24 11:20:38 +0000 | [diff] [blame] | 3134 | int ret; |
Daniel Vetter | 4df2faf | 2010-02-19 11:52:00 +0100 | [diff] [blame] | 3135 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3136 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | 62e6300 | 2016-06-24 14:55:52 +0100 | [diff] [blame] | 3137 | if (engine->last_context == NULL) |
| 3138 | continue; |
| 3139 | |
Chris Wilson | ea746f3 | 2016-09-09 14:11:49 +0100 | [diff] [blame] | 3140 | ret = intel_engine_idle(engine, flags); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 3141 | if (ret) |
| 3142 | return ret; |
| 3143 | } |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 3144 | |
Daniel Vetter | 8a1a49f | 2010-02-11 22:29:04 +0100 | [diff] [blame] | 3145 | return 0; |
Daniel Vetter | 4df2faf | 2010-02-19 11:52:00 +0100 | [diff] [blame] | 3146 | } |
| 3147 | |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3148 | static bool i915_gem_valid_gtt_space(struct i915_vma *vma, |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3149 | unsigned long cache_level) |
| 3150 | { |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3151 | struct drm_mm_node *gtt_space = &vma->node; |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3152 | struct drm_mm_node *other; |
| 3153 | |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3154 | /* |
| 3155 | * On some machines we have to be careful when putting differing types |
| 3156 | * of snoopable memory together to avoid the prefetcher crossing memory |
| 3157 | * domains and dying. During vm initialisation, we decide whether or not |
| 3158 | * these constraints apply and set the drm_mm.color_adjust |
| 3159 | * appropriately. |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3160 | */ |
Chris Wilson | 4144f9b | 2014-09-11 08:43:48 +0100 | [diff] [blame] | 3161 | if (vma->vm->mm.color_adjust == NULL) |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3162 | return true; |
| 3163 | |
Ben Widawsky | c6cfb32 | 2013-07-05 14:41:06 -0700 | [diff] [blame] | 3164 | if (!drm_mm_node_allocated(gtt_space)) |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3165 | return true; |
| 3166 | |
| 3167 | if (list_empty(>t_space->node_list)) |
| 3168 | return true; |
| 3169 | |
| 3170 | other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list); |
| 3171 | if (other->allocated && !other->hole_follows && other->color != cache_level) |
| 3172 | return false; |
| 3173 | |
| 3174 | other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list); |
| 3175 | if (other->allocated && !gtt_space->hole_follows && other->color != cache_level) |
| 3176 | return false; |
| 3177 | |
| 3178 | return true; |
| 3179 | } |
| 3180 | |
Jesse Barnes | de151cf | 2008-11-12 10:03:55 -0800 | [diff] [blame] | 3181 | /** |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3182 | * i915_vma_insert - finds a slot for the vma in its address space |
| 3183 | * @vma: the vma |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3184 | * @size: requested size in bytes (can be larger than the VMA) |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3185 | * @alignment: required alignment |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3186 | * @flags: mask of PIN_* flags to use |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3187 | * |
| 3188 | * First we try to allocate some free space that meets the requirements for |
| 3189 | * the VMA. Failiing that, if the flags permit, it will evict an old VMA, |
| 3190 | * preferrably the oldest idle entry to make room for the new VMA. |
| 3191 | * |
| 3192 | * Returns: |
| 3193 | * 0 on success, negative error code otherwise. |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3194 | */ |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3195 | static int |
| 3196 | 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] | 3197 | { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3198 | struct drm_i915_private *dev_priv = to_i915(vma->vm->dev); |
| 3199 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3200 | u64 start, end; |
Chris Wilson | 07f73f6 | 2009-09-14 16:50:30 +0100 | [diff] [blame] | 3201 | int ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3202 | |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3203 | 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] | 3204 | GEM_BUG_ON(drm_mm_node_allocated(&vma->node)); |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 3205 | |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3206 | size = max(size, vma->size); |
| 3207 | if (flags & PIN_MAPPABLE) |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 3208 | size = i915_gem_get_ggtt_size(dev_priv, size, |
| 3209 | i915_gem_object_get_tiling(obj)); |
Joonas Lahtinen | 91e6711 | 2015-05-06 14:33:58 +0300 | [diff] [blame] | 3210 | |
Chris Wilson | d8923dc | 2016-08-18 17:17:07 +0100 | [diff] [blame] | 3211 | alignment = max(max(alignment, vma->display_alignment), |
| 3212 | i915_gem_get_ggtt_alignment(dev_priv, size, |
| 3213 | i915_gem_object_get_tiling(obj), |
| 3214 | flags & PIN_MAPPABLE)); |
Chris Wilson | a00b10c | 2010-09-24 21:15:47 +0100 | [diff] [blame] | 3215 | |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3216 | start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3217 | |
| 3218 | end = vma->vm->total; |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3219 | if (flags & PIN_MAPPABLE) |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3220 | end = min_t(u64, end, dev_priv->ggtt.mappable_end); |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3221 | if (flags & PIN_ZONE_4G) |
Michel Thierry | 48ea1e3 | 2016-01-11 11:39:27 +0000 | [diff] [blame] | 3222 | end = min_t(u64, end, (1ULL << 32) - PAGE_SIZE); |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3223 | |
Joonas Lahtinen | 91e6711 | 2015-05-06 14:33:58 +0300 | [diff] [blame] | 3224 | /* If binding the object/GGTT view requires more space than the entire |
| 3225 | * aperture has, reject it early before evicting everything in a vain |
| 3226 | * attempt to find space. |
Chris Wilson | 654fc60 | 2010-05-27 13:18:21 +0100 | [diff] [blame] | 3227 | */ |
Joonas Lahtinen | 91e6711 | 2015-05-06 14:33:58 +0300 | [diff] [blame] | 3228 | if (size > end) { |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3229 | 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] | 3230 | size, obj->base.size, |
Daniel Vetter | 1ec9e26 | 2014-02-14 14:01:11 +0100 | [diff] [blame] | 3231 | flags & PIN_MAPPABLE ? "mappable" : "total", |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3232 | end); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3233 | return -E2BIG; |
Chris Wilson | 654fc60 | 2010-05-27 13:18:21 +0100 | [diff] [blame] | 3234 | } |
| 3235 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 3236 | ret = i915_gem_object_get_pages(obj); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 3237 | if (ret) |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3238 | return ret; |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 3239 | |
Chris Wilson | fbdda6f | 2012-11-20 10:45:16 +0000 | [diff] [blame] | 3240 | i915_gem_object_pin_pages(obj); |
| 3241 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3242 | if (flags & PIN_OFFSET_FIXED) { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3243 | u64 offset = flags & PIN_OFFSET_MASK; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3244 | if (offset & (alignment - 1) || offset > end - size) { |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3245 | ret = -EINVAL; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3246 | goto err_unpin; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3247 | } |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3248 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3249 | vma->node.start = offset; |
| 3250 | vma->node.size = size; |
| 3251 | vma->node.color = obj->cache_level; |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3252 | ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node); |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3253 | if (ret) { |
| 3254 | ret = i915_gem_evict_for_vma(vma); |
| 3255 | if (ret == 0) |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3256 | ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node); |
| 3257 | if (ret) |
| 3258 | goto err_unpin; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3259 | } |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3260 | } else { |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3261 | u32 search_flag, alloc_flag; |
| 3262 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3263 | if (flags & PIN_HIGH) { |
| 3264 | search_flag = DRM_MM_SEARCH_BELOW; |
| 3265 | alloc_flag = DRM_MM_CREATE_TOP; |
| 3266 | } else { |
| 3267 | search_flag = DRM_MM_SEARCH_DEFAULT; |
| 3268 | alloc_flag = DRM_MM_CREATE_DEFAULT; |
| 3269 | } |
Michel Thierry | 101b506 | 2015-10-01 13:33:57 +0100 | [diff] [blame] | 3270 | |
Chris Wilson | 954c469 | 2016-08-04 16:32:26 +0100 | [diff] [blame] | 3271 | /* We only allocate in PAGE_SIZE/GTT_PAGE_SIZE (4096) chunks, |
| 3272 | * so we know that we always have a minimum alignment of 4096. |
| 3273 | * The drm_mm range manager is optimised to return results |
| 3274 | * with zero alignment, so where possible use the optimal |
| 3275 | * path. |
| 3276 | */ |
| 3277 | if (alignment <= 4096) |
| 3278 | alignment = 0; |
| 3279 | |
Ben Widawsky | 0a9ae0d | 2013-05-25 12:26:35 -0700 | [diff] [blame] | 3280 | search_free: |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3281 | ret = drm_mm_insert_node_in_range_generic(&vma->vm->mm, |
| 3282 | &vma->node, |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3283 | size, alignment, |
| 3284 | obj->cache_level, |
| 3285 | start, end, |
| 3286 | search_flag, |
| 3287 | alloc_flag); |
| 3288 | if (ret) { |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3289 | ret = i915_gem_evict_something(vma->vm, size, alignment, |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3290 | obj->cache_level, |
| 3291 | start, end, |
| 3292 | flags); |
| 3293 | if (ret == 0) |
| 3294 | goto search_free; |
Chris Wilson | 9731129 | 2009-09-21 00:22:34 +0100 | [diff] [blame] | 3295 | |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3296 | goto err_unpin; |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3297 | } |
Chris Wilson | ad16d2e | 2016-10-13 09:55:04 +0100 | [diff] [blame] | 3298 | |
| 3299 | GEM_BUG_ON(vma->node.start < start); |
| 3300 | GEM_BUG_ON(vma->node.start + vma->node.size > end); |
Chris Wilson | dc9dd7a | 2012-12-07 20:37:07 +0000 | [diff] [blame] | 3301 | } |
Chris Wilson | 3750858 | 2016-08-04 16:32:24 +0100 | [diff] [blame] | 3302 | GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level)); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3303 | |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 3304 | list_move_tail(&obj->global_list, &dev_priv->mm.bound_list); |
Chris Wilson | de18003 | 2016-08-04 16:32:29 +0100 | [diff] [blame] | 3305 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3306 | obj->bind_count++; |
Chris Wilson | bf1a109 | 2010-08-07 11:01:20 +0100 | [diff] [blame] | 3307 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3308 | return 0; |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 3309 | |
Daniel Vetter | bc6bc15 | 2013-07-22 12:12:38 +0200 | [diff] [blame] | 3310 | err_unpin: |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 3311 | i915_gem_object_unpin_pages(obj); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3312 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3313 | } |
| 3314 | |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3315 | bool |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 3316 | i915_gem_clflush_object(struct drm_i915_gem_object *obj, |
| 3317 | bool force) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3318 | { |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3319 | /* If we don't have a page list set up, then we're not pinned |
| 3320 | * to GPU, and we can ignore the cache flush because it'll happen |
| 3321 | * again at bind time. |
| 3322 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3323 | if (obj->pages == NULL) |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3324 | return false; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3325 | |
Imre Deak | 769ce46 | 2013-02-13 21:56:05 +0200 | [diff] [blame] | 3326 | /* |
| 3327 | * Stolen memory is always coherent with the GPU as it is explicitly |
| 3328 | * marked as wc by the system, or the system is cache-coherent. |
| 3329 | */ |
Chris Wilson | 6a2c423 | 2014-11-04 04:51:40 -0800 | [diff] [blame] | 3330 | if (obj->stolen || obj->phys_handle) |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3331 | return false; |
Imre Deak | 769ce46 | 2013-02-13 21:56:05 +0200 | [diff] [blame] | 3332 | |
Chris Wilson | 9c23f7f | 2011-03-29 16:59:52 -0700 | [diff] [blame] | 3333 | /* If the GPU is snooping the contents of the CPU cache, |
| 3334 | * we do not need to manually clear the CPU cache lines. However, |
| 3335 | * the caches are only snooped when the render cache is |
| 3336 | * flushed/invalidated. As we always have to emit invalidations |
| 3337 | * and flushes when moving into and out of the RENDER domain, correct |
| 3338 | * snooping behaviour occurs naturally as the result of our domain |
| 3339 | * tracking. |
| 3340 | */ |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3341 | if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) { |
| 3342 | obj->cache_dirty = true; |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3343 | return false; |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3344 | } |
Chris Wilson | 9c23f7f | 2011-03-29 16:59:52 -0700 | [diff] [blame] | 3345 | |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3346 | trace_i915_gem_object_clflush(obj); |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 3347 | drm_clflush_sg(obj->pages); |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3348 | obj->cache_dirty = false; |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3349 | |
| 3350 | return true; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3351 | } |
| 3352 | |
| 3353 | /** Flushes the GTT write domain for the object if it's dirty. */ |
| 3354 | static void |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3355 | 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] | 3356 | { |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3357 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3358 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3359 | if (obj->base.write_domain != I915_GEM_DOMAIN_GTT) |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3360 | return; |
| 3361 | |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3362 | /* No actual flushing is required for the GTT write domain. Writes |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3363 | * 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] | 3364 | * no chipset flush. It also doesn't land in render cache. |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3365 | * |
| 3366 | * However, we do have to enforce the order so that all writes through |
| 3367 | * the GTT land before any writes to the device, such as updates to |
| 3368 | * the GATT itself. |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3369 | * |
| 3370 | * We also have to wait a bit for the writes to land from the GTT. |
| 3371 | * An uncached read (i.e. mmio) seems to be ideal for the round-trip |
| 3372 | * timing. This issue has only been observed when switching quickly |
| 3373 | * between GTT writes and CPU reads from inside the kernel on recent hw, |
| 3374 | * and it appears to only affect discrete GTT blocks (i.e. on LLC |
| 3375 | * system agents we cannot reproduce this behaviour). |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3376 | */ |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3377 | wmb(); |
Chris Wilson | 3b5724d | 2016-08-18 17:16:49 +0100 | [diff] [blame] | 3378 | if (INTEL_GEN(dev_priv) >= 6 && !HAS_LLC(dev_priv)) |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 3379 | POSTING_READ(RING_ACTHD(dev_priv->engine[RCS]->mmio_base)); |
Chris Wilson | 63256ec | 2011-01-04 18:42:07 +0000 | [diff] [blame] | 3380 | |
Chris Wilson | d243ad8 | 2016-08-18 17:16:44 +0100 | [diff] [blame] | 3381 | 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] | 3382 | |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3383 | obj->base.write_domain = 0; |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3384 | trace_i915_gem_object_change_domain(obj, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3385 | obj->base.read_domains, |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3386 | I915_GEM_DOMAIN_GTT); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3387 | } |
| 3388 | |
| 3389 | /** Flushes the CPU write domain for the object if it's dirty. */ |
| 3390 | static void |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3391 | 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] | 3392 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3393 | if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3394 | return; |
| 3395 | |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3396 | if (i915_gem_clflush_object(obj, obj->pin_display)) |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3397 | i915_gem_chipset_flush(to_i915(obj->base.dev)); |
Chris Wilson | 000433b | 2013-08-08 14:41:09 +0100 | [diff] [blame] | 3398 | |
Rodrigo Vivi | de152b6 | 2015-07-07 16:28:51 -0700 | [diff] [blame] | 3399 | intel_fb_obj_flush(obj, false, ORIGIN_CPU); |
Daniel Vetter | f99d706 | 2014-06-19 16:01:59 +0200 | [diff] [blame] | 3400 | |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3401 | obj->base.write_domain = 0; |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3402 | trace_i915_gem_object_change_domain(obj, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3403 | obj->base.read_domains, |
Chris Wilson | b0dc465 | 2016-08-18 17:16:51 +0100 | [diff] [blame] | 3404 | I915_GEM_DOMAIN_CPU); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3405 | } |
| 3406 | |
Chris Wilson | 383d582 | 2016-08-18 17:17:08 +0100 | [diff] [blame] | 3407 | static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj) |
| 3408 | { |
| 3409 | struct i915_vma *vma; |
| 3410 | |
| 3411 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
| 3412 | if (!i915_vma_is_ggtt(vma)) |
| 3413 | continue; |
| 3414 | |
| 3415 | if (i915_vma_is_active(vma)) |
| 3416 | continue; |
| 3417 | |
| 3418 | if (!drm_mm_node_allocated(&vma->node)) |
| 3419 | continue; |
| 3420 | |
| 3421 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
| 3422 | } |
| 3423 | } |
| 3424 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3425 | /** |
| 3426 | * Moves a single object to the GTT read, and possibly write domain. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3427 | * @obj: object to act on |
| 3428 | * @write: ask for write access or read only |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3429 | * |
| 3430 | * This function returns when the move is complete, including waiting on |
| 3431 | * flushes to occur. |
| 3432 | */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 3433 | int |
Chris Wilson | 2021746 | 2010-11-23 15:26:33 +0000 | [diff] [blame] | 3434 | 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] | 3435 | { |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3436 | uint32_t old_write_domain, old_read_domains; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3437 | int ret; |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3438 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3439 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 3440 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3441 | ret = i915_gem_object_wait(obj, |
| 3442 | I915_WAIT_INTERRUPTIBLE | |
| 3443 | I915_WAIT_LOCKED | |
| 3444 | (write ? I915_WAIT_ALL : 0), |
| 3445 | MAX_SCHEDULE_TIMEOUT, |
| 3446 | NULL); |
Chris Wilson | 8824178 | 2011-01-07 17:09:48 +0000 | [diff] [blame] | 3447 | if (ret) |
| 3448 | return ret; |
| 3449 | |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 3450 | if (obj->base.write_domain == I915_GEM_DOMAIN_GTT) |
| 3451 | return 0; |
| 3452 | |
Chris Wilson | 43566de | 2015-01-02 16:29:29 +0530 | [diff] [blame] | 3453 | /* Flush and acquire obj->pages so that we are coherent through |
| 3454 | * direct access in memory with previous cached writes through |
| 3455 | * shmemfs and that our cache domain tracking remains valid. |
| 3456 | * For example, if the obj->filp was moved to swap without us |
| 3457 | * being notified and releasing the pages, we would mistakenly |
| 3458 | * continue to assume that the obj remained out of the CPU cached |
| 3459 | * domain. |
| 3460 | */ |
| 3461 | ret = i915_gem_object_get_pages(obj); |
| 3462 | if (ret) |
| 3463 | return ret; |
| 3464 | |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3465 | i915_gem_object_flush_cpu_write_domain(obj); |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3466 | |
Chris Wilson | d0a5778 | 2012-10-09 19:24:37 +0100 | [diff] [blame] | 3467 | /* Serialise direct access to this object with the barriers for |
| 3468 | * coherent writes from the GPU, by effectively invalidating the |
| 3469 | * GTT domain upon first access. |
| 3470 | */ |
| 3471 | if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) |
| 3472 | mb(); |
| 3473 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3474 | old_write_domain = obj->base.write_domain; |
| 3475 | old_read_domains = obj->base.read_domains; |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3476 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3477 | /* It should now be out of any other write domains, and we can update |
| 3478 | * the domain values for our changes. |
| 3479 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3480 | BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0); |
| 3481 | obj->base.read_domains |= I915_GEM_DOMAIN_GTT; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3482 | if (write) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3483 | obj->base.read_domains = I915_GEM_DOMAIN_GTT; |
| 3484 | obj->base.write_domain = I915_GEM_DOMAIN_GTT; |
| 3485 | obj->dirty = 1; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3486 | } |
| 3487 | |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3488 | trace_i915_gem_object_change_domain(obj, |
| 3489 | old_read_domains, |
| 3490 | old_write_domain); |
| 3491 | |
Chris Wilson | 8325a09 | 2012-04-24 15:52:35 +0100 | [diff] [blame] | 3492 | /* And bump the LRU for this access */ |
Chris Wilson | 383d582 | 2016-08-18 17:17:08 +0100 | [diff] [blame] | 3493 | i915_gem_object_bump_inactive_ggtt(obj); |
Chris Wilson | 8325a09 | 2012-04-24 15:52:35 +0100 | [diff] [blame] | 3494 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3495 | return 0; |
| 3496 | } |
| 3497 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3498 | /** |
| 3499 | * Changes the cache-level of an object across all VMA. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3500 | * @obj: object to act on |
| 3501 | * @cache_level: new cache level to set for the object |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3502 | * |
| 3503 | * After this function returns, the object will be in the new cache-level |
| 3504 | * across all GTT and the contents of the backing storage will be coherent, |
| 3505 | * with respect to the new cache-level. In order to keep the backing storage |
| 3506 | * coherent for all users, we only allow a single cache level to be set |
| 3507 | * globally on the object and prevent it from being changed whilst the |
| 3508 | * hardware is reading from the object. That is if the object is currently |
| 3509 | * on the scanout it will be set to uncached (or equivalent display |
| 3510 | * cache coherency) and all non-MOCS GPU access will also be uncached so |
| 3511 | * that all direct access to the scanout remains coherent. |
| 3512 | */ |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3513 | int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj, |
| 3514 | enum i915_cache_level cache_level) |
| 3515 | { |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3516 | struct i915_vma *vma; |
Ville Syrjälä | ed75a55 | 2015-08-11 19:47:10 +0300 | [diff] [blame] | 3517 | int ret = 0; |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3518 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 3519 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 3520 | |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3521 | if (obj->cache_level == cache_level) |
Ville Syrjälä | ed75a55 | 2015-08-11 19:47:10 +0300 | [diff] [blame] | 3522 | goto out; |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3523 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3524 | /* Inspect the list of currently bound VMA and unbind any that would |
| 3525 | * be invalid given the new cache-level. This is principally to |
| 3526 | * catch the issue of the CS prefetch crossing page boundaries and |
| 3527 | * reading an invalid PTE on older architectures. |
| 3528 | */ |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3529 | restart: |
| 3530 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3531 | if (!drm_mm_node_allocated(&vma->node)) |
| 3532 | continue; |
| 3533 | |
Chris Wilson | 20dfbde | 2016-08-04 16:32:30 +0100 | [diff] [blame] | 3534 | if (i915_vma_is_pinned(vma)) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3535 | DRM_DEBUG("can not change the cache level of pinned objects\n"); |
| 3536 | return -EBUSY; |
| 3537 | } |
| 3538 | |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3539 | if (i915_gem_valid_gtt_space(vma, cache_level)) |
| 3540 | continue; |
| 3541 | |
| 3542 | ret = i915_vma_unbind(vma); |
| 3543 | if (ret) |
| 3544 | return ret; |
| 3545 | |
| 3546 | /* As unbinding may affect other elements in the |
| 3547 | * obj->vma_list (due to side-effects from retiring |
| 3548 | * an active vma), play safe and restart the iterator. |
| 3549 | */ |
| 3550 | goto restart; |
Chris Wilson | 42d6ab4 | 2012-07-26 11:49:32 +0100 | [diff] [blame] | 3551 | } |
| 3552 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3553 | /* We can reuse the existing drm_mm nodes but need to change the |
| 3554 | * cache-level on the PTE. We could simply unbind them all and |
| 3555 | * rebind with the correct cache-level on next use. However since |
| 3556 | * we already have a valid slot, dma mapping, pages etc, we may as |
| 3557 | * rewrite the PTE in the belief that doing so tramples upon less |
| 3558 | * state and so involves less work. |
| 3559 | */ |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 3560 | if (obj->bind_count) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3561 | /* Before we change the PTE, the GPU must not be accessing it. |
| 3562 | * If we wait upon the object, we know that all the bound |
| 3563 | * VMA are no longer active. |
| 3564 | */ |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3565 | ret = i915_gem_object_wait(obj, |
| 3566 | I915_WAIT_INTERRUPTIBLE | |
| 3567 | I915_WAIT_LOCKED | |
| 3568 | I915_WAIT_ALL, |
| 3569 | MAX_SCHEDULE_TIMEOUT, |
| 3570 | NULL); |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3571 | if (ret) |
| 3572 | return ret; |
| 3573 | |
Chris Wilson | aa653a6 | 2016-08-04 07:52:27 +0100 | [diff] [blame] | 3574 | if (!HAS_LLC(obj->base.dev) && cache_level != I915_CACHE_NONE) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3575 | /* Access to snoopable pages through the GTT is |
| 3576 | * incoherent and on some machines causes a hard |
| 3577 | * lockup. Relinquish the CPU mmaping to force |
| 3578 | * userspace to refault in the pages and we can |
| 3579 | * then double check if the GTT mapping is still |
| 3580 | * valid for that pointer access. |
| 3581 | */ |
| 3582 | i915_gem_release_mmap(obj); |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3583 | |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3584 | /* As we no longer need a fence for GTT access, |
| 3585 | * we can relinquish it now (and so prevent having |
| 3586 | * to steal a fence from someone else on the next |
| 3587 | * fence request). Note GPU activity would have |
| 3588 | * dropped the fence as all snoopable access is |
| 3589 | * supposed to be linear. |
| 3590 | */ |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 3591 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
| 3592 | ret = i915_vma_put_fence(vma); |
| 3593 | if (ret) |
| 3594 | return ret; |
| 3595 | } |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3596 | } else { |
| 3597 | /* We either have incoherent backing store and |
| 3598 | * so no GTT access or the architecture is fully |
| 3599 | * coherent. In such cases, existing GTT mmaps |
| 3600 | * ignore the cache bit in the PTE and we can |
| 3601 | * rewrite it without confusing the GPU or having |
| 3602 | * to force userspace to fault back in its mmaps. |
| 3603 | */ |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3604 | } |
| 3605 | |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 3606 | list_for_each_entry(vma, &obj->vma_list, obj_link) { |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3607 | if (!drm_mm_node_allocated(&vma->node)) |
| 3608 | continue; |
| 3609 | |
| 3610 | ret = i915_vma_bind(vma, cache_level, PIN_UPDATE); |
| 3611 | if (ret) |
| 3612 | return ret; |
| 3613 | } |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3614 | } |
| 3615 | |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 3616 | list_for_each_entry(vma, &obj->vma_list, obj_link) |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 3617 | vma->node.color = cache_level; |
| 3618 | obj->cache_level = cache_level; |
| 3619 | |
Ville Syrjälä | ed75a55 | 2015-08-11 19:47:10 +0300 | [diff] [blame] | 3620 | out: |
Chris Wilson | ef55f92 | 2015-10-09 14:11:27 +0100 | [diff] [blame] | 3621 | /* Flush the dirty CPU caches to the backing storage so that the |
| 3622 | * object is now coherent at its new cache level (with respect |
| 3623 | * to the access domain). |
| 3624 | */ |
Ankitprasad Sharma | b50a537 | 2016-06-10 14:23:03 +0530 | [diff] [blame] | 3625 | if (obj->cache_dirty && cpu_write_needs_clflush(obj)) { |
Chris Wilson | 0f71979 | 2015-01-13 13:32:52 +0000 | [diff] [blame] | 3626 | if (i915_gem_clflush_object(obj, true)) |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 3627 | i915_gem_chipset_flush(to_i915(obj->base.dev)); |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3628 | } |
| 3629 | |
Chris Wilson | e4ffd17 | 2011-04-04 09:44:39 +0100 | [diff] [blame] | 3630 | return 0; |
| 3631 | } |
| 3632 | |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3633 | int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data, |
| 3634 | struct drm_file *file) |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3635 | { |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3636 | struct drm_i915_gem_caching *args = data; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3637 | struct drm_i915_gem_object *obj; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3638 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 3639 | obj = i915_gem_object_lookup(file, args->handle); |
| 3640 | if (!obj) |
Chris Wilson | 432be69 | 2015-05-07 12:14:55 +0100 | [diff] [blame] | 3641 | return -ENOENT; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3642 | |
Chris Wilson | 651d794 | 2013-08-08 14:41:10 +0100 | [diff] [blame] | 3643 | switch (obj->cache_level) { |
| 3644 | case I915_CACHE_LLC: |
| 3645 | case I915_CACHE_L3_LLC: |
| 3646 | args->caching = I915_CACHING_CACHED; |
| 3647 | break; |
| 3648 | |
Chris Wilson | 4257d3b | 2013-08-08 14:41:11 +0100 | [diff] [blame] | 3649 | case I915_CACHE_WT: |
| 3650 | args->caching = I915_CACHING_DISPLAY; |
| 3651 | break; |
| 3652 | |
Chris Wilson | 651d794 | 2013-08-08 14:41:10 +0100 | [diff] [blame] | 3653 | default: |
| 3654 | args->caching = I915_CACHING_NONE; |
| 3655 | break; |
| 3656 | } |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3657 | |
Chris Wilson | 34911fd | 2016-07-20 13:31:54 +0100 | [diff] [blame] | 3658 | i915_gem_object_put_unlocked(obj); |
Chris Wilson | 432be69 | 2015-05-07 12:14:55 +0100 | [diff] [blame] | 3659 | return 0; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3660 | } |
| 3661 | |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3662 | int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data, |
| 3663 | struct drm_file *file) |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3664 | { |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3665 | struct drm_i915_private *i915 = to_i915(dev); |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3666 | struct drm_i915_gem_caching *args = data; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3667 | struct drm_i915_gem_object *obj; |
| 3668 | enum i915_cache_level level; |
| 3669 | int ret; |
| 3670 | |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3671 | switch (args->caching) { |
| 3672 | case I915_CACHING_NONE: |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3673 | level = I915_CACHE_NONE; |
| 3674 | break; |
Ben Widawsky | 199adf4 | 2012-09-21 17:01:20 -0700 | [diff] [blame] | 3675 | case I915_CACHING_CACHED: |
Imre Deak | e5756c1 | 2015-08-14 18:43:30 +0300 | [diff] [blame] | 3676 | /* |
| 3677 | * Due to a HW issue on BXT A stepping, GPU stores via a |
| 3678 | * snooped mapping may leave stale data in a corresponding CPU |
| 3679 | * cacheline, whereas normally such cachelines would get |
| 3680 | * invalidated. |
| 3681 | */ |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3682 | if (!HAS_LLC(i915) && !HAS_SNOOP(i915)) |
Imre Deak | e5756c1 | 2015-08-14 18:43:30 +0300 | [diff] [blame] | 3683 | return -ENODEV; |
| 3684 | |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3685 | level = I915_CACHE_LLC; |
| 3686 | break; |
Chris Wilson | 4257d3b | 2013-08-08 14:41:11 +0100 | [diff] [blame] | 3687 | case I915_CACHING_DISPLAY: |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3688 | level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE; |
Chris Wilson | 4257d3b | 2013-08-08 14:41:11 +0100 | [diff] [blame] | 3689 | break; |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3690 | default: |
| 3691 | return -EINVAL; |
| 3692 | } |
| 3693 | |
Ben Widawsky | 3bc2913 | 2012-09-26 16:15:20 -0700 | [diff] [blame] | 3694 | ret = i915_mutex_lock_interruptible(dev); |
| 3695 | if (ret) |
Chris Wilson | 9c870d0 | 2016-10-24 13:42:15 +0100 | [diff] [blame] | 3696 | return ret; |
Ben Widawsky | 3bc2913 | 2012-09-26 16:15:20 -0700 | [diff] [blame] | 3697 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 3698 | obj = i915_gem_object_lookup(file, args->handle); |
| 3699 | if (!obj) { |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3700 | ret = -ENOENT; |
| 3701 | goto unlock; |
| 3702 | } |
| 3703 | |
| 3704 | ret = i915_gem_object_set_cache_level(obj, level); |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 3705 | i915_gem_object_put(obj); |
Chris Wilson | e6994ae | 2012-07-10 10:27:08 +0100 | [diff] [blame] | 3706 | unlock: |
| 3707 | mutex_unlock(&dev->struct_mutex); |
| 3708 | return ret; |
| 3709 | } |
| 3710 | |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3711 | /* |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3712 | * Prepare buffer for display plane (scanout, cursors, etc). |
| 3713 | * Can be called from an uninterruptible phase (modesetting) and allows |
| 3714 | * any flushes to be pipelined (for pageflips). |
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 * |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3717 | i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj, |
| 3718 | u32 alignment, |
Tvrtko Ursulin | e661733 | 2015-03-23 11:10:33 +0000 | [diff] [blame] | 3719 | const struct i915_ggtt_view *view) |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3720 | { |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3721 | struct i915_vma *vma; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3722 | u32 old_read_domains, old_write_domain; |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3723 | int ret; |
| 3724 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 3725 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 3726 | |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3727 | /* Mark the pin_display early so that we account for the |
| 3728 | * display coherency whilst setting up the cache domains. |
| 3729 | */ |
Tvrtko Ursulin | 8a0c39b | 2015-04-13 11:50:09 +0100 | [diff] [blame] | 3730 | obj->pin_display++; |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3731 | |
Eric Anholt | a7ef064 | 2011-03-29 16:59:54 -0700 | [diff] [blame] | 3732 | /* The display engine is not coherent with the LLC cache on gen6. As |
| 3733 | * a result, we make sure that the pinning that is about to occur is |
| 3734 | * done with uncached PTEs. This is lowest common denominator for all |
| 3735 | * chipsets. |
| 3736 | * |
| 3737 | * However for gen6+, we could do better by using the GFDT bit instead |
| 3738 | * of uncaching, which would allow us to flush all the LLC-cached data |
| 3739 | * with that bit in the PTE to main memory with just one PIPE_CONTROL. |
| 3740 | */ |
Chris Wilson | 651d794 | 2013-08-08 14:41:10 +0100 | [diff] [blame] | 3741 | ret = i915_gem_object_set_cache_level(obj, |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3742 | HAS_WT(to_i915(obj->base.dev)) ? |
| 3743 | I915_CACHE_WT : I915_CACHE_NONE); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3744 | if (ret) { |
| 3745 | vma = ERR_PTR(ret); |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3746 | goto err_unpin_display; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3747 | } |
Eric Anholt | a7ef064 | 2011-03-29 16:59:54 -0700 | [diff] [blame] | 3748 | |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3749 | /* As the user may map the buffer once pinned in the display plane |
| 3750 | * (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] | 3751 | * always use map_and_fenceable for all scanout buffers. However, |
| 3752 | * it may simply be too big to fit into mappable, in which case |
| 3753 | * put it anyway and hope that userspace can cope (but always first |
| 3754 | * try to preserve the existing ABI). |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3755 | */ |
Chris Wilson | 2efb813 | 2016-08-18 17:17:06 +0100 | [diff] [blame] | 3756 | vma = ERR_PTR(-ENOSPC); |
| 3757 | if (view->type == I915_GGTT_VIEW_NORMAL) |
| 3758 | vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, |
| 3759 | PIN_MAPPABLE | PIN_NONBLOCK); |
| 3760 | if (IS_ERR(vma)) |
| 3761 | vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, 0); |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3762 | if (IS_ERR(vma)) |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3763 | goto err_unpin_display; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3764 | |
Chris Wilson | d8923dc | 2016-08-18 17:17:07 +0100 | [diff] [blame] | 3765 | vma->display_alignment = max_t(u64, vma->display_alignment, alignment); |
| 3766 | |
Daniel Vetter | e62b59e | 2015-01-21 14:53:48 +0100 | [diff] [blame] | 3767 | i915_gem_object_flush_cpu_write_domain(obj); |
Chris Wilson | b118c1e | 2010-05-27 13:18:14 +0100 | [diff] [blame] | 3768 | |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3769 | old_write_domain = obj->base.write_domain; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3770 | old_read_domains = obj->base.read_domains; |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3771 | |
| 3772 | /* It should now be out of any other write domains, and we can update |
| 3773 | * the domain values for our changes. |
| 3774 | */ |
Chris Wilson | e5f1d96 | 2012-07-20 12:41:00 +0100 | [diff] [blame] | 3775 | obj->base.write_domain = 0; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3776 | obj->base.read_domains |= I915_GEM_DOMAIN_GTT; |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3777 | |
| 3778 | trace_i915_gem_object_change_domain(obj, |
| 3779 | old_read_domains, |
Chris Wilson | 2da3b9b | 2011-04-14 09:41:17 +0100 | [diff] [blame] | 3780 | old_write_domain); |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3781 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3782 | return vma; |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3783 | |
| 3784 | err_unpin_display: |
Tvrtko Ursulin | 8a0c39b | 2015-04-13 11:50:09 +0100 | [diff] [blame] | 3785 | obj->pin_display--; |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3786 | return vma; |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3787 | } |
| 3788 | |
| 3789 | void |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3790 | i915_gem_object_unpin_from_display_plane(struct i915_vma *vma) |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 3791 | { |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 3792 | lockdep_assert_held(&vma->vm->dev->struct_mutex); |
| 3793 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3794 | if (WARN_ON(vma->obj->pin_display == 0)) |
Tvrtko Ursulin | 8a0c39b | 2015-04-13 11:50:09 +0100 | [diff] [blame] | 3795 | return; |
| 3796 | |
Chris Wilson | d8923dc | 2016-08-18 17:17:07 +0100 | [diff] [blame] | 3797 | if (--vma->obj->pin_display == 0) |
| 3798 | vma->display_alignment = 0; |
Tvrtko Ursulin | e661733 | 2015-03-23 11:10:33 +0000 | [diff] [blame] | 3799 | |
Chris Wilson | 383d582 | 2016-08-18 17:17:08 +0100 | [diff] [blame] | 3800 | /* Bump the LRU to try and avoid premature eviction whilst flipping */ |
| 3801 | if (!i915_vma_is_active(vma)) |
| 3802 | list_move_tail(&vma->vm_link, &vma->vm->inactive_list); |
| 3803 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 3804 | i915_vma_unpin(vma); |
Zhenyu Wang | b9241ea | 2009-11-25 13:09:39 +0800 | [diff] [blame] | 3805 | } |
| 3806 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3807 | /** |
| 3808 | * Moves a single object to the CPU read, and possibly write domain. |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 3809 | * @obj: object to act on |
| 3810 | * @write: requesting write or read-only access |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3811 | * |
| 3812 | * This function returns when the move is complete, including waiting on |
| 3813 | * flushes to occur. |
| 3814 | */ |
Chris Wilson | dabdfe0 | 2012-03-26 10:10:27 +0200 | [diff] [blame] | 3815 | int |
Chris Wilson | 919926a | 2010-11-12 13:42:53 +0000 | [diff] [blame] | 3816 | 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] | 3817 | { |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3818 | uint32_t old_write_domain, old_read_domains; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3819 | int ret; |
| 3820 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3821 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 3822 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3823 | ret = i915_gem_object_wait(obj, |
| 3824 | I915_WAIT_INTERRUPTIBLE | |
| 3825 | I915_WAIT_LOCKED | |
| 3826 | (write ? I915_WAIT_ALL : 0), |
| 3827 | MAX_SCHEDULE_TIMEOUT, |
| 3828 | NULL); |
Chris Wilson | 8824178 | 2011-01-07 17:09:48 +0000 | [diff] [blame] | 3829 | if (ret) |
| 3830 | return ret; |
| 3831 | |
Chris Wilson | c13d87e | 2016-07-20 09:21:15 +0100 | [diff] [blame] | 3832 | if (obj->base.write_domain == I915_GEM_DOMAIN_CPU) |
| 3833 | return 0; |
| 3834 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3835 | i915_gem_object_flush_gtt_write_domain(obj); |
| 3836 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3837 | old_write_domain = obj->base.write_domain; |
| 3838 | old_read_domains = obj->base.read_domains; |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3839 | |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3840 | /* Flush the CPU cache if it's still invalid. */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3841 | if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) { |
Chris Wilson | 2c22569 | 2013-08-09 12:26:45 +0100 | [diff] [blame] | 3842 | i915_gem_clflush_object(obj, false); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3843 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3844 | obj->base.read_domains |= I915_GEM_DOMAIN_CPU; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3845 | } |
| 3846 | |
| 3847 | /* It should now be out of any other write domains, and we can update |
| 3848 | * the domain values for our changes. |
| 3849 | */ |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3850 | BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0); |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3851 | |
| 3852 | /* If we're writing through the CPU, then the GPU read domains will |
| 3853 | * need to be invalidated at next use. |
| 3854 | */ |
| 3855 | if (write) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 3856 | obj->base.read_domains = I915_GEM_DOMAIN_CPU; |
| 3857 | obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
Eric Anholt | e47c68e | 2008-11-14 13:35:19 -0800 | [diff] [blame] | 3858 | } |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3859 | |
Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 3860 | trace_i915_gem_object_change_domain(obj, |
| 3861 | old_read_domains, |
| 3862 | old_write_domain); |
| 3863 | |
Eric Anholt | 2ef7eea | 2008-11-10 10:53:25 -0800 | [diff] [blame] | 3864 | return 0; |
| 3865 | } |
| 3866 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3867 | /* Throttle our rendering by waiting until the ring has completed our requests |
| 3868 | * emitted over 20 msec ago. |
| 3869 | * |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 3870 | * Note that if we were to use the current jiffies each time around the loop, |
| 3871 | * we wouldn't escape the function with any frames outstanding if the time to |
| 3872 | * render a frame was over 20ms. |
| 3873 | * |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3874 | * This should get us reasonable parallelism between CPU and GPU but also |
| 3875 | * relatively low latency when blocking on a particular request to finish. |
| 3876 | */ |
| 3877 | static int |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3878 | i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3879 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 3880 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3881 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Chris Wilson | d0bc54f | 2015-05-21 21:01:48 +0100 | [diff] [blame] | 3882 | unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES; |
John Harrison | 54fb241 | 2014-11-24 18:49:27 +0000 | [diff] [blame] | 3883 | struct drm_i915_gem_request *request, *target = NULL; |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3884 | long ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3885 | |
Chris Wilson | f4457ae | 2016-04-13 17:35:08 +0100 | [diff] [blame] | 3886 | /* ABI: return -EIO if already wedged */ |
| 3887 | if (i915_terminally_wedged(&dev_priv->gpu_error)) |
| 3888 | return -EIO; |
Chris Wilson | e110e8d | 2011-01-26 15:39:14 +0000 | [diff] [blame] | 3889 | |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 3890 | spin_lock(&file_priv->mm.lock); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3891 | list_for_each_entry(request, &file_priv->mm.request_list, client_list) { |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 3892 | if (time_after_eq(request->emitted_jiffies, recent_enough)) |
| 3893 | break; |
| 3894 | |
John Harrison | fcfa423c | 2015-05-29 17:44:12 +0100 | [diff] [blame] | 3895 | /* |
| 3896 | * Note that the request might not have been submitted yet. |
| 3897 | * In which case emitted_jiffies will be zero. |
| 3898 | */ |
| 3899 | if (!request->emitted_jiffies) |
| 3900 | continue; |
| 3901 | |
John Harrison | 54fb241 | 2014-11-24 18:49:27 +0000 | [diff] [blame] | 3902 | target = request; |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 3903 | } |
John Harrison | ff86588 | 2014-11-24 18:49:28 +0000 | [diff] [blame] | 3904 | if (target) |
Chris Wilson | e8a261e | 2016-07-20 13:31:49 +0100 | [diff] [blame] | 3905 | i915_gem_request_get(target); |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 3906 | spin_unlock(&file_priv->mm.lock); |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3907 | |
John Harrison | 54fb241 | 2014-11-24 18:49:27 +0000 | [diff] [blame] | 3908 | if (target == NULL) |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 3909 | return 0; |
| 3910 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3911 | ret = i915_wait_request(target, |
| 3912 | I915_WAIT_INTERRUPTIBLE, |
| 3913 | MAX_SCHEDULE_TIMEOUT); |
Chris Wilson | e8a261e | 2016-07-20 13:31:49 +0100 | [diff] [blame] | 3914 | i915_gem_request_put(target); |
John Harrison | ff86588 | 2014-11-24 18:49:28 +0000 | [diff] [blame] | 3915 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 3916 | return ret < 0 ? ret : 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3917 | } |
| 3918 | |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3919 | static bool |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3920 | 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] | 3921 | { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3922 | if (!drm_mm_node_allocated(&vma->node)) |
| 3923 | return false; |
| 3924 | |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 3925 | if (vma->node.size < size) |
| 3926 | return true; |
| 3927 | |
| 3928 | if (alignment && vma->node.start & (alignment - 1)) |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3929 | return true; |
| 3930 | |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3931 | if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma)) |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3932 | return true; |
| 3933 | |
| 3934 | if (flags & PIN_OFFSET_BIAS && |
| 3935 | vma->node.start < (flags & PIN_OFFSET_MASK)) |
| 3936 | return true; |
| 3937 | |
Chris Wilson | 506a8e8 | 2015-12-08 11:55:07 +0000 | [diff] [blame] | 3938 | if (flags & PIN_OFFSET_FIXED && |
| 3939 | vma->node.start != (flags & PIN_OFFSET_MASK)) |
| 3940 | return true; |
| 3941 | |
Chris Wilson | d23db88 | 2014-05-23 08:48:08 +0200 | [diff] [blame] | 3942 | return false; |
| 3943 | } |
| 3944 | |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3945 | void __i915_vma_set_map_and_fenceable(struct i915_vma *vma) |
| 3946 | { |
| 3947 | struct drm_i915_gem_object *obj = vma->obj; |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3948 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3949 | bool mappable, fenceable; |
| 3950 | u32 fence_size, fence_alignment; |
| 3951 | |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3952 | fence_size = i915_gem_get_ggtt_size(dev_priv, |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3953 | vma->size, |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 3954 | i915_gem_object_get_tiling(obj)); |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3955 | fence_alignment = i915_gem_get_ggtt_alignment(dev_priv, |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3956 | vma->size, |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 3957 | i915_gem_object_get_tiling(obj), |
Chris Wilson | ad1a7d2 | 2016-08-04 16:32:27 +0100 | [diff] [blame] | 3958 | true); |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3959 | |
| 3960 | fenceable = (vma->node.size == fence_size && |
| 3961 | (vma->node.start & (fence_alignment - 1)) == 0); |
| 3962 | |
| 3963 | mappable = (vma->node.start + fence_size <= |
Chris Wilson | a9f1481 | 2016-08-04 16:32:28 +0100 | [diff] [blame] | 3964 | dev_priv->ggtt.mappable_end); |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3965 | |
Tvrtko Ursulin | 07ee2bc | 2016-10-25 17:40:35 +0100 | [diff] [blame] | 3966 | /* |
| 3967 | * Explicitly disable for rotated VMA since the display does not |
| 3968 | * need the fence and the VMA is not accessible to other users. |
| 3969 | */ |
| 3970 | if (mappable && fenceable && |
| 3971 | vma->ggtt_view.type != I915_GGTT_VIEW_ROTATED) |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 3972 | vma->flags |= I915_VMA_CAN_FENCE; |
| 3973 | else |
| 3974 | vma->flags &= ~I915_VMA_CAN_FENCE; |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 3975 | } |
| 3976 | |
Chris Wilson | 305bc23 | 2016-08-04 16:32:33 +0100 | [diff] [blame] | 3977 | int __i915_vma_do_pin(struct i915_vma *vma, |
| 3978 | u64 size, u64 alignment, u64 flags) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3979 | { |
Chris Wilson | 305bc23 | 2016-08-04 16:32:33 +0100 | [diff] [blame] | 3980 | unsigned int bound = vma->flags; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 3981 | int ret; |
| 3982 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 3983 | lockdep_assert_held(&vma->vm->dev->struct_mutex); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3984 | GEM_BUG_ON((flags & (PIN_GLOBAL | PIN_USER)) == 0); |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 3985 | GEM_BUG_ON((flags & PIN_GLOBAL) && !i915_vma_is_ggtt(vma)); |
Ben Widawsky | 6e7186a | 2014-05-06 22:21:36 -0700 | [diff] [blame] | 3986 | |
Chris Wilson | 305bc23 | 2016-08-04 16:32:33 +0100 | [diff] [blame] | 3987 | if (WARN_ON(bound & I915_VMA_PIN_OVERFLOW)) { |
| 3988 | ret = -EBUSY; |
| 3989 | goto err; |
| 3990 | } |
Chris Wilson | c826c44 | 2014-10-31 13:53:53 +0000 | [diff] [blame] | 3991 | |
Chris Wilson | de89508 | 2016-08-04 16:32:34 +0100 | [diff] [blame] | 3992 | if ((bound & I915_VMA_BIND_MASK) == 0) { |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3993 | ret = i915_vma_insert(vma, size, alignment, flags); |
| 3994 | if (ret) |
| 3995 | goto err; |
Chris Wilson | ac0c6b5 | 2010-05-27 13:18:18 +0100 | [diff] [blame] | 3996 | } |
| 3997 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 3998 | ret = i915_vma_bind(vma, vma->obj->cache_level, flags); |
Chris Wilson | 3b16525 | 2016-08-04 16:32:25 +0100 | [diff] [blame] | 3999 | if (ret) |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4000 | goto err; |
Chris Wilson | 3b16525 | 2016-08-04 16:32:25 +0100 | [diff] [blame] | 4001 | |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 4002 | if ((bound ^ vma->flags) & I915_VMA_GLOBAL_BIND) |
Chris Wilson | d0710ab | 2015-11-20 14:16:39 +0000 | [diff] [blame] | 4003 | __i915_vma_set_map_and_fenceable(vma); |
Chris Wilson | ef79e17 | 2014-10-31 13:53:52 +0000 | [diff] [blame] | 4004 | |
Chris Wilson | 3b16525 | 2016-08-04 16:32:25 +0100 | [diff] [blame] | 4005 | GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags)); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4006 | return 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4007 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4008 | err: |
| 4009 | __i915_vma_unpin(vma); |
| 4010 | return ret; |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4011 | } |
| 4012 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4013 | struct i915_vma * |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4014 | i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj, |
| 4015 | const struct i915_ggtt_view *view, |
Chris Wilson | 91b2db6 | 2016-08-04 16:32:23 +0100 | [diff] [blame] | 4016 | u64 size, |
Chris Wilson | 2ffffd0 | 2016-08-04 16:32:22 +0100 | [diff] [blame] | 4017 | u64 alignment, |
| 4018 | u64 flags) |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4019 | { |
Chris Wilson | ad16d2e | 2016-10-13 09:55:04 +0100 | [diff] [blame] | 4020 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
| 4021 | struct i915_address_space *vm = &dev_priv->ggtt.base; |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4022 | struct i915_vma *vma; |
| 4023 | int ret; |
Joonas Lahtinen | 72e96d6 | 2016-03-30 16:57:10 +0300 | [diff] [blame] | 4024 | |
Chris Wilson | 4c7d62c | 2016-10-28 13:58:32 +0100 | [diff] [blame^] | 4025 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 4026 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4027 | vma = i915_gem_obj_lookup_or_create_vma(obj, vm, view); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4028 | if (IS_ERR(vma)) |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4029 | return vma; |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4030 | |
| 4031 | if (i915_vma_misplaced(vma, size, alignment, flags)) { |
| 4032 | if (flags & PIN_NONBLOCK && |
| 4033 | (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))) |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4034 | return ERR_PTR(-ENOSPC); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4035 | |
Chris Wilson | ad16d2e | 2016-10-13 09:55:04 +0100 | [diff] [blame] | 4036 | if (flags & PIN_MAPPABLE) { |
| 4037 | u32 fence_size; |
| 4038 | |
| 4039 | fence_size = i915_gem_get_ggtt_size(dev_priv, vma->size, |
| 4040 | i915_gem_object_get_tiling(obj)); |
| 4041 | /* If the required space is larger than the available |
| 4042 | * aperture, we will not able to find a slot for the |
| 4043 | * object and unbinding the object now will be in |
| 4044 | * vain. Worse, doing so may cause us to ping-pong |
| 4045 | * the object in and out of the Global GTT and |
| 4046 | * waste a lot of cycles under the mutex. |
| 4047 | */ |
| 4048 | if (fence_size > dev_priv->ggtt.mappable_end) |
| 4049 | return ERR_PTR(-E2BIG); |
| 4050 | |
| 4051 | /* If NONBLOCK is set the caller is optimistically |
| 4052 | * trying to cache the full object within the mappable |
| 4053 | * aperture, and *must* have a fallback in place for |
| 4054 | * situations where we cannot bind the object. We |
| 4055 | * can be a little more lax here and use the fallback |
| 4056 | * more often to avoid costly migrations of ourselves |
| 4057 | * and other objects within the aperture. |
| 4058 | * |
| 4059 | * Half-the-aperture is used as a simple heuristic. |
| 4060 | * More interesting would to do search for a free |
| 4061 | * block prior to making the commitment to unbind. |
| 4062 | * That caters for the self-harm case, and with a |
| 4063 | * little more heuristics (e.g. NOFAULT, NOEVICT) |
| 4064 | * we could try to minimise harm to others. |
| 4065 | */ |
| 4066 | if (flags & PIN_NONBLOCK && |
| 4067 | fence_size > dev_priv->ggtt.mappable_end / 2) |
| 4068 | return ERR_PTR(-ENOSPC); |
| 4069 | } |
| 4070 | |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4071 | WARN(i915_vma_is_pinned(vma), |
| 4072 | "bo is already pinned in ggtt with incorrect alignment:" |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 4073 | " offset=%08x, req.alignment=%llx," |
| 4074 | " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n", |
| 4075 | i915_ggtt_offset(vma), alignment, |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4076 | !!(flags & PIN_MAPPABLE), |
Chris Wilson | 05a20d0 | 2016-08-18 17:16:55 +0100 | [diff] [blame] | 4077 | i915_vma_is_map_and_fenceable(vma)); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4078 | ret = i915_vma_unbind(vma); |
| 4079 | if (ret) |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4080 | return ERR_PTR(ret); |
Chris Wilson | 59bfa12 | 2016-08-04 16:32:31 +0100 | [diff] [blame] | 4081 | } |
| 4082 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4083 | ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL); |
| 4084 | if (ret) |
| 4085 | return ERR_PTR(ret); |
Joonas Lahtinen | ec7adb6 | 2015-03-16 14:11:13 +0200 | [diff] [blame] | 4086 | |
Chris Wilson | 058d88c | 2016-08-15 10:49:06 +0100 | [diff] [blame] | 4087 | return vma; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4088 | } |
| 4089 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4090 | static __always_inline unsigned int __busy_read_flag(unsigned int id) |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4091 | { |
| 4092 | /* Note that we could alias engines in the execbuf API, but |
| 4093 | * that would be very unwise as it prevents userspace from |
| 4094 | * fine control over engine selection. Ahem. |
| 4095 | * |
| 4096 | * This should be something like EXEC_MAX_ENGINE instead of |
| 4097 | * I915_NUM_ENGINES. |
| 4098 | */ |
| 4099 | BUILD_BUG_ON(I915_NUM_ENGINES > 16); |
| 4100 | return 0x10000 << id; |
| 4101 | } |
| 4102 | |
| 4103 | static __always_inline unsigned int __busy_write_id(unsigned int id) |
| 4104 | { |
Chris Wilson | 70cb472 | 2016-08-09 18:08:25 +0100 | [diff] [blame] | 4105 | /* The uABI guarantees an active writer is also amongst the read |
| 4106 | * engines. This would be true if we accessed the activity tracking |
| 4107 | * under the lock, but as we perform the lookup of the object and |
| 4108 | * its activity locklessly we can not guarantee that the last_write |
| 4109 | * being active implies that we have set the same engine flag from |
| 4110 | * last_read - hence we always set both read and write busy for |
| 4111 | * last_write. |
| 4112 | */ |
| 4113 | return id | __busy_read_flag(id); |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4114 | } |
| 4115 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4116 | static __always_inline unsigned int |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4117 | __busy_set_if_active(const struct i915_gem_active *active, |
| 4118 | unsigned int (*flag)(unsigned int id)) |
| 4119 | { |
Chris Wilson | 1255501 | 2016-08-16 09:50:40 +0100 | [diff] [blame] | 4120 | struct drm_i915_gem_request *request; |
| 4121 | |
| 4122 | request = rcu_dereference(active->request); |
| 4123 | if (!request || i915_gem_request_completed(request)) |
| 4124 | return 0; |
| 4125 | |
| 4126 | /* This is racy. See __i915_gem_active_get_rcu() for an in detail |
| 4127 | * discussion of how to handle the race correctly, but for reporting |
| 4128 | * the busy state we err on the side of potentially reporting the |
| 4129 | * wrong engine as being busy (but we guarantee that the result |
| 4130 | * is at least self-consistent). |
| 4131 | * |
| 4132 | * As we use SLAB_DESTROY_BY_RCU, the request may be reallocated |
| 4133 | * whilst we are inspecting it, even under the RCU read lock as we are. |
| 4134 | * This means that there is a small window for the engine and/or the |
| 4135 | * seqno to have been overwritten. The seqno will always be in the |
| 4136 | * future compared to the intended, and so we know that if that |
| 4137 | * seqno is idle (on whatever engine) our request is idle and the |
| 4138 | * return 0 above is correct. |
| 4139 | * |
| 4140 | * The issue is that if the engine is switched, it is just as likely |
| 4141 | * to report that it is busy (but since the switch happened, we know |
| 4142 | * the request should be idle). So there is a small chance that a busy |
| 4143 | * result is actually the wrong engine. |
| 4144 | * |
| 4145 | * So why don't we care? |
| 4146 | * |
| 4147 | * For starters, the busy ioctl is a heuristic that is by definition |
| 4148 | * racy. Even with perfect serialisation in the driver, the hardware |
| 4149 | * state is constantly advancing - the state we report to the user |
| 4150 | * is stale. |
| 4151 | * |
| 4152 | * The critical information for the busy-ioctl is whether the object |
| 4153 | * is idle as userspace relies on that to detect whether its next |
| 4154 | * access will stall, or if it has missed submitting commands to |
| 4155 | * the hardware allowing the GPU to stall. We never generate a |
| 4156 | * false-positive for idleness, thus busy-ioctl is reliable at the |
| 4157 | * most fundamental level, and we maintain the guarantee that a |
| 4158 | * busy object left to itself will eventually become idle (and stay |
| 4159 | * idle!). |
| 4160 | * |
| 4161 | * We allow ourselves the leeway of potentially misreporting the busy |
| 4162 | * state because that is an optimisation heuristic that is constantly |
| 4163 | * in flux. Being quickly able to detect the busy/idle state is much |
| 4164 | * more important than accurate logging of exactly which engines were |
| 4165 | * busy. |
| 4166 | * |
| 4167 | * For accuracy in reporting the engine, we could use |
| 4168 | * |
| 4169 | * result = 0; |
| 4170 | * request = __i915_gem_active_get_rcu(active); |
| 4171 | * if (request) { |
| 4172 | * if (!i915_gem_request_completed(request)) |
| 4173 | * result = flag(request->engine->exec_id); |
| 4174 | * i915_gem_request_put(request); |
| 4175 | * } |
| 4176 | * |
| 4177 | * but that still remains susceptible to both hardware and userspace |
| 4178 | * races. So we accept making the result of that race slightly worse, |
| 4179 | * 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] | 4180 | */ |
Chris Wilson | 1255501 | 2016-08-16 09:50:40 +0100 | [diff] [blame] | 4181 | return flag(READ_ONCE(request->engine->exec_id)); |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4182 | } |
| 4183 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4184 | static __always_inline unsigned int |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4185 | busy_check_reader(const struct i915_gem_active *active) |
| 4186 | { |
| 4187 | return __busy_set_if_active(active, __busy_read_flag); |
| 4188 | } |
| 4189 | |
Chris Wilson | edf6b76 | 2016-08-09 09:23:33 +0100 | [diff] [blame] | 4190 | static __always_inline unsigned int |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4191 | busy_check_writer(const struct i915_gem_active *active) |
| 4192 | { |
| 4193 | return __busy_set_if_active(active, __busy_write_id); |
| 4194 | } |
| 4195 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4196 | int |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4197 | i915_gem_busy_ioctl(struct drm_device *dev, void *data, |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4198 | struct drm_file *file) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4199 | { |
| 4200 | struct drm_i915_gem_busy *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4201 | struct drm_i915_gem_object *obj; |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4202 | unsigned long active; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4203 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 4204 | obj = i915_gem_object_lookup(file, args->handle); |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4205 | if (!obj) |
| 4206 | return -ENOENT; |
Zou Nan hai | d1b851f | 2010-05-21 09:08:57 +0800 | [diff] [blame] | 4207 | |
Chris Wilson | 426960b | 2016-01-15 16:51:46 +0000 | [diff] [blame] | 4208 | args->busy = 0; |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4209 | active = __I915_BO_ACTIVE(obj); |
| 4210 | if (active) { |
| 4211 | int idx; |
Chris Wilson | 426960b | 2016-01-15 16:51:46 +0000 | [diff] [blame] | 4212 | |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4213 | /* Yes, the lookups are intentionally racy. |
| 4214 | * |
| 4215 | * First, we cannot simply rely on __I915_BO_ACTIVE. We have |
| 4216 | * to regard the value as stale and as our ABI guarantees |
| 4217 | * forward progress, we confirm the status of each active |
| 4218 | * request with the hardware. |
| 4219 | * |
| 4220 | * Even though we guard the pointer lookup by RCU, that only |
| 4221 | * guarantees that the pointer and its contents remain |
| 4222 | * dereferencable and does *not* mean that the request we |
| 4223 | * have is the same as the one being tracked by the object. |
| 4224 | * |
| 4225 | * Consider that we lookup the request just as it is being |
| 4226 | * retired and freed. We take a local copy of the pointer, |
| 4227 | * but before we add its engine into the busy set, the other |
| 4228 | * thread reallocates it and assigns it to a task on another |
Chris Wilson | 1255501 | 2016-08-16 09:50:40 +0100 | [diff] [blame] | 4229 | * engine with a fresh and incomplete seqno. Guarding against |
| 4230 | * that requires careful serialisation and reference counting, |
| 4231 | * i.e. using __i915_gem_active_get_request_rcu(). We don't, |
| 4232 | * instead we expect that if the result is busy, which engines |
| 4233 | * are busy is not completely reliable - we only guarantee |
| 4234 | * that the object was busy. |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4235 | */ |
| 4236 | rcu_read_lock(); |
| 4237 | |
| 4238 | for_each_active(active, idx) |
| 4239 | args->busy |= busy_check_reader(&obj->last_read[idx]); |
| 4240 | |
| 4241 | /* For ABI sanity, we only care that the write engine is in |
Chris Wilson | 70cb472 | 2016-08-09 18:08:25 +0100 | [diff] [blame] | 4242 | * the set of read engines. This should be ensured by the |
| 4243 | * ordering of setting last_read/last_write in |
| 4244 | * i915_vma_move_to_active(), and then in reverse in retire. |
| 4245 | * However, for good measure, we always report the last_write |
| 4246 | * request as a busy read as well as being a busy write. |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4247 | * |
| 4248 | * We don't care that the set of active read/write engines |
| 4249 | * may change during construction of the result, as it is |
| 4250 | * equally liable to change before userspace can inspect |
| 4251 | * the result. |
| 4252 | */ |
| 4253 | args->busy |= busy_check_writer(&obj->last_write); |
| 4254 | |
| 4255 | rcu_read_unlock(); |
Chris Wilson | 426960b | 2016-01-15 16:51:46 +0000 | [diff] [blame] | 4256 | } |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4257 | |
Chris Wilson | 3fdc13c | 2016-08-05 10:14:18 +0100 | [diff] [blame] | 4258 | i915_gem_object_put_unlocked(obj); |
| 4259 | return 0; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4260 | } |
| 4261 | |
| 4262 | int |
| 4263 | i915_gem_throttle_ioctl(struct drm_device *dev, void *data, |
| 4264 | struct drm_file *file_priv) |
| 4265 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 4266 | return i915_gem_ring_throttle(dev, file_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4267 | } |
| 4268 | |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4269 | int |
| 4270 | i915_gem_madvise_ioctl(struct drm_device *dev, void *data, |
| 4271 | struct drm_file *file_priv) |
| 4272 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4273 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4274 | struct drm_i915_gem_madvise *args = data; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4275 | struct drm_i915_gem_object *obj; |
Chris Wilson | 76c1dec | 2010-09-25 11:22:51 +0100 | [diff] [blame] | 4276 | int ret; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4277 | |
| 4278 | switch (args->madv) { |
| 4279 | case I915_MADV_DONTNEED: |
| 4280 | case I915_MADV_WILLNEED: |
| 4281 | break; |
| 4282 | default: |
| 4283 | return -EINVAL; |
| 4284 | } |
| 4285 | |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4286 | ret = i915_mutex_lock_interruptible(dev); |
| 4287 | if (ret) |
| 4288 | return ret; |
| 4289 | |
Chris Wilson | 03ac064 | 2016-07-20 13:31:51 +0100 | [diff] [blame] | 4290 | obj = i915_gem_object_lookup(file_priv, args->handle); |
| 4291 | if (!obj) { |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4292 | ret = -ENOENT; |
| 4293 | goto unlock; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4294 | } |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4295 | |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4296 | if (obj->pages && |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 4297 | i915_gem_object_is_tiled(obj) && |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4298 | dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) { |
| 4299 | if (obj->madv == I915_MADV_WILLNEED) |
| 4300 | i915_gem_object_unpin_pages(obj); |
| 4301 | if (args->madv == I915_MADV_WILLNEED) |
| 4302 | i915_gem_object_pin_pages(obj); |
| 4303 | } |
| 4304 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4305 | if (obj->madv != __I915_MADV_PURGED) |
| 4306 | obj->madv = args->madv; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4307 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 4308 | /* if the object is no longer attached, discard its backing storage */ |
Daniel Vetter | be6a037 | 2015-03-18 10:46:04 +0100 | [diff] [blame] | 4309 | if (obj->madv == I915_MADV_DONTNEED && obj->pages == NULL) |
Chris Wilson | 2d7ef39 | 2009-09-20 23:13:10 +0100 | [diff] [blame] | 4310 | i915_gem_object_truncate(obj); |
| 4311 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4312 | args->retained = obj->madv != __I915_MADV_PURGED; |
Chris Wilson | bb6baf7 | 2009-09-22 14:24:13 +0100 | [diff] [blame] | 4313 | |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 4314 | i915_gem_object_put(obj); |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4315 | unlock: |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4316 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 1d7cfea | 2010-10-17 09:45:41 +0100 | [diff] [blame] | 4317 | return ret; |
Chris Wilson | 3ef94da | 2009-09-14 16:50:29 +0100 | [diff] [blame] | 4318 | } |
| 4319 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4320 | void i915_gem_object_init(struct drm_i915_gem_object *obj, |
| 4321 | const struct drm_i915_gem_object_ops *ops) |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4322 | { |
Chris Wilson | b471618 | 2015-04-27 13:41:17 +0100 | [diff] [blame] | 4323 | int i; |
| 4324 | |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 4325 | INIT_LIST_HEAD(&obj->global_list); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 4326 | INIT_LIST_HEAD(&obj->userfault_link); |
Tvrtko Ursulin | 666796d | 2016-03-16 11:00:39 +0000 | [diff] [blame] | 4327 | for (i = 0; i < I915_NUM_ENGINES; i++) |
Chris Wilson | fa545cb | 2016-08-04 07:52:35 +0100 | [diff] [blame] | 4328 | init_request_active(&obj->last_read[i], |
| 4329 | i915_gem_object_retire__read); |
| 4330 | init_request_active(&obj->last_write, |
| 4331 | i915_gem_object_retire__write); |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 4332 | INIT_LIST_HEAD(&obj->obj_exec_link); |
Ben Widawsky | 2f63315 | 2013-07-17 12:19:03 -0700 | [diff] [blame] | 4333 | INIT_LIST_HEAD(&obj->vma_list); |
Chris Wilson | 8d9d574 | 2015-04-07 16:20:38 +0100 | [diff] [blame] | 4334 | INIT_LIST_HEAD(&obj->batch_pool_link); |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4335 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4336 | obj->ops = ops; |
| 4337 | |
Chris Wilson | 5034924 | 2016-08-18 17:17:04 +0100 | [diff] [blame] | 4338 | obj->frontbuffer_ggtt_origin = ORIGIN_GTT; |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4339 | obj->madv = I915_MADV_WILLNEED; |
Chris Wilson | 0327d6b | 2012-08-11 15:41:06 +0100 | [diff] [blame] | 4340 | |
Dave Gordon | f19ec8c | 2016-07-04 11:34:37 +0100 | [diff] [blame] | 4341 | 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] | 4342 | } |
| 4343 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4344 | static const struct drm_i915_gem_object_ops i915_gem_object_ops = { |
Chris Wilson | de47266 | 2016-01-22 18:32:31 +0000 | [diff] [blame] | 4345 | .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE, |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4346 | .get_pages = i915_gem_object_get_pages_gtt, |
| 4347 | .put_pages = i915_gem_object_put_pages_gtt, |
| 4348 | }; |
| 4349 | |
Chris Wilson | b4bcbe2 | 2016-10-18 13:02:49 +0100 | [diff] [blame] | 4350 | /* Note we don't consider signbits :| */ |
| 4351 | #define overflows_type(x, T) \ |
| 4352 | (sizeof(x) > sizeof(T) && (x) >> (sizeof(T) * BITS_PER_BYTE)) |
| 4353 | |
| 4354 | struct drm_i915_gem_object * |
| 4355 | i915_gem_object_create(struct drm_device *dev, u64 size) |
Daniel Vetter | ac52bc5 | 2010-04-09 19:05:06 +0000 | [diff] [blame] | 4356 | { |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4357 | struct drm_i915_gem_object *obj; |
Hugh Dickins | 5949eac | 2011-06-27 16:18:18 -0700 | [diff] [blame] | 4358 | struct address_space *mapping; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 4359 | gfp_t mask; |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4360 | int ret; |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4361 | |
Chris Wilson | b4bcbe2 | 2016-10-18 13:02:49 +0100 | [diff] [blame] | 4362 | /* There is a prevalence of the assumption that we fit the object's |
| 4363 | * page count inside a 32bit _signed_ variable. Let's document this and |
| 4364 | * catch if we ever need to fix it. In the meantime, if you do spot |
| 4365 | * such a local variable, please consider fixing! |
| 4366 | */ |
| 4367 | if (WARN_ON(size >> PAGE_SHIFT > INT_MAX)) |
| 4368 | return ERR_PTR(-E2BIG); |
| 4369 | |
| 4370 | if (overflows_type(size, obj->base.size)) |
| 4371 | return ERR_PTR(-E2BIG); |
| 4372 | |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4373 | obj = i915_gem_object_alloc(dev); |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4374 | if (obj == NULL) |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4375 | return ERR_PTR(-ENOMEM); |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4376 | |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4377 | ret = drm_gem_object_init(dev, &obj->base, size); |
| 4378 | if (ret) |
| 4379 | goto fail; |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4380 | |
Chris Wilson | bed1ea9 | 2012-05-24 20:48:12 +0100 | [diff] [blame] | 4381 | mask = GFP_HIGHUSER | __GFP_RECLAIMABLE; |
| 4382 | if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) { |
| 4383 | /* 965gm cannot relocate objects above 4GiB. */ |
| 4384 | mask &= ~__GFP_HIGHMEM; |
| 4385 | mask |= __GFP_DMA32; |
| 4386 | } |
| 4387 | |
Al Viro | 93c76a3 | 2015-12-04 23:45:44 -0500 | [diff] [blame] | 4388 | mapping = obj->base.filp->f_mapping; |
Chris Wilson | bed1ea9 | 2012-05-24 20:48:12 +0100 | [diff] [blame] | 4389 | mapping_set_gfp_mask(mapping, mask); |
Hugh Dickins | 5949eac | 2011-06-27 16:18:18 -0700 | [diff] [blame] | 4390 | |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4391 | i915_gem_object_init(obj, &i915_gem_object_ops); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 4392 | |
Daniel Vetter | c397b90 | 2010-04-09 19:05:07 +0000 | [diff] [blame] | 4393 | obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
| 4394 | obj->base.read_domains = I915_GEM_DOMAIN_CPU; |
| 4395 | |
Eugeni Dodonov | 3d29b84 | 2012-01-17 14:43:53 -0200 | [diff] [blame] | 4396 | if (HAS_LLC(dev)) { |
| 4397 | /* 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] | 4398 | * cache) for about a 10% performance improvement |
| 4399 | * compared to uncached. Graphics requests other than |
| 4400 | * display scanout are coherent with the CPU in |
| 4401 | * accessing this cache. This means in this mode we |
| 4402 | * don't need to clflush on the CPU side, and on the |
| 4403 | * GPU side we only need to flush internal caches to |
| 4404 | * get data visible to the CPU. |
| 4405 | * |
| 4406 | * However, we maintain the display planes as UC, and so |
| 4407 | * need to rebind when first used as such. |
| 4408 | */ |
| 4409 | obj->cache_level = I915_CACHE_LLC; |
| 4410 | } else |
| 4411 | obj->cache_level = I915_CACHE_NONE; |
| 4412 | |
Daniel Vetter | d861e33 | 2013-07-24 23:25:03 +0200 | [diff] [blame] | 4413 | trace_i915_gem_object_create(obj); |
| 4414 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4415 | return obj; |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 4416 | |
| 4417 | fail: |
| 4418 | i915_gem_object_free(obj); |
| 4419 | |
| 4420 | return ERR_PTR(ret); |
Daniel Vetter | ac52bc5 | 2010-04-09 19:05:06 +0000 | [diff] [blame] | 4421 | } |
| 4422 | |
Chris Wilson | 340fbd8 | 2014-05-22 09:16:52 +0100 | [diff] [blame] | 4423 | static bool discard_backing_storage(struct drm_i915_gem_object *obj) |
| 4424 | { |
| 4425 | /* If we are the last user of the backing storage (be it shmemfs |
| 4426 | * pages or stolen etc), we know that the pages are going to be |
| 4427 | * immediately released. In this case, we can then skip copying |
| 4428 | * back the contents from the GPU. |
| 4429 | */ |
| 4430 | |
| 4431 | if (obj->madv != I915_MADV_WILLNEED) |
| 4432 | return false; |
| 4433 | |
| 4434 | if (obj->base.filp == NULL) |
| 4435 | return true; |
| 4436 | |
| 4437 | /* At first glance, this looks racy, but then again so would be |
| 4438 | * userspace racing mmap against close. However, the first external |
| 4439 | * reference to the filp can only be obtained through the |
| 4440 | * i915_gem_mmap_ioctl() which safeguards us against the user |
| 4441 | * acquiring such a reference whilst we are in the middle of |
| 4442 | * freeing the object. |
| 4443 | */ |
| 4444 | return atomic_long_read(&obj->base.filp->f_count) == 1; |
| 4445 | } |
| 4446 | |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4447 | void i915_gem_free_object(struct drm_gem_object *gem_obj) |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4448 | { |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4449 | struct drm_i915_gem_object *obj = to_intel_bo(gem_obj); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4450 | struct drm_device *dev = obj->base.dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4451 | struct drm_i915_private *dev_priv = to_i915(dev); |
Ben Widawsky | 07fe0b1 | 2013-07-31 17:00:10 -0700 | [diff] [blame] | 4452 | struct i915_vma *vma, *next; |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4453 | |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 4454 | intel_runtime_pm_get(dev_priv); |
| 4455 | |
Chris Wilson | 26e12f8 | 2011-03-20 11:20:19 +0000 | [diff] [blame] | 4456 | trace_i915_gem_object_destroy(obj); |
| 4457 | |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 4458 | /* All file-owned VMA should have been released by this point through |
| 4459 | * i915_gem_close_object(), or earlier by i915_gem_context_close(). |
| 4460 | * However, the object may also be bound into the global GTT (e.g. |
| 4461 | * older GPUs without per-process support, or for direct access through |
| 4462 | * the GTT either for the user or for scanout). Those VMA still need to |
| 4463 | * unbound now. |
| 4464 | */ |
Chris Wilson | 1c7f4bc | 2016-02-26 11:03:19 +0000 | [diff] [blame] | 4465 | list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) { |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 4466 | GEM_BUG_ON(!i915_vma_is_ggtt(vma)); |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 4467 | GEM_BUG_ON(i915_vma_is_active(vma)); |
Chris Wilson | 3272db5 | 2016-08-04 16:32:32 +0100 | [diff] [blame] | 4468 | vma->flags &= ~I915_VMA_PIN_MASK; |
Chris Wilson | b1f788c | 2016-08-04 07:52:45 +0100 | [diff] [blame] | 4469 | i915_vma_close(vma); |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4470 | } |
Chris Wilson | 15717de | 2016-08-04 07:52:26 +0100 | [diff] [blame] | 4471 | GEM_BUG_ON(obj->bind_count); |
Chris Wilson | 1488fc0 | 2012-04-24 15:47:31 +0100 | [diff] [blame] | 4472 | |
Ben Widawsky | 1d64ae7 | 2013-05-31 14:46:20 -0700 | [diff] [blame] | 4473 | /* Stolen objects don't hold a ref, but do hold pin count. Fix that up |
| 4474 | * before progressing. */ |
| 4475 | if (obj->stolen) |
| 4476 | i915_gem_object_unpin_pages(obj); |
| 4477 | |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 4478 | WARN_ON(atomic_read(&obj->frontbuffer_bits)); |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 4479 | |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4480 | if (obj->pages && obj->madv == I915_MADV_WILLNEED && |
| 4481 | dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES && |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 4482 | i915_gem_object_is_tiled(obj)) |
Daniel Vetter | 656bfa3 | 2014-11-20 09:26:30 +0100 | [diff] [blame] | 4483 | i915_gem_object_unpin_pages(obj); |
| 4484 | |
Ben Widawsky | 401c29f | 2013-05-31 11:28:47 -0700 | [diff] [blame] | 4485 | if (WARN_ON(obj->pages_pin_count)) |
| 4486 | obj->pages_pin_count = 0; |
Chris Wilson | 340fbd8 | 2014-05-22 09:16:52 +0100 | [diff] [blame] | 4487 | if (discard_backing_storage(obj)) |
Chris Wilson | 5537252 | 2014-03-25 13:23:06 +0000 | [diff] [blame] | 4488 | obj->madv = I915_MADV_DONTNEED; |
Chris Wilson | 37e680a | 2012-06-07 15:38:42 +0100 | [diff] [blame] | 4489 | i915_gem_object_put_pages(obj); |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4490 | |
Chris Wilson | 9da3da6 | 2012-06-01 15:20:22 +0100 | [diff] [blame] | 4491 | BUG_ON(obj->pages); |
| 4492 | |
Chris Wilson | 2f745ad | 2012-09-04 21:02:58 +0100 | [diff] [blame] | 4493 | if (obj->base.import_attach) |
| 4494 | drm_prime_gem_destroy(&obj->base, NULL); |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4495 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 4496 | if (obj->ops->release) |
| 4497 | obj->ops->release(obj); |
| 4498 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4499 | drm_gem_object_release(&obj->base); |
| 4500 | i915_gem_info_remove_obj(dev_priv, obj->base.size); |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4501 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 4502 | kfree(obj->bit_17); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4503 | i915_gem_object_free(obj); |
Paulo Zanoni | f65c916 | 2013-11-27 18:20:34 -0200 | [diff] [blame] | 4504 | |
| 4505 | intel_runtime_pm_put(dev_priv); |
Chris Wilson | be72615 | 2010-07-23 23:18:50 +0100 | [diff] [blame] | 4506 | } |
| 4507 | |
Chris Wilson | f8a7fde | 2016-10-28 13:58:29 +0100 | [diff] [blame] | 4508 | void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj) |
| 4509 | { |
| 4510 | lockdep_assert_held(&obj->base.dev->struct_mutex); |
| 4511 | |
| 4512 | GEM_BUG_ON(i915_gem_object_has_active_reference(obj)); |
| 4513 | if (i915_gem_object_is_active(obj)) |
| 4514 | i915_gem_object_set_active_reference(obj); |
| 4515 | else |
| 4516 | i915_gem_object_put(obj); |
| 4517 | } |
| 4518 | |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 4519 | int i915_gem_suspend(struct drm_device *dev) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4520 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4521 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | dcff85c | 2016-08-05 10:14:11 +0100 | [diff] [blame] | 4522 | int ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4523 | |
Chris Wilson | 54b4f68 | 2016-07-21 21:16:19 +0100 | [diff] [blame] | 4524 | intel_suspend_gt_powersave(dev_priv); |
| 4525 | |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4526 | mutex_lock(&dev->struct_mutex); |
Chris Wilson | 5ab57c7 | 2016-07-15 14:56:20 +0100 | [diff] [blame] | 4527 | |
| 4528 | /* We have to flush all the executing contexts to main memory so |
| 4529 | * that they can saved in the hibernation image. To ensure the last |
| 4530 | * context image is coherent, we have to switch away from it. That |
| 4531 | * leaves the dev_priv->kernel_context still active when |
| 4532 | * we actually suspend, and its image in memory may not match the GPU |
| 4533 | * state. Fortunately, the kernel_context is disposable and we do |
| 4534 | * not rely on its state. |
| 4535 | */ |
| 4536 | ret = i915_gem_switch_to_kernel_context(dev_priv); |
| 4537 | if (ret) |
| 4538 | goto err; |
| 4539 | |
Chris Wilson | 22dd3bb | 2016-09-09 14:11:50 +0100 | [diff] [blame] | 4540 | ret = i915_gem_wait_for_idle(dev_priv, |
| 4541 | I915_WAIT_INTERRUPTIBLE | |
| 4542 | I915_WAIT_LOCKED); |
Chris Wilson | f740334 | 2013-09-13 23:57:04 +0100 | [diff] [blame] | 4543 | if (ret) |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4544 | goto err; |
Chris Wilson | f740334 | 2013-09-13 23:57:04 +0100 | [diff] [blame] | 4545 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 4546 | i915_gem_retire_requests(dev_priv); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4547 | |
Chris Wilson | b2e862d | 2016-04-28 09:56:41 +0100 | [diff] [blame] | 4548 | i915_gem_context_lost(dev_priv); |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4549 | mutex_unlock(&dev->struct_mutex); |
| 4550 | |
Chris Wilson | 737b150 | 2015-01-26 18:03:03 +0200 | [diff] [blame] | 4551 | cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4552 | cancel_delayed_work_sync(&dev_priv->gt.retire_work); |
| 4553 | flush_delayed_work(&dev_priv->gt.idle_work); |
Chris Wilson | 29105cc | 2010-01-07 10:39:13 +0000 | [diff] [blame] | 4554 | |
Chris Wilson | bdcf120 | 2014-11-25 11:56:33 +0000 | [diff] [blame] | 4555 | /* Assert that we sucessfully flushed all the work and |
| 4556 | * reset the GPU back to its idle, low power state. |
| 4557 | */ |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4558 | WARN_ON(dev_priv->gt.awake); |
Chris Wilson | bdcf120 | 2014-11-25 11:56:33 +0000 | [diff] [blame] | 4559 | |
Imre Deak | 1c777c5 | 2016-10-12 17:46:37 +0300 | [diff] [blame] | 4560 | /* |
| 4561 | * Neither the BIOS, ourselves or any other kernel |
| 4562 | * expects the system to be in execlists mode on startup, |
| 4563 | * so we need to reset the GPU back to legacy mode. And the only |
| 4564 | * known way to disable logical contexts is through a GPU reset. |
| 4565 | * |
| 4566 | * So in order to leave the system in a known default configuration, |
| 4567 | * always reset the GPU upon unload and suspend. Afterwards we then |
| 4568 | * clean up the GEM state tracking, flushing off the requests and |
| 4569 | * leaving the system in a known idle state. |
| 4570 | * |
| 4571 | * Note that is of the upmost importance that the GPU is idle and |
| 4572 | * all stray writes are flushed *before* we dismantle the backing |
| 4573 | * storage for the pinned objects. |
| 4574 | * |
| 4575 | * However, since we are uncertain that resetting the GPU on older |
| 4576 | * machines is a good idea, we don't - just in case it leaves the |
| 4577 | * machine in an unusable condition. |
| 4578 | */ |
| 4579 | if (HAS_HW_CONTEXTS(dev)) { |
| 4580 | int reset = intel_gpu_reset(dev_priv, ALL_ENGINES); |
| 4581 | WARN_ON(reset && reset != -ENODEV); |
| 4582 | } |
| 4583 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4584 | return 0; |
Chris Wilson | 45c5f20 | 2013-10-16 11:50:01 +0100 | [diff] [blame] | 4585 | |
| 4586 | err: |
| 4587 | mutex_unlock(&dev->struct_mutex); |
| 4588 | return ret; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4589 | } |
| 4590 | |
Chris Wilson | 5ab57c7 | 2016-07-15 14:56:20 +0100 | [diff] [blame] | 4591 | void i915_gem_resume(struct drm_device *dev) |
| 4592 | { |
| 4593 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 4594 | |
| 4595 | mutex_lock(&dev->struct_mutex); |
| 4596 | i915_gem_restore_gtt_mappings(dev); |
| 4597 | |
| 4598 | /* As we didn't flush the kernel context before suspend, we cannot |
| 4599 | * guarantee that the context image is complete. So let's just reset |
| 4600 | * it and start again. |
| 4601 | */ |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4602 | dev_priv->gt.resume(dev_priv); |
Chris Wilson | 5ab57c7 | 2016-07-15 14:56:20 +0100 | [diff] [blame] | 4603 | |
| 4604 | mutex_unlock(&dev->struct_mutex); |
| 4605 | } |
| 4606 | |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4607 | void i915_gem_init_swizzling(struct drm_device *dev) |
| 4608 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4609 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4610 | |
Daniel Vetter | 11782b0 | 2012-01-31 16:47:55 +0100 | [diff] [blame] | 4611 | if (INTEL_INFO(dev)->gen < 5 || |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4612 | dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE) |
| 4613 | return; |
| 4614 | |
| 4615 | I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) | |
| 4616 | DISP_TILE_SURFACE_SWIZZLING); |
| 4617 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4618 | if (IS_GEN5(dev_priv)) |
Daniel Vetter | 11782b0 | 2012-01-31 16:47:55 +0100 | [diff] [blame] | 4619 | return; |
| 4620 | |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4621 | I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4622 | if (IS_GEN6(dev_priv)) |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 4623 | I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB)); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4624 | else if (IS_GEN7(dev_priv)) |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 4625 | I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB)); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 4626 | else if (IS_GEN8(dev_priv)) |
Ben Widawsky | 31a5336 | 2013-11-02 21:07:04 -0700 | [diff] [blame] | 4627 | I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW)); |
Ben Widawsky | 8782e26 | 2012-12-18 10:31:23 -0800 | [diff] [blame] | 4628 | else |
| 4629 | BUG(); |
Daniel Vetter | f691e2f | 2012-02-02 09:58:12 +0100 | [diff] [blame] | 4630 | } |
Daniel Vetter | e21af88 | 2012-02-09 20:53:27 +0100 | [diff] [blame] | 4631 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4632 | 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] | 4633 | { |
Ville Syrjälä | 81e7f20 | 2014-08-15 01:21:55 +0300 | [diff] [blame] | 4634 | I915_WRITE(RING_CTL(base), 0); |
| 4635 | I915_WRITE(RING_HEAD(base), 0); |
| 4636 | I915_WRITE(RING_TAIL(base), 0); |
| 4637 | I915_WRITE(RING_START(base), 0); |
| 4638 | } |
| 4639 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4640 | static void init_unused_rings(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 81e7f20 | 2014-08-15 01:21:55 +0300 | [diff] [blame] | 4641 | { |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4642 | if (IS_I830(dev_priv)) { |
| 4643 | init_unused_ring(dev_priv, PRB1_BASE); |
| 4644 | init_unused_ring(dev_priv, SRB0_BASE); |
| 4645 | init_unused_ring(dev_priv, SRB1_BASE); |
| 4646 | init_unused_ring(dev_priv, SRB2_BASE); |
| 4647 | init_unused_ring(dev_priv, SRB3_BASE); |
| 4648 | } else if (IS_GEN2(dev_priv)) { |
| 4649 | init_unused_ring(dev_priv, SRB0_BASE); |
| 4650 | init_unused_ring(dev_priv, SRB1_BASE); |
| 4651 | } else if (IS_GEN3(dev_priv)) { |
| 4652 | init_unused_ring(dev_priv, PRB1_BASE); |
| 4653 | init_unused_ring(dev_priv, PRB2_BASE); |
Ville Syrjälä | 81e7f20 | 2014-08-15 01:21:55 +0300 | [diff] [blame] | 4654 | } |
| 4655 | } |
| 4656 | |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4657 | int |
| 4658 | i915_gem_init_hw(struct drm_device *dev) |
| 4659 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4660 | struct drm_i915_private *dev_priv = to_i915(dev); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 4661 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4662 | enum intel_engine_id id; |
Chris Wilson | d200cda | 2016-04-28 09:56:44 +0100 | [diff] [blame] | 4663 | int ret; |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4664 | |
Chris Wilson | de867c2 | 2016-10-25 13:16:02 +0100 | [diff] [blame] | 4665 | dev_priv->gt.last_init_time = ktime_get(); |
| 4666 | |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4667 | /* Double layer security blanket, see i915_gem_init() */ |
| 4668 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 4669 | |
Mika Kuoppala | 3accaf7 | 2016-04-13 17:26:43 +0300 | [diff] [blame] | 4670 | if (HAS_EDRAM(dev) && INTEL_GEN(dev_priv) < 9) |
Ben Widawsky | 05e21cc | 2013-07-04 11:02:04 -0700 | [diff] [blame] | 4671 | I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf)); |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4672 | |
Tvrtko Ursulin | 772c2a5 | 2016-10-13 11:03:01 +0100 | [diff] [blame] | 4673 | if (IS_HASWELL(dev_priv)) |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4674 | I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ? |
Ville Syrjälä | 0bf2134 | 2013-11-29 14:56:12 +0200 | [diff] [blame] | 4675 | LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED); |
Rodrigo Vivi | 9435373 | 2013-08-28 16:45:46 -0300 | [diff] [blame] | 4676 | |
Tvrtko Ursulin | 6e26695 | 2016-10-13 11:02:53 +0100 | [diff] [blame] | 4677 | if (HAS_PCH_NOP(dev_priv)) { |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 4678 | if (IS_IVYBRIDGE(dev_priv)) { |
Daniel Vetter | 6ba844b | 2014-01-22 23:39:30 +0100 | [diff] [blame] | 4679 | u32 temp = I915_READ(GEN7_MSG_CTL); |
| 4680 | temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK); |
| 4681 | I915_WRITE(GEN7_MSG_CTL, temp); |
| 4682 | } else if (INTEL_INFO(dev)->gen >= 7) { |
| 4683 | u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT); |
| 4684 | temp &= ~RESET_PCH_HANDSHAKE_ENABLE; |
| 4685 | I915_WRITE(HSW_NDE_RSTWRN_OPT, temp); |
| 4686 | } |
Ben Widawsky | 88a2b2a | 2013-04-05 13:12:43 -0700 | [diff] [blame] | 4687 | } |
| 4688 | |
Ben Widawsky | 4fc7c97 | 2013-02-08 11:49:24 -0800 | [diff] [blame] | 4689 | i915_gem_init_swizzling(dev); |
| 4690 | |
Daniel Vetter | d5abdfd | 2014-11-20 09:45:19 +0100 | [diff] [blame] | 4691 | /* |
| 4692 | * At least 830 can leave some of the unused rings |
| 4693 | * "active" (ie. head != tail) after resume which |
| 4694 | * will prevent c3 entry. Makes sure all unused rings |
| 4695 | * are totally idle. |
| 4696 | */ |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 4697 | init_unused_rings(dev_priv); |
Daniel Vetter | d5abdfd | 2014-11-20 09:45:19 +0100 | [diff] [blame] | 4698 | |
Dave Gordon | ed54c1a | 2016-01-19 19:02:54 +0000 | [diff] [blame] | 4699 | BUG_ON(!dev_priv->kernel_context); |
John Harrison | 90638cc | 2015-05-29 17:43:37 +0100 | [diff] [blame] | 4700 | |
John Harrison | 4ad2fd8 | 2015-06-18 13:11:20 +0100 | [diff] [blame] | 4701 | ret = i915_ppgtt_init_hw(dev); |
| 4702 | if (ret) { |
| 4703 | DRM_ERROR("PPGTT enable HW failed %d\n", ret); |
| 4704 | goto out; |
| 4705 | } |
| 4706 | |
| 4707 | /* Need to do basic initialisation of all rings first: */ |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4708 | for_each_engine(engine, dev_priv, id) { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 4709 | ret = engine->init_hw(engine); |
Daniel Vetter | 35a57ff | 2014-11-20 00:33:07 +0100 | [diff] [blame] | 4710 | if (ret) |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4711 | goto out; |
Daniel Vetter | 35a57ff | 2014-11-20 00:33:07 +0100 | [diff] [blame] | 4712 | } |
Mika Kuoppala | 9943393 | 2013-01-22 14:12:17 +0200 | [diff] [blame] | 4713 | |
Peter Antoine | 0ccdacf | 2016-04-13 15:03:25 +0100 | [diff] [blame] | 4714 | intel_mocs_init_l3cc_table(dev); |
| 4715 | |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 4716 | /* We can't enable contexts until all firmware is loaded */ |
Dave Gordon | e556f7c | 2016-06-07 09:14:49 +0100 | [diff] [blame] | 4717 | ret = intel_guc_setup(dev); |
| 4718 | if (ret) |
| 4719 | goto out; |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 4720 | |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4721 | out: |
| 4722 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 2fa48d8 | 2013-12-06 14:11:04 -0800 | [diff] [blame] | 4723 | return ret; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4724 | } |
| 4725 | |
Chris Wilson | 39df919 | 2016-07-20 13:31:57 +0100 | [diff] [blame] | 4726 | bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value) |
| 4727 | { |
| 4728 | if (INTEL_INFO(dev_priv)->gen < 6) |
| 4729 | return false; |
| 4730 | |
| 4731 | /* TODO: make semaphores and Execlists play nicely together */ |
| 4732 | if (i915.enable_execlists) |
| 4733 | return false; |
| 4734 | |
| 4735 | if (value >= 0) |
| 4736 | return value; |
| 4737 | |
| 4738 | #ifdef CONFIG_INTEL_IOMMU |
| 4739 | /* Enable semaphores on SNB when IO remapping is off */ |
| 4740 | if (INTEL_INFO(dev_priv)->gen == 6 && intel_iommu_gfx_mapped) |
| 4741 | return false; |
| 4742 | #endif |
| 4743 | |
| 4744 | return true; |
| 4745 | } |
| 4746 | |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4747 | int i915_gem_init(struct drm_device *dev) |
| 4748 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4749 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4750 | int ret; |
| 4751 | |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4752 | mutex_lock(&dev->struct_mutex); |
Jesse Barnes | d62b489 | 2013-03-08 10:45:53 -0800 | [diff] [blame] | 4753 | |
Oscar Mateo | a83014d | 2014-07-24 17:04:21 +0100 | [diff] [blame] | 4754 | if (!i915.enable_execlists) { |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4755 | dev_priv->gt.resume = intel_legacy_submission_resume; |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 4756 | dev_priv->gt.cleanup_engine = intel_engine_cleanup; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 4757 | } else { |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4758 | dev_priv->gt.resume = intel_lr_context_resume; |
Tvrtko Ursulin | 117897f | 2016-03-16 11:00:40 +0000 | [diff] [blame] | 4759 | dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup; |
Oscar Mateo | a83014d | 2014-07-24 17:04:21 +0100 | [diff] [blame] | 4760 | } |
| 4761 | |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4762 | /* This is just a security blanket to placate dragons. |
| 4763 | * On some systems, we very sporadically observe that the first TLBs |
| 4764 | * used by the CS may be stale, despite us poking the TLB reset. If |
| 4765 | * we hold the forcewake during initialisation these problems |
| 4766 | * just magically go away. |
| 4767 | */ |
| 4768 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 4769 | |
Chris Wilson | 72778cb | 2016-05-19 16:17:16 +0100 | [diff] [blame] | 4770 | i915_gem_init_userptr(dev_priv); |
Chris Wilson | f6b9d5c | 2016-08-04 07:52:23 +0100 | [diff] [blame] | 4771 | |
| 4772 | ret = i915_gem_init_ggtt(dev_priv); |
| 4773 | if (ret) |
| 4774 | goto out_unlock; |
Jesse Barnes | d62b489 | 2013-03-08 10:45:53 -0800 | [diff] [blame] | 4775 | |
Ben Widawsky | 2fa48d8 | 2013-12-06 14:11:04 -0800 | [diff] [blame] | 4776 | ret = i915_gem_context_init(dev); |
Jani Nikula | 7bcc377 | 2014-12-05 14:17:42 +0200 | [diff] [blame] | 4777 | if (ret) |
| 4778 | goto out_unlock; |
Ben Widawsky | 2fa48d8 | 2013-12-06 14:11:04 -0800 | [diff] [blame] | 4779 | |
Tvrtko Ursulin | 8b3e2d3 | 2016-07-13 16:03:37 +0100 | [diff] [blame] | 4780 | ret = intel_engines_init(dev); |
Daniel Vetter | 35a57ff | 2014-11-20 00:33:07 +0100 | [diff] [blame] | 4781 | if (ret) |
Jani Nikula | 7bcc377 | 2014-12-05 14:17:42 +0200 | [diff] [blame] | 4782 | goto out_unlock; |
Daniel Vetter | 53ca26c | 2012-04-26 23:28:03 +0200 | [diff] [blame] | 4783 | |
| 4784 | ret = i915_gem_init_hw(dev); |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4785 | if (ret == -EIO) { |
Chris Wilson | 7e21d64 | 2016-07-27 09:07:29 +0100 | [diff] [blame] | 4786 | /* Allow engine initialisation to fail by marking the GPU as |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4787 | * wedged. But we only want to do this where the GPU is angry, |
| 4788 | * for all other failure, such as an allocation failure, bail. |
| 4789 | */ |
| 4790 | DRM_ERROR("Failed to initialize GPU, declaring it wedged\n"); |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 4791 | i915_gem_set_wedged(dev_priv); |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4792 | ret = 0; |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4793 | } |
Jani Nikula | 7bcc377 | 2014-12-05 14:17:42 +0200 | [diff] [blame] | 4794 | |
| 4795 | out_unlock: |
Chris Wilson | 5e4f518 | 2015-02-13 14:35:59 +0000 | [diff] [blame] | 4796 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4797 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4798 | |
Chris Wilson | 6099032 | 2014-04-09 09:19:42 +0100 | [diff] [blame] | 4799 | return ret; |
Chris Wilson | 1070a42 | 2012-04-24 15:47:41 +0100 | [diff] [blame] | 4800 | } |
| 4801 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4802 | void |
Tvrtko Ursulin | 117897f | 2016-03-16 11:00:40 +0000 | [diff] [blame] | 4803 | i915_gem_cleanup_engines(struct drm_device *dev) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4804 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4805 | struct drm_i915_private *dev_priv = to_i915(dev); |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 4806 | struct intel_engine_cs *engine; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4807 | enum intel_engine_id id; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4808 | |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 4809 | for_each_engine(engine, dev_priv, id) |
Tvrtko Ursulin | 117897f | 2016-03-16 11:00:40 +0000 | [diff] [blame] | 4810 | dev_priv->gt.cleanup_engine(engine); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 4811 | } |
| 4812 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4813 | void |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4814 | i915_gem_load_init_fences(struct drm_i915_private *dev_priv) |
| 4815 | { |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 4816 | struct drm_device *dev = &dev_priv->drm; |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 4817 | int i; |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4818 | |
| 4819 | if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) && |
| 4820 | !IS_CHERRYVIEW(dev_priv)) |
| 4821 | dev_priv->num_fence_regs = 32; |
| 4822 | else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) || |
| 4823 | IS_I945GM(dev_priv) || IS_G33(dev_priv)) |
| 4824 | dev_priv->num_fence_regs = 16; |
| 4825 | else |
| 4826 | dev_priv->num_fence_regs = 8; |
| 4827 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 4828 | if (intel_vgpu_active(dev_priv)) |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4829 | dev_priv->num_fence_regs = |
| 4830 | I915_READ(vgtif_reg(avail_rs.fence_num)); |
| 4831 | |
| 4832 | /* Initialize fence registers to zero */ |
Chris Wilson | 49ef529 | 2016-08-18 17:17:00 +0100 | [diff] [blame] | 4833 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
| 4834 | struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i]; |
| 4835 | |
| 4836 | fence->i915 = dev_priv; |
| 4837 | fence->id = i; |
| 4838 | list_add_tail(&fence->link, &dev_priv->mm.fence_list); |
| 4839 | } |
Imre Deak | 40ae4e1 | 2016-03-16 14:54:03 +0200 | [diff] [blame] | 4840 | i915_gem_restore_fences(dev); |
| 4841 | |
| 4842 | i915_gem_detect_bit_6_swizzle(dev); |
| 4843 | } |
| 4844 | |
| 4845 | void |
Imre Deak | d64aa09 | 2016-01-19 15:26:29 +0200 | [diff] [blame] | 4846 | i915_gem_load_init(struct drm_device *dev) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4847 | { |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 4848 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4849 | |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 4850 | dev_priv->objects = |
Chris Wilson | 42dcedd | 2012-11-15 11:32:30 +0000 | [diff] [blame] | 4851 | kmem_cache_create("i915_gem_object", |
| 4852 | sizeof(struct drm_i915_gem_object), 0, |
| 4853 | SLAB_HWCACHE_ALIGN, |
| 4854 | NULL); |
Chris Wilson | e20d2ab | 2015-04-07 16:20:58 +0100 | [diff] [blame] | 4855 | dev_priv->vmas = |
| 4856 | kmem_cache_create("i915_gem_vma", |
| 4857 | sizeof(struct i915_vma), 0, |
| 4858 | SLAB_HWCACHE_ALIGN, |
| 4859 | NULL); |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 4860 | dev_priv->requests = |
| 4861 | kmem_cache_create("i915_gem_request", |
| 4862 | sizeof(struct drm_i915_gem_request), 0, |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 4863 | SLAB_HWCACHE_ALIGN | |
| 4864 | SLAB_RECLAIM_ACCOUNT | |
| 4865 | SLAB_DESTROY_BY_RCU, |
Chris Wilson | efab6d8 | 2015-04-07 16:20:57 +0100 | [diff] [blame] | 4866 | NULL); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4867 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 4868 | INIT_LIST_HEAD(&dev_priv->context_list); |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 4869 | INIT_LIST_HEAD(&dev_priv->mm.unbound_list); |
| 4870 | INIT_LIST_HEAD(&dev_priv->mm.bound_list); |
Eric Anholt | a09ba7f | 2009-08-29 12:49:51 -0700 | [diff] [blame] | 4871 | INIT_LIST_HEAD(&dev_priv->mm.fence_list); |
Chris Wilson | 275f039 | 2016-10-24 13:42:14 +0100 | [diff] [blame] | 4872 | INIT_LIST_HEAD(&dev_priv->mm.userfault_list); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4873 | INIT_DELAYED_WORK(&dev_priv->gt.retire_work, |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4874 | i915_gem_retire_work_handler); |
Chris Wilson | 67d97da | 2016-07-04 08:08:31 +0100 | [diff] [blame] | 4875 | INIT_DELAYED_WORK(&dev_priv->gt.idle_work, |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4876 | i915_gem_idle_work_handler); |
Chris Wilson | 1f15b76 | 2016-07-01 17:23:14 +0100 | [diff] [blame] | 4877 | init_waitqueue_head(&dev_priv->gpu_error.wait_queue); |
Daniel Vetter | 1f83fee | 2012-11-15 17:17:22 +0100 | [diff] [blame] | 4878 | init_waitqueue_head(&dev_priv->gpu_error.reset_queue); |
Chris Wilson | 3116971 | 2009-09-14 16:50:28 +0100 | [diff] [blame] | 4879 | |
Chris Wilson | 72bfa19 | 2010-12-19 11:42:05 +0000 | [diff] [blame] | 4880 | dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL; |
| 4881 | |
Kristian Høgsberg | 6b95a20 | 2009-11-18 11:25:18 -0500 | [diff] [blame] | 4882 | init_waitqueue_head(&dev_priv->pending_flip_queue); |
Chris Wilson | 17250b7 | 2010-10-28 12:51:39 +0100 | [diff] [blame] | 4883 | |
Chris Wilson | ce453d8 | 2011-02-21 14:43:56 +0000 | [diff] [blame] | 4884 | dev_priv->mm.interruptible = true; |
| 4885 | |
Joonas Lahtinen | 6f63340 | 2016-09-01 14:58:21 +0300 | [diff] [blame] | 4886 | atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0); |
| 4887 | |
Chris Wilson | b5add95 | 2016-08-04 16:32:36 +0100 | [diff] [blame] | 4888 | spin_lock_init(&dev_priv->fb_tracking.lock); |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 4889 | } |
Dave Airlie | 71acb5e | 2008-12-30 20:31:46 +1000 | [diff] [blame] | 4890 | |
Imre Deak | d64aa09 | 2016-01-19 15:26:29 +0200 | [diff] [blame] | 4891 | void i915_gem_load_cleanup(struct drm_device *dev) |
| 4892 | { |
| 4893 | struct drm_i915_private *dev_priv = to_i915(dev); |
| 4894 | |
| 4895 | kmem_cache_destroy(dev_priv->requests); |
| 4896 | kmem_cache_destroy(dev_priv->vmas); |
| 4897 | kmem_cache_destroy(dev_priv->objects); |
Chris Wilson | 0eafec6 | 2016-08-04 16:32:41 +0100 | [diff] [blame] | 4898 | |
| 4899 | /* And ensure that our DESTROY_BY_RCU slabs are truly destroyed */ |
| 4900 | rcu_barrier(); |
Imre Deak | d64aa09 | 2016-01-19 15:26:29 +0200 | [diff] [blame] | 4901 | } |
| 4902 | |
Chris Wilson | 6a800ea | 2016-09-21 14:51:07 +0100 | [diff] [blame] | 4903 | int i915_gem_freeze(struct drm_i915_private *dev_priv) |
| 4904 | { |
| 4905 | intel_runtime_pm_get(dev_priv); |
| 4906 | |
| 4907 | mutex_lock(&dev_priv->drm.struct_mutex); |
| 4908 | i915_gem_shrink_all(dev_priv); |
| 4909 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 4910 | |
| 4911 | intel_runtime_pm_put(dev_priv); |
| 4912 | |
| 4913 | return 0; |
| 4914 | } |
| 4915 | |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4916 | int i915_gem_freeze_late(struct drm_i915_private *dev_priv) |
| 4917 | { |
| 4918 | struct drm_i915_gem_object *obj; |
Chris Wilson | 7aab2d5 | 2016-09-09 20:02:18 +0100 | [diff] [blame] | 4919 | struct list_head *phases[] = { |
| 4920 | &dev_priv->mm.unbound_list, |
| 4921 | &dev_priv->mm.bound_list, |
| 4922 | NULL |
| 4923 | }, **p; |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4924 | |
| 4925 | /* Called just before we write the hibernation image. |
| 4926 | * |
| 4927 | * We need to update the domain tracking to reflect that the CPU |
| 4928 | * will be accessing all the pages to create and restore from the |
| 4929 | * hibernation, and so upon restoration those pages will be in the |
| 4930 | * CPU domain. |
| 4931 | * |
| 4932 | * To make sure the hibernation image contains the latest state, |
| 4933 | * we update that state just before writing out the image. |
Chris Wilson | 7aab2d5 | 2016-09-09 20:02:18 +0100 | [diff] [blame] | 4934 | * |
| 4935 | * To try and reduce the hibernation image, we manually shrink |
| 4936 | * the objects as well. |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4937 | */ |
| 4938 | |
Chris Wilson | 6a800ea | 2016-09-21 14:51:07 +0100 | [diff] [blame] | 4939 | mutex_lock(&dev_priv->drm.struct_mutex); |
| 4940 | i915_gem_shrink(dev_priv, -1UL, I915_SHRINK_UNBOUND); |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4941 | |
Chris Wilson | 7aab2d5 | 2016-09-09 20:02:18 +0100 | [diff] [blame] | 4942 | for (p = phases; *p; p++) { |
| 4943 | list_for_each_entry(obj, *p, global_list) { |
| 4944 | obj->base.read_domains = I915_GEM_DOMAIN_CPU; |
| 4945 | obj->base.write_domain = I915_GEM_DOMAIN_CPU; |
| 4946 | } |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4947 | } |
Chris Wilson | 6a800ea | 2016-09-21 14:51:07 +0100 | [diff] [blame] | 4948 | mutex_unlock(&dev_priv->drm.struct_mutex); |
Chris Wilson | 461fb99 | 2016-05-14 07:26:33 +0100 | [diff] [blame] | 4949 | |
| 4950 | return 0; |
| 4951 | } |
| 4952 | |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 4953 | void i915_gem_release(struct drm_device *dev, struct drm_file *file) |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 4954 | { |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 4955 | struct drm_i915_file_private *file_priv = file->driver_priv; |
Chris Wilson | 15f7bbc | 2016-07-26 12:01:52 +0100 | [diff] [blame] | 4956 | struct drm_i915_gem_request *request; |
Eric Anholt | b962442 | 2009-06-03 07:27:35 +0000 | [diff] [blame] | 4957 | |
| 4958 | /* Clean up our request list when the client is going away, so that |
| 4959 | * later retire_requests won't dereference our soon-to-be-gone |
| 4960 | * file_priv. |
| 4961 | */ |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 4962 | spin_lock(&file_priv->mm.lock); |
Chris Wilson | 15f7bbc | 2016-07-26 12:01:52 +0100 | [diff] [blame] | 4963 | list_for_each_entry(request, &file_priv->mm.request_list, client_list) |
Chris Wilson | f787a5f | 2010-09-24 16:02:42 +0100 | [diff] [blame] | 4964 | request->file_priv = NULL; |
Chris Wilson | 1c25595 | 2010-09-26 11:03:27 +0100 | [diff] [blame] | 4965 | spin_unlock(&file_priv->mm.lock); |
Chris Wilson | 3116971 | 2009-09-14 16:50:28 +0100 | [diff] [blame] | 4966 | |
Chris Wilson | 2e1b873 | 2015-04-27 13:41:22 +0100 | [diff] [blame] | 4967 | if (!list_empty(&file_priv->rps.link)) { |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 4968 | spin_lock(&to_i915(dev)->rps.client_lock); |
Chris Wilson | 2e1b873 | 2015-04-27 13:41:22 +0100 | [diff] [blame] | 4969 | list_del(&file_priv->rps.link); |
Chris Wilson | 8d3afd7 | 2015-05-21 21:01:47 +0100 | [diff] [blame] | 4970 | spin_unlock(&to_i915(dev)->rps.client_lock); |
Chris Wilson | 1854d5c | 2015-04-07 16:20:32 +0100 | [diff] [blame] | 4971 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4972 | } |
| 4973 | |
| 4974 | int i915_gem_open(struct drm_device *dev, struct drm_file *file) |
| 4975 | { |
| 4976 | struct drm_i915_file_private *file_priv; |
Ben Widawsky | e422b88 | 2013-12-06 14:10:58 -0800 | [diff] [blame] | 4977 | int ret; |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4978 | |
| 4979 | DRM_DEBUG_DRIVER("\n"); |
| 4980 | |
| 4981 | file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL); |
| 4982 | if (!file_priv) |
| 4983 | return -ENOMEM; |
| 4984 | |
| 4985 | file->driver_priv = file_priv; |
Dave Gordon | f19ec8c | 2016-07-04 11:34:37 +0100 | [diff] [blame] | 4986 | file_priv->dev_priv = to_i915(dev); |
Chris Wilson | ab0e7ff | 2014-02-25 17:11:24 +0200 | [diff] [blame] | 4987 | file_priv->file = file; |
Chris Wilson | 2e1b873 | 2015-04-27 13:41:22 +0100 | [diff] [blame] | 4988 | INIT_LIST_HEAD(&file_priv->rps.link); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4989 | |
| 4990 | spin_lock_init(&file_priv->mm.lock); |
| 4991 | INIT_LIST_HEAD(&file_priv->mm.request_list); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4992 | |
Chris Wilson | c80ff16 | 2016-07-27 09:07:27 +0100 | [diff] [blame] | 4993 | file_priv->bsd_engine = -1; |
Tvrtko Ursulin | de1add3 | 2016-01-15 15:12:50 +0000 | [diff] [blame] | 4994 | |
Ben Widawsky | e422b88 | 2013-12-06 14:10:58 -0800 | [diff] [blame] | 4995 | ret = i915_gem_context_open(dev, file); |
| 4996 | if (ret) |
| 4997 | kfree(file_priv); |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4998 | |
Ben Widawsky | e422b88 | 2013-12-06 14:10:58 -0800 | [diff] [blame] | 4999 | return ret; |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 5000 | } |
| 5001 | |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 5002 | /** |
| 5003 | * i915_gem_track_fb - update frontbuffer tracking |
Geliang Tang | d9072a3 | 2015-09-15 05:58:44 -0700 | [diff] [blame] | 5004 | * @old: current GEM buffer for the frontbuffer slots |
| 5005 | * @new: new GEM buffer for the frontbuffer slots |
| 5006 | * @frontbuffer_bits: bitmask of frontbuffer slots |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 5007 | * |
| 5008 | * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them |
| 5009 | * from @old and setting them in @new. Both @old and @new can be NULL. |
| 5010 | */ |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5011 | void i915_gem_track_fb(struct drm_i915_gem_object *old, |
| 5012 | struct drm_i915_gem_object *new, |
| 5013 | unsigned frontbuffer_bits) |
| 5014 | { |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 5015 | /* Control of individual bits within the mask are guarded by |
| 5016 | * the owning plane->mutex, i.e. we can never see concurrent |
| 5017 | * manipulation of individual bits. But since the bitfield as a whole |
| 5018 | * is updated using RMW, we need to use atomics in order to update |
| 5019 | * the bits. |
| 5020 | */ |
| 5021 | BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES > |
| 5022 | sizeof(atomic_t) * BITS_PER_BYTE); |
| 5023 | |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5024 | if (old) { |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 5025 | WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits)); |
| 5026 | atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits); |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5027 | } |
| 5028 | |
| 5029 | if (new) { |
Chris Wilson | faf5bf0 | 2016-08-04 16:32:37 +0100 | [diff] [blame] | 5030 | WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits); |
| 5031 | atomic_or(frontbuffer_bits, &new->frontbuffer_bits); |
Daniel Vetter | a071fa0 | 2014-06-18 23:28:09 +0200 | [diff] [blame] | 5032 | } |
| 5033 | } |
| 5034 | |
Dave Gordon | 033908a | 2015-12-10 18:51:23 +0000 | [diff] [blame] | 5035 | /* Like i915_gem_object_get_page(), but mark the returned page dirty */ |
| 5036 | struct page * |
| 5037 | i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj, int n) |
| 5038 | { |
| 5039 | struct page *page; |
| 5040 | |
| 5041 | /* Only default objects have per-page dirty tracking */ |
Chris Wilson | b9bcd14 | 2016-06-20 15:05:51 +0100 | [diff] [blame] | 5042 | if (WARN_ON(!i915_gem_object_has_struct_page(obj))) |
Dave Gordon | 033908a | 2015-12-10 18:51:23 +0000 | [diff] [blame] | 5043 | return NULL; |
| 5044 | |
| 5045 | page = i915_gem_object_get_page(obj, n); |
| 5046 | set_page_dirty(page); |
| 5047 | return page; |
| 5048 | } |
| 5049 | |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5050 | /* Allocate a new GEM object and fill it with the supplied data */ |
| 5051 | struct drm_i915_gem_object * |
| 5052 | i915_gem_object_create_from_data(struct drm_device *dev, |
| 5053 | const void *data, size_t size) |
| 5054 | { |
| 5055 | struct drm_i915_gem_object *obj; |
| 5056 | struct sg_table *sg; |
| 5057 | size_t bytes; |
| 5058 | int ret; |
| 5059 | |
Dave Gordon | d37cd8a | 2016-04-22 19:14:32 +0100 | [diff] [blame] | 5060 | obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE)); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 5061 | if (IS_ERR(obj)) |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5062 | return obj; |
| 5063 | |
| 5064 | ret = i915_gem_object_set_to_cpu_domain(obj, true); |
| 5065 | if (ret) |
| 5066 | goto fail; |
| 5067 | |
| 5068 | ret = i915_gem_object_get_pages(obj); |
| 5069 | if (ret) |
| 5070 | goto fail; |
| 5071 | |
| 5072 | i915_gem_object_pin_pages(obj); |
| 5073 | sg = obj->pages; |
| 5074 | bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size); |
Dave Gordon | 9e7d18c | 2015-12-10 18:51:24 +0000 | [diff] [blame] | 5075 | obj->dirty = 1; /* Backing store is now out of date */ |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5076 | i915_gem_object_unpin_pages(obj); |
| 5077 | |
| 5078 | if (WARN_ON(bytes != size)) { |
| 5079 | DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size); |
| 5080 | ret = -EFAULT; |
| 5081 | goto fail; |
| 5082 | } |
| 5083 | |
| 5084 | return obj; |
| 5085 | |
| 5086 | fail: |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 5087 | i915_gem_object_put(obj); |
Dave Gordon | ea70299 | 2015-07-09 19:29:02 +0100 | [diff] [blame] | 5088 | return ERR_PTR(ret); |
| 5089 | } |