blob: 21fb41c93caa606cd2628afa8e56898b2a842608 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
Daniel Vetterbe6a0372015-03-18 10:46:04 +01002 * Copyright © 2008-2015 Intel Corporation
Eric Anholt673a3942008-07-30 12:06:12 -07003 *
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 Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Yu Zhangeb822892015-02-10 19:05:49 +080032#include "i915_vgpu.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010033#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070034#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070035#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020039#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040
Chris Wilson05394f32010-11-08 19:18:58 +000041static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Daniel Vettere62b59e2015-01-21 14:53:48 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilsonc8725f32014-03-17 12:21:55 +000043static void
Chris Wilsonb4716182015-04-27 13:41:17 +010044i915_gem_object_retire__write(struct drm_i915_gem_object *obj);
45static void
46i915_gem_object_retire__read(struct drm_i915_gem_object *obj, int ring);
Chris Wilson61050802012-04-17 15:31:31 +010047
Chris Wilsonc76ce032013-08-08 14:41:03 +010048static 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 Wilson2c225692013-08-09 12:26:45 +010054static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
55{
56 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
57 return true;
58
59 return obj->pin_display;
60}
61
Chris Wilson73aa8082010-09-30 11:46:12 +010062/* some bookkeeping */
63static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
64 size_t size)
65{
Daniel Vetterc20e8352013-07-24 22:40:23 +020066 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010067 dev_priv->mm.object_count++;
68 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020069 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010070}
71
72static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
73 size_t size)
74{
Daniel Vetterc20e8352013-07-24 22:40:23 +020075 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010076 dev_priv->mm.object_count--;
77 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020078 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010079}
80
Chris Wilson21dd3732011-01-26 15:55:56 +000081static int
Daniel Vetter33196de2012-11-14 17:14:05 +010082i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010083{
Chris Wilson30dbf0c2010-09-25 10:19:17 +010084 int ret;
85
Chris Wilsond98c52c2016-04-13 17:35:05 +010086 if (!i915_reset_in_progress(error))
Chris Wilson30dbf0c2010-09-25 10:19:17 +010087 return 0;
88
Daniel Vetter0a6759c2012-07-04 22:18:41 +020089 /*
90 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
91 * userspace. If it takes that long something really bad is going on and
92 * we should simply try to bail out and fail as gracefully as possible.
93 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +010094 ret = wait_event_interruptible_timeout(error->reset_queue,
Chris Wilsond98c52c2016-04-13 17:35:05 +010095 !i915_reset_in_progress(error),
Daniel Vetter1f83fee2012-11-15 17:17:22 +010096 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +020097 if (ret == 0) {
98 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
99 return -EIO;
100 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100101 return ret;
Chris Wilsond98c52c2016-04-13 17:35:05 +0100102 } else {
103 return 0;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200104 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100105}
106
Chris Wilson54cf91d2010-11-25 18:00:26 +0000107int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100108{
Daniel Vetter33196de2012-11-14 17:14:05 +0100109 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100110 int ret;
111
Daniel Vetter33196de2012-11-14 17:14:05 +0100112 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100113 if (ret)
114 return ret;
115
116 ret = mutex_lock_interruptible(&dev->struct_mutex);
117 if (ret)
118 return ret;
119
Chris Wilson23bc5982010-09-29 16:10:57 +0100120 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100121 return 0;
122}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100123
Eric Anholt673a3942008-07-30 12:06:12 -0700124int
Eric Anholt5a125c32008-10-22 21:40:13 -0700125i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000126 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700127{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300128 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen62106b42016-03-18 10:42:57 +0200129 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300130 struct drm_i915_gem_get_aperture *args = data;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100131 struct i915_vma *vma;
Chris Wilson6299f992010-11-24 12:23:44 +0000132 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700133
Chris Wilson6299f992010-11-24 12:23:44 +0000134 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100135 mutex_lock(&dev->struct_mutex);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000136 list_for_each_entry(vma, &ggtt->base.active_list, vm_link)
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100137 if (vma->pin_count)
138 pinned += vma->node.size;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000139 list_for_each_entry(vma, &ggtt->base.inactive_list, vm_link)
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100140 if (vma->pin_count)
141 pinned += vma->node.size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100142 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700143
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300144 args->aper_size = ggtt->base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400145 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000146
Eric Anholt5a125c32008-10-22 21:40:13 -0700147 return 0;
148}
149
Chris Wilson6a2c4232014-11-04 04:51:40 -0800150static int
151i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100152{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800153 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
154 char *vaddr = obj->phys_handle->vaddr;
155 struct sg_table *st;
156 struct scatterlist *sg;
157 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100158
Chris Wilson6a2c4232014-11-04 04:51:40 -0800159 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
160 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100161
Chris Wilson6a2c4232014-11-04 04:51:40 -0800162 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
163 struct page *page;
164 char *src;
165
166 page = shmem_read_mapping_page(mapping, i);
167 if (IS_ERR(page))
168 return PTR_ERR(page);
169
170 src = kmap_atomic(page);
171 memcpy(vaddr, src, PAGE_SIZE);
172 drm_clflush_virt_range(vaddr, PAGE_SIZE);
173 kunmap_atomic(src);
174
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300175 put_page(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800176 vaddr += PAGE_SIZE;
177 }
178
179 i915_gem_chipset_flush(obj->base.dev);
180
181 st = kmalloc(sizeof(*st), GFP_KERNEL);
182 if (st == NULL)
183 return -ENOMEM;
184
185 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
186 kfree(st);
187 return -ENOMEM;
188 }
189
190 sg = st->sgl;
191 sg->offset = 0;
192 sg->length = obj->base.size;
193
194 sg_dma_address(sg) = obj->phys_handle->busaddr;
195 sg_dma_len(sg) = obj->base.size;
196
197 obj->pages = st;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800198 return 0;
199}
200
201static void
202i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
203{
204 int ret;
205
206 BUG_ON(obj->madv == __I915_MADV_PURGED);
207
208 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +0100209 if (WARN_ON(ret)) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800210 /* In the event of a disaster, abandon all caches and
211 * hope for the best.
212 */
Chris Wilson6a2c4232014-11-04 04:51:40 -0800213 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
214 }
215
216 if (obj->madv == I915_MADV_DONTNEED)
217 obj->dirty = 0;
218
219 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100220 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800221 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100222 int i;
223
224 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800225 struct page *page;
226 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100227
Chris Wilson6a2c4232014-11-04 04:51:40 -0800228 page = shmem_read_mapping_page(mapping, i);
229 if (IS_ERR(page))
230 continue;
231
232 dst = kmap_atomic(page);
233 drm_clflush_virt_range(vaddr, PAGE_SIZE);
234 memcpy(dst, vaddr, PAGE_SIZE);
235 kunmap_atomic(dst);
236
237 set_page_dirty(page);
238 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100239 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300240 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100241 vaddr += PAGE_SIZE;
242 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800243 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100244 }
245
Chris Wilson6a2c4232014-11-04 04:51:40 -0800246 sg_free_table(obj->pages);
247 kfree(obj->pages);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800248}
249
250static void
251i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
252{
253 drm_pci_free(obj->base.dev, obj->phys_handle);
254}
255
256static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
257 .get_pages = i915_gem_object_get_pages_phys,
258 .put_pages = i915_gem_object_put_pages_phys,
259 .release = i915_gem_object_release_phys,
260};
261
262static int
263drop_pages(struct drm_i915_gem_object *obj)
264{
265 struct i915_vma *vma, *next;
266 int ret;
267
268 drm_gem_object_reference(&obj->base);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000269 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link)
Chris Wilson6a2c4232014-11-04 04:51:40 -0800270 if (i915_vma_unbind(vma))
271 break;
272
273 ret = i915_gem_object_put_pages(obj);
274 drm_gem_object_unreference(&obj->base);
275
276 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100277}
278
279int
280i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
281 int align)
282{
283 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800284 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100285
286 if (obj->phys_handle) {
287 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
288 return -EBUSY;
289
290 return 0;
291 }
292
293 if (obj->madv != I915_MADV_WILLNEED)
294 return -EFAULT;
295
296 if (obj->base.filp == NULL)
297 return -EINVAL;
298
Chris Wilson6a2c4232014-11-04 04:51:40 -0800299 ret = drop_pages(obj);
300 if (ret)
301 return ret;
302
Chris Wilson00731152014-05-21 12:42:56 +0100303 /* create a new object */
304 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
305 if (!phys)
306 return -ENOMEM;
307
Chris Wilson00731152014-05-21 12:42:56 +0100308 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800309 obj->ops = &i915_gem_phys_ops;
310
311 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100312}
313
314static int
315i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
316 struct drm_i915_gem_pwrite *args,
317 struct drm_file *file_priv)
318{
319 struct drm_device *dev = obj->base.dev;
320 void *vaddr = obj->phys_handle->vaddr + args->offset;
321 char __user *user_data = to_user_ptr(args->data_ptr);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200322 int ret = 0;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800323
324 /* We manually control the domain here and pretend that it
325 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
326 */
327 ret = i915_gem_object_wait_rendering(obj, false);
328 if (ret)
329 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100330
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700331 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100332 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
333 unsigned long unwritten;
334
335 /* The physical object once assigned is fixed for the lifetime
336 * of the obj, so we can safely drop the lock and continue
337 * to access vaddr.
338 */
339 mutex_unlock(&dev->struct_mutex);
340 unwritten = copy_from_user(vaddr, user_data, args->size);
341 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200342 if (unwritten) {
343 ret = -EFAULT;
344 goto out;
345 }
Chris Wilson00731152014-05-21 12:42:56 +0100346 }
347
Chris Wilson6a2c4232014-11-04 04:51:40 -0800348 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100349 i915_gem_chipset_flush(dev);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200350
351out:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700352 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200353 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100354}
355
Chris Wilson42dcedd2012-11-15 11:32:30 +0000356void *i915_gem_object_alloc(struct drm_device *dev)
357{
358 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonefab6d82015-04-07 16:20:57 +0100359 return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000360}
361
362void i915_gem_object_free(struct drm_i915_gem_object *obj)
363{
364 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonefab6d82015-04-07 16:20:57 +0100365 kmem_cache_free(dev_priv->objects, obj);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000366}
367
Dave Airlieff72145b2011-02-07 12:16:14 +1000368static int
369i915_gem_create(struct drm_file *file,
370 struct drm_device *dev,
371 uint64_t size,
372 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700373{
Chris Wilson05394f32010-11-08 19:18:58 +0000374 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300375 int ret;
376 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700377
Dave Airlieff72145b2011-02-07 12:16:14 +1000378 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200379 if (size == 0)
380 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700381
382 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000383 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700384 if (obj == NULL)
385 return -ENOMEM;
386
Chris Wilson05394f32010-11-08 19:18:58 +0000387 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100388 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200389 drm_gem_object_unreference_unlocked(&obj->base);
390 if (ret)
391 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100392
Dave Airlieff72145b2011-02-07 12:16:14 +1000393 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700394 return 0;
395}
396
Dave Airlieff72145b2011-02-07 12:16:14 +1000397int
398i915_gem_dumb_create(struct drm_file *file,
399 struct drm_device *dev,
400 struct drm_mode_create_dumb *args)
401{
402 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300403 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000404 args->size = args->pitch * args->height;
405 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000406 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000407}
408
Dave Airlieff72145b2011-02-07 12:16:14 +1000409/**
410 * Creates a new mm object and returns a handle to it.
411 */
412int
413i915_gem_create_ioctl(struct drm_device *dev, void *data,
414 struct drm_file *file)
415{
416 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200417
Dave Airlieff72145b2011-02-07 12:16:14 +1000418 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000419 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000420}
421
Daniel Vetter8c599672011-12-14 13:57:31 +0100422static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100423__copy_to_user_swizzled(char __user *cpu_vaddr,
424 const char *gpu_vaddr, int gpu_offset,
425 int length)
426{
427 int ret, cpu_offset = 0;
428
429 while (length > 0) {
430 int cacheline_end = ALIGN(gpu_offset + 1, 64);
431 int this_length = min(cacheline_end - gpu_offset, length);
432 int swizzled_gpu_offset = gpu_offset ^ 64;
433
434 ret = __copy_to_user(cpu_vaddr + cpu_offset,
435 gpu_vaddr + swizzled_gpu_offset,
436 this_length);
437 if (ret)
438 return ret + length;
439
440 cpu_offset += this_length;
441 gpu_offset += this_length;
442 length -= this_length;
443 }
444
445 return 0;
446}
447
448static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700449__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
450 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100451 int length)
452{
453 int ret, cpu_offset = 0;
454
455 while (length > 0) {
456 int cacheline_end = ALIGN(gpu_offset + 1, 64);
457 int this_length = min(cacheline_end - gpu_offset, length);
458 int swizzled_gpu_offset = gpu_offset ^ 64;
459
460 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
461 cpu_vaddr + cpu_offset,
462 this_length);
463 if (ret)
464 return ret + length;
465
466 cpu_offset += this_length;
467 gpu_offset += this_length;
468 length -= this_length;
469 }
470
471 return 0;
472}
473
Brad Volkin4c914c02014-02-18 10:15:45 -0800474/*
475 * Pins the specified object's pages and synchronizes the object with
476 * GPU accesses. Sets needs_clflush to non-zero if the caller should
477 * flush the object from the CPU cache.
478 */
479int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
480 int *needs_clflush)
481{
482 int ret;
483
484 *needs_clflush = 0;
485
Ben Widawsky1db6e2e2016-02-09 11:44:12 -0800486 if (WARN_ON((obj->ops->flags & I915_GEM_OBJECT_HAS_STRUCT_PAGE) == 0))
Brad Volkin4c914c02014-02-18 10:15:45 -0800487 return -EINVAL;
488
489 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
490 /* If we're not in the cpu read domain, set ourself into the gtt
491 * read domain and manually flush cachelines (if required). This
492 * optimizes for the case when the gpu will dirty the data
493 * anyway again before the next pread happens. */
494 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
495 obj->cache_level);
496 ret = i915_gem_object_wait_rendering(obj, true);
497 if (ret)
498 return ret;
499 }
500
501 ret = i915_gem_object_get_pages(obj);
502 if (ret)
503 return ret;
504
505 i915_gem_object_pin_pages(obj);
506
507 return ret;
508}
509
Daniel Vetterd174bd62012-03-25 19:47:40 +0200510/* Per-page copy function for the shmem pread fastpath.
511 * Flushes invalid cachelines before reading the target if
512 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700513static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200514shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
515 char __user *user_data,
516 bool page_do_bit17_swizzling, bool needs_clflush)
517{
518 char *vaddr;
519 int ret;
520
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200521 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200522 return -EINVAL;
523
524 vaddr = kmap_atomic(page);
525 if (needs_clflush)
526 drm_clflush_virt_range(vaddr + shmem_page_offset,
527 page_length);
528 ret = __copy_to_user_inatomic(user_data,
529 vaddr + shmem_page_offset,
530 page_length);
531 kunmap_atomic(vaddr);
532
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100533 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200534}
535
Daniel Vetter23c18c72012-03-25 19:47:42 +0200536static void
537shmem_clflush_swizzled_range(char *addr, unsigned long length,
538 bool swizzled)
539{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200540 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200541 unsigned long start = (unsigned long) addr;
542 unsigned long end = (unsigned long) addr + length;
543
544 /* For swizzling simply ensure that we always flush both
545 * channels. Lame, but simple and it works. Swizzled
546 * pwrite/pread is far from a hotpath - current userspace
547 * doesn't use it at all. */
548 start = round_down(start, 128);
549 end = round_up(end, 128);
550
551 drm_clflush_virt_range((void *)start, end - start);
552 } else {
553 drm_clflush_virt_range(addr, length);
554 }
555
556}
557
Daniel Vetterd174bd62012-03-25 19:47:40 +0200558/* Only difference to the fast-path function is that this can handle bit17
559 * and uses non-atomic copy and kmap functions. */
560static int
561shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
562 char __user *user_data,
563 bool page_do_bit17_swizzling, bool needs_clflush)
564{
565 char *vaddr;
566 int ret;
567
568 vaddr = kmap(page);
569 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200570 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
571 page_length,
572 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200573
574 if (page_do_bit17_swizzling)
575 ret = __copy_to_user_swizzled(user_data,
576 vaddr, shmem_page_offset,
577 page_length);
578 else
579 ret = __copy_to_user(user_data,
580 vaddr + shmem_page_offset,
581 page_length);
582 kunmap(page);
583
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100584 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200585}
586
Eric Anholteb014592009-03-10 11:44:52 -0700587static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200588i915_gem_shmem_pread(struct drm_device *dev,
589 struct drm_i915_gem_object *obj,
590 struct drm_i915_gem_pread *args,
591 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700592{
Daniel Vetter8461d222011-12-14 13:57:32 +0100593 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700594 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100595 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100596 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100597 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200598 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200599 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200600 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700601
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200602 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700603 remain = args->size;
604
Daniel Vetter8461d222011-12-14 13:57:32 +0100605 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700606
Brad Volkin4c914c02014-02-18 10:15:45 -0800607 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100608 if (ret)
609 return ret;
610
Eric Anholteb014592009-03-10 11:44:52 -0700611 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100612
Imre Deak67d5a502013-02-18 19:28:02 +0200613 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
614 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200615 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100616
617 if (remain <= 0)
618 break;
619
Eric Anholteb014592009-03-10 11:44:52 -0700620 /* Operation in this page
621 *
Eric Anholteb014592009-03-10 11:44:52 -0700622 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700623 * page_length = bytes to copy for this page
624 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100625 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700626 page_length = remain;
627 if ((shmem_page_offset + page_length) > PAGE_SIZE)
628 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700629
Daniel Vetter8461d222011-12-14 13:57:32 +0100630 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
631 (page_to_phys(page) & (1 << 17)) != 0;
632
Daniel Vetterd174bd62012-03-25 19:47:40 +0200633 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
634 user_data, page_do_bit17_swizzling,
635 needs_clflush);
636 if (ret == 0)
637 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700638
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200639 mutex_unlock(&dev->struct_mutex);
640
Jani Nikulad330a952014-01-21 11:24:25 +0200641 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200642 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200643 /* Userspace is tricking us, but we've already clobbered
644 * its pages with the prefault and promised to write the
645 * data up to the first fault. Hence ignore any errors
646 * and just continue. */
647 (void)ret;
648 prefaulted = 1;
649 }
650
Daniel Vetterd174bd62012-03-25 19:47:40 +0200651 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
652 user_data, page_do_bit17_swizzling,
653 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700654
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200655 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100656
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100657 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100658 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100659
Chris Wilson17793c92014-03-07 08:30:36 +0000660next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700661 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100662 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700663 offset += page_length;
664 }
665
Chris Wilson4f27b752010-10-14 15:26:45 +0100666out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100667 i915_gem_object_unpin_pages(obj);
668
Eric Anholteb014592009-03-10 11:44:52 -0700669 return ret;
670}
671
Eric Anholt673a3942008-07-30 12:06:12 -0700672/**
673 * Reads data from the object referenced by handle.
674 *
675 * On error, the contents of *data are undefined.
676 */
677int
678i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000679 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700680{
681 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000682 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100683 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700684
Chris Wilson51311d02010-11-17 09:10:42 +0000685 if (args->size == 0)
686 return 0;
687
688 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200689 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000690 args->size))
691 return -EFAULT;
692
Chris Wilson4f27b752010-10-14 15:26:45 +0100693 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100694 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100695 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700696
Chris Wilson05394f32010-11-08 19:18:58 +0000697 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000698 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100699 ret = -ENOENT;
700 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100701 }
Eric Anholt673a3942008-07-30 12:06:12 -0700702
Chris Wilson7dcd2492010-09-26 20:21:44 +0100703 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000704 if (args->offset > obj->base.size ||
705 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100706 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100707 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100708 }
709
Daniel Vetter1286ff72012-05-10 15:25:09 +0200710 /* prime objects have no backing filp to GEM pread/pwrite
711 * pages from.
712 */
713 if (!obj->base.filp) {
714 ret = -EINVAL;
715 goto out;
716 }
717
Chris Wilsondb53a302011-02-03 11:57:46 +0000718 trace_i915_gem_object_pread(obj, args->offset, args->size);
719
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200720 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700721
Chris Wilson35b62a82010-09-26 20:23:38 +0100722out:
Chris Wilson05394f32010-11-08 19:18:58 +0000723 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100724unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100725 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700726 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700727}
728
Keith Packard0839ccb2008-10-30 19:38:48 -0700729/* This is the fast write path which cannot handle
730 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700731 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700732
Keith Packard0839ccb2008-10-30 19:38:48 -0700733static inline int
734fast_user_write(struct io_mapping *mapping,
735 loff_t page_base, int page_offset,
736 char __user *user_data,
737 int length)
738{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700739 void __iomem *vaddr_atomic;
740 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700741 unsigned long unwritten;
742
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700743 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700744 /* We can use the cpu mem copy function because this is X86. */
745 vaddr = (void __force*)vaddr_atomic + page_offset;
746 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700747 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700748 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100749 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700750}
751
Eric Anholt3de09aa2009-03-09 09:42:23 -0700752/**
753 * This is the fast pwrite path, where we copy the data directly from the
754 * user into the GTT, uncached.
755 */
Eric Anholt673a3942008-07-30 12:06:12 -0700756static int
Chris Wilson05394f32010-11-08 19:18:58 +0000757i915_gem_gtt_pwrite_fast(struct drm_device *dev,
758 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700759 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000760 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700761{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300762 struct drm_i915_private *dev_priv = to_i915(dev);
763 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Eric Anholt673a3942008-07-30 12:06:12 -0700764 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700765 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700766 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200767 int page_offset, page_length, ret;
768
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100769 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200770 if (ret)
771 goto out;
772
773 ret = i915_gem_object_set_to_gtt_domain(obj, true);
774 if (ret)
775 goto out_unpin;
776
777 ret = i915_gem_object_put_fence(obj);
778 if (ret)
779 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700780
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200781 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700782 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700783
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700784 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700785
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700786 intel_fb_obj_invalidate(obj, ORIGIN_GTT);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200787
Eric Anholt673a3942008-07-30 12:06:12 -0700788 while (remain > 0) {
789 /* Operation in this page
790 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700791 * page_base = page offset within aperture
792 * page_offset = offset within page
793 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700794 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100795 page_base = offset & PAGE_MASK;
796 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700797 page_length = remain;
798 if ((page_offset + remain) > PAGE_SIZE)
799 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700800
Keith Packard0839ccb2008-10-30 19:38:48 -0700801 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700802 * source page isn't available. Return the error and we'll
803 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700804 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300805 if (fast_user_write(ggtt->mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200806 page_offset, user_data, page_length)) {
807 ret = -EFAULT;
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200808 goto out_flush;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200809 }
Eric Anholt673a3942008-07-30 12:06:12 -0700810
Keith Packard0839ccb2008-10-30 19:38:48 -0700811 remain -= page_length;
812 user_data += page_length;
813 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700814 }
Eric Anholt673a3942008-07-30 12:06:12 -0700815
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200816out_flush:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700817 intel_fb_obj_flush(obj, false, ORIGIN_GTT);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200818out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800819 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200820out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700821 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700822}
823
Daniel Vetterd174bd62012-03-25 19:47:40 +0200824/* Per-page copy function for the shmem pwrite fastpath.
825 * Flushes invalid cachelines before writing to the target if
826 * needs_clflush_before is set and flushes out any written cachelines after
827 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700828static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200829shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
830 char __user *user_data,
831 bool page_do_bit17_swizzling,
832 bool needs_clflush_before,
833 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700834{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200835 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700836 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700837
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200838 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200839 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700840
Daniel Vetterd174bd62012-03-25 19:47:40 +0200841 vaddr = kmap_atomic(page);
842 if (needs_clflush_before)
843 drm_clflush_virt_range(vaddr + shmem_page_offset,
844 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000845 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
846 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200847 if (needs_clflush_after)
848 drm_clflush_virt_range(vaddr + shmem_page_offset,
849 page_length);
850 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700851
Chris Wilson755d2212012-09-04 21:02:55 +0100852 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700853}
854
Daniel Vetterd174bd62012-03-25 19:47:40 +0200855/* Only difference to the fast-path function is that this can handle bit17
856 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700857static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200858shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
859 char __user *user_data,
860 bool page_do_bit17_swizzling,
861 bool needs_clflush_before,
862 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700863{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200864 char *vaddr;
865 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700866
Daniel Vetterd174bd62012-03-25 19:47:40 +0200867 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200868 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200869 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
870 page_length,
871 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200872 if (page_do_bit17_swizzling)
873 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100874 user_data,
875 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200876 else
877 ret = __copy_from_user(vaddr + shmem_page_offset,
878 user_data,
879 page_length);
880 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200881 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
882 page_length,
883 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200884 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100885
Chris Wilson755d2212012-09-04 21:02:55 +0100886 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700887}
888
Eric Anholt40123c12009-03-09 13:42:30 -0700889static int
Daniel Vettere244a442012-03-25 19:47:28 +0200890i915_gem_shmem_pwrite(struct drm_device *dev,
891 struct drm_i915_gem_object *obj,
892 struct drm_i915_gem_pwrite *args,
893 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700894{
Eric Anholt40123c12009-03-09 13:42:30 -0700895 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100896 loff_t offset;
897 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100898 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100899 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200900 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200901 int needs_clflush_after = 0;
902 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200903 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700904
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200905 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700906 remain = args->size;
907
Daniel Vetter8c599672011-12-14 13:57:31 +0100908 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700909
Daniel Vetter58642882012-03-25 19:47:37 +0200910 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
911 /* If we're not in the cpu write domain, set ourself into the gtt
912 * write domain and manually flush cachelines (if required). This
913 * optimizes for the case when the gpu will use the data
914 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100915 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700916 ret = i915_gem_object_wait_rendering(obj, false);
917 if (ret)
918 return ret;
Daniel Vetter58642882012-03-25 19:47:37 +0200919 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100920 /* Same trick applies to invalidate partially written cachelines read
921 * before writing. */
922 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
923 needs_clflush_before =
924 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200925
Chris Wilson755d2212012-09-04 21:02:55 +0100926 ret = i915_gem_object_get_pages(obj);
927 if (ret)
928 return ret;
929
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700930 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200931
Chris Wilson755d2212012-09-04 21:02:55 +0100932 i915_gem_object_pin_pages(obj);
933
Eric Anholt40123c12009-03-09 13:42:30 -0700934 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000935 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700936
Imre Deak67d5a502013-02-18 19:28:02 +0200937 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
938 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200939 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200940 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100941
Chris Wilson9da3da62012-06-01 15:20:22 +0100942 if (remain <= 0)
943 break;
944
Eric Anholt40123c12009-03-09 13:42:30 -0700945 /* Operation in this page
946 *
Eric Anholt40123c12009-03-09 13:42:30 -0700947 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700948 * page_length = bytes to copy for this page
949 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100950 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700951
952 page_length = remain;
953 if ((shmem_page_offset + page_length) > PAGE_SIZE)
954 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700955
Daniel Vetter58642882012-03-25 19:47:37 +0200956 /* If we don't overwrite a cacheline completely we need to be
957 * careful to have up-to-date data by first clflushing. Don't
958 * overcomplicate things and flush the entire patch. */
959 partial_cacheline_write = needs_clflush_before &&
960 ((shmem_page_offset | page_length)
961 & (boot_cpu_data.x86_clflush_size - 1));
962
Daniel Vetter8c599672011-12-14 13:57:31 +0100963 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
964 (page_to_phys(page) & (1 << 17)) != 0;
965
Daniel Vetterd174bd62012-03-25 19:47:40 +0200966 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
967 user_data, page_do_bit17_swizzling,
968 partial_cacheline_write,
969 needs_clflush_after);
970 if (ret == 0)
971 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700972
Daniel Vettere244a442012-03-25 19:47:28 +0200973 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200974 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200975 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
976 user_data, page_do_bit17_swizzling,
977 partial_cacheline_write,
978 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700979
Daniel Vettere244a442012-03-25 19:47:28 +0200980 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +0100981
Chris Wilson755d2212012-09-04 21:02:55 +0100982 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +0100983 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +0100984
Chris Wilson17793c92014-03-07 08:30:36 +0000985next_page:
Eric Anholt40123c12009-03-09 13:42:30 -0700986 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100987 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700988 offset += page_length;
989 }
990
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100991out:
Chris Wilson755d2212012-09-04 21:02:55 +0100992 i915_gem_object_unpin_pages(obj);
993
Daniel Vettere244a442012-03-25 19:47:28 +0200994 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +0100995 /*
996 * Fixup: Flush cpu caches in case we didn't flush the dirty
997 * cachelines in-line while writing and the object moved
998 * out of the cpu write domain while we've dropped the lock.
999 */
1000 if (!needs_clflush_after &&
1001 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001002 if (i915_gem_clflush_object(obj, obj->pin_display))
Ville Syrjäläed75a552015-08-11 19:47:10 +03001003 needs_clflush_after = true;
Daniel Vettere244a442012-03-25 19:47:28 +02001004 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001005 }
Eric Anholt40123c12009-03-09 13:42:30 -07001006
Daniel Vetter58642882012-03-25 19:47:37 +02001007 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001008 i915_gem_chipset_flush(dev);
Ville Syrjäläed75a552015-08-11 19:47:10 +03001009 else
1010 obj->cache_dirty = true;
Daniel Vetter58642882012-03-25 19:47:37 +02001011
Rodrigo Vivide152b62015-07-07 16:28:51 -07001012 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Eric Anholt40123c12009-03-09 13:42:30 -07001013 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001014}
1015
1016/**
1017 * Writes data to the object referenced by handle.
1018 *
1019 * On error, the contents of the buffer that were to be modified are undefined.
1020 */
1021int
1022i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001023 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001024{
Imre Deak5d77d9c2014-11-12 16:40:35 +02001025 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001026 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001027 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001028 int ret;
1029
1030 if (args->size == 0)
1031 return 0;
1032
1033 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001034 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001035 args->size))
1036 return -EFAULT;
1037
Jani Nikulad330a952014-01-21 11:24:25 +02001038 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001039 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1040 args->size);
1041 if (ret)
1042 return -EFAULT;
1043 }
Eric Anholt673a3942008-07-30 12:06:12 -07001044
Imre Deak5d77d9c2014-11-12 16:40:35 +02001045 intel_runtime_pm_get(dev_priv);
1046
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001047 ret = i915_mutex_lock_interruptible(dev);
1048 if (ret)
Imre Deak5d77d9c2014-11-12 16:40:35 +02001049 goto put_rpm;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001050
Chris Wilson05394f32010-11-08 19:18:58 +00001051 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001052 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001053 ret = -ENOENT;
1054 goto unlock;
1055 }
Eric Anholt673a3942008-07-30 12:06:12 -07001056
Chris Wilson7dcd2492010-09-26 20:21:44 +01001057 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001058 if (args->offset > obj->base.size ||
1059 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001060 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001061 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001062 }
1063
Daniel Vetter1286ff72012-05-10 15:25:09 +02001064 /* prime objects have no backing filp to GEM pread/pwrite
1065 * pages from.
1066 */
1067 if (!obj->base.filp) {
1068 ret = -EINVAL;
1069 goto out;
1070 }
1071
Chris Wilsondb53a302011-02-03 11:57:46 +00001072 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1073
Daniel Vetter935aaa62012-03-25 19:47:35 +02001074 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001075 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1076 * it would end up going through the fenced access, and we'll get
1077 * different detiling behavior between reading and writing.
1078 * pread/pwrite currently are reading and writing from the CPU
1079 * perspective, requiring manual detiling by the client.
1080 */
Chris Wilson2c225692013-08-09 12:26:45 +01001081 if (obj->tiling_mode == I915_TILING_NONE &&
1082 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1083 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001084 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001085 /* Note that the gtt paths might fail with non-page-backed user
1086 * pointers (e.g. gtt mappings when moving data between
1087 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001088 }
Eric Anholt673a3942008-07-30 12:06:12 -07001089
Chris Wilson6a2c4232014-11-04 04:51:40 -08001090 if (ret == -EFAULT || ret == -ENOSPC) {
1091 if (obj->phys_handle)
1092 ret = i915_gem_phys_pwrite(obj, args, file);
1093 else
1094 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1095 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001096
Chris Wilson35b62a82010-09-26 20:23:38 +01001097out:
Chris Wilson05394f32010-11-08 19:18:58 +00001098 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001099unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001100 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001101put_rpm:
1102 intel_runtime_pm_put(dev_priv);
1103
Eric Anholt673a3942008-07-30 12:06:12 -07001104 return ret;
1105}
1106
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001107static int
1108i915_gem_check_wedge(unsigned reset_counter, bool interruptible)
Chris Wilsonb3612372012-08-24 09:35:08 +01001109{
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001110 if (__i915_terminally_wedged(reset_counter))
1111 return -EIO;
Chris Wilsond98c52c2016-04-13 17:35:05 +01001112
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001113 if (__i915_reset_in_progress(reset_counter)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001114 /* Non-interruptible callers can't handle -EAGAIN, hence return
1115 * -EIO unconditionally for these. */
1116 if (!interruptible)
1117 return -EIO;
1118
Chris Wilsond98c52c2016-04-13 17:35:05 +01001119 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001120 }
1121
1122 return 0;
1123}
1124
Chris Wilson094f9a52013-09-25 17:34:55 +01001125static void fake_irq(unsigned long data)
1126{
1127 wake_up_process((struct task_struct *)data);
1128}
1129
1130static bool missed_irq(struct drm_i915_private *dev_priv,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001131 struct intel_engine_cs *engine)
Chris Wilson094f9a52013-09-25 17:34:55 +01001132{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001133 return test_bit(engine->id, &dev_priv->gpu_error.missed_irq_rings);
Chris Wilson094f9a52013-09-25 17:34:55 +01001134}
1135
Chris Wilsonca5b7212015-12-11 11:32:58 +00001136static unsigned long local_clock_us(unsigned *cpu)
1137{
1138 unsigned long t;
1139
1140 /* Cheaply and approximately convert from nanoseconds to microseconds.
1141 * The result and subsequent calculations are also defined in the same
1142 * approximate microseconds units. The principal source of timing
1143 * error here is from the simple truncation.
1144 *
1145 * Note that local_clock() is only defined wrt to the current CPU;
1146 * the comparisons are no longer valid if we switch CPUs. Instead of
1147 * blocking preemption for the entire busywait, we can detect the CPU
1148 * switch and use that as indicator of system load and a reason to
1149 * stop busywaiting, see busywait_stop().
1150 */
1151 *cpu = get_cpu();
1152 t = local_clock() >> 10;
1153 put_cpu();
1154
1155 return t;
1156}
1157
1158static bool busywait_stop(unsigned long timeout, unsigned cpu)
1159{
1160 unsigned this_cpu;
1161
1162 if (time_after(local_clock_us(&this_cpu), timeout))
1163 return true;
1164
1165 return this_cpu != cpu;
1166}
1167
Chris Wilson91b0c352015-12-11 11:32:57 +00001168static int __i915_spin_request(struct drm_i915_gem_request *req, int state)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001169{
Chris Wilson2def4ad92015-04-07 16:20:41 +01001170 unsigned long timeout;
Chris Wilsonca5b7212015-12-11 11:32:58 +00001171 unsigned cpu;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001172
Chris Wilsonca5b7212015-12-11 11:32:58 +00001173 /* When waiting for high frequency requests, e.g. during synchronous
1174 * rendering split between the CPU and GPU, the finite amount of time
1175 * required to set up the irq and wait upon it limits the response
1176 * rate. By busywaiting on the request completion for a short while we
1177 * can service the high frequency waits as quick as possible. However,
1178 * if it is a slow request, we want to sleep as quickly as possible.
1179 * The tradeoff between waiting and sleeping is roughly the time it
1180 * takes to sleep on a request, on the order of a microsecond.
1181 */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001182
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001183 if (req->engine->irq_refcount)
Chris Wilson2def4ad92015-04-07 16:20:41 +01001184 return -EBUSY;
1185
Chris Wilson821485d2015-12-11 11:32:59 +00001186 /* Only spin if we know the GPU is processing this request */
1187 if (!i915_gem_request_started(req, true))
1188 return -EAGAIN;
1189
Chris Wilsonca5b7212015-12-11 11:32:58 +00001190 timeout = local_clock_us(&cpu) + 5;
Chris Wilson2def4ad92015-04-07 16:20:41 +01001191 while (!need_resched()) {
Daniel Vettereed29a52015-05-21 14:21:25 +02001192 if (i915_gem_request_completed(req, true))
Chris Wilson2def4ad92015-04-07 16:20:41 +01001193 return 0;
1194
Chris Wilson91b0c352015-12-11 11:32:57 +00001195 if (signal_pending_state(state, current))
1196 break;
1197
Chris Wilsonca5b7212015-12-11 11:32:58 +00001198 if (busywait_stop(timeout, cpu))
Chris Wilson2def4ad92015-04-07 16:20:41 +01001199 break;
1200
1201 cpu_relax_lowlatency();
1202 }
Chris Wilson821485d2015-12-11 11:32:59 +00001203
Daniel Vettereed29a52015-05-21 14:21:25 +02001204 if (i915_gem_request_completed(req, false))
Chris Wilson2def4ad92015-04-07 16:20:41 +01001205 return 0;
1206
1207 return -EAGAIN;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001208}
1209
Chris Wilsonb3612372012-08-24 09:35:08 +01001210/**
John Harrison9c654812014-11-24 18:49:35 +00001211 * __i915_wait_request - wait until execution of request has finished
1212 * @req: duh!
Chris Wilsonb3612372012-08-24 09:35:08 +01001213 * @interruptible: do an interruptible wait (normally yes)
1214 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1215 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001216 * Note: It is of utmost importance that the passed in seqno and reset_counter
1217 * values have been read by the caller in an smp safe manner. Where read-side
1218 * locks are involved, it is sufficient to read the reset_counter before
1219 * unlocking the lock that protects the seqno. For lockless tricks, the
1220 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1221 * inserted.
1222 *
John Harrison9c654812014-11-24 18:49:35 +00001223 * Returns 0 if the request was found within the alloted time. Else returns the
Chris Wilsonb3612372012-08-24 09:35:08 +01001224 * errno with remaining time filled in timeout argument.
1225 */
John Harrison9c654812014-11-24 18:49:35 +00001226int __i915_wait_request(struct drm_i915_gem_request *req,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001227 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001228 s64 *timeout,
Chris Wilson2e1b8732015-04-27 13:41:22 +01001229 struct intel_rps_client *rps)
Chris Wilsonb3612372012-08-24 09:35:08 +01001230{
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001231 struct intel_engine_cs *engine = i915_gem_request_get_engine(req);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001232 struct drm_device *dev = engine->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001233 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001234 const bool irq_test_in_progress =
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001235 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_engine_flag(engine);
Chris Wilson91b0c352015-12-11 11:32:57 +00001236 int state = interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson094f9a52013-09-25 17:34:55 +01001237 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001238 unsigned long timeout_expire;
Tvrtko Ursuline0313db2016-01-15 15:11:12 +00001239 s64 before = 0; /* Only to silence a compiler warning. */
Chris Wilsonb3612372012-08-24 09:35:08 +01001240 int ret;
1241
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001242 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001243
Chris Wilsonb4716182015-04-27 13:41:17 +01001244 if (list_empty(&req->list))
1245 return 0;
1246
John Harrison1b5a4332014-11-24 18:49:42 +00001247 if (i915_gem_request_completed(req, true))
Chris Wilsonb3612372012-08-24 09:35:08 +01001248 return 0;
1249
Chris Wilsonbb6d1982015-11-26 13:31:42 +00001250 timeout_expire = 0;
1251 if (timeout) {
1252 if (WARN_ON(*timeout < 0))
1253 return -EINVAL;
1254
1255 if (*timeout == 0)
1256 return -ETIME;
1257
1258 timeout_expire = jiffies + nsecs_to_jiffies_timeout(*timeout);
Tvrtko Ursuline0313db2016-01-15 15:11:12 +00001259
1260 /*
1261 * Record current time in case interrupted by signal, or wedged.
1262 */
1263 before = ktime_get_raw_ns();
Chris Wilsonbb6d1982015-11-26 13:31:42 +00001264 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001265
Chris Wilson2e1b8732015-04-27 13:41:22 +01001266 if (INTEL_INFO(dev_priv)->gen >= 6)
Chris Wilsone61b9952015-04-27 13:41:24 +01001267 gen6_rps_boost(dev_priv, rps, req->emitted_jiffies);
Chris Wilsonb3612372012-08-24 09:35:08 +01001268
John Harrison74328ee2014-11-24 18:49:38 +00001269 trace_i915_gem_request_wait_begin(req);
Chris Wilson2def4ad92015-04-07 16:20:41 +01001270
1271 /* Optimistic spin for the next jiffie before touching IRQs */
Chris Wilson91b0c352015-12-11 11:32:57 +00001272 ret = __i915_spin_request(req, state);
Chris Wilson2def4ad92015-04-07 16:20:41 +01001273 if (ret == 0)
1274 goto out;
1275
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001276 if (!irq_test_in_progress && WARN_ON(!engine->irq_get(engine))) {
Chris Wilson2def4ad92015-04-07 16:20:41 +01001277 ret = -ENODEV;
1278 goto out;
1279 }
1280
Chris Wilson094f9a52013-09-25 17:34:55 +01001281 for (;;) {
1282 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001283
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001284 prepare_to_wait(&engine->irq_queue, &wait, state);
Chris Wilsonb3612372012-08-24 09:35:08 +01001285
Daniel Vetterf69061b2012-12-06 09:01:42 +01001286 /* We need to check whether any gpu reset happened in between
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001287 * the request being submitted and now. If a reset has occurred,
1288 * the request is effectively complete (we either are in the
1289 * process of or have discarded the rendering and completely
1290 * reset the GPU. The results of the request are lost and we
1291 * are free to continue on with the original operation.
1292 */
Chris Wilson299259a2016-04-13 17:35:06 +01001293 if (req->reset_counter != i915_reset_counter(&dev_priv->gpu_error)) {
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001294 ret = 0;
Chris Wilson094f9a52013-09-25 17:34:55 +01001295 break;
1296 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001297
John Harrison1b5a4332014-11-24 18:49:42 +00001298 if (i915_gem_request_completed(req, false)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001299 ret = 0;
1300 break;
1301 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001302
Chris Wilson91b0c352015-12-11 11:32:57 +00001303 if (signal_pending_state(state, current)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001304 ret = -ERESTARTSYS;
1305 break;
1306 }
1307
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001308 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001309 ret = -ETIME;
1310 break;
1311 }
1312
1313 timer.function = NULL;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001314 if (timeout || missed_irq(dev_priv, engine)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001315 unsigned long expire;
1316
Chris Wilson094f9a52013-09-25 17:34:55 +01001317 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001318 expire = missed_irq(dev_priv, engine) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001319 mod_timer(&timer, expire);
1320 }
1321
Chris Wilson5035c272013-10-04 09:58:46 +01001322 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001323
Chris Wilson094f9a52013-09-25 17:34:55 +01001324 if (timer.function) {
1325 del_singleshot_timer_sync(&timer);
1326 destroy_timer_on_stack(&timer);
1327 }
1328 }
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001329 if (!irq_test_in_progress)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001330 engine->irq_put(engine);
Chris Wilson094f9a52013-09-25 17:34:55 +01001331
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001332 finish_wait(&engine->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001333
Chris Wilson2def4ad92015-04-07 16:20:41 +01001334out:
Chris Wilson2def4ad92015-04-07 16:20:41 +01001335 trace_i915_gem_request_wait_end(req);
1336
Chris Wilsonb3612372012-08-24 09:35:08 +01001337 if (timeout) {
Tvrtko Ursuline0313db2016-01-15 15:11:12 +00001338 s64 tres = *timeout - (ktime_get_raw_ns() - before);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001339
1340 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001341
1342 /*
1343 * Apparently ktime isn't accurate enough and occasionally has a
1344 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1345 * things up to make the test happy. We allow up to 1 jiffy.
1346 *
1347 * This is a regrssion from the timespec->ktime conversion.
1348 */
1349 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1350 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001351 }
1352
Chris Wilson094f9a52013-09-25 17:34:55 +01001353 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001354}
1355
John Harrisonfcfa423c2015-05-29 17:44:12 +01001356int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
1357 struct drm_file *file)
1358{
John Harrisonfcfa423c2015-05-29 17:44:12 +01001359 struct drm_i915_file_private *file_priv;
1360
1361 WARN_ON(!req || !file || req->file_priv);
1362
1363 if (!req || !file)
1364 return -EINVAL;
1365
1366 if (req->file_priv)
1367 return -EINVAL;
1368
John Harrisonfcfa423c2015-05-29 17:44:12 +01001369 file_priv = file->driver_priv;
1370
1371 spin_lock(&file_priv->mm.lock);
1372 req->file_priv = file_priv;
1373 list_add_tail(&req->client_list, &file_priv->mm.request_list);
1374 spin_unlock(&file_priv->mm.lock);
1375
1376 req->pid = get_pid(task_pid(current));
1377
1378 return 0;
1379}
1380
Chris Wilsonb4716182015-04-27 13:41:17 +01001381static inline void
1382i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
1383{
1384 struct drm_i915_file_private *file_priv = request->file_priv;
1385
1386 if (!file_priv)
1387 return;
1388
1389 spin_lock(&file_priv->mm.lock);
1390 list_del(&request->client_list);
1391 request->file_priv = NULL;
1392 spin_unlock(&file_priv->mm.lock);
John Harrisonfcfa423c2015-05-29 17:44:12 +01001393
1394 put_pid(request->pid);
1395 request->pid = NULL;
Chris Wilsonb4716182015-04-27 13:41:17 +01001396}
1397
1398static void i915_gem_request_retire(struct drm_i915_gem_request *request)
1399{
1400 trace_i915_gem_request_retire(request);
1401
1402 /* We know the GPU must have read the request to have
1403 * sent us the seqno + interrupt, so use the position
1404 * of tail of the request to update the last known position
1405 * of the GPU head.
1406 *
1407 * Note this requires that we are always called in request
1408 * completion order.
1409 */
1410 request->ringbuf->last_retired_head = request->postfix;
1411
1412 list_del_init(&request->list);
1413 i915_gem_request_remove_from_client(request);
1414
Chris Wilsonb4716182015-04-27 13:41:17 +01001415 i915_gem_request_unreference(request);
1416}
1417
1418static void
1419__i915_gem_request_retire__upto(struct drm_i915_gem_request *req)
1420{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001421 struct intel_engine_cs *engine = req->engine;
Chris Wilsonb4716182015-04-27 13:41:17 +01001422 struct drm_i915_gem_request *tmp;
1423
1424 lockdep_assert_held(&engine->dev->struct_mutex);
1425
1426 if (list_empty(&req->list))
1427 return;
1428
1429 do {
1430 tmp = list_first_entry(&engine->request_list,
1431 typeof(*tmp), list);
1432
1433 i915_gem_request_retire(tmp);
1434 } while (tmp != req);
1435
1436 WARN_ON(i915_verify_lists(engine->dev));
1437}
1438
Chris Wilsonb3612372012-08-24 09:35:08 +01001439/**
Daniel Vettera4b3a572014-11-26 14:17:05 +01001440 * Waits for a request to be signaled, and cleans up the
Chris Wilsonb3612372012-08-24 09:35:08 +01001441 * request and object lists appropriately for that event.
1442 */
1443int
Daniel Vettera4b3a572014-11-26 14:17:05 +01001444i915_wait_request(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001445{
Daniel Vettera4b3a572014-11-26 14:17:05 +01001446 struct drm_device *dev;
1447 struct drm_i915_private *dev_priv;
1448 bool interruptible;
Chris Wilsonb3612372012-08-24 09:35:08 +01001449 int ret;
1450
Daniel Vettera4b3a572014-11-26 14:17:05 +01001451 BUG_ON(req == NULL);
1452
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001453 dev = req->engine->dev;
Daniel Vettera4b3a572014-11-26 14:17:05 +01001454 dev_priv = dev->dev_private;
1455 interruptible = dev_priv->mm.interruptible;
1456
Chris Wilsonb3612372012-08-24 09:35:08 +01001457 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001458
Chris Wilson299259a2016-04-13 17:35:06 +01001459 ret = __i915_wait_request(req, interruptible, NULL, NULL);
Chris Wilsonb4716182015-04-27 13:41:17 +01001460 if (ret)
1461 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001462
Chris Wilsonb4716182015-04-27 13:41:17 +01001463 __i915_gem_request_retire__upto(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001464 return 0;
1465}
1466
Chris Wilsonb3612372012-08-24 09:35:08 +01001467/**
1468 * Ensures that all rendering to the object has completed and the object is
1469 * safe to unbind from the GTT or access from the CPU.
1470 */
Chris Wilson2e2f3512015-04-27 13:41:14 +01001471int
Chris Wilsonb3612372012-08-24 09:35:08 +01001472i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1473 bool readonly)
1474{
Chris Wilsonb4716182015-04-27 13:41:17 +01001475 int ret, i;
Chris Wilsonb3612372012-08-24 09:35:08 +01001476
Chris Wilsonb4716182015-04-27 13:41:17 +01001477 if (!obj->active)
Chris Wilsonb3612372012-08-24 09:35:08 +01001478 return 0;
1479
Chris Wilsonb4716182015-04-27 13:41:17 +01001480 if (readonly) {
1481 if (obj->last_write_req != NULL) {
1482 ret = i915_wait_request(obj->last_write_req);
1483 if (ret)
1484 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001485
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001486 i = obj->last_write_req->engine->id;
Chris Wilsonb4716182015-04-27 13:41:17 +01001487 if (obj->last_read_req[i] == obj->last_write_req)
1488 i915_gem_object_retire__read(obj, i);
1489 else
1490 i915_gem_object_retire__write(obj);
1491 }
1492 } else {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001493 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01001494 if (obj->last_read_req[i] == NULL)
1495 continue;
1496
1497 ret = i915_wait_request(obj->last_read_req[i]);
1498 if (ret)
1499 return ret;
1500
1501 i915_gem_object_retire__read(obj, i);
1502 }
Chris Wilsond501b1d2016-04-13 17:35:02 +01001503 GEM_BUG_ON(obj->active);
Chris Wilsonb4716182015-04-27 13:41:17 +01001504 }
1505
1506 return 0;
1507}
1508
1509static void
1510i915_gem_object_retire_request(struct drm_i915_gem_object *obj,
1511 struct drm_i915_gem_request *req)
1512{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001513 int ring = req->engine->id;
Chris Wilsonb4716182015-04-27 13:41:17 +01001514
1515 if (obj->last_read_req[ring] == req)
1516 i915_gem_object_retire__read(obj, ring);
1517 else if (obj->last_write_req == req)
1518 i915_gem_object_retire__write(obj);
1519
1520 __i915_gem_request_retire__upto(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001521}
1522
Chris Wilson3236f572012-08-24 09:35:09 +01001523/* A nonblocking variant of the above wait. This is a highly dangerous routine
1524 * as the object state may change during this call.
1525 */
1526static __must_check int
1527i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson2e1b8732015-04-27 13:41:22 +01001528 struct intel_rps_client *rps,
Chris Wilson3236f572012-08-24 09:35:09 +01001529 bool readonly)
1530{
1531 struct drm_device *dev = obj->base.dev;
1532 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001533 struct drm_i915_gem_request *requests[I915_NUM_ENGINES];
Chris Wilsonb4716182015-04-27 13:41:17 +01001534 int ret, i, n = 0;
Chris Wilson3236f572012-08-24 09:35:09 +01001535
1536 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1537 BUG_ON(!dev_priv->mm.interruptible);
1538
Chris Wilsonb4716182015-04-27 13:41:17 +01001539 if (!obj->active)
Chris Wilson3236f572012-08-24 09:35:09 +01001540 return 0;
1541
Chris Wilsonb4716182015-04-27 13:41:17 +01001542 if (readonly) {
1543 struct drm_i915_gem_request *req;
1544
1545 req = obj->last_write_req;
1546 if (req == NULL)
1547 return 0;
1548
Chris Wilsonb4716182015-04-27 13:41:17 +01001549 requests[n++] = i915_gem_request_reference(req);
1550 } else {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001551 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01001552 struct drm_i915_gem_request *req;
1553
1554 req = obj->last_read_req[i];
1555 if (req == NULL)
1556 continue;
1557
Chris Wilsonb4716182015-04-27 13:41:17 +01001558 requests[n++] = i915_gem_request_reference(req);
1559 }
1560 }
1561
1562 mutex_unlock(&dev->struct_mutex);
Chris Wilson299259a2016-04-13 17:35:06 +01001563 ret = 0;
Chris Wilsonb4716182015-04-27 13:41:17 +01001564 for (i = 0; ret == 0 && i < n; i++)
Chris Wilson299259a2016-04-13 17:35:06 +01001565 ret = __i915_wait_request(requests[i], true, NULL, rps);
Chris Wilsonb4716182015-04-27 13:41:17 +01001566 mutex_lock(&dev->struct_mutex);
1567
Chris Wilsonb4716182015-04-27 13:41:17 +01001568 for (i = 0; i < n; i++) {
1569 if (ret == 0)
1570 i915_gem_object_retire_request(obj, requests[i]);
1571 i915_gem_request_unreference(requests[i]);
1572 }
1573
1574 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001575}
1576
Chris Wilson2e1b8732015-04-27 13:41:22 +01001577static struct intel_rps_client *to_rps_client(struct drm_file *file)
1578{
1579 struct drm_i915_file_private *fpriv = file->driver_priv;
1580 return &fpriv->rps;
1581}
1582
Eric Anholt673a3942008-07-30 12:06:12 -07001583/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001584 * Called when user space prepares to use an object with the CPU, either
1585 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001586 */
1587int
1588i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001589 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001590{
1591 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001592 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001593 uint32_t read_domains = args->read_domains;
1594 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001595 int ret;
1596
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001597 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001598 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001599 return -EINVAL;
1600
Chris Wilson21d509e2009-06-06 09:46:02 +01001601 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001602 return -EINVAL;
1603
1604 /* Having something in the write domain implies it's in the read
1605 * domain, and only that read domain. Enforce that in the request.
1606 */
1607 if (write_domain != 0 && read_domains != write_domain)
1608 return -EINVAL;
1609
Chris Wilson76c1dec2010-09-25 11:22:51 +01001610 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001611 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001612 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001613
Chris Wilson05394f32010-11-08 19:18:58 +00001614 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001615 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001616 ret = -ENOENT;
1617 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001618 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001619
Chris Wilson3236f572012-08-24 09:35:09 +01001620 /* Try to flush the object off the GPU without holding the lock.
1621 * We will repeat the flush holding the lock in the normal manner
1622 * to catch cases where we are gazumped.
1623 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001624 ret = i915_gem_object_wait_rendering__nonblocking(obj,
Chris Wilson2e1b8732015-04-27 13:41:22 +01001625 to_rps_client(file),
Chris Wilson6e4930f2014-02-07 18:37:06 -02001626 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001627 if (ret)
1628 goto unref;
1629
Chris Wilson43566de2015-01-02 16:29:29 +05301630 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001631 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301632 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001633 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001634
Daniel Vetter031b6982015-06-26 19:35:16 +02001635 if (write_domain != 0)
1636 intel_fb_obj_invalidate(obj,
1637 write_domain == I915_GEM_DOMAIN_GTT ?
1638 ORIGIN_GTT : ORIGIN_CPU);
1639
Chris Wilson3236f572012-08-24 09:35:09 +01001640unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001641 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001642unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001643 mutex_unlock(&dev->struct_mutex);
1644 return ret;
1645}
1646
1647/**
1648 * Called when user space has done writes to this buffer
1649 */
1650int
1651i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001652 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001653{
1654 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001655 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001656 int ret = 0;
1657
Chris Wilson76c1dec2010-09-25 11:22:51 +01001658 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001659 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001660 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001661
Chris Wilson05394f32010-11-08 19:18:58 +00001662 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001663 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001664 ret = -ENOENT;
1665 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001666 }
1667
Eric Anholt673a3942008-07-30 12:06:12 -07001668 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001669 if (obj->pin_display)
Daniel Vettere62b59e2015-01-21 14:53:48 +01001670 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08001671
Chris Wilson05394f32010-11-08 19:18:58 +00001672 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001673unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001674 mutex_unlock(&dev->struct_mutex);
1675 return ret;
1676}
1677
1678/**
1679 * Maps the contents of an object, returning the address it is mapped
1680 * into.
1681 *
1682 * While the mapping holds a reference on the contents of the object, it doesn't
1683 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001684 *
1685 * IMPORTANT:
1686 *
1687 * DRM driver writers who look a this function as an example for how to do GEM
1688 * mmap support, please don't implement mmap support like here. The modern way
1689 * to implement DRM mmap support is with an mmap offset ioctl (like
1690 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1691 * That way debug tooling like valgrind will understand what's going on, hiding
1692 * the mmap call in a driver private ioctl will break that. The i915 driver only
1693 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001694 */
1695int
1696i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001697 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001698{
1699 struct drm_i915_gem_mmap *args = data;
1700 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001701 unsigned long addr;
1702
Akash Goel1816f922015-01-02 16:29:30 +05301703 if (args->flags & ~(I915_MMAP_WC))
1704 return -EINVAL;
1705
1706 if (args->flags & I915_MMAP_WC && !cpu_has_pat)
1707 return -ENODEV;
1708
Chris Wilson05394f32010-11-08 19:18:58 +00001709 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001710 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001711 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001712
Daniel Vetter1286ff72012-05-10 15:25:09 +02001713 /* prime objects have no backing filp to GEM mmap
1714 * pages from.
1715 */
1716 if (!obj->filp) {
1717 drm_gem_object_unreference_unlocked(obj);
1718 return -EINVAL;
1719 }
1720
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001721 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001722 PROT_READ | PROT_WRITE, MAP_SHARED,
1723 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301724 if (args->flags & I915_MMAP_WC) {
1725 struct mm_struct *mm = current->mm;
1726 struct vm_area_struct *vma;
1727
1728 down_write(&mm->mmap_sem);
1729 vma = find_vma(mm, addr);
1730 if (vma)
1731 vma->vm_page_prot =
1732 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1733 else
1734 addr = -ENOMEM;
1735 up_write(&mm->mmap_sem);
1736 }
Luca Barbieribc9025b2010-02-09 05:49:12 +00001737 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001738 if (IS_ERR((void *)addr))
1739 return addr;
1740
1741 args->addr_ptr = (uint64_t) addr;
1742
1743 return 0;
1744}
1745
Jesse Barnesde151cf2008-11-12 10:03:55 -08001746/**
1747 * i915_gem_fault - fault a page into the GTT
Geliang Tangd9072a32015-09-15 05:58:44 -07001748 * @vma: VMA in question
1749 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001750 *
1751 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1752 * from userspace. The fault handler takes care of binding the object to
1753 * the GTT (if needed), allocating and programming a fence register (again,
1754 * only if needed based on whether the old reg is still valid or the object
1755 * is tiled) and inserting a new PTE into the faulting process.
1756 *
1757 * Note that the faulting process may involve evicting existing objects
1758 * from the GTT and/or fence registers to make room. So performance may
1759 * suffer if the GTT working set is large or there are few fence registers
1760 * left.
1761 */
1762int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1763{
Chris Wilson05394f32010-11-08 19:18:58 +00001764 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1765 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001766 struct drm_i915_private *dev_priv = to_i915(dev);
1767 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001768 struct i915_ggtt_view view = i915_ggtt_view_normal;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001769 pgoff_t page_offset;
1770 unsigned long pfn;
1771 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001772 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001773
Paulo Zanonif65c9162013-11-27 18:20:34 -02001774 intel_runtime_pm_get(dev_priv);
1775
Jesse Barnesde151cf2008-11-12 10:03:55 -08001776 /* We don't use vmf->pgoff since that has the fake offset */
1777 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1778 PAGE_SHIFT;
1779
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001780 ret = i915_mutex_lock_interruptible(dev);
1781 if (ret)
1782 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001783
Chris Wilsondb53a302011-02-03 11:57:46 +00001784 trace_i915_gem_object_fault(obj, page_offset, true, write);
1785
Chris Wilson6e4930f2014-02-07 18:37:06 -02001786 /* Try to flush the object off the GPU first without holding the lock.
1787 * Upon reacquiring the lock, we will perform our sanity checks and then
1788 * repeat the flush holding the lock in the normal manner to catch cases
1789 * where we are gazumped.
1790 */
1791 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1792 if (ret)
1793 goto unlock;
1794
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001795 /* Access to snoopable pages through the GTT is incoherent. */
1796 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001797 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001798 goto unlock;
1799 }
1800
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001801 /* Use a partial view if the object is bigger than the aperture. */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001802 if (obj->base.size >= ggtt->mappable_end &&
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001803 obj->tiling_mode == I915_TILING_NONE) {
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001804 static const unsigned int chunk_size = 256; // 1 MiB
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001805
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001806 memset(&view, 0, sizeof(view));
1807 view.type = I915_GGTT_VIEW_PARTIAL;
1808 view.params.partial.offset = rounddown(page_offset, chunk_size);
1809 view.params.partial.size =
1810 min_t(unsigned int,
1811 chunk_size,
1812 (vma->vm_end - vma->vm_start)/PAGE_SIZE -
1813 view.params.partial.offset);
1814 }
1815
1816 /* Now pin it into the GTT if needed */
1817 ret = i915_gem_object_ggtt_pin(obj, &view, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001818 if (ret)
1819 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001820
Chris Wilsonc9839302012-11-20 10:45:17 +00001821 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1822 if (ret)
1823 goto unpin;
1824
1825 ret = i915_gem_object_get_fence(obj);
1826 if (ret)
1827 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001828
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001829 /* Finally, remap it using the new GTT offset */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001830 pfn = ggtt->mappable_base +
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001831 i915_gem_obj_ggtt_offset_view(obj, &view);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001832 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001833
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001834 if (unlikely(view.type == I915_GGTT_VIEW_PARTIAL)) {
1835 /* Overriding existing pages in partial view does not cause
1836 * us any trouble as TLBs are still valid because the fault
1837 * is due to userspace losing part of the mapping or never
1838 * having accessed it before (at this partials' range).
1839 */
1840 unsigned long base = vma->vm_start +
1841 (view.params.partial.offset << PAGE_SHIFT);
1842 unsigned int i;
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001843
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001844 for (i = 0; i < view.params.partial.size; i++) {
1845 ret = vm_insert_pfn(vma, base + i * PAGE_SIZE, pfn + i);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001846 if (ret)
1847 break;
1848 }
1849
1850 obj->fault_mappable = true;
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001851 } else {
1852 if (!obj->fault_mappable) {
1853 unsigned long size = min_t(unsigned long,
1854 vma->vm_end - vma->vm_start,
1855 obj->base.size);
1856 int i;
1857
1858 for (i = 0; i < size >> PAGE_SHIFT; i++) {
1859 ret = vm_insert_pfn(vma,
1860 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1861 pfn + i);
1862 if (ret)
1863 break;
1864 }
1865
1866 obj->fault_mappable = true;
1867 } else
1868 ret = vm_insert_pfn(vma,
1869 (unsigned long)vmf->virtual_address,
1870 pfn + page_offset);
1871 }
Chris Wilsonc9839302012-11-20 10:45:17 +00001872unpin:
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001873 i915_gem_object_ggtt_unpin_view(obj, &view);
Chris Wilsonc7150892009-09-23 00:43:56 +01001874unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001875 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001876out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001877 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001878 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001879 /*
1880 * We eat errors when the gpu is terminally wedged to avoid
1881 * userspace unduly crashing (gl has no provisions for mmaps to
1882 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1883 * and so needs to be reported.
1884 */
1885 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001886 ret = VM_FAULT_SIGBUS;
1887 break;
1888 }
Chris Wilson045e7692010-11-07 09:18:22 +00001889 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001890 /*
1891 * EAGAIN means the gpu is hung and we'll wait for the error
1892 * handler to reset everything when re-faulting in
1893 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001894 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001895 case 0:
1896 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001897 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001898 case -EBUSY:
1899 /*
1900 * EBUSY is ok: this just means that another thread
1901 * already did the job.
1902 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001903 ret = VM_FAULT_NOPAGE;
1904 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001905 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001906 ret = VM_FAULT_OOM;
1907 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001908 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001909 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001910 ret = VM_FAULT_SIGBUS;
1911 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001912 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001913 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001914 ret = VM_FAULT_SIGBUS;
1915 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001916 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001917
1918 intel_runtime_pm_put(dev_priv);
1919 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001920}
1921
1922/**
Chris Wilson901782b2009-07-10 08:18:50 +01001923 * i915_gem_release_mmap - remove physical page mappings
1924 * @obj: obj in question
1925 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001926 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001927 * relinquish ownership of the pages back to the system.
1928 *
1929 * It is vital that we remove the page mapping if we have mapped a tiled
1930 * object through the GTT and then lose the fence register due to
1931 * resource pressure. Similarly if the object has been moved out of the
1932 * aperture, than pages mapped into userspace must be revoked. Removing the
1933 * mapping will then trigger a page fault on the next user access, allowing
1934 * fixup by i915_gem_fault().
1935 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001936void
Chris Wilson05394f32010-11-08 19:18:58 +00001937i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001938{
Chris Wilson349f2cc2016-04-13 17:35:12 +01001939 /* Serialisation between user GTT access and our code depends upon
1940 * revoking the CPU's PTE whilst the mutex is held. The next user
1941 * pagefault then has to wait until we release the mutex.
1942 */
1943 lockdep_assert_held(&obj->base.dev->struct_mutex);
1944
Chris Wilson6299f992010-11-24 12:23:44 +00001945 if (!obj->fault_mappable)
1946 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001947
David Herrmann6796cb12014-01-03 14:24:19 +01001948 drm_vma_node_unmap(&obj->base.vma_node,
1949 obj->base.dev->anon_inode->i_mapping);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001950
1951 /* Ensure that the CPU's PTE are revoked and there are not outstanding
1952 * memory transactions from userspace before we return. The TLB
1953 * flushing implied above by changing the PTE above *should* be
1954 * sufficient, an extra barrier here just provides us with a bit
1955 * of paranoid documentation about our requirement to serialise
1956 * memory writes before touching registers / GSM.
1957 */
1958 wmb();
1959
Chris Wilson6299f992010-11-24 12:23:44 +00001960 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001961}
1962
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001963void
1964i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1965{
1966 struct drm_i915_gem_object *obj;
1967
1968 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1969 i915_gem_release_mmap(obj);
1970}
1971
Imre Deak0fa87792013-01-07 21:47:35 +02001972uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001973i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001974{
Chris Wilsone28f8712011-07-18 13:11:49 -07001975 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001976
1977 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001978 tiling_mode == I915_TILING_NONE)
1979 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001980
1981 /* Previous chips need a power-of-two fence region when tiling */
1982 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001983 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001984 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001985 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001986
Chris Wilsone28f8712011-07-18 13:11:49 -07001987 while (gtt_size < size)
1988 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001989
Chris Wilsone28f8712011-07-18 13:11:49 -07001990 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001991}
1992
Jesse Barnesde151cf2008-11-12 10:03:55 -08001993/**
1994 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1995 * @obj: object to check
1996 *
1997 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001998 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001999 */
Imre Deakd8651102013-01-07 21:47:33 +02002000uint32_t
2001i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
2002 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002003{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002004 /*
2005 * Minimum alignment is 4k (GTT page size), but might be greater
2006 * if a fence register is needed for the object.
2007 */
Imre Deakd8651102013-01-07 21:47:33 +02002008 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002009 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002010 return 4096;
2011
2012 /*
2013 * Previous chips need to be aligned to the size of the smallest
2014 * fence register that can contain the object.
2015 */
Chris Wilsone28f8712011-07-18 13:11:49 -07002016 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002017}
2018
Chris Wilsond8cb5082012-08-11 15:41:03 +01002019static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2020{
2021 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2022 int ret;
2023
David Herrmann0de23972013-07-24 21:07:52 +02002024 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01002025 return 0;
2026
Daniel Vetterda494d72012-12-20 15:11:16 +01002027 dev_priv->mm.shrinker_no_lock_stealing = true;
2028
Chris Wilsond8cb5082012-08-11 15:41:03 +01002029 ret = drm_gem_create_mmap_offset(&obj->base);
2030 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01002031 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002032
2033 /* Badly fragmented mmap space? The only way we can recover
2034 * space is by destroying unwanted objects. We can't randomly release
2035 * mmap_offsets as userspace expects them to be persistent for the
2036 * lifetime of the objects. The closest we can is to release the
2037 * offsets on purgeable objects by truncating it and marking it purged,
2038 * which prevents userspace from ever using that object again.
2039 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01002040 i915_gem_shrink(dev_priv,
2041 obj->base.size >> PAGE_SHIFT,
2042 I915_SHRINK_BOUND |
2043 I915_SHRINK_UNBOUND |
2044 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01002045 ret = drm_gem_create_mmap_offset(&obj->base);
2046 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01002047 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002048
2049 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01002050 ret = drm_gem_create_mmap_offset(&obj->base);
2051out:
2052 dev_priv->mm.shrinker_no_lock_stealing = false;
2053
2054 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002055}
2056
2057static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2058{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002059 drm_gem_free_mmap_offset(&obj->base);
2060}
2061
Dave Airlieda6b51d2014-12-24 13:11:17 +10002062int
Dave Airlieff72145b2011-02-07 12:16:14 +10002063i915_gem_mmap_gtt(struct drm_file *file,
2064 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002065 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10002066 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002067{
Chris Wilson05394f32010-11-08 19:18:58 +00002068 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002069 int ret;
2070
Chris Wilson76c1dec2010-09-25 11:22:51 +01002071 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002072 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01002073 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002074
Dave Airlieff72145b2011-02-07 12:16:14 +10002075 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00002076 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002077 ret = -ENOENT;
2078 goto unlock;
2079 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002080
Chris Wilson05394f32010-11-08 19:18:58 +00002081 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002082 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002083 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002084 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01002085 }
2086
Chris Wilsond8cb5082012-08-11 15:41:03 +01002087 ret = i915_gem_object_create_mmap_offset(obj);
2088 if (ret)
2089 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002090
David Herrmann0de23972013-07-24 21:07:52 +02002091 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002092
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002093out:
Chris Wilson05394f32010-11-08 19:18:58 +00002094 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002095unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08002096 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002097 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002098}
2099
Dave Airlieff72145b2011-02-07 12:16:14 +10002100/**
2101 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2102 * @dev: DRM device
2103 * @data: GTT mapping ioctl data
2104 * @file: GEM object info
2105 *
2106 * Simply returns the fake offset to userspace so it can mmap it.
2107 * The mmap call will end up in drm_gem_mmap(), which will set things
2108 * up so we can get faults in the handler above.
2109 *
2110 * The fault handler will take care of binding the object into the GTT
2111 * (since it may have been evicted to make room for something), allocating
2112 * a fence register, and mapping the appropriate aperture address into
2113 * userspace.
2114 */
2115int
2116i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2117 struct drm_file *file)
2118{
2119 struct drm_i915_gem_mmap_gtt *args = data;
2120
Dave Airlieda6b51d2014-12-24 13:11:17 +10002121 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002122}
2123
Daniel Vetter225067e2012-08-20 10:23:20 +02002124/* Immediately discard the backing storage */
2125static void
2126i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002127{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002128 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002129
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002130 if (obj->base.filp == NULL)
2131 return;
2132
Daniel Vetter225067e2012-08-20 10:23:20 +02002133 /* Our goal here is to return as much of the memory as
2134 * is possible back to the system as we are called from OOM.
2135 * To do this we must instruct the shmfs to drop all of its
2136 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002137 */
Chris Wilson55372522014-03-25 13:23:06 +00002138 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02002139 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01002140}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002141
Chris Wilson55372522014-03-25 13:23:06 +00002142/* Try to discard unwanted pages */
2143static void
2144i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02002145{
Chris Wilson55372522014-03-25 13:23:06 +00002146 struct address_space *mapping;
2147
2148 switch (obj->madv) {
2149 case I915_MADV_DONTNEED:
2150 i915_gem_object_truncate(obj);
2151 case __I915_MADV_PURGED:
2152 return;
2153 }
2154
2155 if (obj->base.filp == NULL)
2156 return;
2157
2158 mapping = file_inode(obj->base.filp)->i_mapping,
2159 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002160}
2161
Chris Wilson5cdf5882010-09-27 15:51:07 +01002162static void
Chris Wilson05394f32010-11-08 19:18:58 +00002163i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002164{
Imre Deak90797e62013-02-18 19:28:03 +02002165 struct sg_page_iter sg_iter;
2166 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002167
Chris Wilson05394f32010-11-08 19:18:58 +00002168 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07002169
Chris Wilson6c085a72012-08-20 11:40:46 +02002170 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +01002171 if (WARN_ON(ret)) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002172 /* In the event of a disaster, abandon all caches and
2173 * hope for the best.
2174 */
Chris Wilson2c225692013-08-09 12:26:45 +01002175 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02002176 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2177 }
2178
Imre Deake2273302015-07-09 12:59:05 +03002179 i915_gem_gtt_finish_object(obj);
2180
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002181 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07002182 i915_gem_object_save_bit_17_swizzle(obj);
2183
Chris Wilson05394f32010-11-08 19:18:58 +00002184 if (obj->madv == I915_MADV_DONTNEED)
2185 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01002186
Imre Deak90797e62013-02-18 19:28:03 +02002187 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002188 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01002189
Chris Wilson05394f32010-11-08 19:18:58 +00002190 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002191 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002192
Chris Wilson05394f32010-11-08 19:18:58 +00002193 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002194 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002195
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002196 put_page(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002197 }
Chris Wilson05394f32010-11-08 19:18:58 +00002198 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002199
Chris Wilson9da3da62012-06-01 15:20:22 +01002200 sg_free_table(obj->pages);
2201 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002202}
2203
Chris Wilsondd624af2013-01-15 12:39:35 +00002204int
Chris Wilson37e680a2012-06-07 15:38:42 +01002205i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2206{
2207 const struct drm_i915_gem_object_ops *ops = obj->ops;
2208
Chris Wilson2f745ad2012-09-04 21:02:58 +01002209 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002210 return 0;
2211
Chris Wilsona5570172012-09-04 21:02:54 +01002212 if (obj->pages_pin_count)
2213 return -EBUSY;
2214
Ben Widawsky98438772013-07-31 17:00:12 -07002215 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002216
Chris Wilsona2165e32012-12-03 11:49:00 +00002217 /* ->put_pages might need to allocate memory for the bit17 swizzle
2218 * array, hence protect them from being reaped by removing them from gtt
2219 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002220 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002221
Chris Wilson0a798eb2016-04-08 12:11:11 +01002222 if (obj->mapping) {
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002223 if (is_vmalloc_addr(obj->mapping))
2224 vunmap(obj->mapping);
2225 else
2226 kunmap(kmap_to_page(obj->mapping));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002227 obj->mapping = NULL;
2228 }
2229
Chris Wilson37e680a2012-06-07 15:38:42 +01002230 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002231 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002232
Chris Wilson55372522014-03-25 13:23:06 +00002233 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002234
2235 return 0;
2236}
2237
Chris Wilson37e680a2012-06-07 15:38:42 +01002238static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002239i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002240{
Chris Wilson6c085a72012-08-20 11:40:46 +02002241 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002242 int page_count, i;
2243 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002244 struct sg_table *st;
2245 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002246 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002247 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002248 unsigned long last_pfn = 0; /* suppress gcc warning */
Imre Deake2273302015-07-09 12:59:05 +03002249 int ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002250 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002251
Chris Wilson6c085a72012-08-20 11:40:46 +02002252 /* Assert that the object is not currently in any GPU domain. As it
2253 * wasn't in the GTT, there shouldn't be any way it could have been in
2254 * a GPU cache
2255 */
2256 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2257 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2258
Chris Wilson9da3da62012-06-01 15:20:22 +01002259 st = kmalloc(sizeof(*st), GFP_KERNEL);
2260 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002261 return -ENOMEM;
2262
Chris Wilson9da3da62012-06-01 15:20:22 +01002263 page_count = obj->base.size / PAGE_SIZE;
2264 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002265 kfree(st);
2266 return -ENOMEM;
2267 }
2268
2269 /* Get the list of pages out of our struct file. They'll be pinned
2270 * at this point until we release them.
2271 *
2272 * Fail silently without starting the shrinker
2273 */
Al Viro496ad9a2013-01-23 17:07:38 -05002274 mapping = file_inode(obj->base.filp)->i_mapping;
Michal Hockoc62d2552015-11-06 16:28:49 -08002275 gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM));
Mel Gormand0164ad2015-11-06 16:28:21 -08002276 gfp |= __GFP_NORETRY | __GFP_NOWARN;
Imre Deak90797e62013-02-18 19:28:03 +02002277 sg = st->sgl;
2278 st->nents = 0;
2279 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002280 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2281 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002282 i915_gem_shrink(dev_priv,
2283 page_count,
2284 I915_SHRINK_BOUND |
2285 I915_SHRINK_UNBOUND |
2286 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002287 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2288 }
2289 if (IS_ERR(page)) {
2290 /* We've tried hard to allocate the memory by reaping
2291 * our own buffer, now let the real VM do its job and
2292 * go down in flames if truly OOM.
2293 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002294 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002295 page = shmem_read_mapping_page(mapping, i);
Imre Deake2273302015-07-09 12:59:05 +03002296 if (IS_ERR(page)) {
2297 ret = PTR_ERR(page);
Chris Wilson6c085a72012-08-20 11:40:46 +02002298 goto err_pages;
Imre Deake2273302015-07-09 12:59:05 +03002299 }
Chris Wilson6c085a72012-08-20 11:40:46 +02002300 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002301#ifdef CONFIG_SWIOTLB
2302 if (swiotlb_nr_tbl()) {
2303 st->nents++;
2304 sg_set_page(sg, page, PAGE_SIZE, 0);
2305 sg = sg_next(sg);
2306 continue;
2307 }
2308#endif
Imre Deak90797e62013-02-18 19:28:03 +02002309 if (!i || page_to_pfn(page) != last_pfn + 1) {
2310 if (i)
2311 sg = sg_next(sg);
2312 st->nents++;
2313 sg_set_page(sg, page, PAGE_SIZE, 0);
2314 } else {
2315 sg->length += PAGE_SIZE;
2316 }
2317 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002318
2319 /* Check that the i965g/gm workaround works. */
2320 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002321 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002322#ifdef CONFIG_SWIOTLB
2323 if (!swiotlb_nr_tbl())
2324#endif
2325 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002326 obj->pages = st;
2327
Imre Deake2273302015-07-09 12:59:05 +03002328 ret = i915_gem_gtt_prepare_object(obj);
2329 if (ret)
2330 goto err_pages;
2331
Eric Anholt673a3942008-07-30 12:06:12 -07002332 if (i915_gem_object_needs_bit17_swizzle(obj))
2333 i915_gem_object_do_bit_17_swizzle(obj);
2334
Daniel Vetter656bfa32014-11-20 09:26:30 +01002335 if (obj->tiling_mode != I915_TILING_NONE &&
2336 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2337 i915_gem_object_pin_pages(obj);
2338
Eric Anholt673a3942008-07-30 12:06:12 -07002339 return 0;
2340
2341err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002342 sg_mark_end(sg);
2343 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002344 put_page(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002345 sg_free_table(st);
2346 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002347
2348 /* shmemfs first checks if there is enough memory to allocate the page
2349 * and reports ENOSPC should there be insufficient, along with the usual
2350 * ENOMEM for a genuine allocation failure.
2351 *
2352 * We use ENOSPC in our driver to mean that we have run out of aperture
2353 * space and so want to translate the error from shmemfs back to our
2354 * usual understanding of ENOMEM.
2355 */
Imre Deake2273302015-07-09 12:59:05 +03002356 if (ret == -ENOSPC)
2357 ret = -ENOMEM;
2358
2359 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002360}
2361
Chris Wilson37e680a2012-06-07 15:38:42 +01002362/* Ensure that the associated pages are gathered from the backing storage
2363 * and pinned into our object. i915_gem_object_get_pages() may be called
2364 * multiple times before they are released by a single call to
2365 * i915_gem_object_put_pages() - once the pages are no longer referenced
2366 * either as a result of memory pressure (reaping pages under the shrinker)
2367 * or as the object is itself released.
2368 */
2369int
2370i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2371{
2372 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2373 const struct drm_i915_gem_object_ops *ops = obj->ops;
2374 int ret;
2375
Chris Wilson2f745ad2012-09-04 21:02:58 +01002376 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002377 return 0;
2378
Chris Wilson43e28f02013-01-08 10:53:09 +00002379 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002380 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002381 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002382 }
2383
Chris Wilsona5570172012-09-04 21:02:54 +01002384 BUG_ON(obj->pages_pin_count);
2385
Chris Wilson37e680a2012-06-07 15:38:42 +01002386 ret = ops->get_pages(obj);
2387 if (ret)
2388 return ret;
2389
Ben Widawsky35c20a62013-05-31 11:28:48 -07002390 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilsonee286372015-04-07 16:20:25 +01002391
2392 obj->get_page.sg = obj->pages->sgl;
2393 obj->get_page.last = 0;
2394
Chris Wilson37e680a2012-06-07 15:38:42 +01002395 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002396}
2397
Chris Wilson0a798eb2016-04-08 12:11:11 +01002398void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj)
2399{
2400 int ret;
2401
2402 lockdep_assert_held(&obj->base.dev->struct_mutex);
2403
2404 ret = i915_gem_object_get_pages(obj);
2405 if (ret)
2406 return ERR_PTR(ret);
2407
2408 i915_gem_object_pin_pages(obj);
2409
2410 if (obj->mapping == NULL) {
Chris Wilson0a798eb2016-04-08 12:11:11 +01002411 struct page **pages;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002412
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002413 pages = NULL;
2414 if (obj->base.size == PAGE_SIZE)
2415 obj->mapping = kmap(sg_page(obj->pages->sgl));
2416 else
2417 pages = drm_malloc_gfp(obj->base.size >> PAGE_SHIFT,
2418 sizeof(*pages),
2419 GFP_TEMPORARY);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002420 if (pages != NULL) {
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002421 struct sg_page_iter sg_iter;
2422 int n;
2423
Chris Wilson0a798eb2016-04-08 12:11:11 +01002424 n = 0;
2425 for_each_sg_page(obj->pages->sgl, &sg_iter,
2426 obj->pages->nents, 0)
2427 pages[n++] = sg_page_iter_page(&sg_iter);
2428
2429 obj->mapping = vmap(pages, n, 0, PAGE_KERNEL);
2430 drm_free_large(pages);
2431 }
2432 if (obj->mapping == NULL) {
2433 i915_gem_object_unpin_pages(obj);
2434 return ERR_PTR(-ENOMEM);
2435 }
2436 }
2437
2438 return obj->mapping;
2439}
2440
Ben Widawskye2d05a82013-09-24 09:57:58 -07002441void i915_vma_move_to_active(struct i915_vma *vma,
John Harrisonb2af0372015-05-29 17:43:50 +01002442 struct drm_i915_gem_request *req)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002443{
Chris Wilsonb4716182015-04-27 13:41:17 +01002444 struct drm_i915_gem_object *obj = vma->obj;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002445 struct intel_engine_cs *engine;
John Harrisonb2af0372015-05-29 17:43:50 +01002446
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002447 engine = i915_gem_request_get_engine(req);
Chris Wilsonb4716182015-04-27 13:41:17 +01002448
2449 /* Add a reference if we're newly entering the active list. */
2450 if (obj->active == 0)
2451 drm_gem_object_reference(&obj->base);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002452 obj->active |= intel_engine_flag(engine);
Chris Wilsonb4716182015-04-27 13:41:17 +01002453
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002454 list_move_tail(&obj->engine_list[engine->id], &engine->active_list);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002455 i915_gem_request_assign(&obj->last_read_req[engine->id], req);
Chris Wilsonb4716182015-04-27 13:41:17 +01002456
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00002457 list_move_tail(&vma->vm_link, &vma->vm->active_list);
Ben Widawskye2d05a82013-09-24 09:57:58 -07002458}
2459
Chris Wilsoncaea7472010-11-12 13:53:37 +00002460static void
Chris Wilsonb4716182015-04-27 13:41:17 +01002461i915_gem_object_retire__write(struct drm_i915_gem_object *obj)
2462{
Chris Wilsond501b1d2016-04-13 17:35:02 +01002463 GEM_BUG_ON(obj->last_write_req == NULL);
2464 GEM_BUG_ON(!(obj->active & intel_engine_flag(obj->last_write_req->engine)));
Chris Wilsonb4716182015-04-27 13:41:17 +01002465
2466 i915_gem_request_assign(&obj->last_write_req, NULL);
Rodrigo Vivide152b62015-07-07 16:28:51 -07002467 intel_fb_obj_flush(obj, true, ORIGIN_CS);
Chris Wilsonb4716182015-04-27 13:41:17 +01002468}
2469
2470static void
2471i915_gem_object_retire__read(struct drm_i915_gem_object *obj, int ring)
Chris Wilsoncaea7472010-11-12 13:53:37 +00002472{
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002473 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002474
Chris Wilsond501b1d2016-04-13 17:35:02 +01002475 GEM_BUG_ON(obj->last_read_req[ring] == NULL);
2476 GEM_BUG_ON(!(obj->active & (1 << ring)));
Chris Wilsonb4716182015-04-27 13:41:17 +01002477
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002478 list_del_init(&obj->engine_list[ring]);
Chris Wilsonb4716182015-04-27 13:41:17 +01002479 i915_gem_request_assign(&obj->last_read_req[ring], NULL);
2480
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002481 if (obj->last_write_req && obj->last_write_req->engine->id == ring)
Chris Wilsonb4716182015-04-27 13:41:17 +01002482 i915_gem_object_retire__write(obj);
2483
2484 obj->active &= ~(1 << ring);
2485 if (obj->active)
2486 return;
Chris Wilson65ce3022012-07-20 12:41:02 +01002487
Chris Wilson6c246952015-07-27 10:26:26 +01002488 /* Bump our place on the bound list to keep it roughly in LRU order
2489 * so that we don't steal from recently used but inactive objects
2490 * (unless we are forced to ofc!)
2491 */
2492 list_move_tail(&obj->global_list,
2493 &to_i915(obj->base.dev)->mm.bound_list);
2494
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00002495 list_for_each_entry(vma, &obj->vma_list, obj_link) {
2496 if (!list_empty(&vma->vm_link))
2497 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002498 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002499
John Harrison97b2a6a2014-11-24 18:49:26 +00002500 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002501 drm_gem_object_unreference(&obj->base);
Chris Wilsonc8725f32014-03-17 12:21:55 +00002502}
2503
Chris Wilson9d7730912012-11-27 16:22:52 +00002504static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002505i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002506{
Chris Wilson9d7730912012-11-27 16:22:52 +00002507 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002508 struct intel_engine_cs *engine;
Chris Wilson29dcb572016-04-07 07:29:13 +01002509 int ret;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002510
Chris Wilson107f27a52012-12-10 13:56:17 +02002511 /* Carefully retire all requests without writing to the rings */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002512 for_each_engine(engine, dev_priv) {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002513 ret = intel_engine_idle(engine);
Chris Wilson107f27a52012-12-10 13:56:17 +02002514 if (ret)
2515 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002516 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002517 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002518
2519 /* Finally reset hw state */
Chris Wilson29dcb572016-04-07 07:29:13 +01002520 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002521 intel_ring_init_seqno(engine, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002522
Chris Wilson9d7730912012-11-27 16:22:52 +00002523 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002524}
2525
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002526int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2527{
2528 struct drm_i915_private *dev_priv = dev->dev_private;
2529 int ret;
2530
2531 if (seqno == 0)
2532 return -EINVAL;
2533
2534 /* HWS page needs to be set less than what we
2535 * will inject to ring
2536 */
2537 ret = i915_gem_init_seqno(dev, seqno - 1);
2538 if (ret)
2539 return ret;
2540
2541 /* Carefully set the last_seqno value so that wrap
2542 * detection still works
2543 */
2544 dev_priv->next_seqno = seqno;
2545 dev_priv->last_seqno = seqno - 1;
2546 if (dev_priv->last_seqno == 0)
2547 dev_priv->last_seqno--;
2548
2549 return 0;
2550}
2551
Chris Wilson9d7730912012-11-27 16:22:52 +00002552int
2553i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002554{
Chris Wilson9d7730912012-11-27 16:22:52 +00002555 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002556
Chris Wilson9d7730912012-11-27 16:22:52 +00002557 /* reserve 0 for non-seqno */
2558 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002559 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002560 if (ret)
2561 return ret;
2562
2563 dev_priv->next_seqno = 1;
2564 }
2565
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002566 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002567 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002568}
2569
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002570/*
2571 * NB: This function is not allowed to fail. Doing so would mean the the
2572 * request is not being tracked for completion but the work itself is
2573 * going to happen on the hardware. This would be a Bad Thing(tm).
2574 */
John Harrison75289872015-05-29 17:43:49 +01002575void __i915_add_request(struct drm_i915_gem_request *request,
John Harrison5b4a60c2015-05-29 17:43:34 +01002576 struct drm_i915_gem_object *obj,
2577 bool flush_caches)
Eric Anholt673a3942008-07-30 12:06:12 -07002578{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002579 struct intel_engine_cs *engine;
John Harrison75289872015-05-29 17:43:49 +01002580 struct drm_i915_private *dev_priv;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002581 struct intel_ringbuffer *ringbuf;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002582 u32 request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002583 int ret;
2584
Oscar Mateo48e29f52014-07-24 17:04:29 +01002585 if (WARN_ON(request == NULL))
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002586 return;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002587
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002588 engine = request->engine;
Tvrtko Ursulin39dabec2016-03-17 13:04:10 +00002589 dev_priv = request->i915;
John Harrison75289872015-05-29 17:43:49 +01002590 ringbuf = request->ringbuf;
2591
John Harrison29b1b412015-06-18 13:10:09 +01002592 /*
2593 * To ensure that this call will not fail, space for its emissions
2594 * should already have been reserved in the ring buffer. Let the ring
2595 * know that it is time to use that space up.
2596 */
2597 intel_ring_reserved_space_use(ringbuf);
2598
Oscar Mateo48e29f52014-07-24 17:04:29 +01002599 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002600 /*
2601 * Emit any outstanding flushes - execbuf can fail to emit the flush
2602 * after having emitted the batchbuffer command. Hence we need to fix
2603 * things up similar to emitting the lazy request. The difference here
2604 * is that the flush _must_ happen before the next request, no matter
2605 * what.
2606 */
John Harrison5b4a60c2015-05-29 17:43:34 +01002607 if (flush_caches) {
2608 if (i915.enable_execlists)
John Harrison4866d722015-05-29 17:43:55 +01002609 ret = logical_ring_flush_all_caches(request);
John Harrison5b4a60c2015-05-29 17:43:34 +01002610 else
John Harrison4866d722015-05-29 17:43:55 +01002611 ret = intel_ring_flush_all_caches(request);
John Harrison5b4a60c2015-05-29 17:43:34 +01002612 /* Not allowed to fail! */
2613 WARN(ret, "*_ring_flush_all_caches failed: %d!\n", ret);
2614 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002615
Chris Wilson7c90b7d2016-04-07 07:29:17 +01002616 trace_i915_gem_request_add(request);
2617
2618 request->head = request_start;
2619
2620 /* Whilst this request exists, batch_obj will be on the
2621 * active_list, and so will hold the active reference. Only when this
2622 * request is retired will the the batch_obj be moved onto the
2623 * inactive_list and lose its active reference. Hence we do not need
2624 * to explicitly hold another reference here.
2625 */
2626 request->batch_obj = obj;
2627
2628 /* Seal the request and mark it as pending execution. Note that
2629 * we may inspect this state, without holding any locks, during
2630 * hangcheck. Hence we apply the barrier to ensure that we do not
2631 * see a more recent value in the hws than we are tracking.
2632 */
2633 request->emitted_jiffies = jiffies;
2634 request->previous_seqno = engine->last_submitted_seqno;
2635 smp_store_mb(engine->last_submitted_seqno, request->seqno);
2636 list_add_tail(&request->list, &engine->request_list);
2637
Chris Wilsona71d8d92012-02-15 11:25:36 +00002638 /* Record the position of the start of the request so that
2639 * should we detect the updated seqno part-way through the
2640 * GPU processing the request, we never over-estimate the
2641 * position of the head.
2642 */
Nick Hoath6d3d8272015-01-15 13:10:39 +00002643 request->postfix = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002644
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002645 if (i915.enable_execlists)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002646 ret = engine->emit_request(request);
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002647 else {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002648 ret = engine->add_request(request);
Michel Thierry53292cd2015-04-15 18:11:33 +01002649
2650 request->tail = intel_ring_get_tail(ringbuf);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002651 }
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002652 /* Not allowed to fail! */
2653 WARN(ret, "emit|add_request failed: %d!\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07002654
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002655 i915_queue_hangcheck(engine->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002656
Daniel Vetter87255482014-11-19 20:36:48 +01002657 queue_delayed_work(dev_priv->wq,
2658 &dev_priv->mm.retire_work,
2659 round_jiffies_up_relative(HZ));
2660 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002661
John Harrison29b1b412015-06-18 13:10:09 +01002662 /* Sanity check that the reserved size was large enough. */
2663 intel_ring_reserved_space_end(ringbuf);
Eric Anholt673a3942008-07-30 12:06:12 -07002664}
2665
Mika Kuoppala939fd762014-01-30 19:04:44 +02002666static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002667 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002668{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002669 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002670
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002671 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2672
2673 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002674 return true;
2675
Chris Wilson676fa572014-12-24 08:13:39 -08002676 if (ctx->hang_stats.ban_period_seconds &&
2677 elapsed <= ctx->hang_stats.ban_period_seconds) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002678 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002679 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002680 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002681 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2682 if (i915_stop_ring_allow_warn(dev_priv))
2683 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002684 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002685 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002686 }
2687
2688 return false;
2689}
2690
Mika Kuoppala939fd762014-01-30 19:04:44 +02002691static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002692 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002693 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002694{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002695 struct i915_ctx_hang_stats *hs;
2696
2697 if (WARN_ON(!ctx))
2698 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002699
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002700 hs = &ctx->hang_stats;
2701
2702 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002703 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002704 hs->batch_active++;
2705 hs->guilty_ts = get_seconds();
2706 } else {
2707 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002708 }
2709}
2710
John Harrisonabfe2622014-11-24 18:49:24 +00002711void i915_gem_request_free(struct kref *req_ref)
2712{
2713 struct drm_i915_gem_request *req = container_of(req_ref,
2714 typeof(*req), ref);
2715 struct intel_context *ctx = req->ctx;
2716
John Harrisonfcfa423c2015-05-29 17:44:12 +01002717 if (req->file_priv)
2718 i915_gem_request_remove_from_client(req);
2719
Thomas Daniel0794aed2014-11-25 10:39:25 +00002720 if (ctx) {
Dave Gordone28e4042016-01-19 19:02:55 +00002721 if (i915.enable_execlists && ctx != req->i915->kernel_context)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002722 intel_lr_context_unpin(ctx, req->engine);
John Harrisonabfe2622014-11-24 18:49:24 +00002723
Oscar Mateodcb4c122014-11-13 10:28:10 +00002724 i915_gem_context_unreference(ctx);
2725 }
John Harrisonabfe2622014-11-24 18:49:24 +00002726
Chris Wilsonefab6d82015-04-07 16:20:57 +01002727 kmem_cache_free(req->i915->requests, req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002728}
2729
Dave Gordon26827082016-01-19 19:02:53 +00002730static inline int
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002731__i915_gem_request_alloc(struct intel_engine_cs *engine,
Dave Gordon26827082016-01-19 19:02:53 +00002732 struct intel_context *ctx,
2733 struct drm_i915_gem_request **req_out)
John Harrison6689cb22015-03-19 12:30:08 +00002734{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002735 struct drm_i915_private *dev_priv = to_i915(engine->dev);
Chris Wilson299259a2016-04-13 17:35:06 +01002736 unsigned reset_counter = i915_reset_counter(&dev_priv->gpu_error);
Daniel Vettereed29a52015-05-21 14:21:25 +02002737 struct drm_i915_gem_request *req;
John Harrison6689cb22015-03-19 12:30:08 +00002738 int ret;
John Harrison6689cb22015-03-19 12:30:08 +00002739
John Harrison217e46b2015-05-29 17:43:29 +01002740 if (!req_out)
2741 return -EINVAL;
2742
John Harrisonbccca492015-05-29 17:44:11 +01002743 *req_out = NULL;
John Harrison6689cb22015-03-19 12:30:08 +00002744
Chris Wilsonf4457ae2016-04-13 17:35:08 +01002745 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
2746 * EIO if the GPU is already wedged, or EAGAIN to drop the struct_mutex
2747 * and restart.
2748 */
2749 ret = i915_gem_check_wedge(reset_counter, dev_priv->mm.interruptible);
Chris Wilson299259a2016-04-13 17:35:06 +01002750 if (ret)
2751 return ret;
2752
Daniel Vettereed29a52015-05-21 14:21:25 +02002753 req = kmem_cache_zalloc(dev_priv->requests, GFP_KERNEL);
2754 if (req == NULL)
John Harrison6689cb22015-03-19 12:30:08 +00002755 return -ENOMEM;
2756
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002757 ret = i915_gem_get_seqno(engine->dev, &req->seqno);
Chris Wilson9a0c1e22015-05-21 21:01:45 +01002758 if (ret)
2759 goto err;
John Harrison6689cb22015-03-19 12:30:08 +00002760
John Harrison40e895c2015-05-29 17:43:26 +01002761 kref_init(&req->ref);
2762 req->i915 = dev_priv;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002763 req->engine = engine;
Chris Wilson299259a2016-04-13 17:35:06 +01002764 req->reset_counter = reset_counter;
John Harrison40e895c2015-05-29 17:43:26 +01002765 req->ctx = ctx;
2766 i915_gem_context_reference(req->ctx);
John Harrison6689cb22015-03-19 12:30:08 +00002767
2768 if (i915.enable_execlists)
John Harrison40e895c2015-05-29 17:43:26 +01002769 ret = intel_logical_ring_alloc_request_extras(req);
John Harrison6689cb22015-03-19 12:30:08 +00002770 else
Daniel Vettereed29a52015-05-21 14:21:25 +02002771 ret = intel_ring_alloc_request_extras(req);
John Harrison40e895c2015-05-29 17:43:26 +01002772 if (ret) {
2773 i915_gem_context_unreference(req->ctx);
Chris Wilson9a0c1e22015-05-21 21:01:45 +01002774 goto err;
John Harrison40e895c2015-05-29 17:43:26 +01002775 }
John Harrison6689cb22015-03-19 12:30:08 +00002776
John Harrison29b1b412015-06-18 13:10:09 +01002777 /*
2778 * Reserve space in the ring buffer for all the commands required to
2779 * eventually emit this request. This is to guarantee that the
2780 * i915_add_request() call can't fail. Note that the reserve may need
2781 * to be redone if the request is not actually submitted straight
2782 * away, e.g. because a GPU scheduler has deferred it.
John Harrison29b1b412015-06-18 13:10:09 +01002783 */
John Harrisonccd98fe2015-05-29 17:44:09 +01002784 if (i915.enable_execlists)
2785 ret = intel_logical_ring_reserve_space(req);
2786 else
2787 ret = intel_ring_reserve_space(req);
2788 if (ret) {
2789 /*
2790 * At this point, the request is fully allocated even if not
2791 * fully prepared. Thus it can be cleaned up using the proper
2792 * free code.
2793 */
2794 i915_gem_request_cancel(req);
2795 return ret;
2796 }
John Harrison29b1b412015-06-18 13:10:09 +01002797
John Harrisonbccca492015-05-29 17:44:11 +01002798 *req_out = req;
John Harrison6689cb22015-03-19 12:30:08 +00002799 return 0;
Chris Wilson9a0c1e22015-05-21 21:01:45 +01002800
2801err:
2802 kmem_cache_free(dev_priv->requests, req);
2803 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002804}
2805
Dave Gordon26827082016-01-19 19:02:53 +00002806/**
2807 * i915_gem_request_alloc - allocate a request structure
2808 *
2809 * @engine: engine that we wish to issue the request on.
2810 * @ctx: context that the request will be associated with.
2811 * This can be NULL if the request is not directly related to
2812 * any specific user context, in which case this function will
2813 * choose an appropriate context to use.
2814 *
2815 * Returns a pointer to the allocated request if successful,
2816 * or an error code if not.
2817 */
2818struct drm_i915_gem_request *
2819i915_gem_request_alloc(struct intel_engine_cs *engine,
2820 struct intel_context *ctx)
2821{
2822 struct drm_i915_gem_request *req;
2823 int err;
2824
2825 if (ctx == NULL)
Dave Gordoned54c1a2016-01-19 19:02:54 +00002826 ctx = to_i915(engine->dev)->kernel_context;
Dave Gordon26827082016-01-19 19:02:53 +00002827 err = __i915_gem_request_alloc(engine, ctx, &req);
2828 return err ? ERR_PTR(err) : req;
2829}
2830
John Harrison29b1b412015-06-18 13:10:09 +01002831void i915_gem_request_cancel(struct drm_i915_gem_request *req)
2832{
2833 intel_ring_reserved_space_cancel(req->ringbuf);
2834
2835 i915_gem_request_unreference(req);
2836}
2837
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002838struct drm_i915_gem_request *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002839i915_gem_find_active_request(struct intel_engine_cs *engine)
Chris Wilson9375e442010-09-19 12:21:28 +01002840{
Chris Wilson4db080f2013-12-04 11:37:09 +00002841 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002842
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002843 list_for_each_entry(request, &engine->request_list, list) {
John Harrison1b5a4332014-11-24 18:49:42 +00002844 if (i915_gem_request_completed(request, false))
Chris Wilson4db080f2013-12-04 11:37:09 +00002845 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002846
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002847 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002848 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002849
2850 return NULL;
2851}
2852
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002853static void i915_gem_reset_engine_status(struct drm_i915_private *dev_priv,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002854 struct intel_engine_cs *engine)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002855{
2856 struct drm_i915_gem_request *request;
2857 bool ring_hung;
2858
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002859 request = i915_gem_find_active_request(engine);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002860
2861 if (request == NULL)
2862 return;
2863
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002864 ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002865
Mika Kuoppala939fd762014-01-30 19:04:44 +02002866 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002867
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002868 list_for_each_entry_continue(request, &engine->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002869 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002870}
2871
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002872static void i915_gem_reset_engine_cleanup(struct drm_i915_private *dev_priv,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002873 struct intel_engine_cs *engine)
Chris Wilson4db080f2013-12-04 11:37:09 +00002874{
Chris Wilson608c1a52015-09-03 13:01:40 +01002875 struct intel_ringbuffer *buffer;
2876
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002877 while (!list_empty(&engine->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002878 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002879
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002880 obj = list_first_entry(&engine->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002881 struct drm_i915_gem_object,
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002882 engine_list[engine->id]);
Eric Anholt673a3942008-07-30 12:06:12 -07002883
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002884 i915_gem_object_retire__read(obj, engine->id);
Eric Anholt673a3942008-07-30 12:06:12 -07002885 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002886
2887 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002888 * Clear the execlists queue up before freeing the requests, as those
2889 * are the ones that keep the context and ringbuffer backing objects
2890 * pinned in place.
2891 */
Oscar Mateodcb4c122014-11-13 10:28:10 +00002892
Tomas Elf7de16912015-10-19 16:32:32 +01002893 if (i915.enable_execlists) {
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002894 /* Ensure irq handler finishes or is cancelled. */
2895 tasklet_kill(&engine->irq_tasklet);
Mika Kuoppala1197b4f2015-01-13 11:32:24 +02002896
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002897 spin_lock_bh(&engine->execlist_lock);
Tomas Elfc5baa562015-10-23 18:02:37 +01002898 /* list_splice_tail_init checks for empty lists */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002899 list_splice_tail_init(&engine->execlist_queue,
2900 &engine->execlist_retired_req_list);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002901 spin_unlock_bh(&engine->execlist_lock);
Mika Kuoppala1197b4f2015-01-13 11:32:24 +02002902
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002903 intel_execlists_retire_requests(engine);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002904 }
2905
2906 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002907 * We must free the requests after all the corresponding objects have
2908 * been moved off active lists. Which is the same order as the normal
2909 * retire_requests function does. This is important if object hold
2910 * implicit references on things like e.g. ppgtt address spaces through
2911 * the request.
2912 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002913 while (!list_empty(&engine->request_list)) {
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002914 struct drm_i915_gem_request *request;
2915
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002916 request = list_first_entry(&engine->request_list,
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002917 struct drm_i915_gem_request,
2918 list);
2919
Chris Wilsonb4716182015-04-27 13:41:17 +01002920 i915_gem_request_retire(request);
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002921 }
Chris Wilson608c1a52015-09-03 13:01:40 +01002922
2923 /* Having flushed all requests from all queues, we know that all
2924 * ringbuffers must now be empty. However, since we do not reclaim
2925 * all space when retiring the request (to prevent HEADs colliding
2926 * with rapid ringbuffer wraparound) the amount of available space
2927 * upon reset is less than when we start. Do one more pass over
2928 * all the ringbuffers to reset last_retired_head.
2929 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002930 list_for_each_entry(buffer, &engine->buffers, link) {
Chris Wilson608c1a52015-09-03 13:01:40 +01002931 buffer->last_retired_head = buffer->tail;
2932 intel_ring_update_space(buffer);
2933 }
Chris Wilson2ed53a92016-04-07 07:29:11 +01002934
2935 intel_ring_init_seqno(engine, engine->last_submitted_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002936}
2937
Chris Wilson069efc12010-09-30 16:53:18 +01002938void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002939{
Chris Wilsondfaae392010-09-22 10:31:52 +01002940 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002941 struct intel_engine_cs *engine;
Eric Anholt673a3942008-07-30 12:06:12 -07002942
Chris Wilson4db080f2013-12-04 11:37:09 +00002943 /*
2944 * Before we free the objects from the requests, we need to inspect
2945 * them for finding the guilty party. As the requests only borrow
2946 * their reference to the objects, the inspection must be done first.
2947 */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002948 for_each_engine(engine, dev_priv)
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002949 i915_gem_reset_engine_status(dev_priv, engine);
Chris Wilson4db080f2013-12-04 11:37:09 +00002950
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002951 for_each_engine(engine, dev_priv)
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002952 i915_gem_reset_engine_cleanup(dev_priv, engine);
Chris Wilsondfaae392010-09-22 10:31:52 +01002953
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002954 i915_gem_context_reset(dev);
2955
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002956 i915_gem_restore_fences(dev);
Chris Wilsonb4716182015-04-27 13:41:17 +01002957
2958 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002959}
2960
2961/**
2962 * This function clears the request list as sequence numbers are passed.
2963 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002964void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002965i915_gem_retire_requests_ring(struct intel_engine_cs *engine)
Eric Anholt673a3942008-07-30 12:06:12 -07002966{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002967 WARN_ON(i915_verify_lists(engine->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002968
Chris Wilson832a3aa2015-03-18 18:19:22 +00002969 /* Retire requests first as we use it above for the early return.
2970 * If we retire requests last, we may use a later seqno and so clear
2971 * the requests lists without clearing the active list, leading to
2972 * confusion.
Chris Wilsone9103032014-01-07 11:45:14 +00002973 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002974 while (!list_empty(&engine->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002975 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002976
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002977 request = list_first_entry(&engine->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002978 struct drm_i915_gem_request,
2979 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002980
John Harrison1b5a4332014-11-24 18:49:42 +00002981 if (!i915_gem_request_completed(request, true))
Eric Anholt673a3942008-07-30 12:06:12 -07002982 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002983
Chris Wilsonb4716182015-04-27 13:41:17 +01002984 i915_gem_request_retire(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002985 }
2986
Chris Wilson832a3aa2015-03-18 18:19:22 +00002987 /* Move any buffers on the active list that are no longer referenced
2988 * by the ringbuffer to the flushing/inactive lists as appropriate,
2989 * before we free the context associated with the requests.
2990 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002991 while (!list_empty(&engine->active_list)) {
Chris Wilson832a3aa2015-03-18 18:19:22 +00002992 struct drm_i915_gem_object *obj;
2993
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002994 obj = list_first_entry(&engine->active_list,
2995 struct drm_i915_gem_object,
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002996 engine_list[engine->id]);
Chris Wilson832a3aa2015-03-18 18:19:22 +00002997
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002998 if (!list_empty(&obj->last_read_req[engine->id]->list))
Chris Wilson832a3aa2015-03-18 18:19:22 +00002999 break;
3000
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003001 i915_gem_object_retire__read(obj, engine->id);
Chris Wilson832a3aa2015-03-18 18:19:22 +00003002 }
3003
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003004 if (unlikely(engine->trace_irq_req &&
3005 i915_gem_request_completed(engine->trace_irq_req, true))) {
3006 engine->irq_put(engine);
3007 i915_gem_request_assign(&engine->trace_irq_req, NULL);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01003008 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003009
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003010 WARN_ON(i915_verify_lists(engine->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003011}
3012
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003013bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01003014i915_gem_retire_requests(struct drm_device *dev)
3015{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003016 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003017 struct intel_engine_cs *engine;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003018 bool idle = true;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01003019
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003020 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003021 i915_gem_retire_requests_ring(engine);
3022 idle &= list_empty(&engine->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00003023 if (i915.enable_execlists) {
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01003024 spin_lock_bh(&engine->execlist_lock);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003025 idle &= list_empty(&engine->execlist_queue);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01003026 spin_unlock_bh(&engine->execlist_lock);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00003027
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003028 intel_execlists_retire_requests(engine);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00003029 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003030 }
3031
3032 if (idle)
3033 mod_delayed_work(dev_priv->wq,
3034 &dev_priv->mm.idle_work,
3035 msecs_to_jiffies(100));
3036
3037 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01003038}
3039
Daniel Vetter75ef9da2010-08-21 00:25:16 +02003040static void
Eric Anholt673a3942008-07-30 12:06:12 -07003041i915_gem_retire_work_handler(struct work_struct *work)
3042{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003043 struct drm_i915_private *dev_priv =
3044 container_of(work, typeof(*dev_priv), mm.retire_work.work);
3045 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00003046 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07003047
Chris Wilson891b48c2010-09-29 12:26:37 +01003048 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003049 idle = false;
3050 if (mutex_trylock(&dev->struct_mutex)) {
3051 idle = i915_gem_retire_requests(dev);
3052 mutex_unlock(&dev->struct_mutex);
3053 }
3054 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01003055 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
3056 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003057}
Chris Wilson891b48c2010-09-29 12:26:37 +01003058
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003059static void
3060i915_gem_idle_work_handler(struct work_struct *work)
3061{
3062 struct drm_i915_private *dev_priv =
3063 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Chris Wilson35c94182015-04-07 16:20:37 +01003064 struct drm_device *dev = dev_priv->dev;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003065 struct intel_engine_cs *engine;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003066
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003067 for_each_engine(engine, dev_priv)
3068 if (!list_empty(&engine->request_list))
Chris Wilson423795c2015-04-07 16:21:08 +01003069 return;
Zou Nan hai852835f2010-05-21 09:08:56 +08003070
Daniel Vetter30ecad72015-12-09 09:29:36 +01003071 /* we probably should sync with hangcheck here, using cancel_work_sync.
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003072 * Also locking seems to be fubar here, engine->request_list is protected
Daniel Vetter30ecad72015-12-09 09:29:36 +01003073 * by dev->struct_mutex. */
3074
Chris Wilson35c94182015-04-07 16:20:37 +01003075 intel_mark_idle(dev);
3076
3077 if (mutex_trylock(&dev->struct_mutex)) {
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003078 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003079 i915_gem_batch_pool_fini(&engine->batch_pool);
Chris Wilson35c94182015-04-07 16:20:37 +01003080
3081 mutex_unlock(&dev->struct_mutex);
3082 }
Eric Anholt673a3942008-07-30 12:06:12 -07003083}
3084
Ben Widawsky5816d642012-04-11 11:18:19 -07003085/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003086 * Ensures that an object will eventually get non-busy by flushing any required
3087 * write domains, emitting any outstanding lazy request and retiring and
3088 * completed requests.
3089 */
3090static int
3091i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
3092{
John Harrisona5ac0f92015-05-29 17:44:15 +01003093 int i;
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003094
Chris Wilsonb4716182015-04-27 13:41:17 +01003095 if (!obj->active)
3096 return 0;
John Harrison41c52412014-11-24 18:49:43 +00003097
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003098 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01003099 struct drm_i915_gem_request *req;
3100
3101 req = obj->last_read_req[i];
3102 if (req == NULL)
3103 continue;
3104
3105 if (list_empty(&req->list))
3106 goto retire;
3107
Chris Wilsonb4716182015-04-27 13:41:17 +01003108 if (i915_gem_request_completed(req, true)) {
3109 __i915_gem_request_retire__upto(req);
3110retire:
3111 i915_gem_object_retire__read(obj, i);
3112 }
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003113 }
3114
3115 return 0;
3116}
3117
3118/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003119 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
3120 * @DRM_IOCTL_ARGS: standard ioctl arguments
3121 *
3122 * Returns 0 if successful, else an error is returned with the remaining time in
3123 * the timeout parameter.
3124 * -ETIME: object is still busy after timeout
3125 * -ERESTARTSYS: signal interrupted the wait
3126 * -ENONENT: object doesn't exist
3127 * Also possible, but rare:
3128 * -EAGAIN: GPU wedged
3129 * -ENOMEM: damn
3130 * -ENODEV: Internal IRQ fail
3131 * -E?: The add request failed
3132 *
3133 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
3134 * non-zero timeout parameter the wait ioctl will wait for the given number of
3135 * nanoseconds on an object becoming unbusy. Since the wait itself does so
3136 * without holding struct_mutex the object may become re-busied before this
3137 * function completes. A similar but shorter * race condition exists in the busy
3138 * ioctl
3139 */
3140int
3141i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
3142{
3143 struct drm_i915_gem_wait *args = data;
3144 struct drm_i915_gem_object *obj;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003145 struct drm_i915_gem_request *req[I915_NUM_ENGINES];
Chris Wilsonb4716182015-04-27 13:41:17 +01003146 int i, n = 0;
3147 int ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003148
Daniel Vetter11b5d512014-09-29 15:31:26 +02003149 if (args->flags != 0)
3150 return -EINVAL;
3151
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003152 ret = i915_mutex_lock_interruptible(dev);
3153 if (ret)
3154 return ret;
3155
3156 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
3157 if (&obj->base == NULL) {
3158 mutex_unlock(&dev->struct_mutex);
3159 return -ENOENT;
3160 }
3161
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003162 /* Need to make sure the object gets inactive eventually. */
3163 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003164 if (ret)
3165 goto out;
3166
Chris Wilsonb4716182015-04-27 13:41:17 +01003167 if (!obj->active)
John Harrison97b2a6a2014-11-24 18:49:26 +00003168 goto out;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003169
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003170 /* Do this after OLR check to make sure we make forward progress polling
Chris Wilson762e4582015-03-04 18:09:26 +00003171 * on this IOCTL with a timeout == 0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003172 */
Chris Wilson762e4582015-03-04 18:09:26 +00003173 if (args->timeout_ns == 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003174 ret = -ETIME;
3175 goto out;
3176 }
3177
3178 drm_gem_object_unreference(&obj->base);
Chris Wilsonb4716182015-04-27 13:41:17 +01003179
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003180 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01003181 if (obj->last_read_req[i] == NULL)
3182 continue;
3183
3184 req[n++] = i915_gem_request_reference(obj->last_read_req[i]);
3185 }
3186
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003187 mutex_unlock(&dev->struct_mutex);
3188
Chris Wilsonb4716182015-04-27 13:41:17 +01003189 for (i = 0; i < n; i++) {
3190 if (ret == 0)
Chris Wilson299259a2016-04-13 17:35:06 +01003191 ret = __i915_wait_request(req[i], true,
Chris Wilsonb4716182015-04-27 13:41:17 +01003192 args->timeout_ns > 0 ? &args->timeout_ns : NULL,
Chris Wilsonb6aa0872015-12-02 09:13:46 +00003193 to_rps_client(file));
Chris Wilsonb4716182015-04-27 13:41:17 +01003194 i915_gem_request_unreference__unlocked(req[i]);
3195 }
John Harrisonff865882014-11-24 18:49:28 +00003196 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003197
3198out:
3199 drm_gem_object_unreference(&obj->base);
3200 mutex_unlock(&dev->struct_mutex);
3201 return ret;
3202}
3203
Chris Wilsonb4716182015-04-27 13:41:17 +01003204static int
3205__i915_gem_object_sync(struct drm_i915_gem_object *obj,
3206 struct intel_engine_cs *to,
John Harrison91af1272015-06-18 13:14:56 +01003207 struct drm_i915_gem_request *from_req,
3208 struct drm_i915_gem_request **to_req)
Chris Wilsonb4716182015-04-27 13:41:17 +01003209{
3210 struct intel_engine_cs *from;
3211 int ret;
3212
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003213 from = i915_gem_request_get_engine(from_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003214 if (to == from)
3215 return 0;
3216
John Harrison91af1272015-06-18 13:14:56 +01003217 if (i915_gem_request_completed(from_req, true))
Chris Wilsonb4716182015-04-27 13:41:17 +01003218 return 0;
3219
Chris Wilsonb4716182015-04-27 13:41:17 +01003220 if (!i915_semaphore_is_enabled(obj->base.dev)) {
Chris Wilsona6f766f2015-04-27 13:41:20 +01003221 struct drm_i915_private *i915 = to_i915(obj->base.dev);
John Harrison91af1272015-06-18 13:14:56 +01003222 ret = __i915_wait_request(from_req,
Chris Wilsona6f766f2015-04-27 13:41:20 +01003223 i915->mm.interruptible,
3224 NULL,
3225 &i915->rps.semaphores);
Chris Wilsonb4716182015-04-27 13:41:17 +01003226 if (ret)
3227 return ret;
3228
John Harrison91af1272015-06-18 13:14:56 +01003229 i915_gem_object_retire_request(obj, from_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003230 } else {
3231 int idx = intel_ring_sync_index(from, to);
John Harrison91af1272015-06-18 13:14:56 +01003232 u32 seqno = i915_gem_request_get_seqno(from_req);
3233
3234 WARN_ON(!to_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003235
3236 if (seqno <= from->semaphore.sync_seqno[idx])
3237 return 0;
3238
John Harrison91af1272015-06-18 13:14:56 +01003239 if (*to_req == NULL) {
Dave Gordon26827082016-01-19 19:02:53 +00003240 struct drm_i915_gem_request *req;
3241
3242 req = i915_gem_request_alloc(to, NULL);
3243 if (IS_ERR(req))
3244 return PTR_ERR(req);
3245
3246 *to_req = req;
John Harrison91af1272015-06-18 13:14:56 +01003247 }
3248
John Harrison599d9242015-05-29 17:44:04 +01003249 trace_i915_gem_ring_sync_to(*to_req, from, from_req);
3250 ret = to->semaphore.sync_to(*to_req, from, seqno);
Chris Wilsonb4716182015-04-27 13:41:17 +01003251 if (ret)
3252 return ret;
3253
3254 /* We use last_read_req because sync_to()
3255 * might have just caused seqno wrap under
3256 * the radar.
3257 */
3258 from->semaphore.sync_seqno[idx] =
3259 i915_gem_request_get_seqno(obj->last_read_req[from->id]);
3260 }
3261
3262 return 0;
3263}
3264
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003265/**
Ben Widawsky5816d642012-04-11 11:18:19 -07003266 * i915_gem_object_sync - sync an object to a ring.
3267 *
3268 * @obj: object which may be in use on another ring.
3269 * @to: ring we wish to use the object on. May be NULL.
John Harrison91af1272015-06-18 13:14:56 +01003270 * @to_req: request we wish to use the object for. See below.
3271 * This will be allocated and returned if a request is
3272 * required but not passed in.
Ben Widawsky5816d642012-04-11 11:18:19 -07003273 *
3274 * This code is meant to abstract object synchronization with the GPU.
3275 * Calling with NULL implies synchronizing the object with the CPU
Chris Wilsonb4716182015-04-27 13:41:17 +01003276 * rather than a particular GPU ring. Conceptually we serialise writes
John Harrison91af1272015-06-18 13:14:56 +01003277 * between engines inside the GPU. We only allow one engine to write
Chris Wilsonb4716182015-04-27 13:41:17 +01003278 * into a buffer at any time, but multiple readers. To ensure each has
3279 * a coherent view of memory, we must:
3280 *
3281 * - If there is an outstanding write request to the object, the new
3282 * request must wait for it to complete (either CPU or in hw, requests
3283 * on the same ring will be naturally ordered).
3284 *
3285 * - If we are a write request (pending_write_domain is set), the new
3286 * request must wait for outstanding read requests to complete.
Ben Widawsky5816d642012-04-11 11:18:19 -07003287 *
John Harrison91af1272015-06-18 13:14:56 +01003288 * For CPU synchronisation (NULL to) no request is required. For syncing with
3289 * rings to_req must be non-NULL. However, a request does not have to be
3290 * pre-allocated. If *to_req is NULL and sync commands will be emitted then a
3291 * request will be allocated automatically and returned through *to_req. Note
3292 * that it is not guaranteed that commands will be emitted (because the system
3293 * might already be idle). Hence there is no need to create a request that
3294 * might never have any work submitted. Note further that if a request is
3295 * returned in *to_req, it is the responsibility of the caller to submit
3296 * that request (after potentially adding more work to it).
3297 *
Ben Widawsky5816d642012-04-11 11:18:19 -07003298 * Returns 0 if successful, else propagates up the lower layer error.
3299 */
Ben Widawsky2911a352012-04-05 14:47:36 -07003300int
3301i915_gem_object_sync(struct drm_i915_gem_object *obj,
John Harrison91af1272015-06-18 13:14:56 +01003302 struct intel_engine_cs *to,
3303 struct drm_i915_gem_request **to_req)
Ben Widawsky2911a352012-04-05 14:47:36 -07003304{
Chris Wilsonb4716182015-04-27 13:41:17 +01003305 const bool readonly = obj->base.pending_write_domain == 0;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003306 struct drm_i915_gem_request *req[I915_NUM_ENGINES];
Chris Wilsonb4716182015-04-27 13:41:17 +01003307 int ret, i, n;
Ben Widawsky2911a352012-04-05 14:47:36 -07003308
Chris Wilsonb4716182015-04-27 13:41:17 +01003309 if (!obj->active)
Ben Widawsky2911a352012-04-05 14:47:36 -07003310 return 0;
3311
Chris Wilsonb4716182015-04-27 13:41:17 +01003312 if (to == NULL)
3313 return i915_gem_object_wait_rendering(obj, readonly);
Ben Widawsky2911a352012-04-05 14:47:36 -07003314
Chris Wilsonb4716182015-04-27 13:41:17 +01003315 n = 0;
3316 if (readonly) {
3317 if (obj->last_write_req)
3318 req[n++] = obj->last_write_req;
3319 } else {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003320 for (i = 0; i < I915_NUM_ENGINES; i++)
Chris Wilsonb4716182015-04-27 13:41:17 +01003321 if (obj->last_read_req[i])
3322 req[n++] = obj->last_read_req[i];
3323 }
3324 for (i = 0; i < n; i++) {
John Harrison91af1272015-06-18 13:14:56 +01003325 ret = __i915_gem_object_sync(obj, to, req[i], to_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003326 if (ret)
3327 return ret;
3328 }
Ben Widawsky2911a352012-04-05 14:47:36 -07003329
Chris Wilsonb4716182015-04-27 13:41:17 +01003330 return 0;
Ben Widawsky2911a352012-04-05 14:47:36 -07003331}
3332
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003333static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3334{
3335 u32 old_write_domain, old_read_domains;
3336
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003337 /* Force a pagefault for domain tracking on next user access */
3338 i915_gem_release_mmap(obj);
3339
Keith Packardb97c3d92011-06-24 21:02:59 -07003340 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3341 return;
3342
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003343 old_read_domains = obj->base.read_domains;
3344 old_write_domain = obj->base.write_domain;
3345
3346 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3347 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3348
3349 trace_i915_gem_object_change_domain(obj,
3350 old_read_domains,
3351 old_write_domain);
3352}
3353
Tvrtko Ursuline9f24d52015-10-05 13:26:36 +01003354static int __i915_vma_unbind(struct i915_vma *vma, bool wait)
Eric Anholt673a3942008-07-30 12:06:12 -07003355{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003356 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003357 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003358 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003359
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003360 if (list_empty(&vma->obj_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003361 return 0;
3362
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003363 if (!drm_mm_node_allocated(&vma->node)) {
3364 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003365 return 0;
3366 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003367
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003368 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003369 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003370
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003371 BUG_ON(obj->pages == NULL);
3372
Tvrtko Ursuline9f24d52015-10-05 13:26:36 +01003373 if (wait) {
3374 ret = i915_gem_object_wait_rendering(obj, false);
3375 if (ret)
3376 return ret;
3377 }
Chris Wilsona8198ee2011-04-13 22:04:09 +01003378
Chris Wilson596c5922016-02-26 11:03:20 +00003379 if (vma->is_ggtt && vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003380 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003381
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003382 /* release the fence reg _after_ flushing */
3383 ret = i915_gem_object_put_fence(obj);
3384 if (ret)
3385 return ret;
3386 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003387
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003388 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003389
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003390 vma->vm->unbind_vma(vma);
Mika Kuoppala5e562f12015-04-30 11:02:31 +03003391 vma->bound = 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003392
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003393 list_del_init(&vma->vm_link);
Chris Wilson596c5922016-02-26 11:03:20 +00003394 if (vma->is_ggtt) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003395 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
3396 obj->map_and_fenceable = false;
3397 } else if (vma->ggtt_view.pages) {
3398 sg_free_table(vma->ggtt_view.pages);
3399 kfree(vma->ggtt_view.pages);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003400 }
Chris Wilson016a65a2015-06-11 08:06:08 +01003401 vma->ggtt_view.pages = NULL;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003402 }
Eric Anholt673a3942008-07-30 12:06:12 -07003403
Ben Widawsky2f633152013-07-17 12:19:03 -07003404 drm_mm_remove_node(&vma->node);
3405 i915_gem_vma_destroy(vma);
3406
3407 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003408 * no more VMAs exist. */
Imre Deake2273302015-07-09 12:59:05 +03003409 if (list_empty(&obj->vma_list))
Ben Widawsky2f633152013-07-17 12:19:03 -07003410 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003411
Chris Wilson70903c32013-12-04 09:59:09 +00003412 /* And finally now the object is completely decoupled from this vma,
3413 * we can drop its hold on the backing storage and allow it to be
3414 * reaped by the shrinker.
3415 */
3416 i915_gem_object_unpin_pages(obj);
3417
Chris Wilson88241782011-01-07 17:09:48 +00003418 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003419}
3420
Tvrtko Ursuline9f24d52015-10-05 13:26:36 +01003421int i915_vma_unbind(struct i915_vma *vma)
3422{
3423 return __i915_vma_unbind(vma, true);
3424}
3425
3426int __i915_vma_unbind_no_wait(struct i915_vma *vma)
3427{
3428 return __i915_vma_unbind(vma, false);
3429}
3430
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003431int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003432{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003433 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003434 struct intel_engine_cs *engine;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003435 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003436
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003437 /* Flush everything onto the inactive list. */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003438 for_each_engine(engine, dev_priv) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003439 if (!i915.enable_execlists) {
John Harrison73cfa862015-05-29 17:43:35 +01003440 struct drm_i915_gem_request *req;
3441
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003442 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +00003443 if (IS_ERR(req))
3444 return PTR_ERR(req);
John Harrison73cfa862015-05-29 17:43:35 +01003445
John Harrisonba01cc92015-05-29 17:43:41 +01003446 ret = i915_switch_context(req);
John Harrison73cfa862015-05-29 17:43:35 +01003447 if (ret) {
3448 i915_gem_request_cancel(req);
3449 return ret;
3450 }
3451
John Harrison75289872015-05-29 17:43:49 +01003452 i915_add_request_no_flush(req);
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003453 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003454
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003455 ret = intel_engine_idle(engine);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003456 if (ret)
3457 return ret;
3458 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003459
Chris Wilsonb4716182015-04-27 13:41:17 +01003460 WARN_ON(i915_verify_lists(dev));
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003461 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003462}
3463
Chris Wilson4144f9b2014-09-11 08:43:48 +01003464static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003465 unsigned long cache_level)
3466{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003467 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003468 struct drm_mm_node *other;
3469
Chris Wilson4144f9b2014-09-11 08:43:48 +01003470 /*
3471 * On some machines we have to be careful when putting differing types
3472 * of snoopable memory together to avoid the prefetcher crossing memory
3473 * domains and dying. During vm initialisation, we decide whether or not
3474 * these constraints apply and set the drm_mm.color_adjust
3475 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003476 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003477 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003478 return true;
3479
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003480 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003481 return true;
3482
3483 if (list_empty(&gtt_space->node_list))
3484 return true;
3485
3486 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3487 if (other->allocated && !other->hole_follows && other->color != cache_level)
3488 return false;
3489
3490 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3491 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3492 return false;
3493
3494 return true;
3495}
3496
Jesse Barnesde151cf2008-11-12 10:03:55 -08003497/**
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003498 * Finds free space in the GTT aperture and binds the object or a view of it
3499 * there.
Eric Anholt673a3942008-07-30 12:06:12 -07003500 */
Daniel Vetter262de142014-02-14 14:01:20 +01003501static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003502i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3503 struct i915_address_space *vm,
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003504 const struct i915_ggtt_view *ggtt_view,
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003505 unsigned alignment,
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003506 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003507{
Chris Wilson05394f32010-11-08 19:18:58 +00003508 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003509 struct drm_i915_private *dev_priv = to_i915(dev);
3510 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Michel Thierry65bd3422015-07-29 17:23:58 +01003511 u32 fence_alignment, unfenced_alignment;
Michel Thierry101b5062015-10-01 13:33:57 +01003512 u32 search_flag, alloc_flag;
3513 u64 start, end;
Michel Thierry65bd3422015-07-29 17:23:58 +01003514 u64 size, fence_size;
Ben Widawsky2f633152013-07-17 12:19:03 -07003515 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003516 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003517
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003518 if (i915_is_ggtt(vm)) {
3519 u32 view_size;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003520
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003521 if (WARN_ON(!ggtt_view))
3522 return ERR_PTR(-EINVAL);
3523
3524 view_size = i915_ggtt_view_size(obj, ggtt_view);
3525
3526 fence_size = i915_gem_get_gtt_size(dev,
3527 view_size,
3528 obj->tiling_mode);
3529 fence_alignment = i915_gem_get_gtt_alignment(dev,
3530 view_size,
3531 obj->tiling_mode,
3532 true);
3533 unfenced_alignment = i915_gem_get_gtt_alignment(dev,
3534 view_size,
3535 obj->tiling_mode,
3536 false);
3537 size = flags & PIN_MAPPABLE ? fence_size : view_size;
3538 } else {
3539 fence_size = i915_gem_get_gtt_size(dev,
3540 obj->base.size,
3541 obj->tiling_mode);
3542 fence_alignment = i915_gem_get_gtt_alignment(dev,
3543 obj->base.size,
3544 obj->tiling_mode,
3545 true);
3546 unfenced_alignment =
3547 i915_gem_get_gtt_alignment(dev,
3548 obj->base.size,
3549 obj->tiling_mode,
3550 false);
3551 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
3552 }
Chris Wilsona00b10c2010-09-24 21:15:47 +01003553
Michel Thierry101b5062015-10-01 13:33:57 +01003554 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3555 end = vm->total;
3556 if (flags & PIN_MAPPABLE)
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003557 end = min_t(u64, end, ggtt->mappable_end);
Michel Thierry101b5062015-10-01 13:33:57 +01003558 if (flags & PIN_ZONE_4G)
Michel Thierry48ea1e32016-01-11 11:39:27 +00003559 end = min_t(u64, end, (1ULL << 32) - PAGE_SIZE);
Michel Thierry101b5062015-10-01 13:33:57 +01003560
Eric Anholt673a3942008-07-30 12:06:12 -07003561 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003562 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003563 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003564 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003565 DRM_DEBUG("Invalid object (view type=%u) alignment requested %u\n",
3566 ggtt_view ? ggtt_view->type : 0,
3567 alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003568 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003569 }
3570
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003571 /* If binding the object/GGTT view requires more space than the entire
3572 * aperture has, reject it early before evicting everything in a vain
3573 * attempt to find space.
Chris Wilson654fc602010-05-27 13:18:21 +01003574 */
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003575 if (size > end) {
Michel Thierry65bd3422015-07-29 17:23:58 +01003576 DRM_DEBUG("Attempting to bind an object (view type=%u) larger than the aperture: size=%llu > %s aperture=%llu\n",
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003577 ggtt_view ? ggtt_view->type : 0,
3578 size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003579 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003580 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003581 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003582 }
3583
Chris Wilson37e680a2012-06-07 15:38:42 +01003584 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003585 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003586 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003587
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003588 i915_gem_object_pin_pages(obj);
3589
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003590 vma = ggtt_view ? i915_gem_obj_lookup_or_create_ggtt_vma(obj, ggtt_view) :
3591 i915_gem_obj_lookup_or_create_vma(obj, vm);
3592
Daniel Vetter262de142014-02-14 14:01:20 +01003593 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003594 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003595
Chris Wilson506a8e82015-12-08 11:55:07 +00003596 if (flags & PIN_OFFSET_FIXED) {
3597 uint64_t offset = flags & PIN_OFFSET_MASK;
3598
3599 if (offset & (alignment - 1) || offset + size > end) {
3600 ret = -EINVAL;
3601 goto err_free_vma;
3602 }
3603 vma->node.start = offset;
3604 vma->node.size = size;
3605 vma->node.color = obj->cache_level;
3606 ret = drm_mm_reserve_node(&vm->mm, &vma->node);
3607 if (ret) {
3608 ret = i915_gem_evict_for_vma(vma);
3609 if (ret == 0)
3610 ret = drm_mm_reserve_node(&vm->mm, &vma->node);
3611 }
3612 if (ret)
3613 goto err_free_vma;
Michel Thierry101b5062015-10-01 13:33:57 +01003614 } else {
Chris Wilson506a8e82015-12-08 11:55:07 +00003615 if (flags & PIN_HIGH) {
3616 search_flag = DRM_MM_SEARCH_BELOW;
3617 alloc_flag = DRM_MM_CREATE_TOP;
3618 } else {
3619 search_flag = DRM_MM_SEARCH_DEFAULT;
3620 alloc_flag = DRM_MM_CREATE_DEFAULT;
3621 }
Michel Thierry101b5062015-10-01 13:33:57 +01003622
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003623search_free:
Chris Wilson506a8e82015-12-08 11:55:07 +00003624 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
3625 size, alignment,
3626 obj->cache_level,
3627 start, end,
3628 search_flag,
3629 alloc_flag);
3630 if (ret) {
3631 ret = i915_gem_evict_something(dev, vm, size, alignment,
3632 obj->cache_level,
3633 start, end,
3634 flags);
3635 if (ret == 0)
3636 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003637
Chris Wilson506a8e82015-12-08 11:55:07 +00003638 goto err_free_vma;
3639 }
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003640 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003641 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003642 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003643 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003644 }
3645
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003646 trace_i915_vma_bind(vma, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07003647 ret = i915_vma_bind(vma, obj->cache_level, flags);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003648 if (ret)
Imre Deake2273302015-07-09 12:59:05 +03003649 goto err_remove_node;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003650
Ben Widawsky35c20a62013-05-31 11:28:48 -07003651 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003652 list_add_tail(&vma->vm_link, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003653
Daniel Vetter262de142014-02-14 14:01:20 +01003654 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003655
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003656err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003657 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003658err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003659 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003660 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003661err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003662 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003663 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003664}
3665
Chris Wilson000433b2013-08-08 14:41:09 +01003666bool
Chris Wilson2c225692013-08-09 12:26:45 +01003667i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3668 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003669{
Eric Anholt673a3942008-07-30 12:06:12 -07003670 /* If we don't have a page list set up, then we're not pinned
3671 * to GPU, and we can ignore the cache flush because it'll happen
3672 * again at bind time.
3673 */
Chris Wilson05394f32010-11-08 19:18:58 +00003674 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003675 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003676
Imre Deak769ce462013-02-13 21:56:05 +02003677 /*
3678 * Stolen memory is always coherent with the GPU as it is explicitly
3679 * marked as wc by the system, or the system is cache-coherent.
3680 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003681 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003682 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003683
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003684 /* If the GPU is snooping the contents of the CPU cache,
3685 * we do not need to manually clear the CPU cache lines. However,
3686 * the caches are only snooped when the render cache is
3687 * flushed/invalidated. As we always have to emit invalidations
3688 * and flushes when moving into and out of the RENDER domain, correct
3689 * snooping behaviour occurs naturally as the result of our domain
3690 * tracking.
3691 */
Chris Wilson0f719792015-01-13 13:32:52 +00003692 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3693 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003694 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003695 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003696
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003697 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003698 drm_clflush_sg(obj->pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003699 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003700
3701 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003702}
3703
3704/** Flushes the GTT write domain for the object if it's dirty. */
3705static void
Chris Wilson05394f32010-11-08 19:18:58 +00003706i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003707{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003708 uint32_t old_write_domain;
3709
Chris Wilson05394f32010-11-08 19:18:58 +00003710 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003711 return;
3712
Chris Wilson63256ec2011-01-04 18:42:07 +00003713 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003714 * to it immediately go to main memory as far as we know, so there's
3715 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003716 *
3717 * However, we do have to enforce the order so that all writes through
3718 * the GTT land before any writes to the device, such as updates to
3719 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003720 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003721 wmb();
3722
Chris Wilson05394f32010-11-08 19:18:58 +00003723 old_write_domain = obj->base.write_domain;
3724 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003725
Rodrigo Vivide152b62015-07-07 16:28:51 -07003726 intel_fb_obj_flush(obj, false, ORIGIN_GTT);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003727
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003728 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003729 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003730 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003731}
3732
3733/** Flushes the CPU write domain for the object if it's dirty. */
3734static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003735i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003736{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003737 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003738
Chris Wilson05394f32010-11-08 19:18:58 +00003739 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003740 return;
3741
Daniel Vettere62b59e2015-01-21 14:53:48 +01003742 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson000433b2013-08-08 14:41:09 +01003743 i915_gem_chipset_flush(obj->base.dev);
3744
Chris Wilson05394f32010-11-08 19:18:58 +00003745 old_write_domain = obj->base.write_domain;
3746 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003747
Rodrigo Vivide152b62015-07-07 16:28:51 -07003748 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003749
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003750 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003751 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003752 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003753}
3754
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003755/**
3756 * Moves a single object to the GTT read, and possibly write domain.
3757 *
3758 * This function returns when the move is complete, including waiting on
3759 * flushes to occur.
3760 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003761int
Chris Wilson20217462010-11-23 15:26:33 +00003762i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003763{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003764 struct drm_device *dev = obj->base.dev;
3765 struct drm_i915_private *dev_priv = to_i915(dev);
3766 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003767 uint32_t old_write_domain, old_read_domains;
Chris Wilson43566de2015-01-02 16:29:29 +05303768 struct i915_vma *vma;
Eric Anholte47c68e2008-11-14 13:35:19 -08003769 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003770
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003771 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3772 return 0;
3773
Chris Wilson0201f1e2012-07-20 12:41:01 +01003774 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003775 if (ret)
3776 return ret;
3777
Chris Wilson43566de2015-01-02 16:29:29 +05303778 /* Flush and acquire obj->pages so that we are coherent through
3779 * direct access in memory with previous cached writes through
3780 * shmemfs and that our cache domain tracking remains valid.
3781 * For example, if the obj->filp was moved to swap without us
3782 * being notified and releasing the pages, we would mistakenly
3783 * continue to assume that the obj remained out of the CPU cached
3784 * domain.
3785 */
3786 ret = i915_gem_object_get_pages(obj);
3787 if (ret)
3788 return ret;
3789
Daniel Vettere62b59e2015-01-21 14:53:48 +01003790 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003791
Chris Wilsond0a57782012-10-09 19:24:37 +01003792 /* Serialise direct access to this object with the barriers for
3793 * coherent writes from the GPU, by effectively invalidating the
3794 * GTT domain upon first access.
3795 */
3796 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3797 mb();
3798
Chris Wilson05394f32010-11-08 19:18:58 +00003799 old_write_domain = obj->base.write_domain;
3800 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003801
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003802 /* It should now be out of any other write domains, and we can update
3803 * the domain values for our changes.
3804 */
Chris Wilson05394f32010-11-08 19:18:58 +00003805 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3806 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003807 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003808 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3809 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3810 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003811 }
3812
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003813 trace_i915_gem_object_change_domain(obj,
3814 old_read_domains,
3815 old_write_domain);
3816
Chris Wilson8325a092012-04-24 15:52:35 +01003817 /* And bump the LRU for this access */
Chris Wilson43566de2015-01-02 16:29:29 +05303818 vma = i915_gem_obj_to_ggtt(obj);
3819 if (vma && drm_mm_node_allocated(&vma->node) && !obj->active)
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003820 list_move_tail(&vma->vm_link,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003821 &ggtt->base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003822
Eric Anholte47c68e2008-11-14 13:35:19 -08003823 return 0;
3824}
3825
Chris Wilsonef55f922015-10-09 14:11:27 +01003826/**
3827 * Changes the cache-level of an object across all VMA.
3828 *
3829 * After this function returns, the object will be in the new cache-level
3830 * across all GTT and the contents of the backing storage will be coherent,
3831 * with respect to the new cache-level. In order to keep the backing storage
3832 * coherent for all users, we only allow a single cache level to be set
3833 * globally on the object and prevent it from being changed whilst the
3834 * hardware is reading from the object. That is if the object is currently
3835 * on the scanout it will be set to uncached (or equivalent display
3836 * cache coherency) and all non-MOCS GPU access will also be uncached so
3837 * that all direct access to the scanout remains coherent.
3838 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003839int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3840 enum i915_cache_level cache_level)
3841{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003842 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003843 struct i915_vma *vma, *next;
Chris Wilsonef55f922015-10-09 14:11:27 +01003844 bool bound = false;
Ville Syrjäläed75a552015-08-11 19:47:10 +03003845 int ret = 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003846
3847 if (obj->cache_level == cache_level)
Ville Syrjäläed75a552015-08-11 19:47:10 +03003848 goto out;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003849
Chris Wilsonef55f922015-10-09 14:11:27 +01003850 /* Inspect the list of currently bound VMA and unbind any that would
3851 * be invalid given the new cache-level. This is principally to
3852 * catch the issue of the CS prefetch crossing page boundaries and
3853 * reading an invalid PTE on older architectures.
3854 */
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003855 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003856 if (!drm_mm_node_allocated(&vma->node))
3857 continue;
3858
3859 if (vma->pin_count) {
3860 DRM_DEBUG("can not change the cache level of pinned objects\n");
3861 return -EBUSY;
3862 }
3863
Chris Wilson4144f9b2014-09-11 08:43:48 +01003864 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003865 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003866 if (ret)
3867 return ret;
Chris Wilsonef55f922015-10-09 14:11:27 +01003868 } else
3869 bound = true;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003870 }
3871
Chris Wilsonef55f922015-10-09 14:11:27 +01003872 /* We can reuse the existing drm_mm nodes but need to change the
3873 * cache-level on the PTE. We could simply unbind them all and
3874 * rebind with the correct cache-level on next use. However since
3875 * we already have a valid slot, dma mapping, pages etc, we may as
3876 * rewrite the PTE in the belief that doing so tramples upon less
3877 * state and so involves less work.
3878 */
3879 if (bound) {
3880 /* Before we change the PTE, the GPU must not be accessing it.
3881 * If we wait upon the object, we know that all the bound
3882 * VMA are no longer active.
3883 */
Chris Wilson2e2f3512015-04-27 13:41:14 +01003884 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003885 if (ret)
3886 return ret;
3887
Chris Wilsonef55f922015-10-09 14:11:27 +01003888 if (!HAS_LLC(dev) && cache_level != I915_CACHE_NONE) {
3889 /* Access to snoopable pages through the GTT is
3890 * incoherent and on some machines causes a hard
3891 * lockup. Relinquish the CPU mmaping to force
3892 * userspace to refault in the pages and we can
3893 * then double check if the GTT mapping is still
3894 * valid for that pointer access.
3895 */
3896 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003897
Chris Wilsonef55f922015-10-09 14:11:27 +01003898 /* As we no longer need a fence for GTT access,
3899 * we can relinquish it now (and so prevent having
3900 * to steal a fence from someone else on the next
3901 * fence request). Note GPU activity would have
3902 * dropped the fence as all snoopable access is
3903 * supposed to be linear.
3904 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003905 ret = i915_gem_object_put_fence(obj);
3906 if (ret)
3907 return ret;
Chris Wilsonef55f922015-10-09 14:11:27 +01003908 } else {
3909 /* We either have incoherent backing store and
3910 * so no GTT access or the architecture is fully
3911 * coherent. In such cases, existing GTT mmaps
3912 * ignore the cache bit in the PTE and we can
3913 * rewrite it without confusing the GPU or having
3914 * to force userspace to fault back in its mmaps.
3915 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003916 }
3917
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003918 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003919 if (!drm_mm_node_allocated(&vma->node))
3920 continue;
3921
3922 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3923 if (ret)
3924 return ret;
3925 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003926 }
3927
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003928 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003929 vma->node.color = cache_level;
3930 obj->cache_level = cache_level;
3931
Ville Syrjäläed75a552015-08-11 19:47:10 +03003932out:
Chris Wilsonef55f922015-10-09 14:11:27 +01003933 /* Flush the dirty CPU caches to the backing storage so that the
3934 * object is now coherent at its new cache level (with respect
3935 * to the access domain).
3936 */
Chris Wilson0f719792015-01-13 13:32:52 +00003937 if (obj->cache_dirty &&
3938 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
3939 cpu_write_needs_clflush(obj)) {
3940 if (i915_gem_clflush_object(obj, true))
3941 i915_gem_chipset_flush(obj->base.dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003942 }
3943
Chris Wilsone4ffd172011-04-04 09:44:39 +01003944 return 0;
3945}
3946
Ben Widawsky199adf42012-09-21 17:01:20 -07003947int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3948 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003949{
Ben Widawsky199adf42012-09-21 17:01:20 -07003950 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003951 struct drm_i915_gem_object *obj;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003952
3953 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson432be692015-05-07 12:14:55 +01003954 if (&obj->base == NULL)
3955 return -ENOENT;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003956
Chris Wilson651d7942013-08-08 14:41:10 +01003957 switch (obj->cache_level) {
3958 case I915_CACHE_LLC:
3959 case I915_CACHE_L3_LLC:
3960 args->caching = I915_CACHING_CACHED;
3961 break;
3962
Chris Wilson4257d3b2013-08-08 14:41:11 +01003963 case I915_CACHE_WT:
3964 args->caching = I915_CACHING_DISPLAY;
3965 break;
3966
Chris Wilson651d7942013-08-08 14:41:10 +01003967 default:
3968 args->caching = I915_CACHING_NONE;
3969 break;
3970 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003971
Chris Wilson432be692015-05-07 12:14:55 +01003972 drm_gem_object_unreference_unlocked(&obj->base);
3973 return 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003974}
3975
Ben Widawsky199adf42012-09-21 17:01:20 -07003976int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3977 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003978{
Imre Deakfd0fe6a2015-11-04 21:25:32 +02003979 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky199adf42012-09-21 17:01:20 -07003980 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003981 struct drm_i915_gem_object *obj;
3982 enum i915_cache_level level;
3983 int ret;
3984
Ben Widawsky199adf42012-09-21 17:01:20 -07003985 switch (args->caching) {
3986 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003987 level = I915_CACHE_NONE;
3988 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003989 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003990 /*
3991 * Due to a HW issue on BXT A stepping, GPU stores via a
3992 * snooped mapping may leave stale data in a corresponding CPU
3993 * cacheline, whereas normally such cachelines would get
3994 * invalidated.
3995 */
Tvrtko Ursulinca377802016-03-02 12:10:31 +00003996 if (!HAS_LLC(dev) && !HAS_SNOOP(dev))
Imre Deake5756c12015-08-14 18:43:30 +03003997 return -ENODEV;
3998
Chris Wilsone6994ae2012-07-10 10:27:08 +01003999 level = I915_CACHE_LLC;
4000 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01004001 case I915_CACHING_DISPLAY:
4002 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
4003 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01004004 default:
4005 return -EINVAL;
4006 }
4007
Imre Deakfd0fe6a2015-11-04 21:25:32 +02004008 intel_runtime_pm_get(dev_priv);
4009
Ben Widawsky3bc29132012-09-26 16:15:20 -07004010 ret = i915_mutex_lock_interruptible(dev);
4011 if (ret)
Imre Deakfd0fe6a2015-11-04 21:25:32 +02004012 goto rpm_put;
Ben Widawsky3bc29132012-09-26 16:15:20 -07004013
Chris Wilsone6994ae2012-07-10 10:27:08 +01004014 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
4015 if (&obj->base == NULL) {
4016 ret = -ENOENT;
4017 goto unlock;
4018 }
4019
4020 ret = i915_gem_object_set_cache_level(obj, level);
4021
4022 drm_gem_object_unreference(&obj->base);
4023unlock:
4024 mutex_unlock(&dev->struct_mutex);
Imre Deakfd0fe6a2015-11-04 21:25:32 +02004025rpm_put:
4026 intel_runtime_pm_put(dev_priv);
4027
Chris Wilsone6994ae2012-07-10 10:27:08 +01004028 return ret;
4029}
4030
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004031/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004032 * Prepare buffer for display plane (scanout, cursors, etc).
4033 * Can be called from an uninterruptible phase (modesetting) and allows
4034 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004035 */
4036int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004037i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
4038 u32 alignment,
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004039 const struct i915_ggtt_view *view)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004040{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004041 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004042 int ret;
4043
Chris Wilsoncc98b412013-08-09 12:25:09 +01004044 /* Mark the pin_display early so that we account for the
4045 * display coherency whilst setting up the cache domains.
4046 */
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004047 obj->pin_display++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004048
Eric Anholta7ef0642011-03-29 16:59:54 -07004049 /* The display engine is not coherent with the LLC cache on gen6. As
4050 * a result, we make sure that the pinning that is about to occur is
4051 * done with uncached PTEs. This is lowest common denominator for all
4052 * chipsets.
4053 *
4054 * However for gen6+, we could do better by using the GFDT bit instead
4055 * of uncaching, which would allow us to flush all the LLC-cached data
4056 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
4057 */
Chris Wilson651d7942013-08-08 14:41:10 +01004058 ret = i915_gem_object_set_cache_level(obj,
4059 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07004060 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01004061 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07004062
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004063 /* As the user may map the buffer once pinned in the display plane
4064 * (e.g. libkms for the bootup splash), we have to ensure that we
4065 * always use map_and_fenceable for all scanout buffers.
4066 */
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00004067 ret = i915_gem_object_ggtt_pin(obj, view, alignment,
4068 view->type == I915_GGTT_VIEW_NORMAL ?
4069 PIN_MAPPABLE : 0);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004070 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01004071 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004072
Daniel Vettere62b59e2015-01-21 14:53:48 +01004073 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01004074
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004075 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00004076 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004077
4078 /* It should now be out of any other write domains, and we can update
4079 * the domain values for our changes.
4080 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01004081 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004082 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004083
4084 trace_i915_gem_object_change_domain(obj,
4085 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004086 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004087
4088 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004089
4090err_unpin_display:
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004091 obj->pin_display--;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004092 return ret;
4093}
4094
4095void
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004096i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj,
4097 const struct i915_ggtt_view *view)
Chris Wilsoncc98b412013-08-09 12:25:09 +01004098{
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004099 if (WARN_ON(obj->pin_display == 0))
4100 return;
4101
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004102 i915_gem_object_ggtt_unpin_view(obj, view);
4103
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004104 obj->pin_display--;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004105}
4106
Eric Anholte47c68e2008-11-14 13:35:19 -08004107/**
4108 * Moves a single object to the CPU read, and possibly write domain.
4109 *
4110 * This function returns when the move is complete, including waiting on
4111 * flushes to occur.
4112 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004113int
Chris Wilson919926a2010-11-12 13:42:53 +00004114i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004115{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004116 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004117 int ret;
4118
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004119 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4120 return 0;
4121
Chris Wilson0201f1e2012-07-20 12:41:01 +01004122 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004123 if (ret)
4124 return ret;
4125
Eric Anholte47c68e2008-11-14 13:35:19 -08004126 i915_gem_object_flush_gtt_write_domain(obj);
4127
Chris Wilson05394f32010-11-08 19:18:58 +00004128 old_write_domain = obj->base.write_domain;
4129 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004130
Eric Anholte47c68e2008-11-14 13:35:19 -08004131 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004132 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004133 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004134
Chris Wilson05394f32010-11-08 19:18:58 +00004135 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004136 }
4137
4138 /* It should now be out of any other write domains, and we can update
4139 * the domain values for our changes.
4140 */
Chris Wilson05394f32010-11-08 19:18:58 +00004141 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004142
4143 /* If we're writing through the CPU, then the GPU read domains will
4144 * need to be invalidated at next use.
4145 */
4146 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004147 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4148 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004149 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004150
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004151 trace_i915_gem_object_change_domain(obj,
4152 old_read_domains,
4153 old_write_domain);
4154
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004155 return 0;
4156}
4157
Eric Anholt673a3942008-07-30 12:06:12 -07004158/* Throttle our rendering by waiting until the ring has completed our requests
4159 * emitted over 20 msec ago.
4160 *
Eric Anholtb9624422009-06-03 07:27:35 +00004161 * Note that if we were to use the current jiffies each time around the loop,
4162 * we wouldn't escape the function with any frames outstanding if the time to
4163 * render a frame was over 20ms.
4164 *
Eric Anholt673a3942008-07-30 12:06:12 -07004165 * This should get us reasonable parallelism between CPU and GPU but also
4166 * relatively low latency when blocking on a particular request to finish.
4167 */
4168static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004169i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004170{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004171 struct drm_i915_private *dev_priv = dev->dev_private;
4172 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004173 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
John Harrison54fb2412014-11-24 18:49:27 +00004174 struct drm_i915_gem_request *request, *target = NULL;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004175 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004176
Daniel Vetter308887a2012-11-14 17:14:06 +01004177 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4178 if (ret)
4179 return ret;
4180
Chris Wilsonf4457ae2016-04-13 17:35:08 +01004181 /* ABI: return -EIO if already wedged */
4182 if (i915_terminally_wedged(&dev_priv->gpu_error))
4183 return -EIO;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004184
Chris Wilson1c255952010-09-26 11:03:27 +01004185 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004186 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004187 if (time_after_eq(request->emitted_jiffies, recent_enough))
4188 break;
4189
John Harrisonfcfa423c2015-05-29 17:44:12 +01004190 /*
4191 * Note that the request might not have been submitted yet.
4192 * In which case emitted_jiffies will be zero.
4193 */
4194 if (!request->emitted_jiffies)
4195 continue;
4196
John Harrison54fb2412014-11-24 18:49:27 +00004197 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004198 }
John Harrisonff865882014-11-24 18:49:28 +00004199 if (target)
4200 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004201 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004202
John Harrison54fb2412014-11-24 18:49:27 +00004203 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004204 return 0;
4205
Chris Wilson299259a2016-04-13 17:35:06 +01004206 ret = __i915_wait_request(target, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004207 if (ret == 0)
4208 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004209
Chris Wilson41037f92015-03-27 11:01:36 +00004210 i915_gem_request_unreference__unlocked(target);
John Harrisonff865882014-11-24 18:49:28 +00004211
Eric Anholt673a3942008-07-30 12:06:12 -07004212 return ret;
4213}
4214
Chris Wilsond23db882014-05-23 08:48:08 +02004215static bool
4216i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4217{
4218 struct drm_i915_gem_object *obj = vma->obj;
4219
4220 if (alignment &&
4221 vma->node.start & (alignment - 1))
4222 return true;
4223
4224 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4225 return true;
4226
4227 if (flags & PIN_OFFSET_BIAS &&
4228 vma->node.start < (flags & PIN_OFFSET_MASK))
4229 return true;
4230
Chris Wilson506a8e82015-12-08 11:55:07 +00004231 if (flags & PIN_OFFSET_FIXED &&
4232 vma->node.start != (flags & PIN_OFFSET_MASK))
4233 return true;
4234
Chris Wilsond23db882014-05-23 08:48:08 +02004235 return false;
4236}
4237
Chris Wilsond0710ab2015-11-20 14:16:39 +00004238void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
4239{
4240 struct drm_i915_gem_object *obj = vma->obj;
4241 bool mappable, fenceable;
4242 u32 fence_size, fence_alignment;
4243
4244 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4245 obj->base.size,
4246 obj->tiling_mode);
4247 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4248 obj->base.size,
4249 obj->tiling_mode,
4250 true);
4251
4252 fenceable = (vma->node.size == fence_size &&
4253 (vma->node.start & (fence_alignment - 1)) == 0);
4254
4255 mappable = (vma->node.start + fence_size <=
Joonas Lahtinen62106b42016-03-18 10:42:57 +02004256 to_i915(obj->base.dev)->ggtt.mappable_end);
Chris Wilsond0710ab2015-11-20 14:16:39 +00004257
4258 obj->map_and_fenceable = mappable && fenceable;
4259}
4260
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004261static int
4262i915_gem_object_do_pin(struct drm_i915_gem_object *obj,
4263 struct i915_address_space *vm,
4264 const struct i915_ggtt_view *ggtt_view,
4265 uint32_t alignment,
4266 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004267{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004268 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004269 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004270 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004271 int ret;
4272
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004273 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4274 return -ENODEV;
4275
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004276 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004277 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004278
Chris Wilsonc826c442014-10-31 13:53:53 +00004279 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4280 return -EINVAL;
4281
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004282 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
4283 return -EINVAL;
4284
4285 vma = ggtt_view ? i915_gem_obj_to_ggtt_view(obj, ggtt_view) :
4286 i915_gem_obj_to_vma(obj, vm);
4287
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004288 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004289 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4290 return -EBUSY;
4291
Chris Wilsond23db882014-05-23 08:48:08 +02004292 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004293 WARN(vma->pin_count,
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004294 "bo is already pinned in %s with incorrect alignment:"
Michel Thierry088e0df2015-08-07 17:40:17 +01004295 " offset=%08x %08x, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004296 " obj->map_and_fenceable=%d\n",
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004297 ggtt_view ? "ggtt" : "ppgtt",
Michel Thierry088e0df2015-08-07 17:40:17 +01004298 upper_32_bits(vma->node.start),
4299 lower_32_bits(vma->node.start),
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004300 alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004301 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004302 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004303 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004304 if (ret)
4305 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004306
4307 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004308 }
4309 }
4310
Chris Wilsonef79e172014-10-31 13:53:52 +00004311 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004312 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004313 vma = i915_gem_object_bind_to_vm(obj, vm, ggtt_view, alignment,
4314 flags);
Daniel Vetter262de142014-02-14 14:01:20 +01004315 if (IS_ERR(vma))
4316 return PTR_ERR(vma);
Daniel Vetter08755462015-04-20 09:04:05 -07004317 } else {
4318 ret = i915_vma_bind(vma, obj->cache_level, flags);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004319 if (ret)
4320 return ret;
4321 }
Daniel Vetter74898d72012-02-15 23:50:22 +01004322
Joonas Lahtinen91e67112015-05-06 14:33:58 +03004323 if (ggtt_view && ggtt_view->type == I915_GGTT_VIEW_NORMAL &&
4324 (bound ^ vma->bound) & GLOBAL_BIND) {
Chris Wilsond0710ab2015-11-20 14:16:39 +00004325 __i915_vma_set_map_and_fenceable(vma);
Joonas Lahtinen91e67112015-05-06 14:33:58 +03004326 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4327 }
Chris Wilsonef79e172014-10-31 13:53:52 +00004328
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004329 vma->pin_count++;
Eric Anholt673a3942008-07-30 12:06:12 -07004330 return 0;
4331}
4332
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004333int
4334i915_gem_object_pin(struct drm_i915_gem_object *obj,
4335 struct i915_address_space *vm,
4336 uint32_t alignment,
4337 uint64_t flags)
4338{
4339 return i915_gem_object_do_pin(obj, vm,
4340 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL,
4341 alignment, flags);
4342}
4343
4344int
4345i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
4346 const struct i915_ggtt_view *view,
4347 uint32_t alignment,
4348 uint64_t flags)
4349{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004350 struct drm_device *dev = obj->base.dev;
4351 struct drm_i915_private *dev_priv = to_i915(dev);
4352 struct i915_ggtt *ggtt = &dev_priv->ggtt;
4353
Matthew Auldade7daa2016-03-24 15:54:20 +00004354 BUG_ON(!view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004355
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004356 return i915_gem_object_do_pin(obj, &ggtt->base, view,
Tvrtko Ursulin6fafab72015-03-17 15:36:51 +00004357 alignment, flags | PIN_GLOBAL);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004358}
4359
Eric Anholt673a3942008-07-30 12:06:12 -07004360void
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004361i915_gem_object_ggtt_unpin_view(struct drm_i915_gem_object *obj,
4362 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07004363{
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004364 struct i915_vma *vma = i915_gem_obj_to_ggtt_view(obj, view);
Eric Anholt673a3942008-07-30 12:06:12 -07004365
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004366 BUG_ON(!vma);
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004367 WARN_ON(vma->pin_count == 0);
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02004368 WARN_ON(!i915_gem_obj_ggtt_bound_view(obj, view));
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004369
Chris Wilson30154652015-04-07 17:28:24 +01004370 --vma->pin_count;
Eric Anholt673a3942008-07-30 12:06:12 -07004371}
4372
4373int
Eric Anholt673a3942008-07-30 12:06:12 -07004374i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004375 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004376{
4377 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004378 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004379 int ret;
4380
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004381 ret = i915_mutex_lock_interruptible(dev);
4382 if (ret)
4383 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004384
Chris Wilson05394f32010-11-08 19:18:58 +00004385 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004386 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004387 ret = -ENOENT;
4388 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004389 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004390
Chris Wilson0be555b2010-08-04 15:36:30 +01004391 /* Count all active objects as busy, even if they are currently not used
4392 * by the gpu. Users of this interface expect objects to eventually
4393 * become non-busy without any further actions, therefore emit any
4394 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004395 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004396 ret = i915_gem_object_flush_active(obj);
Chris Wilsonb4716182015-04-27 13:41:17 +01004397 if (ret)
4398 goto unref;
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004399
Chris Wilson426960b2016-01-15 16:51:46 +00004400 args->busy = 0;
4401 if (obj->active) {
4402 int i;
4403
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00004404 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilson426960b2016-01-15 16:51:46 +00004405 struct drm_i915_gem_request *req;
4406
4407 req = obj->last_read_req[i];
4408 if (req)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004409 args->busy |= 1 << (16 + req->engine->exec_id);
Chris Wilson426960b2016-01-15 16:51:46 +00004410 }
4411 if (obj->last_write_req)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004412 args->busy |= obj->last_write_req->engine->exec_id;
Chris Wilson426960b2016-01-15 16:51:46 +00004413 }
Eric Anholt673a3942008-07-30 12:06:12 -07004414
Chris Wilsonb4716182015-04-27 13:41:17 +01004415unref:
Chris Wilson05394f32010-11-08 19:18:58 +00004416 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004417unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004418 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004419 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004420}
4421
4422int
4423i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4424 struct drm_file *file_priv)
4425{
Akshay Joshi0206e352011-08-16 15:34:10 -04004426 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004427}
4428
Chris Wilson3ef94da2009-09-14 16:50:29 +01004429int
4430i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4431 struct drm_file *file_priv)
4432{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004433 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004434 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004435 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004436 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004437
4438 switch (args->madv) {
4439 case I915_MADV_DONTNEED:
4440 case I915_MADV_WILLNEED:
4441 break;
4442 default:
4443 return -EINVAL;
4444 }
4445
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004446 ret = i915_mutex_lock_interruptible(dev);
4447 if (ret)
4448 return ret;
4449
Chris Wilson05394f32010-11-08 19:18:58 +00004450 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004451 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004452 ret = -ENOENT;
4453 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004454 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004455
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004456 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004457 ret = -EINVAL;
4458 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004459 }
4460
Daniel Vetter656bfa32014-11-20 09:26:30 +01004461 if (obj->pages &&
4462 obj->tiling_mode != I915_TILING_NONE &&
4463 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4464 if (obj->madv == I915_MADV_WILLNEED)
4465 i915_gem_object_unpin_pages(obj);
4466 if (args->madv == I915_MADV_WILLNEED)
4467 i915_gem_object_pin_pages(obj);
4468 }
4469
Chris Wilson05394f32010-11-08 19:18:58 +00004470 if (obj->madv != __I915_MADV_PURGED)
4471 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004472
Chris Wilson6c085a72012-08-20 11:40:46 +02004473 /* if the object is no longer attached, discard its backing storage */
Daniel Vetterbe6a0372015-03-18 10:46:04 +01004474 if (obj->madv == I915_MADV_DONTNEED && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004475 i915_gem_object_truncate(obj);
4476
Chris Wilson05394f32010-11-08 19:18:58 +00004477 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004478
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004479out:
Chris Wilson05394f32010-11-08 19:18:58 +00004480 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004481unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004482 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004483 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004484}
4485
Chris Wilson37e680a2012-06-07 15:38:42 +01004486void i915_gem_object_init(struct drm_i915_gem_object *obj,
4487 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004488{
Chris Wilsonb4716182015-04-27 13:41:17 +01004489 int i;
4490
Ben Widawsky35c20a62013-05-31 11:28:48 -07004491 INIT_LIST_HEAD(&obj->global_list);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00004492 for (i = 0; i < I915_NUM_ENGINES; i++)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004493 INIT_LIST_HEAD(&obj->engine_list[i]);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004494 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004495 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01004496 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004497
Chris Wilson37e680a2012-06-07 15:38:42 +01004498 obj->ops = ops;
4499
Chris Wilson0327d6b2012-08-11 15:41:06 +01004500 obj->fence_reg = I915_FENCE_REG_NONE;
4501 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004502
4503 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4504}
4505
Chris Wilson37e680a2012-06-07 15:38:42 +01004506static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Chris Wilsonde472662016-01-22 18:32:31 +00004507 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE,
Chris Wilson37e680a2012-06-07 15:38:42 +01004508 .get_pages = i915_gem_object_get_pages_gtt,
4509 .put_pages = i915_gem_object_put_pages_gtt,
4510};
4511
Chris Wilson05394f32010-11-08 19:18:58 +00004512struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4513 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004514{
Daniel Vetterc397b902010-04-09 19:05:07 +00004515 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004516 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004517 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004518
Chris Wilson42dcedd2012-11-15 11:32:30 +00004519 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004520 if (obj == NULL)
4521 return NULL;
4522
4523 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004524 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004525 return NULL;
4526 }
4527
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004528 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4529 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4530 /* 965gm cannot relocate objects above 4GiB. */
4531 mask &= ~__GFP_HIGHMEM;
4532 mask |= __GFP_DMA32;
4533 }
4534
Al Viro496ad9a2013-01-23 17:07:38 -05004535 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004536 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004537
Chris Wilson37e680a2012-06-07 15:38:42 +01004538 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004539
Daniel Vetterc397b902010-04-09 19:05:07 +00004540 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4541 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4542
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004543 if (HAS_LLC(dev)) {
4544 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004545 * cache) for about a 10% performance improvement
4546 * compared to uncached. Graphics requests other than
4547 * display scanout are coherent with the CPU in
4548 * accessing this cache. This means in this mode we
4549 * don't need to clflush on the CPU side, and on the
4550 * GPU side we only need to flush internal caches to
4551 * get data visible to the CPU.
4552 *
4553 * However, we maintain the display planes as UC, and so
4554 * need to rebind when first used as such.
4555 */
4556 obj->cache_level = I915_CACHE_LLC;
4557 } else
4558 obj->cache_level = I915_CACHE_NONE;
4559
Daniel Vetterd861e332013-07-24 23:25:03 +02004560 trace_i915_gem_object_create(obj);
4561
Chris Wilson05394f32010-11-08 19:18:58 +00004562 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004563}
4564
Chris Wilson340fbd82014-05-22 09:16:52 +01004565static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4566{
4567 /* If we are the last user of the backing storage (be it shmemfs
4568 * pages or stolen etc), we know that the pages are going to be
4569 * immediately released. In this case, we can then skip copying
4570 * back the contents from the GPU.
4571 */
4572
4573 if (obj->madv != I915_MADV_WILLNEED)
4574 return false;
4575
4576 if (obj->base.filp == NULL)
4577 return true;
4578
4579 /* At first glance, this looks racy, but then again so would be
4580 * userspace racing mmap against close. However, the first external
4581 * reference to the filp can only be obtained through the
4582 * i915_gem_mmap_ioctl() which safeguards us against the user
4583 * acquiring such a reference whilst we are in the middle of
4584 * freeing the object.
4585 */
4586 return atomic_long_read(&obj->base.filp->f_count) == 1;
4587}
4588
Chris Wilson1488fc02012-04-24 15:47:31 +01004589void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004590{
Chris Wilson1488fc02012-04-24 15:47:31 +01004591 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004592 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004593 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004594 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004595
Paulo Zanonif65c9162013-11-27 18:20:34 -02004596 intel_runtime_pm_get(dev_priv);
4597
Chris Wilson26e12f892011-03-20 11:20:19 +00004598 trace_i915_gem_object_destroy(obj);
4599
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004600 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004601 int ret;
4602
4603 vma->pin_count = 0;
4604 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004605 if (WARN_ON(ret == -ERESTARTSYS)) {
4606 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004607
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004608 was_interruptible = dev_priv->mm.interruptible;
4609 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004610
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004611 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004612
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004613 dev_priv->mm.interruptible = was_interruptible;
4614 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004615 }
4616
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004617 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4618 * before progressing. */
4619 if (obj->stolen)
4620 i915_gem_object_unpin_pages(obj);
4621
Daniel Vettera071fa02014-06-18 23:28:09 +02004622 WARN_ON(obj->frontbuffer_bits);
4623
Daniel Vetter656bfa32014-11-20 09:26:30 +01004624 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4625 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4626 obj->tiling_mode != I915_TILING_NONE)
4627 i915_gem_object_unpin_pages(obj);
4628
Ben Widawsky401c29f2013-05-31 11:28:47 -07004629 if (WARN_ON(obj->pages_pin_count))
4630 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004631 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004632 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004633 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004634 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004635
Chris Wilson9da3da62012-06-01 15:20:22 +01004636 BUG_ON(obj->pages);
4637
Chris Wilson2f745ad2012-09-04 21:02:58 +01004638 if (obj->base.import_attach)
4639 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004640
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004641 if (obj->ops->release)
4642 obj->ops->release(obj);
4643
Chris Wilson05394f32010-11-08 19:18:58 +00004644 drm_gem_object_release(&obj->base);
4645 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004646
Chris Wilson05394f32010-11-08 19:18:58 +00004647 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004648 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004649
4650 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004651}
4652
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004653struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
4654 struct i915_address_space *vm)
Ben Widawsky2f633152013-07-17 12:19:03 -07004655{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004656 struct i915_vma *vma;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004657 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Tvrtko Ursulin1b683722015-11-12 11:59:55 +00004658 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL &&
4659 vma->vm == vm)
Daniel Vettere656a6c2013-08-14 14:14:04 +02004660 return vma;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004661 }
4662 return NULL;
4663}
Daniel Vettere656a6c2013-08-14 14:14:04 +02004664
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004665struct i915_vma *i915_gem_obj_to_ggtt_view(struct drm_i915_gem_object *obj,
4666 const struct i915_ggtt_view *view)
4667{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004668 struct drm_device *dev = obj->base.dev;
4669 struct drm_i915_private *dev_priv = to_i915(dev);
4670 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004671 struct i915_vma *vma;
4672
Matthew Auldade7daa2016-03-24 15:54:20 +00004673 BUG_ON(!view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004674
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004675 list_for_each_entry(vma, &obj->vma_list, obj_link)
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004676 if (vma->vm == &ggtt->base &&
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02004677 i915_ggtt_view_equal(&vma->ggtt_view, view))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004678 return vma;
Daniel Vettere656a6c2013-08-14 14:14:04 +02004679 return NULL;
4680}
4681
Ben Widawsky2f633152013-07-17 12:19:03 -07004682void i915_gem_vma_destroy(struct i915_vma *vma)
4683{
4684 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004685
4686 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4687 if (!list_empty(&vma->exec_list))
4688 return;
4689
Chris Wilson596c5922016-02-26 11:03:20 +00004690 if (!vma->is_ggtt)
4691 i915_ppgtt_put(i915_vm_to_ppgtt(vma->vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004692
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004693 list_del(&vma->obj_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004694
Chris Wilsone20d2ab2015-04-07 16:20:58 +01004695 kmem_cache_free(to_i915(vma->obj->base.dev)->vmas, vma);
Ben Widawsky2f633152013-07-17 12:19:03 -07004696}
4697
Chris Wilsone3efda42014-04-09 09:19:41 +01004698static void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004699i915_gem_stop_engines(struct drm_device *dev)
Chris Wilsone3efda42014-04-09 09:19:41 +01004700{
4701 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004702 struct intel_engine_cs *engine;
Chris Wilsone3efda42014-04-09 09:19:41 +01004703
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004704 for_each_engine(engine, dev_priv)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004705 dev_priv->gt.stop_engine(engine);
Chris Wilsone3efda42014-04-09 09:19:41 +01004706}
4707
Jesse Barnes5669fca2009-02-17 15:13:31 -08004708int
Chris Wilson45c5f202013-10-16 11:50:01 +01004709i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004710{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004711 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004712 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004713
Chris Wilson45c5f202013-10-16 11:50:01 +01004714 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004715 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004716 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004717 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004718
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004719 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004720
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004721 i915_gem_stop_engines(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004722 mutex_unlock(&dev->struct_mutex);
4723
Chris Wilson737b1502015-01-26 18:03:03 +02004724 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004725 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004726 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004727
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004728 /* Assert that we sucessfully flushed all the work and
4729 * reset the GPU back to its idle, low power state.
4730 */
4731 WARN_ON(dev_priv->mm.busy);
4732
Eric Anholt673a3942008-07-30 12:06:12 -07004733 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004734
4735err:
4736 mutex_unlock(&dev->struct_mutex);
4737 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004738}
4739
John Harrison6909a662015-05-29 17:43:51 +01004740int i915_gem_l3_remap(struct drm_i915_gem_request *req, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004741{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004742 struct intel_engine_cs *engine = req->engine;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004743 struct drm_device *dev = engine->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004744 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004745 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004746 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004747
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004748 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004749 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004750
John Harrison5fb9de12015-05-29 17:44:07 +01004751 ret = intel_ring_begin(req, GEN7_L3LOG_SIZE / 4 * 3);
Ben Widawskyc3787e22013-09-17 21:12:44 -07004752 if (ret)
4753 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004754
Ben Widawskyc3787e22013-09-17 21:12:44 -07004755 /*
4756 * Note: We do not worry about the concurrent register cacheline hang
4757 * here because no other code should access these registers other than
4758 * at initialization time.
4759 */
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02004760 for (i = 0; i < GEN7_L3LOG_SIZE / 4; i++) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004761 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
4762 intel_ring_emit_reg(engine, GEN7_L3LOG(slice, i));
4763 intel_ring_emit(engine, remap_info[i]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004764 }
4765
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004766 intel_ring_advance(engine);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004767
Ben Widawskyc3787e22013-09-17 21:12:44 -07004768 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004769}
4770
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004771void i915_gem_init_swizzling(struct drm_device *dev)
4772{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004773 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004774
Daniel Vetter11782b02012-01-31 16:47:55 +01004775 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004776 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4777 return;
4778
4779 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4780 DISP_TILE_SURFACE_SWIZZLING);
4781
Daniel Vetter11782b02012-01-31 16:47:55 +01004782 if (IS_GEN5(dev))
4783 return;
4784
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004785 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4786 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004787 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004788 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004789 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004790 else if (IS_GEN8(dev))
4791 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004792 else
4793 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004794}
Daniel Vettere21af882012-02-09 20:53:27 +01004795
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004796static void init_unused_ring(struct drm_device *dev, u32 base)
4797{
4798 struct drm_i915_private *dev_priv = dev->dev_private;
4799
4800 I915_WRITE(RING_CTL(base), 0);
4801 I915_WRITE(RING_HEAD(base), 0);
4802 I915_WRITE(RING_TAIL(base), 0);
4803 I915_WRITE(RING_START(base), 0);
4804}
4805
4806static void init_unused_rings(struct drm_device *dev)
4807{
4808 if (IS_I830(dev)) {
4809 init_unused_ring(dev, PRB1_BASE);
4810 init_unused_ring(dev, SRB0_BASE);
4811 init_unused_ring(dev, SRB1_BASE);
4812 init_unused_ring(dev, SRB2_BASE);
4813 init_unused_ring(dev, SRB3_BASE);
4814 } else if (IS_GEN2(dev)) {
4815 init_unused_ring(dev, SRB0_BASE);
4816 init_unused_ring(dev, SRB1_BASE);
4817 } else if (IS_GEN3(dev)) {
4818 init_unused_ring(dev, PRB1_BASE);
4819 init_unused_ring(dev, PRB2_BASE);
4820 }
4821}
4822
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004823int i915_gem_init_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004824{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004825 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004826 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004827
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004828 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004829 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004830 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004831
4832 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004833 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004834 if (ret)
4835 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004836 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004837
Jani Nikulad39398f2015-10-07 11:17:44 +03004838 if (HAS_BLT(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004839 ret = intel_init_blt_ring_buffer(dev);
4840 if (ret)
4841 goto cleanup_bsd_ring;
4842 }
4843
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004844 if (HAS_VEBOX(dev)) {
4845 ret = intel_init_vebox_ring_buffer(dev);
4846 if (ret)
4847 goto cleanup_blt_ring;
4848 }
4849
Zhao Yakui845f74a2014-04-17 10:37:37 +08004850 if (HAS_BSD2(dev)) {
4851 ret = intel_init_bsd2_ring_buffer(dev);
4852 if (ret)
4853 goto cleanup_vebox_ring;
4854 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004855
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004856 return 0;
4857
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004858cleanup_vebox_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004859 intel_cleanup_engine(&dev_priv->engine[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004860cleanup_blt_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004861 intel_cleanup_engine(&dev_priv->engine[BCS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004862cleanup_bsd_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004863 intel_cleanup_engine(&dev_priv->engine[VCS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004864cleanup_render_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004865 intel_cleanup_engine(&dev_priv->engine[RCS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004866
4867 return ret;
4868}
4869
4870int
4871i915_gem_init_hw(struct drm_device *dev)
4872{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004873 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004874 struct intel_engine_cs *engine;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004875 int ret, j;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004876
4877 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4878 return -EIO;
4879
Chris Wilson5e4f5182015-02-13 14:35:59 +00004880 /* Double layer security blanket, see i915_gem_init() */
4881 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4882
Mika Kuoppala3accaf72016-04-13 17:26:43 +03004883 if (HAS_EDRAM(dev) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004884 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004885
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004886 if (IS_HASWELL(dev))
4887 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4888 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004889
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004890 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004891 if (IS_IVYBRIDGE(dev)) {
4892 u32 temp = I915_READ(GEN7_MSG_CTL);
4893 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4894 I915_WRITE(GEN7_MSG_CTL, temp);
4895 } else if (INTEL_INFO(dev)->gen >= 7) {
4896 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4897 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4898 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4899 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004900 }
4901
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004902 i915_gem_init_swizzling(dev);
4903
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004904 /*
4905 * At least 830 can leave some of the unused rings
4906 * "active" (ie. head != tail) after resume which
4907 * will prevent c3 entry. Makes sure all unused rings
4908 * are totally idle.
4909 */
4910 init_unused_rings(dev);
4911
Dave Gordoned54c1a2016-01-19 19:02:54 +00004912 BUG_ON(!dev_priv->kernel_context);
John Harrison90638cc2015-05-29 17:43:37 +01004913
John Harrison4ad2fd82015-06-18 13:11:20 +01004914 ret = i915_ppgtt_init_hw(dev);
4915 if (ret) {
4916 DRM_ERROR("PPGTT enable HW failed %d\n", ret);
4917 goto out;
4918 }
4919
4920 /* Need to do basic initialisation of all rings first: */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004921 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004922 ret = engine->init_hw(engine);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004923 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004924 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004925 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004926
Alex Dai33a732f2015-08-12 15:43:36 +01004927 /* We can't enable contexts until all firmware is loaded */
Jesse Barnes87bcdd22015-09-10 14:55:00 -07004928 if (HAS_GUC_UCODE(dev)) {
4929 ret = intel_guc_ucode_load(dev);
4930 if (ret) {
Daniel Vetter9f9e5392015-10-23 11:10:59 +02004931 DRM_ERROR("Failed to initialize GuC, error %d\n", ret);
4932 ret = -EIO;
4933 goto out;
Jesse Barnes87bcdd22015-09-10 14:55:00 -07004934 }
Alex Dai33a732f2015-08-12 15:43:36 +01004935 }
4936
Nick Hoathe84fe802015-09-11 12:53:46 +01004937 /*
4938 * Increment the next seqno by 0x100 so we have a visible break
4939 * on re-initialisation
4940 */
4941 ret = i915_gem_set_seqno(dev, dev_priv->next_seqno+0x100);
4942 if (ret)
4943 goto out;
4944
John Harrison4ad2fd82015-06-18 13:11:20 +01004945 /* Now it is safe to go back round and do everything else: */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004946 for_each_engine(engine, dev_priv) {
John Harrisondc4be60712015-05-29 17:43:39 +01004947 struct drm_i915_gem_request *req;
4948
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004949 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +00004950 if (IS_ERR(req)) {
4951 ret = PTR_ERR(req);
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004952 i915_gem_cleanup_engines(dev);
John Harrisondc4be60712015-05-29 17:43:39 +01004953 goto out;
4954 }
4955
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004956 if (engine->id == RCS) {
John Harrison4ad2fd82015-06-18 13:11:20 +01004957 for (j = 0; j < NUM_L3_SLICES(dev); j++)
John Harrison6909a662015-05-29 17:43:51 +01004958 i915_gem_l3_remap(req, j);
John Harrison4ad2fd82015-06-18 13:11:20 +01004959 }
Ben Widawskyc3787e22013-09-17 21:12:44 -07004960
John Harrisonb3dd6b92015-05-29 17:43:40 +01004961 ret = i915_ppgtt_init_ring(req);
John Harrison4ad2fd82015-06-18 13:11:20 +01004962 if (ret && ret != -EIO) {
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004963 DRM_ERROR("PPGTT enable %s failed %d\n",
4964 engine->name, ret);
John Harrisondc4be60712015-05-29 17:43:39 +01004965 i915_gem_request_cancel(req);
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004966 i915_gem_cleanup_engines(dev);
John Harrison4ad2fd82015-06-18 13:11:20 +01004967 goto out;
4968 }
David Woodhousef48a0162015-01-20 17:21:42 +00004969
John Harrisonb3dd6b92015-05-29 17:43:40 +01004970 ret = i915_gem_context_enable(req);
John Harrison90638cc2015-05-29 17:43:37 +01004971 if (ret && ret != -EIO) {
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004972 DRM_ERROR("Context enable %s failed %d\n",
4973 engine->name, ret);
John Harrisondc4be60712015-05-29 17:43:39 +01004974 i915_gem_request_cancel(req);
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004975 i915_gem_cleanup_engines(dev);
John Harrison90638cc2015-05-29 17:43:37 +01004976 goto out;
4977 }
John Harrisondc4be60712015-05-29 17:43:39 +01004978
John Harrison75289872015-05-29 17:43:49 +01004979 i915_add_request_no_flush(req);
Daniel Vetter82460d92014-08-06 20:19:53 +02004980 }
4981
Chris Wilson5e4f5182015-02-13 14:35:59 +00004982out:
4983 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004984 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004985}
4986
Chris Wilson1070a422012-04-24 15:47:41 +01004987int i915_gem_init(struct drm_device *dev)
4988{
4989 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004990 int ret;
4991
Oscar Mateo127f1002014-07-24 17:04:11 +01004992 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4993 i915.enable_execlists);
4994
Chris Wilson1070a422012-04-24 15:47:41 +01004995 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004996
Oscar Mateoa83014d2014-07-24 17:04:21 +01004997 if (!i915.enable_execlists) {
John Harrisonf3dc74c2015-03-19 12:30:06 +00004998 dev_priv->gt.execbuf_submit = i915_gem_ringbuffer_submission;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004999 dev_priv->gt.init_engines = i915_gem_init_engines;
5000 dev_priv->gt.cleanup_engine = intel_cleanup_engine;
5001 dev_priv->gt.stop_engine = intel_stop_engine;
Oscar Mateo454afeb2014-07-24 17:04:22 +01005002 } else {
John Harrisonf3dc74c2015-03-19 12:30:06 +00005003 dev_priv->gt.execbuf_submit = intel_execlists_submission;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00005004 dev_priv->gt.init_engines = intel_logical_rings_init;
5005 dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup;
5006 dev_priv->gt.stop_engine = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01005007 }
5008
Chris Wilson5e4f5182015-02-13 14:35:59 +00005009 /* This is just a security blanket to placate dragons.
5010 * On some systems, we very sporadically observe that the first TLBs
5011 * used by the CS may be stale, despite us poking the TLB reset. If
5012 * we hold the forcewake during initialisation these problems
5013 * just magically go away.
5014 */
5015 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5016
Daniel Vetter6c5566a2014-08-06 15:04:50 +02005017 ret = i915_gem_init_userptr(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02005018 if (ret)
5019 goto out_unlock;
Daniel Vetter6c5566a2014-08-06 15:04:50 +02005020
Joonas Lahtinend85489d2016-03-24 16:47:46 +02005021 i915_gem_init_ggtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08005022
Ben Widawsky2fa48d82013-12-06 14:11:04 -08005023 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02005024 if (ret)
5025 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08005026
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00005027 ret = dev_priv->gt.init_engines(dev);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01005028 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02005029 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02005030
5031 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01005032 if (ret == -EIO) {
5033 /* Allow ring initialisation to fail by marking the GPU as
5034 * wedged. But we only want to do this where the GPU is angry,
5035 * for all other failure, such as an allocation failure, bail.
5036 */
5037 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
Peter Zijlstra805de8f42015-04-24 01:12:32 +02005038 atomic_or(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
Chris Wilson60990322014-04-09 09:19:42 +01005039 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01005040 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02005041
5042out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00005043 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01005044 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01005045
Chris Wilson60990322014-04-09 09:19:42 +01005046 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01005047}
5048
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005049void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00005050i915_gem_cleanup_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005051{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005052 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005053 struct intel_engine_cs *engine;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005054
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005055 for_each_engine(engine, dev_priv)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00005056 dev_priv->gt.cleanup_engine(engine);
Niu,Binga6478282015-07-04 00:27:34 +08005057
Mika Kuoppalaee4b6fa2016-03-16 17:54:00 +02005058 if (i915.enable_execlists)
5059 /*
5060 * Neither the BIOS, ourselves or any other kernel
5061 * expects the system to be in execlists mode on startup,
5062 * so we need to reset the GPU back to legacy mode.
5063 */
5064 intel_gpu_reset(dev, ALL_ENGINES);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005065}
5066
Chris Wilson64193402010-10-24 12:38:05 +01005067static void
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00005068init_engine_lists(struct intel_engine_cs *engine)
Chris Wilson64193402010-10-24 12:38:05 +01005069{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00005070 INIT_LIST_HEAD(&engine->active_list);
5071 INIT_LIST_HEAD(&engine->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01005072}
5073
Eric Anholt673a3942008-07-30 12:06:12 -07005074void
Imre Deak40ae4e12016-03-16 14:54:03 +02005075i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
5076{
5077 struct drm_device *dev = dev_priv->dev;
5078
5079 if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) &&
5080 !IS_CHERRYVIEW(dev_priv))
5081 dev_priv->num_fence_regs = 32;
5082 else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) ||
5083 IS_I945GM(dev_priv) || IS_G33(dev_priv))
5084 dev_priv->num_fence_regs = 16;
5085 else
5086 dev_priv->num_fence_regs = 8;
5087
5088 if (intel_vgpu_active(dev))
5089 dev_priv->num_fence_regs =
5090 I915_READ(vgtif_reg(avail_rs.fence_num));
5091
5092 /* Initialize fence registers to zero */
5093 i915_gem_restore_fences(dev);
5094
5095 i915_gem_detect_bit_6_swizzle(dev);
5096}
5097
5098void
Imre Deakd64aa092016-01-19 15:26:29 +02005099i915_gem_load_init(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07005100{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005101 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00005102 int i;
5103
Chris Wilsonefab6d82015-04-07 16:20:57 +01005104 dev_priv->objects =
Chris Wilson42dcedd2012-11-15 11:32:30 +00005105 kmem_cache_create("i915_gem_object",
5106 sizeof(struct drm_i915_gem_object), 0,
5107 SLAB_HWCACHE_ALIGN,
5108 NULL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01005109 dev_priv->vmas =
5110 kmem_cache_create("i915_gem_vma",
5111 sizeof(struct i915_vma), 0,
5112 SLAB_HWCACHE_ALIGN,
5113 NULL);
Chris Wilsonefab6d82015-04-07 16:20:57 +01005114 dev_priv->requests =
5115 kmem_cache_create("i915_gem_request",
5116 sizeof(struct drm_i915_gem_request), 0,
5117 SLAB_HWCACHE_ALIGN,
5118 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005119
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005120 INIT_LIST_HEAD(&dev_priv->vm_list);
Ben Widawskya33afea2013-09-17 21:12:45 -07005121 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005122 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5123 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005124 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00005125 for (i = 0; i < I915_NUM_ENGINES; i++)
5126 init_engine_lists(&dev_priv->engine[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005127 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005128 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005129 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5130 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005131 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5132 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005133 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005134
Chris Wilson72bfa192010-12-19 11:42:05 +00005135 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5136
Nick Hoathe84fe802015-09-11 12:53:46 +01005137 /*
5138 * Set initial sequence number for requests.
5139 * Using this number allows the wraparound to happen early,
5140 * catching any obvious problems.
5141 */
5142 dev_priv->next_seqno = ((u32)~0 - 0x1100);
5143 dev_priv->last_seqno = ((u32)~0 - 0x1101);
5144
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005145 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005146
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005147 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005148
Chris Wilsonce453d82011-02-21 14:43:56 +00005149 dev_priv->mm.interruptible = true;
5150
Daniel Vetterf99d7062014-06-19 16:01:59 +02005151 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005152}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005153
Imre Deakd64aa092016-01-19 15:26:29 +02005154void i915_gem_load_cleanup(struct drm_device *dev)
5155{
5156 struct drm_i915_private *dev_priv = to_i915(dev);
5157
5158 kmem_cache_destroy(dev_priv->requests);
5159 kmem_cache_destroy(dev_priv->vmas);
5160 kmem_cache_destroy(dev_priv->objects);
5161}
5162
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005163void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005164{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005165 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005166
5167 /* Clean up our request list when the client is going away, so that
5168 * later retire_requests won't dereference our soon-to-be-gone
5169 * file_priv.
5170 */
Chris Wilson1c255952010-09-26 11:03:27 +01005171 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005172 while (!list_empty(&file_priv->mm.request_list)) {
5173 struct drm_i915_gem_request *request;
5174
5175 request = list_first_entry(&file_priv->mm.request_list,
5176 struct drm_i915_gem_request,
5177 client_list);
5178 list_del(&request->client_list);
5179 request->file_priv = NULL;
5180 }
Chris Wilson1c255952010-09-26 11:03:27 +01005181 spin_unlock(&file_priv->mm.lock);
Chris Wilson31169712009-09-14 16:50:28 +01005182
Chris Wilson2e1b8732015-04-27 13:41:22 +01005183 if (!list_empty(&file_priv->rps.link)) {
Chris Wilson8d3afd72015-05-21 21:01:47 +01005184 spin_lock(&to_i915(dev)->rps.client_lock);
Chris Wilson2e1b8732015-04-27 13:41:22 +01005185 list_del(&file_priv->rps.link);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005186 spin_unlock(&to_i915(dev)->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005187 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005188}
5189
5190int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5191{
5192 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005193 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005194
5195 DRM_DEBUG_DRIVER("\n");
5196
5197 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5198 if (!file_priv)
5199 return -ENOMEM;
5200
5201 file->driver_priv = file_priv;
5202 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005203 file_priv->file = file;
Chris Wilson2e1b8732015-04-27 13:41:22 +01005204 INIT_LIST_HEAD(&file_priv->rps.link);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005205
5206 spin_lock_init(&file_priv->mm.lock);
5207 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005208
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00005209 file_priv->bsd_ring = -1;
5210
Ben Widawskye422b882013-12-06 14:10:58 -08005211 ret = i915_gem_context_open(dev, file);
5212 if (ret)
5213 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005214
Ben Widawskye422b882013-12-06 14:10:58 -08005215 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005216}
5217
Daniel Vetterb680c372014-09-19 18:27:27 +02005218/**
5219 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07005220 * @old: current GEM buffer for the frontbuffer slots
5221 * @new: new GEM buffer for the frontbuffer slots
5222 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02005223 *
5224 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5225 * from @old and setting them in @new. Both @old and @new can be NULL.
5226 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005227void i915_gem_track_fb(struct drm_i915_gem_object *old,
5228 struct drm_i915_gem_object *new,
5229 unsigned frontbuffer_bits)
5230{
5231 if (old) {
5232 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5233 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5234 old->frontbuffer_bits &= ~frontbuffer_bits;
5235 }
5236
5237 if (new) {
5238 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5239 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5240 new->frontbuffer_bits |= frontbuffer_bits;
5241 }
5242}
5243
Ben Widawskya70a3142013-07-31 16:59:56 -07005244/* All the new VM stuff */
Michel Thierry088e0df2015-08-07 17:40:17 +01005245u64 i915_gem_obj_offset(struct drm_i915_gem_object *o,
5246 struct i915_address_space *vm)
Ben Widawskya70a3142013-07-31 16:59:56 -07005247{
5248 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5249 struct i915_vma *vma;
5250
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005251 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005252
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005253 list_for_each_entry(vma, &o->vma_list, obj_link) {
Chris Wilson596c5922016-02-26 11:03:20 +00005254 if (vma->is_ggtt &&
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005255 vma->ggtt_view.type != I915_GGTT_VIEW_NORMAL)
5256 continue;
5257 if (vma->vm == vm)
Ben Widawskya70a3142013-07-31 16:59:56 -07005258 return vma->node.start;
Ben Widawskya70a3142013-07-31 16:59:56 -07005259 }
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005260
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005261 WARN(1, "%s vma for this object not found.\n",
5262 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005263 return -1;
5264}
5265
Michel Thierry088e0df2015-08-07 17:40:17 +01005266u64 i915_gem_obj_ggtt_offset_view(struct drm_i915_gem_object *o,
5267 const struct i915_ggtt_view *view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005268{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005269 struct drm_i915_private *dev_priv = to_i915(o->base.dev);
5270 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawskya70a3142013-07-31 16:59:56 -07005271 struct i915_vma *vma;
5272
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005273 list_for_each_entry(vma, &o->vma_list, obj_link)
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005274 if (vma->vm == &ggtt->base &&
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02005275 i915_ggtt_view_equal(&vma->ggtt_view, view))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005276 return vma->node.start;
5277
Tvrtko Ursulin5678ad72015-03-17 14:45:29 +00005278 WARN(1, "global vma for this object not found. (view=%u)\n", view->type);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005279 return -1;
5280}
5281
5282bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5283 struct i915_address_space *vm)
5284{
5285 struct i915_vma *vma;
5286
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005287 list_for_each_entry(vma, &o->vma_list, obj_link) {
Chris Wilson596c5922016-02-26 11:03:20 +00005288 if (vma->is_ggtt &&
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005289 vma->ggtt_view.type != I915_GGTT_VIEW_NORMAL)
5290 continue;
5291 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
5292 return true;
5293 }
5294
5295 return false;
5296}
5297
5298bool i915_gem_obj_ggtt_bound_view(struct drm_i915_gem_object *o,
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02005299 const struct i915_ggtt_view *view)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005300{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005301 struct drm_i915_private *dev_priv = to_i915(o->base.dev);
5302 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005303 struct i915_vma *vma;
5304
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005305 list_for_each_entry(vma, &o->vma_list, obj_link)
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005306 if (vma->vm == &ggtt->base &&
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02005307 i915_ggtt_view_equal(&vma->ggtt_view, view) &&
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005308 drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005309 return true;
5310
5311 return false;
5312}
5313
5314bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5315{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005316 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005317
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005318 list_for_each_entry(vma, &o->vma_list, obj_link)
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005319 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005320 return true;
5321
5322 return false;
5323}
5324
5325unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5326 struct i915_address_space *vm)
5327{
5328 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5329 struct i915_vma *vma;
5330
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005331 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005332
5333 BUG_ON(list_empty(&o->vma_list));
5334
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005335 list_for_each_entry(vma, &o->vma_list, obj_link) {
Chris Wilson596c5922016-02-26 11:03:20 +00005336 if (vma->is_ggtt &&
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005337 vma->ggtt_view.type != I915_GGTT_VIEW_NORMAL)
5338 continue;
Ben Widawskya70a3142013-07-31 16:59:56 -07005339 if (vma->vm == vm)
5340 return vma->node.size;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005341 }
Ben Widawskya70a3142013-07-31 16:59:56 -07005342 return 0;
5343}
5344
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005345bool i915_gem_obj_is_pinned(struct drm_i915_gem_object *obj)
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005346{
5347 struct i915_vma *vma;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005348 list_for_each_entry(vma, &obj->vma_list, obj_link)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005349 if (vma->pin_count > 0)
5350 return true;
Joonas Lahtinena6631ae2015-05-06 14:34:58 +03005351
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005352 return false;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005353}
Dave Gordonea702992015-07-09 19:29:02 +01005354
Dave Gordon033908a2015-12-10 18:51:23 +00005355/* Like i915_gem_object_get_page(), but mark the returned page dirty */
5356struct page *
5357i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj, int n)
5358{
5359 struct page *page;
5360
5361 /* Only default objects have per-page dirty tracking */
Chris Wilsonde472662016-01-22 18:32:31 +00005362 if (WARN_ON((obj->ops->flags & I915_GEM_OBJECT_HAS_STRUCT_PAGE) == 0))
Dave Gordon033908a2015-12-10 18:51:23 +00005363 return NULL;
5364
5365 page = i915_gem_object_get_page(obj, n);
5366 set_page_dirty(page);
5367 return page;
5368}
5369
Dave Gordonea702992015-07-09 19:29:02 +01005370/* Allocate a new GEM object and fill it with the supplied data */
5371struct drm_i915_gem_object *
5372i915_gem_object_create_from_data(struct drm_device *dev,
5373 const void *data, size_t size)
5374{
5375 struct drm_i915_gem_object *obj;
5376 struct sg_table *sg;
5377 size_t bytes;
5378 int ret;
5379
5380 obj = i915_gem_alloc_object(dev, round_up(size, PAGE_SIZE));
5381 if (IS_ERR_OR_NULL(obj))
5382 return obj;
5383
5384 ret = i915_gem_object_set_to_cpu_domain(obj, true);
5385 if (ret)
5386 goto fail;
5387
5388 ret = i915_gem_object_get_pages(obj);
5389 if (ret)
5390 goto fail;
5391
5392 i915_gem_object_pin_pages(obj);
5393 sg = obj->pages;
5394 bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size);
Dave Gordon9e7d18c2015-12-10 18:51:24 +00005395 obj->dirty = 1; /* Backing store is now out of date */
Dave Gordonea702992015-07-09 19:29:02 +01005396 i915_gem_object_unpin_pages(obj);
5397
5398 if (WARN_ON(bytes != size)) {
5399 DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size);
5400 ret = -EFAULT;
5401 goto fail;
5402 }
5403
5404 return obj;
5405
5406fail:
5407 drm_gem_object_unreference(&obj->base);
5408 return ERR_PTR(ret);
5409}