blob: 5f614828d365555f70005aff470117ab15b3ae12 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * 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"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Chris Wilson2cfcd322014-05-20 08:28:43 +010034#include <linux/oom.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);
Chris Wilson2c225692013-08-09 12:26:45 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
43 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070044static __must_check int
Ben Widawsky23f54482013-09-11 14:57:48 -070045i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
46 bool readonly);
Chris Wilsonc8725f32014-03-17 12:21:55 +000047static void
48i915_gem_object_retire(struct drm_i915_gem_object *obj);
49
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilsonceabbba52014-03-25 13:23:04 +000056static unsigned long i915_gem_shrinker_count(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100057 struct shrink_control *sc);
Chris Wilsonceabbba52014-03-25 13:23:04 +000058static unsigned long i915_gem_shrinker_scan(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100059 struct shrink_control *sc);
Chris Wilson2cfcd322014-05-20 08:28:43 +010060static int i915_gem_shrinker_oom(struct notifier_block *nb,
61 unsigned long event,
62 void *ptr);
Chris Wilsond9973b42013-10-04 10:33:00 +010063static unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +010064
Chris Wilsonc76ce032013-08-08 14:41:03 +010065static bool cpu_cache_is_coherent(struct drm_device *dev,
66 enum i915_cache_level level)
67{
68 return HAS_LLC(dev) || level != I915_CACHE_NONE;
69}
70
Chris Wilson2c225692013-08-09 12:26:45 +010071static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
72{
73 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
74 return true;
75
76 return obj->pin_display;
77}
78
Chris Wilson61050802012-04-17 15:31:31 +010079static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
80{
81 if (obj->tiling_mode)
82 i915_gem_release_mmap(obj);
83
84 /* As we do not have an associated fence register, we will force
85 * a tiling change if we ever need to acquire one.
86 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010087 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010088 obj->fence_reg = I915_FENCE_REG_NONE;
89}
90
Chris Wilson73aa8082010-09-30 11:46:12 +010091/* some bookkeeping */
92static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
93 size_t size)
94{
Daniel Vetterc20e8352013-07-24 22:40:23 +020095 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010096 dev_priv->mm.object_count++;
97 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020098 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
102 size_t size)
103{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200104 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100105 dev_priv->mm.object_count--;
106 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200107 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100108}
109
Chris Wilson21dd3732011-01-26 15:55:56 +0000110static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100111i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113 int ret;
114
Daniel Vetter7abb6902013-05-24 21:29:32 +0200115#define EXIT_COND (!i915_reset_in_progress(error) || \
116 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100118 return 0;
119
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 /*
121 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
122 * userspace. If it takes that long something really bad is going on and
123 * we should simply try to bail out and fail as gracefully as possible.
124 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100125 ret = wait_event_interruptible_timeout(error->reset_queue,
126 EXIT_COND,
127 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200128 if (ret == 0) {
129 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
130 return -EIO;
131 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100132 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200133 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100134#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135
Chris Wilson21dd3732011-01-26 15:55:56 +0000136 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100137}
138
Chris Wilson54cf91d2010-11-25 18:00:26 +0000139int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100140{
Daniel Vetter33196de2012-11-14 17:14:05 +0100141 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100142 int ret;
143
Daniel Vetter33196de2012-11-14 17:14:05 +0100144 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100145 if (ret)
146 return ret;
147
148 ret = mutex_lock_interruptible(&dev->struct_mutex);
149 if (ret)
150 return ret;
151
Chris Wilson23bc5982010-09-29 16:10:57 +0100152 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100153 return 0;
154}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100155
Chris Wilson7d1c4802010-08-07 21:45:03 +0100156static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000157i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100158{
Ben Widawsky98438772013-07-31 17:00:12 -0700159 return i915_gem_obj_bound_any(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100160}
161
Eric Anholt673a3942008-07-30 12:06:12 -0700162int
Eric Anholt5a125c32008-10-22 21:40:13 -0700163i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700165{
Chris Wilson73aa8082010-09-30 11:46:12 +0100166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700167 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000168 struct drm_i915_gem_object *obj;
169 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700170
Chris Wilson6299f992010-11-24 12:23:44 +0000171 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100172 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700173 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800174 if (i915_gem_obj_is_pinned(obj))
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700175 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700177
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700178 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400179 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000180
Eric Anholt5a125c32008-10-22 21:40:13 -0700181 return 0;
182}
183
Chris Wilson6a2c4232014-11-04 04:51:40 -0800184static int
185i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100186{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800187 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
188 char *vaddr = obj->phys_handle->vaddr;
189 struct sg_table *st;
190 struct scatterlist *sg;
191 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100192
Chris Wilson6a2c4232014-11-04 04:51:40 -0800193 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
194 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100195
Chris Wilson6a2c4232014-11-04 04:51:40 -0800196 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
197 struct page *page;
198 char *src;
199
200 page = shmem_read_mapping_page(mapping, i);
201 if (IS_ERR(page))
202 return PTR_ERR(page);
203
204 src = kmap_atomic(page);
205 memcpy(vaddr, src, PAGE_SIZE);
206 drm_clflush_virt_range(vaddr, PAGE_SIZE);
207 kunmap_atomic(src);
208
209 page_cache_release(page);
210 vaddr += PAGE_SIZE;
211 }
212
213 i915_gem_chipset_flush(obj->base.dev);
214
215 st = kmalloc(sizeof(*st), GFP_KERNEL);
216 if (st == NULL)
217 return -ENOMEM;
218
219 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
220 kfree(st);
221 return -ENOMEM;
222 }
223
224 sg = st->sgl;
225 sg->offset = 0;
226 sg->length = obj->base.size;
227
228 sg_dma_address(sg) = obj->phys_handle->busaddr;
229 sg_dma_len(sg) = obj->base.size;
230
231 obj->pages = st;
232 obj->has_dma_mapping = true;
233 return 0;
234}
235
236static void
237i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
238{
239 int ret;
240
241 BUG_ON(obj->madv == __I915_MADV_PURGED);
242
243 ret = i915_gem_object_set_to_cpu_domain(obj, true);
244 if (ret) {
245 /* In the event of a disaster, abandon all caches and
246 * hope for the best.
247 */
248 WARN_ON(ret != -EIO);
249 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
250 }
251
252 if (obj->madv == I915_MADV_DONTNEED)
253 obj->dirty = 0;
254
255 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100256 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800257 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100258 int i;
259
260 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800261 struct page *page;
262 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100263
Chris Wilson6a2c4232014-11-04 04:51:40 -0800264 page = shmem_read_mapping_page(mapping, i);
265 if (IS_ERR(page))
266 continue;
267
268 dst = kmap_atomic(page);
269 drm_clflush_virt_range(vaddr, PAGE_SIZE);
270 memcpy(dst, vaddr, PAGE_SIZE);
271 kunmap_atomic(dst);
272
273 set_page_dirty(page);
274 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100275 mark_page_accessed(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800276 page_cache_release(page);
Chris Wilson00731152014-05-21 12:42:56 +0100277 vaddr += PAGE_SIZE;
278 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800279 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100280 }
281
Chris Wilson6a2c4232014-11-04 04:51:40 -0800282 sg_free_table(obj->pages);
283 kfree(obj->pages);
284
285 obj->has_dma_mapping = false;
286}
287
288static void
289i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
290{
291 drm_pci_free(obj->base.dev, obj->phys_handle);
292}
293
294static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
295 .get_pages = i915_gem_object_get_pages_phys,
296 .put_pages = i915_gem_object_put_pages_phys,
297 .release = i915_gem_object_release_phys,
298};
299
300static int
301drop_pages(struct drm_i915_gem_object *obj)
302{
303 struct i915_vma *vma, *next;
304 int ret;
305
306 drm_gem_object_reference(&obj->base);
307 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link)
308 if (i915_vma_unbind(vma))
309 break;
310
311 ret = i915_gem_object_put_pages(obj);
312 drm_gem_object_unreference(&obj->base);
313
314 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100315}
316
317int
318i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
319 int align)
320{
321 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800322 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100323
324 if (obj->phys_handle) {
325 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
326 return -EBUSY;
327
328 return 0;
329 }
330
331 if (obj->madv != I915_MADV_WILLNEED)
332 return -EFAULT;
333
334 if (obj->base.filp == NULL)
335 return -EINVAL;
336
Chris Wilson6a2c4232014-11-04 04:51:40 -0800337 ret = drop_pages(obj);
338 if (ret)
339 return ret;
340
Chris Wilson00731152014-05-21 12:42:56 +0100341 /* create a new object */
342 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
343 if (!phys)
344 return -ENOMEM;
345
Chris Wilson00731152014-05-21 12:42:56 +0100346 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800347 obj->ops = &i915_gem_phys_ops;
348
349 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100350}
351
352static int
353i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
354 struct drm_i915_gem_pwrite *args,
355 struct drm_file *file_priv)
356{
357 struct drm_device *dev = obj->base.dev;
358 void *vaddr = obj->phys_handle->vaddr + args->offset;
359 char __user *user_data = to_user_ptr(args->data_ptr);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800360 int ret;
361
362 /* We manually control the domain here and pretend that it
363 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
364 */
365 ret = i915_gem_object_wait_rendering(obj, false);
366 if (ret)
367 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100368
369 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
370 unsigned long unwritten;
371
372 /* The physical object once assigned is fixed for the lifetime
373 * of the obj, so we can safely drop the lock and continue
374 * to access vaddr.
375 */
376 mutex_unlock(&dev->struct_mutex);
377 unwritten = copy_from_user(vaddr, user_data, args->size);
378 mutex_lock(&dev->struct_mutex);
379 if (unwritten)
380 return -EFAULT;
381 }
382
Chris Wilson6a2c4232014-11-04 04:51:40 -0800383 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100384 i915_gem_chipset_flush(dev);
385 return 0;
386}
387
Chris Wilson42dcedd2012-11-15 11:32:30 +0000388void *i915_gem_object_alloc(struct drm_device *dev)
389{
390 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700391 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000392}
393
394void i915_gem_object_free(struct drm_i915_gem_object *obj)
395{
396 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
397 kmem_cache_free(dev_priv->slab, obj);
398}
399
Dave Airlieff72145b2011-02-07 12:16:14 +1000400static int
401i915_gem_create(struct drm_file *file,
402 struct drm_device *dev,
403 uint64_t size,
404 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700405{
Chris Wilson05394f32010-11-08 19:18:58 +0000406 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300407 int ret;
408 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700409
Dave Airlieff72145b2011-02-07 12:16:14 +1000410 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200411 if (size == 0)
412 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700413
414 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000415 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700416 if (obj == NULL)
417 return -ENOMEM;
418
Chris Wilson05394f32010-11-08 19:18:58 +0000419 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100420 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200421 drm_gem_object_unreference_unlocked(&obj->base);
422 if (ret)
423 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100424
Dave Airlieff72145b2011-02-07 12:16:14 +1000425 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700426 return 0;
427}
428
Dave Airlieff72145b2011-02-07 12:16:14 +1000429int
430i915_gem_dumb_create(struct drm_file *file,
431 struct drm_device *dev,
432 struct drm_mode_create_dumb *args)
433{
434 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300435 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000436 args->size = args->pitch * args->height;
437 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000438 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000439}
440
Dave Airlieff72145b2011-02-07 12:16:14 +1000441/**
442 * Creates a new mm object and returns a handle to it.
443 */
444int
445i915_gem_create_ioctl(struct drm_device *dev, void *data,
446 struct drm_file *file)
447{
448 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200449
Dave Airlieff72145b2011-02-07 12:16:14 +1000450 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000451 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000452}
453
Daniel Vetter8c599672011-12-14 13:57:31 +0100454static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100455__copy_to_user_swizzled(char __user *cpu_vaddr,
456 const char *gpu_vaddr, int gpu_offset,
457 int length)
458{
459 int ret, cpu_offset = 0;
460
461 while (length > 0) {
462 int cacheline_end = ALIGN(gpu_offset + 1, 64);
463 int this_length = min(cacheline_end - gpu_offset, length);
464 int swizzled_gpu_offset = gpu_offset ^ 64;
465
466 ret = __copy_to_user(cpu_vaddr + cpu_offset,
467 gpu_vaddr + swizzled_gpu_offset,
468 this_length);
469 if (ret)
470 return ret + length;
471
472 cpu_offset += this_length;
473 gpu_offset += this_length;
474 length -= this_length;
475 }
476
477 return 0;
478}
479
480static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700481__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
482 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100483 int length)
484{
485 int ret, cpu_offset = 0;
486
487 while (length > 0) {
488 int cacheline_end = ALIGN(gpu_offset + 1, 64);
489 int this_length = min(cacheline_end - gpu_offset, length);
490 int swizzled_gpu_offset = gpu_offset ^ 64;
491
492 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
493 cpu_vaddr + cpu_offset,
494 this_length);
495 if (ret)
496 return ret + length;
497
498 cpu_offset += this_length;
499 gpu_offset += this_length;
500 length -= this_length;
501 }
502
503 return 0;
504}
505
Brad Volkin4c914c02014-02-18 10:15:45 -0800506/*
507 * Pins the specified object's pages and synchronizes the object with
508 * GPU accesses. Sets needs_clflush to non-zero if the caller should
509 * flush the object from the CPU cache.
510 */
511int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
512 int *needs_clflush)
513{
514 int ret;
515
516 *needs_clflush = 0;
517
518 if (!obj->base.filp)
519 return -EINVAL;
520
521 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
522 /* If we're not in the cpu read domain, set ourself into the gtt
523 * read domain and manually flush cachelines (if required). This
524 * optimizes for the case when the gpu will dirty the data
525 * anyway again before the next pread happens. */
526 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
527 obj->cache_level);
528 ret = i915_gem_object_wait_rendering(obj, true);
529 if (ret)
530 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000531
532 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800533 }
534
535 ret = i915_gem_object_get_pages(obj);
536 if (ret)
537 return ret;
538
539 i915_gem_object_pin_pages(obj);
540
541 return ret;
542}
543
Daniel Vetterd174bd62012-03-25 19:47:40 +0200544/* Per-page copy function for the shmem pread fastpath.
545 * Flushes invalid cachelines before reading the target if
546 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700547static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200548shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
549 char __user *user_data,
550 bool page_do_bit17_swizzling, bool needs_clflush)
551{
552 char *vaddr;
553 int ret;
554
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200555 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200556 return -EINVAL;
557
558 vaddr = kmap_atomic(page);
559 if (needs_clflush)
560 drm_clflush_virt_range(vaddr + shmem_page_offset,
561 page_length);
562 ret = __copy_to_user_inatomic(user_data,
563 vaddr + shmem_page_offset,
564 page_length);
565 kunmap_atomic(vaddr);
566
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100567 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200568}
569
Daniel Vetter23c18c72012-03-25 19:47:42 +0200570static void
571shmem_clflush_swizzled_range(char *addr, unsigned long length,
572 bool swizzled)
573{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200574 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200575 unsigned long start = (unsigned long) addr;
576 unsigned long end = (unsigned long) addr + length;
577
578 /* For swizzling simply ensure that we always flush both
579 * channels. Lame, but simple and it works. Swizzled
580 * pwrite/pread is far from a hotpath - current userspace
581 * doesn't use it at all. */
582 start = round_down(start, 128);
583 end = round_up(end, 128);
584
585 drm_clflush_virt_range((void *)start, end - start);
586 } else {
587 drm_clflush_virt_range(addr, length);
588 }
589
590}
591
Daniel Vetterd174bd62012-03-25 19:47:40 +0200592/* Only difference to the fast-path function is that this can handle bit17
593 * and uses non-atomic copy and kmap functions. */
594static int
595shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
596 char __user *user_data,
597 bool page_do_bit17_swizzling, bool needs_clflush)
598{
599 char *vaddr;
600 int ret;
601
602 vaddr = kmap(page);
603 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200604 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
605 page_length,
606 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200607
608 if (page_do_bit17_swizzling)
609 ret = __copy_to_user_swizzled(user_data,
610 vaddr, shmem_page_offset,
611 page_length);
612 else
613 ret = __copy_to_user(user_data,
614 vaddr + shmem_page_offset,
615 page_length);
616 kunmap(page);
617
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100618 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200619}
620
Eric Anholteb014592009-03-10 11:44:52 -0700621static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200622i915_gem_shmem_pread(struct drm_device *dev,
623 struct drm_i915_gem_object *obj,
624 struct drm_i915_gem_pread *args,
625 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700626{
Daniel Vetter8461d222011-12-14 13:57:32 +0100627 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700628 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100629 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100630 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100631 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200632 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200633 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200634 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700635
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200636 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700637 remain = args->size;
638
Daniel Vetter8461d222011-12-14 13:57:32 +0100639 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700640
Brad Volkin4c914c02014-02-18 10:15:45 -0800641 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100642 if (ret)
643 return ret;
644
Eric Anholteb014592009-03-10 11:44:52 -0700645 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100646
Imre Deak67d5a502013-02-18 19:28:02 +0200647 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
648 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200649 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100650
651 if (remain <= 0)
652 break;
653
Eric Anholteb014592009-03-10 11:44:52 -0700654 /* Operation in this page
655 *
Eric Anholteb014592009-03-10 11:44:52 -0700656 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700657 * page_length = bytes to copy for this page
658 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100659 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700660 page_length = remain;
661 if ((shmem_page_offset + page_length) > PAGE_SIZE)
662 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700663
Daniel Vetter8461d222011-12-14 13:57:32 +0100664 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
665 (page_to_phys(page) & (1 << 17)) != 0;
666
Daniel Vetterd174bd62012-03-25 19:47:40 +0200667 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
668 user_data, page_do_bit17_swizzling,
669 needs_clflush);
670 if (ret == 0)
671 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700672
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200673 mutex_unlock(&dev->struct_mutex);
674
Jani Nikulad330a952014-01-21 11:24:25 +0200675 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200676 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200677 /* Userspace is tricking us, but we've already clobbered
678 * its pages with the prefault and promised to write the
679 * data up to the first fault. Hence ignore any errors
680 * and just continue. */
681 (void)ret;
682 prefaulted = 1;
683 }
684
Daniel Vetterd174bd62012-03-25 19:47:40 +0200685 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
686 user_data, page_do_bit17_swizzling,
687 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700688
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200689 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100690
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100691 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100692 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100693
Chris Wilson17793c92014-03-07 08:30:36 +0000694next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700695 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100696 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700697 offset += page_length;
698 }
699
Chris Wilson4f27b752010-10-14 15:26:45 +0100700out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100701 i915_gem_object_unpin_pages(obj);
702
Eric Anholteb014592009-03-10 11:44:52 -0700703 return ret;
704}
705
Eric Anholt673a3942008-07-30 12:06:12 -0700706/**
707 * Reads data from the object referenced by handle.
708 *
709 * On error, the contents of *data are undefined.
710 */
711int
712i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000713 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700714{
715 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000716 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100717 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700718
Chris Wilson51311d02010-11-17 09:10:42 +0000719 if (args->size == 0)
720 return 0;
721
722 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200723 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000724 args->size))
725 return -EFAULT;
726
Chris Wilson4f27b752010-10-14 15:26:45 +0100727 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100728 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100729 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700730
Chris Wilson05394f32010-11-08 19:18:58 +0000731 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000732 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100733 ret = -ENOENT;
734 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100735 }
Eric Anholt673a3942008-07-30 12:06:12 -0700736
Chris Wilson7dcd2492010-09-26 20:21:44 +0100737 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000738 if (args->offset > obj->base.size ||
739 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100740 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100741 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100742 }
743
Daniel Vetter1286ff72012-05-10 15:25:09 +0200744 /* prime objects have no backing filp to GEM pread/pwrite
745 * pages from.
746 */
747 if (!obj->base.filp) {
748 ret = -EINVAL;
749 goto out;
750 }
751
Chris Wilsondb53a302011-02-03 11:57:46 +0000752 trace_i915_gem_object_pread(obj, args->offset, args->size);
753
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200754 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700755
Chris Wilson35b62a82010-09-26 20:23:38 +0100756out:
Chris Wilson05394f32010-11-08 19:18:58 +0000757 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100758unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100759 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700760 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700761}
762
Keith Packard0839ccb2008-10-30 19:38:48 -0700763/* This is the fast write path which cannot handle
764 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700765 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700766
Keith Packard0839ccb2008-10-30 19:38:48 -0700767static inline int
768fast_user_write(struct io_mapping *mapping,
769 loff_t page_base, int page_offset,
770 char __user *user_data,
771 int length)
772{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700773 void __iomem *vaddr_atomic;
774 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700775 unsigned long unwritten;
776
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700777 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700778 /* We can use the cpu mem copy function because this is X86. */
779 vaddr = (void __force*)vaddr_atomic + page_offset;
780 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700781 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700782 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100783 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700784}
785
Eric Anholt3de09aa2009-03-09 09:42:23 -0700786/**
787 * This is the fast pwrite path, where we copy the data directly from the
788 * user into the GTT, uncached.
789 */
Eric Anholt673a3942008-07-30 12:06:12 -0700790static int
Chris Wilson05394f32010-11-08 19:18:58 +0000791i915_gem_gtt_pwrite_fast(struct drm_device *dev,
792 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700793 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000794 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700795{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300796 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700797 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700798 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700799 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200800 int page_offset, page_length, ret;
801
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100802 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200803 if (ret)
804 goto out;
805
806 ret = i915_gem_object_set_to_gtt_domain(obj, true);
807 if (ret)
808 goto out_unpin;
809
810 ret = i915_gem_object_put_fence(obj);
811 if (ret)
812 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700813
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200814 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700815 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700816
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700817 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700818
819 while (remain > 0) {
820 /* Operation in this page
821 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700822 * page_base = page offset within aperture
823 * page_offset = offset within page
824 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700825 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100826 page_base = offset & PAGE_MASK;
827 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700828 page_length = remain;
829 if ((page_offset + remain) > PAGE_SIZE)
830 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700831
Keith Packard0839ccb2008-10-30 19:38:48 -0700832 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700833 * source page isn't available. Return the error and we'll
834 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700835 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800836 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200837 page_offset, user_data, page_length)) {
838 ret = -EFAULT;
839 goto out_unpin;
840 }
Eric Anholt673a3942008-07-30 12:06:12 -0700841
Keith Packard0839ccb2008-10-30 19:38:48 -0700842 remain -= page_length;
843 user_data += page_length;
844 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700845 }
Eric Anholt673a3942008-07-30 12:06:12 -0700846
Daniel Vetter935aaa62012-03-25 19:47:35 +0200847out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800848 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200849out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700850 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700851}
852
Daniel Vetterd174bd62012-03-25 19:47:40 +0200853/* Per-page copy function for the shmem pwrite fastpath.
854 * Flushes invalid cachelines before writing to the target if
855 * needs_clflush_before is set and flushes out any written cachelines after
856 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700857static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200858shmem_pwrite_fast(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;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700865 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700866
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200867 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200868 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700869
Daniel Vetterd174bd62012-03-25 19:47:40 +0200870 vaddr = kmap_atomic(page);
871 if (needs_clflush_before)
872 drm_clflush_virt_range(vaddr + shmem_page_offset,
873 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000874 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
875 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200876 if (needs_clflush_after)
877 drm_clflush_virt_range(vaddr + shmem_page_offset,
878 page_length);
879 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700880
Chris Wilson755d2212012-09-04 21:02:55 +0100881 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700882}
883
Daniel Vetterd174bd62012-03-25 19:47:40 +0200884/* Only difference to the fast-path function is that this can handle bit17
885 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700886static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200887shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
888 char __user *user_data,
889 bool page_do_bit17_swizzling,
890 bool needs_clflush_before,
891 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700892{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200893 char *vaddr;
894 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700895
Daniel Vetterd174bd62012-03-25 19:47:40 +0200896 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200897 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200898 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
899 page_length,
900 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200901 if (page_do_bit17_swizzling)
902 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100903 user_data,
904 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200905 else
906 ret = __copy_from_user(vaddr + shmem_page_offset,
907 user_data,
908 page_length);
909 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200910 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
911 page_length,
912 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200913 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100914
Chris Wilson755d2212012-09-04 21:02:55 +0100915 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700916}
917
Eric Anholt40123c12009-03-09 13:42:30 -0700918static int
Daniel Vettere244a442012-03-25 19:47:28 +0200919i915_gem_shmem_pwrite(struct drm_device *dev,
920 struct drm_i915_gem_object *obj,
921 struct drm_i915_gem_pwrite *args,
922 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700923{
Eric Anholt40123c12009-03-09 13:42:30 -0700924 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100925 loff_t offset;
926 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100927 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100928 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200929 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200930 int needs_clflush_after = 0;
931 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200932 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700933
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200934 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700935 remain = args->size;
936
Daniel Vetter8c599672011-12-14 13:57:31 +0100937 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700938
Daniel Vetter58642882012-03-25 19:47:37 +0200939 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
940 /* If we're not in the cpu write domain, set ourself into the gtt
941 * write domain and manually flush cachelines (if required). This
942 * optimizes for the case when the gpu will use the data
943 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100944 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700945 ret = i915_gem_object_wait_rendering(obj, false);
946 if (ret)
947 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000948
949 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200950 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100951 /* Same trick applies to invalidate partially written cachelines read
952 * before writing. */
953 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
954 needs_clflush_before =
955 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200956
Chris Wilson755d2212012-09-04 21:02:55 +0100957 ret = i915_gem_object_get_pages(obj);
958 if (ret)
959 return ret;
960
961 i915_gem_object_pin_pages(obj);
962
Eric Anholt40123c12009-03-09 13:42:30 -0700963 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000964 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700965
Imre Deak67d5a502013-02-18 19:28:02 +0200966 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
967 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200968 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200969 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100970
Chris Wilson9da3da62012-06-01 15:20:22 +0100971 if (remain <= 0)
972 break;
973
Eric Anholt40123c12009-03-09 13:42:30 -0700974 /* Operation in this page
975 *
Eric Anholt40123c12009-03-09 13:42:30 -0700976 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700977 * page_length = bytes to copy for this page
978 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100979 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700980
981 page_length = remain;
982 if ((shmem_page_offset + page_length) > PAGE_SIZE)
983 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700984
Daniel Vetter58642882012-03-25 19:47:37 +0200985 /* If we don't overwrite a cacheline completely we need to be
986 * careful to have up-to-date data by first clflushing. Don't
987 * overcomplicate things and flush the entire patch. */
988 partial_cacheline_write = needs_clflush_before &&
989 ((shmem_page_offset | page_length)
990 & (boot_cpu_data.x86_clflush_size - 1));
991
Daniel Vetter8c599672011-12-14 13:57:31 +0100992 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
993 (page_to_phys(page) & (1 << 17)) != 0;
994
Daniel Vetterd174bd62012-03-25 19:47:40 +0200995 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
996 user_data, page_do_bit17_swizzling,
997 partial_cacheline_write,
998 needs_clflush_after);
999 if (ret == 0)
1000 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001001
Daniel Vettere244a442012-03-25 19:47:28 +02001002 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001003 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001004 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1005 user_data, page_do_bit17_swizzling,
1006 partial_cacheline_write,
1007 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001008
Daniel Vettere244a442012-03-25 19:47:28 +02001009 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001010
Chris Wilson755d2212012-09-04 21:02:55 +01001011 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001012 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001013
Chris Wilson17793c92014-03-07 08:30:36 +00001014next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001015 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001016 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001017 offset += page_length;
1018 }
1019
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001020out:
Chris Wilson755d2212012-09-04 21:02:55 +01001021 i915_gem_object_unpin_pages(obj);
1022
Daniel Vettere244a442012-03-25 19:47:28 +02001023 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001024 /*
1025 * Fixup: Flush cpu caches in case we didn't flush the dirty
1026 * cachelines in-line while writing and the object moved
1027 * out of the cpu write domain while we've dropped the lock.
1028 */
1029 if (!needs_clflush_after &&
1030 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001031 if (i915_gem_clflush_object(obj, obj->pin_display))
1032 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001033 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001034 }
Eric Anholt40123c12009-03-09 13:42:30 -07001035
Daniel Vetter58642882012-03-25 19:47:37 +02001036 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001037 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001038
Eric Anholt40123c12009-03-09 13:42:30 -07001039 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001040}
1041
1042/**
1043 * Writes data to the object referenced by handle.
1044 *
1045 * On error, the contents of the buffer that were to be modified are undefined.
1046 */
1047int
1048i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001049 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001050{
Imre Deak5d77d9c2014-11-12 16:40:35 +02001051 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001052 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001053 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001054 int ret;
1055
1056 if (args->size == 0)
1057 return 0;
1058
1059 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001060 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001061 args->size))
1062 return -EFAULT;
1063
Jani Nikulad330a952014-01-21 11:24:25 +02001064 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001065 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1066 args->size);
1067 if (ret)
1068 return -EFAULT;
1069 }
Eric Anholt673a3942008-07-30 12:06:12 -07001070
Imre Deak5d77d9c2014-11-12 16:40:35 +02001071 intel_runtime_pm_get(dev_priv);
1072
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001073 ret = i915_mutex_lock_interruptible(dev);
1074 if (ret)
Imre Deak5d77d9c2014-11-12 16:40:35 +02001075 goto put_rpm;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001076
Chris Wilson05394f32010-11-08 19:18:58 +00001077 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001078 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001079 ret = -ENOENT;
1080 goto unlock;
1081 }
Eric Anholt673a3942008-07-30 12:06:12 -07001082
Chris Wilson7dcd2492010-09-26 20:21:44 +01001083 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001084 if (args->offset > obj->base.size ||
1085 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001086 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001087 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001088 }
1089
Daniel Vetter1286ff72012-05-10 15:25:09 +02001090 /* prime objects have no backing filp to GEM pread/pwrite
1091 * pages from.
1092 */
1093 if (!obj->base.filp) {
1094 ret = -EINVAL;
1095 goto out;
1096 }
1097
Chris Wilsondb53a302011-02-03 11:57:46 +00001098 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1099
Daniel Vetter935aaa62012-03-25 19:47:35 +02001100 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001101 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1102 * it would end up going through the fenced access, and we'll get
1103 * different detiling behavior between reading and writing.
1104 * pread/pwrite currently are reading and writing from the CPU
1105 * perspective, requiring manual detiling by the client.
1106 */
Chris Wilson2c225692013-08-09 12:26:45 +01001107 if (obj->tiling_mode == I915_TILING_NONE &&
1108 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1109 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001110 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001111 /* Note that the gtt paths might fail with non-page-backed user
1112 * pointers (e.g. gtt mappings when moving data between
1113 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001114 }
Eric Anholt673a3942008-07-30 12:06:12 -07001115
Chris Wilson6a2c4232014-11-04 04:51:40 -08001116 if (ret == -EFAULT || ret == -ENOSPC) {
1117 if (obj->phys_handle)
1118 ret = i915_gem_phys_pwrite(obj, args, file);
1119 else
1120 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1121 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001122
Chris Wilson35b62a82010-09-26 20:23:38 +01001123out:
Chris Wilson05394f32010-11-08 19:18:58 +00001124 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001125unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001126 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001127put_rpm:
1128 intel_runtime_pm_put(dev_priv);
1129
Eric Anholt673a3942008-07-30 12:06:12 -07001130 return ret;
1131}
1132
Chris Wilsonb3612372012-08-24 09:35:08 +01001133int
Daniel Vetter33196de2012-11-14 17:14:05 +01001134i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001135 bool interruptible)
1136{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001137 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001138 /* Non-interruptible callers can't handle -EAGAIN, hence return
1139 * -EIO unconditionally for these. */
1140 if (!interruptible)
1141 return -EIO;
1142
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001143 /* Recovery complete, but the reset failed ... */
1144 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001145 return -EIO;
1146
McAulay, Alistair6689c162014-08-15 18:51:35 +01001147 /*
1148 * Check if GPU Reset is in progress - we need intel_ring_begin
1149 * to work properly to reinit the hw state while the gpu is
1150 * still marked as reset-in-progress. Handle this with a flag.
1151 */
1152 if (!error->reload_in_reset)
1153 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001154 }
1155
1156 return 0;
1157}
1158
1159/*
1160 * Compare seqno against outstanding lazy request. Emit a request if they are
1161 * equal.
1162 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301163int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001164i915_gem_check_olr(struct intel_engine_cs *ring, u32 seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001165{
1166 int ret;
1167
1168 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1169
1170 ret = 0;
Chris Wilson18235212013-09-04 10:45:51 +01001171 if (seqno == ring->outstanding_lazy_seqno)
Mika Kuoppala0025c072013-06-12 12:35:30 +03001172 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001173
1174 return ret;
1175}
1176
Chris Wilson094f9a52013-09-25 17:34:55 +01001177static void fake_irq(unsigned long data)
1178{
1179 wake_up_process((struct task_struct *)data);
1180}
1181
1182static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001183 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001184{
1185 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1186}
1187
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001188static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1189{
1190 if (file_priv == NULL)
1191 return true;
1192
1193 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1194}
1195
Chris Wilsonb3612372012-08-24 09:35:08 +01001196/**
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001197 * __i915_wait_seqno - wait until execution of seqno has finished
Chris Wilsonb3612372012-08-24 09:35:08 +01001198 * @ring: the ring expected to report seqno
1199 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001200 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001201 * @interruptible: do an interruptible wait (normally yes)
1202 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1203 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001204 * Note: It is of utmost importance that the passed in seqno and reset_counter
1205 * values have been read by the caller in an smp safe manner. Where read-side
1206 * locks are involved, it is sufficient to read the reset_counter before
1207 * unlocking the lock that protects the seqno. For lockless tricks, the
1208 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1209 * inserted.
1210 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001211 * Returns 0 if the seqno was found within the alloted time. Else returns the
1212 * errno with remaining time filled in timeout argument.
1213 */
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001214int __i915_wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001215 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001216 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001217 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001218 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001219{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001220 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001221 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001222 const bool irq_test_in_progress =
1223 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001224 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001225 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001226 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001227 int ret;
1228
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001229 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001230
Chris Wilsonb3612372012-08-24 09:35:08 +01001231 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1232 return 0;
1233
Daniel Vetter7bd0e222014-12-04 11:12:54 +01001234 timeout_expire = timeout ?
1235 jiffies + nsecs_to_jiffies_timeout((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001236
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001237 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001238 gen6_rps_boost(dev_priv);
1239 if (file_priv)
1240 mod_delayed_work(dev_priv->wq,
1241 &file_priv->mm.idle_work,
1242 msecs_to_jiffies(100));
1243 }
1244
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001245 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001246 return -ENODEV;
1247
Chris Wilson094f9a52013-09-25 17:34:55 +01001248 /* Record current time in case interrupted by signal, or wedged */
1249 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001250 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001251 for (;;) {
1252 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001253
Chris Wilson094f9a52013-09-25 17:34:55 +01001254 prepare_to_wait(&ring->irq_queue, &wait,
1255 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001256
Daniel Vetterf69061b2012-12-06 09:01:42 +01001257 /* We need to check whether any gpu reset happened in between
1258 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001259 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1260 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1261 * is truely gone. */
1262 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1263 if (ret == 0)
1264 ret = -EAGAIN;
1265 break;
1266 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001267
Chris Wilson094f9a52013-09-25 17:34:55 +01001268 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1269 ret = 0;
1270 break;
1271 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001272
Chris Wilson094f9a52013-09-25 17:34:55 +01001273 if (interruptible && signal_pending(current)) {
1274 ret = -ERESTARTSYS;
1275 break;
1276 }
1277
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001278 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001279 ret = -ETIME;
1280 break;
1281 }
1282
1283 timer.function = NULL;
1284 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001285 unsigned long expire;
1286
Chris Wilson094f9a52013-09-25 17:34:55 +01001287 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001288 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001289 mod_timer(&timer, expire);
1290 }
1291
Chris Wilson5035c272013-10-04 09:58:46 +01001292 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001293
Chris Wilson094f9a52013-09-25 17:34:55 +01001294 if (timer.function) {
1295 del_singleshot_timer_sync(&timer);
1296 destroy_timer_on_stack(&timer);
1297 }
1298 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001299 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001300 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001301
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001302 if (!irq_test_in_progress)
1303 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001304
1305 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001306
1307 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001308 s64 tres = *timeout - (now - before);
1309
1310 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001311
1312 /*
1313 * Apparently ktime isn't accurate enough and occasionally has a
1314 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1315 * things up to make the test happy. We allow up to 1 jiffy.
1316 *
1317 * This is a regrssion from the timespec->ktime conversion.
1318 */
1319 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1320 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001321 }
1322
Chris Wilson094f9a52013-09-25 17:34:55 +01001323 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001324}
1325
1326/**
1327 * Waits for a sequence number to be signaled, and cleans up the
1328 * request and object lists appropriately for that event.
1329 */
1330int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001331i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001332{
1333 struct drm_device *dev = ring->dev;
1334 struct drm_i915_private *dev_priv = dev->dev_private;
1335 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001336 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001337 int ret;
1338
1339 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1340 BUG_ON(seqno == 0);
1341
Daniel Vetter33196de2012-11-14 17:14:05 +01001342 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001343 if (ret)
1344 return ret;
1345
1346 ret = i915_gem_check_olr(ring, seqno);
1347 if (ret)
1348 return ret;
1349
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001350 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1351 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1352 NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001353}
1354
Chris Wilsond26e3af2013-06-29 22:05:26 +01001355static int
John Harrison8e6395492014-10-30 18:40:53 +00001356i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001357{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001358 if (!obj->active)
1359 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001360
1361 /* Manually manage the write flush as we may have not yet
1362 * retired the buffer.
1363 *
1364 * Note that the last_write_seqno is always the earlier of
1365 * the two (read/write) seqno, so if we haved successfully waited,
1366 * we know we have passed the last write.
1367 */
1368 obj->last_write_seqno = 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001369
1370 return 0;
1371}
1372
Chris Wilsonb3612372012-08-24 09:35:08 +01001373/**
1374 * Ensures that all rendering to the object has completed and the object is
1375 * safe to unbind from the GTT or access from the CPU.
1376 */
1377static __must_check int
1378i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1379 bool readonly)
1380{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001381 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001382 u32 seqno;
1383 int ret;
1384
1385 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1386 if (seqno == 0)
1387 return 0;
1388
1389 ret = i915_wait_seqno(ring, seqno);
1390 if (ret)
1391 return ret;
1392
John Harrison8e6395492014-10-30 18:40:53 +00001393 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001394}
1395
Chris Wilson3236f572012-08-24 09:35:09 +01001396/* A nonblocking variant of the above wait. This is a highly dangerous routine
1397 * as the object state may change during this call.
1398 */
1399static __must_check int
1400i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001401 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001402 bool readonly)
1403{
1404 struct drm_device *dev = obj->base.dev;
1405 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001406 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001407 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001408 u32 seqno;
1409 int ret;
1410
1411 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1412 BUG_ON(!dev_priv->mm.interruptible);
1413
1414 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1415 if (seqno == 0)
1416 return 0;
1417
Daniel Vetter33196de2012-11-14 17:14:05 +01001418 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001419 if (ret)
1420 return ret;
1421
1422 ret = i915_gem_check_olr(ring, seqno);
1423 if (ret)
1424 return ret;
1425
Daniel Vetterf69061b2012-12-06 09:01:42 +01001426 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001427 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001428 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL,
1429 file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001430 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001431 if (ret)
1432 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001433
John Harrison8e6395492014-10-30 18:40:53 +00001434 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001435}
1436
Eric Anholt673a3942008-07-30 12:06:12 -07001437/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001438 * Called when user space prepares to use an object with the CPU, either
1439 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001440 */
1441int
1442i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001443 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001444{
1445 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001446 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001447 uint32_t read_domains = args->read_domains;
1448 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001449 int ret;
1450
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001451 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001452 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001453 return -EINVAL;
1454
Chris Wilson21d509e2009-06-06 09:46:02 +01001455 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001456 return -EINVAL;
1457
1458 /* Having something in the write domain implies it's in the read
1459 * domain, and only that read domain. Enforce that in the request.
1460 */
1461 if (write_domain != 0 && read_domains != write_domain)
1462 return -EINVAL;
1463
Chris Wilson76c1dec2010-09-25 11:22:51 +01001464 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001465 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001466 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001467
Chris Wilson05394f32010-11-08 19:18:58 +00001468 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001469 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001470 ret = -ENOENT;
1471 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001472 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001473
Chris Wilson3236f572012-08-24 09:35:09 +01001474 /* Try to flush the object off the GPU without holding the lock.
1475 * We will repeat the flush holding the lock in the normal manner
1476 * to catch cases where we are gazumped.
1477 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001478 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1479 file->driver_priv,
1480 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001481 if (ret)
1482 goto unref;
1483
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001484 if (read_domains & I915_GEM_DOMAIN_GTT) {
1485 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001486
1487 /* Silently promote "you're not bound, there was nothing to do"
1488 * to success, since the client was just asking us to
1489 * make sure everything was done.
1490 */
1491 if (ret == -EINVAL)
1492 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001493 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001494 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001495 }
1496
Chris Wilson3236f572012-08-24 09:35:09 +01001497unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001498 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001499unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001500 mutex_unlock(&dev->struct_mutex);
1501 return ret;
1502}
1503
1504/**
1505 * Called when user space has done writes to this buffer
1506 */
1507int
1508i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001509 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001510{
1511 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001512 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001513 int ret = 0;
1514
Chris Wilson76c1dec2010-09-25 11:22:51 +01001515 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001516 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001517 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001518
Chris Wilson05394f32010-11-08 19:18:58 +00001519 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001520 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001521 ret = -ENOENT;
1522 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001523 }
1524
Eric Anholt673a3942008-07-30 12:06:12 -07001525 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001526 if (obj->pin_display)
1527 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001528
Chris Wilson05394f32010-11-08 19:18:58 +00001529 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001530unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001531 mutex_unlock(&dev->struct_mutex);
1532 return ret;
1533}
1534
1535/**
1536 * Maps the contents of an object, returning the address it is mapped
1537 * into.
1538 *
1539 * While the mapping holds a reference on the contents of the object, it doesn't
1540 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001541 *
1542 * IMPORTANT:
1543 *
1544 * DRM driver writers who look a this function as an example for how to do GEM
1545 * mmap support, please don't implement mmap support like here. The modern way
1546 * to implement DRM mmap support is with an mmap offset ioctl (like
1547 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1548 * That way debug tooling like valgrind will understand what's going on, hiding
1549 * the mmap call in a driver private ioctl will break that. The i915 driver only
1550 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001551 */
1552int
1553i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001554 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001555{
1556 struct drm_i915_gem_mmap *args = data;
1557 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001558 unsigned long addr;
1559
Chris Wilson05394f32010-11-08 19:18:58 +00001560 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001561 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001562 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001563
Daniel Vetter1286ff72012-05-10 15:25:09 +02001564 /* prime objects have no backing filp to GEM mmap
1565 * pages from.
1566 */
1567 if (!obj->filp) {
1568 drm_gem_object_unreference_unlocked(obj);
1569 return -EINVAL;
1570 }
1571
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001572 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001573 PROT_READ | PROT_WRITE, MAP_SHARED,
1574 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001575 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001576 if (IS_ERR((void *)addr))
1577 return addr;
1578
1579 args->addr_ptr = (uint64_t) addr;
1580
1581 return 0;
1582}
1583
Jesse Barnesde151cf2008-11-12 10:03:55 -08001584/**
1585 * i915_gem_fault - fault a page into the GTT
1586 * vma: VMA in question
1587 * vmf: fault info
1588 *
1589 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1590 * from userspace. The fault handler takes care of binding the object to
1591 * the GTT (if needed), allocating and programming a fence register (again,
1592 * only if needed based on whether the old reg is still valid or the object
1593 * is tiled) and inserting a new PTE into the faulting process.
1594 *
1595 * Note that the faulting process may involve evicting existing objects
1596 * from the GTT and/or fence registers to make room. So performance may
1597 * suffer if the GTT working set is large or there are few fence registers
1598 * left.
1599 */
1600int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1601{
Chris Wilson05394f32010-11-08 19:18:58 +00001602 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1603 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001604 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001605 pgoff_t page_offset;
1606 unsigned long pfn;
1607 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001608 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001609
Paulo Zanonif65c9162013-11-27 18:20:34 -02001610 intel_runtime_pm_get(dev_priv);
1611
Jesse Barnesde151cf2008-11-12 10:03:55 -08001612 /* We don't use vmf->pgoff since that has the fake offset */
1613 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1614 PAGE_SHIFT;
1615
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001616 ret = i915_mutex_lock_interruptible(dev);
1617 if (ret)
1618 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001619
Chris Wilsondb53a302011-02-03 11:57:46 +00001620 trace_i915_gem_object_fault(obj, page_offset, true, write);
1621
Chris Wilson6e4930f2014-02-07 18:37:06 -02001622 /* Try to flush the object off the GPU first without holding the lock.
1623 * Upon reacquiring the lock, we will perform our sanity checks and then
1624 * repeat the flush holding the lock in the normal manner to catch cases
1625 * where we are gazumped.
1626 */
1627 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1628 if (ret)
1629 goto unlock;
1630
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001631 /* Access to snoopable pages through the GTT is incoherent. */
1632 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001633 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001634 goto unlock;
1635 }
1636
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001637 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001638 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001639 if (ret)
1640 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001641
Chris Wilsonc9839302012-11-20 10:45:17 +00001642 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1643 if (ret)
1644 goto unpin;
1645
1646 ret = i915_gem_object_get_fence(obj);
1647 if (ret)
1648 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001649
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001650 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001651 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1652 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001653
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001654 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001655 unsigned long size = min_t(unsigned long,
1656 vma->vm_end - vma->vm_start,
1657 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001658 int i;
1659
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001660 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001661 ret = vm_insert_pfn(vma,
1662 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1663 pfn + i);
1664 if (ret)
1665 break;
1666 }
1667
1668 obj->fault_mappable = true;
1669 } else
1670 ret = vm_insert_pfn(vma,
1671 (unsigned long)vmf->virtual_address,
1672 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001673unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001674 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001675unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001676 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001677out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001678 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001679 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001680 /*
1681 * We eat errors when the gpu is terminally wedged to avoid
1682 * userspace unduly crashing (gl has no provisions for mmaps to
1683 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1684 * and so needs to be reported.
1685 */
1686 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001687 ret = VM_FAULT_SIGBUS;
1688 break;
1689 }
Chris Wilson045e7692010-11-07 09:18:22 +00001690 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001691 /*
1692 * EAGAIN means the gpu is hung and we'll wait for the error
1693 * handler to reset everything when re-faulting in
1694 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001695 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001696 case 0:
1697 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001698 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001699 case -EBUSY:
1700 /*
1701 * EBUSY is ok: this just means that another thread
1702 * already did the job.
1703 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001704 ret = VM_FAULT_NOPAGE;
1705 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001706 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001707 ret = VM_FAULT_OOM;
1708 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001709 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001710 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001711 ret = VM_FAULT_SIGBUS;
1712 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001713 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001714 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001715 ret = VM_FAULT_SIGBUS;
1716 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001717 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001718
1719 intel_runtime_pm_put(dev_priv);
1720 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001721}
1722
1723/**
Chris Wilson901782b2009-07-10 08:18:50 +01001724 * i915_gem_release_mmap - remove physical page mappings
1725 * @obj: obj in question
1726 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001727 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001728 * relinquish ownership of the pages back to the system.
1729 *
1730 * It is vital that we remove the page mapping if we have mapped a tiled
1731 * object through the GTT and then lose the fence register due to
1732 * resource pressure. Similarly if the object has been moved out of the
1733 * aperture, than pages mapped into userspace must be revoked. Removing the
1734 * mapping will then trigger a page fault on the next user access, allowing
1735 * fixup by i915_gem_fault().
1736 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001737void
Chris Wilson05394f32010-11-08 19:18:58 +00001738i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001739{
Chris Wilson6299f992010-11-24 12:23:44 +00001740 if (!obj->fault_mappable)
1741 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001742
David Herrmann6796cb12014-01-03 14:24:19 +01001743 drm_vma_node_unmap(&obj->base.vma_node,
1744 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001745 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001746}
1747
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001748void
1749i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1750{
1751 struct drm_i915_gem_object *obj;
1752
1753 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1754 i915_gem_release_mmap(obj);
1755}
1756
Imre Deak0fa87792013-01-07 21:47:35 +02001757uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001758i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001759{
Chris Wilsone28f8712011-07-18 13:11:49 -07001760 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001761
1762 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001763 tiling_mode == I915_TILING_NONE)
1764 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001765
1766 /* Previous chips need a power-of-two fence region when tiling */
1767 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001768 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001769 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001770 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001771
Chris Wilsone28f8712011-07-18 13:11:49 -07001772 while (gtt_size < size)
1773 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001774
Chris Wilsone28f8712011-07-18 13:11:49 -07001775 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001776}
1777
Jesse Barnesde151cf2008-11-12 10:03:55 -08001778/**
1779 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1780 * @obj: object to check
1781 *
1782 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001783 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001784 */
Imre Deakd8651102013-01-07 21:47:33 +02001785uint32_t
1786i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1787 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001788{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001789 /*
1790 * Minimum alignment is 4k (GTT page size), but might be greater
1791 * if a fence register is needed for the object.
1792 */
Imre Deakd8651102013-01-07 21:47:33 +02001793 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001794 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001795 return 4096;
1796
1797 /*
1798 * Previous chips need to be aligned to the size of the smallest
1799 * fence register that can contain the object.
1800 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001801 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001802}
1803
Chris Wilsond8cb5082012-08-11 15:41:03 +01001804static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1805{
1806 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1807 int ret;
1808
David Herrmann0de23972013-07-24 21:07:52 +02001809 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001810 return 0;
1811
Daniel Vetterda494d72012-12-20 15:11:16 +01001812 dev_priv->mm.shrinker_no_lock_stealing = true;
1813
Chris Wilsond8cb5082012-08-11 15:41:03 +01001814 ret = drm_gem_create_mmap_offset(&obj->base);
1815 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001816 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001817
1818 /* Badly fragmented mmap space? The only way we can recover
1819 * space is by destroying unwanted objects. We can't randomly release
1820 * mmap_offsets as userspace expects them to be persistent for the
1821 * lifetime of the objects. The closest we can is to release the
1822 * offsets on purgeable objects by truncating it and marking it purged,
1823 * which prevents userspace from ever using that object again.
1824 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001825 i915_gem_shrink(dev_priv,
1826 obj->base.size >> PAGE_SHIFT,
1827 I915_SHRINK_BOUND |
1828 I915_SHRINK_UNBOUND |
1829 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001830 ret = drm_gem_create_mmap_offset(&obj->base);
1831 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001832 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001833
1834 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001835 ret = drm_gem_create_mmap_offset(&obj->base);
1836out:
1837 dev_priv->mm.shrinker_no_lock_stealing = false;
1838
1839 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001840}
1841
1842static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1843{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001844 drm_gem_free_mmap_offset(&obj->base);
1845}
1846
Dave Airlieda6b51d2014-12-24 13:11:17 +10001847int
Dave Airlieff72145b2011-02-07 12:16:14 +10001848i915_gem_mmap_gtt(struct drm_file *file,
1849 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10001850 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10001851 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001852{
Chris Wilsonda761a62010-10-27 17:37:08 +01001853 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001854 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001855 int ret;
1856
Chris Wilson76c1dec2010-09-25 11:22:51 +01001857 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001858 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001859 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001860
Dave Airlieff72145b2011-02-07 12:16:14 +10001861 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001862 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001863 ret = -ENOENT;
1864 goto unlock;
1865 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001866
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001867 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001868 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001869 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001870 }
1871
Chris Wilson05394f32010-11-08 19:18:58 +00001872 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001873 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001874 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001875 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001876 }
1877
Chris Wilsond8cb5082012-08-11 15:41:03 +01001878 ret = i915_gem_object_create_mmap_offset(obj);
1879 if (ret)
1880 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001881
David Herrmann0de23972013-07-24 21:07:52 +02001882 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001883
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001884out:
Chris Wilson05394f32010-11-08 19:18:58 +00001885 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001886unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001887 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001888 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001889}
1890
Dave Airlieff72145b2011-02-07 12:16:14 +10001891/**
1892 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1893 * @dev: DRM device
1894 * @data: GTT mapping ioctl data
1895 * @file: GEM object info
1896 *
1897 * Simply returns the fake offset to userspace so it can mmap it.
1898 * The mmap call will end up in drm_gem_mmap(), which will set things
1899 * up so we can get faults in the handler above.
1900 *
1901 * The fault handler will take care of binding the object into the GTT
1902 * (since it may have been evicted to make room for something), allocating
1903 * a fence register, and mapping the appropriate aperture address into
1904 * userspace.
1905 */
1906int
1907i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1908 struct drm_file *file)
1909{
1910 struct drm_i915_gem_mmap_gtt *args = data;
1911
Dave Airlieda6b51d2014-12-24 13:11:17 +10001912 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001913}
1914
Chris Wilson55372522014-03-25 13:23:06 +00001915static inline int
1916i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1917{
1918 return obj->madv == I915_MADV_DONTNEED;
1919}
1920
Daniel Vetter225067e2012-08-20 10:23:20 +02001921/* Immediately discard the backing storage */
1922static void
1923i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001924{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001925 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001926
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001927 if (obj->base.filp == NULL)
1928 return;
1929
Daniel Vetter225067e2012-08-20 10:23:20 +02001930 /* Our goal here is to return as much of the memory as
1931 * is possible back to the system as we are called from OOM.
1932 * To do this we must instruct the shmfs to drop all of its
1933 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001934 */
Chris Wilson55372522014-03-25 13:23:06 +00001935 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001936 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001937}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001938
Chris Wilson55372522014-03-25 13:23:06 +00001939/* Try to discard unwanted pages */
1940static void
1941i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001942{
Chris Wilson55372522014-03-25 13:23:06 +00001943 struct address_space *mapping;
1944
1945 switch (obj->madv) {
1946 case I915_MADV_DONTNEED:
1947 i915_gem_object_truncate(obj);
1948 case __I915_MADV_PURGED:
1949 return;
1950 }
1951
1952 if (obj->base.filp == NULL)
1953 return;
1954
1955 mapping = file_inode(obj->base.filp)->i_mapping,
1956 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001957}
1958
Chris Wilson5cdf5882010-09-27 15:51:07 +01001959static void
Chris Wilson05394f32010-11-08 19:18:58 +00001960i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001961{
Imre Deak90797e62013-02-18 19:28:03 +02001962 struct sg_page_iter sg_iter;
1963 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001964
Chris Wilson05394f32010-11-08 19:18:58 +00001965 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001966
Chris Wilson6c085a72012-08-20 11:40:46 +02001967 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1968 if (ret) {
1969 /* In the event of a disaster, abandon all caches and
1970 * hope for the best.
1971 */
1972 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001973 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001974 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1975 }
1976
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001977 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001978 i915_gem_object_save_bit_17_swizzle(obj);
1979
Chris Wilson05394f32010-11-08 19:18:58 +00001980 if (obj->madv == I915_MADV_DONTNEED)
1981 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001982
Imre Deak90797e62013-02-18 19:28:03 +02001983 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001984 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001985
Chris Wilson05394f32010-11-08 19:18:58 +00001986 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001987 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001988
Chris Wilson05394f32010-11-08 19:18:58 +00001989 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001990 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001991
Chris Wilson9da3da62012-06-01 15:20:22 +01001992 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001993 }
Chris Wilson05394f32010-11-08 19:18:58 +00001994 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001995
Chris Wilson9da3da62012-06-01 15:20:22 +01001996 sg_free_table(obj->pages);
1997 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001998}
1999
Chris Wilsondd624af2013-01-15 12:39:35 +00002000int
Chris Wilson37e680a2012-06-07 15:38:42 +01002001i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2002{
2003 const struct drm_i915_gem_object_ops *ops = obj->ops;
2004
Chris Wilson2f745ad2012-09-04 21:02:58 +01002005 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002006 return 0;
2007
Chris Wilsona5570172012-09-04 21:02:54 +01002008 if (obj->pages_pin_count)
2009 return -EBUSY;
2010
Ben Widawsky98438772013-07-31 17:00:12 -07002011 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002012
Chris Wilsona2165e32012-12-03 11:49:00 +00002013 /* ->put_pages might need to allocate memory for the bit17 swizzle
2014 * array, hence protect them from being reaped by removing them from gtt
2015 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002016 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002017
Chris Wilson37e680a2012-06-07 15:38:42 +01002018 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002019 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002020
Chris Wilson55372522014-03-25 13:23:06 +00002021 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002022
2023 return 0;
2024}
2025
Chris Wilson21ab4e72014-09-09 11:16:08 +01002026unsigned long
2027i915_gem_shrink(struct drm_i915_private *dev_priv,
2028 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002029{
Chris Wilson60a53722014-10-03 10:29:51 +01002030 const struct {
2031 struct list_head *list;
2032 unsigned int bit;
2033 } phases[] = {
2034 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2035 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2036 { NULL, 0 },
2037 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002038 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002039
Chris Wilson57094f82013-09-04 10:45:50 +01002040 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002041 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002042 * (due to retiring requests) we have to strictly process only
2043 * one element of the list at the time, and recheck the list
2044 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002045 *
2046 * In particular, we must hold a reference whilst removing the
2047 * object as we may end up waiting for and/or retiring the objects.
2048 * This might release the final reference (held by the active list)
2049 * and result in the object being freed from under us. This is
2050 * similar to the precautions the eviction code must take whilst
2051 * removing objects.
2052 *
2053 * Also note that although these lists do not hold a reference to
2054 * the object we can safely grab one here: The final object
2055 * unreferencing and the bound_list are both protected by the
2056 * dev->struct_mutex and so we won't ever be able to observe an
2057 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002058 */
Chris Wilson60a53722014-10-03 10:29:51 +01002059 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002060 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002061
Chris Wilson60a53722014-10-03 10:29:51 +01002062 if ((flags & phase->bit) == 0)
2063 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002064
Chris Wilson21ab4e72014-09-09 11:16:08 +01002065 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002066 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002067 struct drm_i915_gem_object *obj;
2068 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002069
Chris Wilson60a53722014-10-03 10:29:51 +01002070 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002071 typeof(*obj), global_list);
2072 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002073
Chris Wilson60a53722014-10-03 10:29:51 +01002074 if (flags & I915_SHRINK_PURGEABLE &&
2075 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002076 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002077
Chris Wilson21ab4e72014-09-09 11:16:08 +01002078 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002079
Chris Wilson60a53722014-10-03 10:29:51 +01002080 /* For the unbound phase, this should be a no-op! */
2081 list_for_each_entry_safe(vma, v,
2082 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002083 if (i915_vma_unbind(vma))
2084 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002085
Chris Wilson21ab4e72014-09-09 11:16:08 +01002086 if (i915_gem_object_put_pages(obj) == 0)
2087 count += obj->base.size >> PAGE_SHIFT;
2088
2089 drm_gem_object_unreference(&obj->base);
2090 }
Chris Wilson60a53722014-10-03 10:29:51 +01002091 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002092 }
2093
2094 return count;
2095}
2096
Chris Wilsond9973b42013-10-04 10:33:00 +01002097static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002098i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2099{
Chris Wilson6c085a72012-08-20 11:40:46 +02002100 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002101 return i915_gem_shrink(dev_priv, LONG_MAX,
2102 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002103}
2104
Chris Wilson37e680a2012-06-07 15:38:42 +01002105static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002106i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002107{
Chris Wilson6c085a72012-08-20 11:40:46 +02002108 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002109 int page_count, i;
2110 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002111 struct sg_table *st;
2112 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002113 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002114 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002115 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002116 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002117
Chris Wilson6c085a72012-08-20 11:40:46 +02002118 /* Assert that the object is not currently in any GPU domain. As it
2119 * wasn't in the GTT, there shouldn't be any way it could have been in
2120 * a GPU cache
2121 */
2122 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2123 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2124
Chris Wilson9da3da62012-06-01 15:20:22 +01002125 st = kmalloc(sizeof(*st), GFP_KERNEL);
2126 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002127 return -ENOMEM;
2128
Chris Wilson9da3da62012-06-01 15:20:22 +01002129 page_count = obj->base.size / PAGE_SIZE;
2130 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002131 kfree(st);
2132 return -ENOMEM;
2133 }
2134
2135 /* Get the list of pages out of our struct file. They'll be pinned
2136 * at this point until we release them.
2137 *
2138 * Fail silently without starting the shrinker
2139 */
Al Viro496ad9a2013-01-23 17:07:38 -05002140 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002141 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002142 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002143 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002144 sg = st->sgl;
2145 st->nents = 0;
2146 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002147 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2148 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002149 i915_gem_shrink(dev_priv,
2150 page_count,
2151 I915_SHRINK_BOUND |
2152 I915_SHRINK_UNBOUND |
2153 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002154 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2155 }
2156 if (IS_ERR(page)) {
2157 /* We've tried hard to allocate the memory by reaping
2158 * our own buffer, now let the real VM do its job and
2159 * go down in flames if truly OOM.
2160 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002161 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002162 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002163 if (IS_ERR(page))
2164 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002165 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002166#ifdef CONFIG_SWIOTLB
2167 if (swiotlb_nr_tbl()) {
2168 st->nents++;
2169 sg_set_page(sg, page, PAGE_SIZE, 0);
2170 sg = sg_next(sg);
2171 continue;
2172 }
2173#endif
Imre Deak90797e62013-02-18 19:28:03 +02002174 if (!i || page_to_pfn(page) != last_pfn + 1) {
2175 if (i)
2176 sg = sg_next(sg);
2177 st->nents++;
2178 sg_set_page(sg, page, PAGE_SIZE, 0);
2179 } else {
2180 sg->length += PAGE_SIZE;
2181 }
2182 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002183
2184 /* Check that the i965g/gm workaround works. */
2185 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002186 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002187#ifdef CONFIG_SWIOTLB
2188 if (!swiotlb_nr_tbl())
2189#endif
2190 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002191 obj->pages = st;
2192
Eric Anholt673a3942008-07-30 12:06:12 -07002193 if (i915_gem_object_needs_bit17_swizzle(obj))
2194 i915_gem_object_do_bit_17_swizzle(obj);
2195
Daniel Vetter656bfa32014-11-20 09:26:30 +01002196 if (obj->tiling_mode != I915_TILING_NONE &&
2197 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2198 i915_gem_object_pin_pages(obj);
2199
Eric Anholt673a3942008-07-30 12:06:12 -07002200 return 0;
2201
2202err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002203 sg_mark_end(sg);
2204 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002205 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002206 sg_free_table(st);
2207 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002208
2209 /* shmemfs first checks if there is enough memory to allocate the page
2210 * and reports ENOSPC should there be insufficient, along with the usual
2211 * ENOMEM for a genuine allocation failure.
2212 *
2213 * We use ENOSPC in our driver to mean that we have run out of aperture
2214 * space and so want to translate the error from shmemfs back to our
2215 * usual understanding of ENOMEM.
2216 */
2217 if (PTR_ERR(page) == -ENOSPC)
2218 return -ENOMEM;
2219 else
2220 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002221}
2222
Chris Wilson37e680a2012-06-07 15:38:42 +01002223/* Ensure that the associated pages are gathered from the backing storage
2224 * and pinned into our object. i915_gem_object_get_pages() may be called
2225 * multiple times before they are released by a single call to
2226 * i915_gem_object_put_pages() - once the pages are no longer referenced
2227 * either as a result of memory pressure (reaping pages under the shrinker)
2228 * or as the object is itself released.
2229 */
2230int
2231i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2232{
2233 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2234 const struct drm_i915_gem_object_ops *ops = obj->ops;
2235 int ret;
2236
Chris Wilson2f745ad2012-09-04 21:02:58 +01002237 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002238 return 0;
2239
Chris Wilson43e28f02013-01-08 10:53:09 +00002240 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002241 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002242 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002243 }
2244
Chris Wilsona5570172012-09-04 21:02:54 +01002245 BUG_ON(obj->pages_pin_count);
2246
Chris Wilson37e680a2012-06-07 15:38:42 +01002247 ret = ops->get_pages(obj);
2248 if (ret)
2249 return ret;
2250
Ben Widawsky35c20a62013-05-31 11:28:48 -07002251 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002252 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002253}
2254
Ben Widawskye2d05a82013-09-24 09:57:58 -07002255static void
Chris Wilson05394f32010-11-08 19:18:58 +00002256i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002257 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002258{
Chris Wilson9d7730912012-11-27 16:22:52 +00002259 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002260
Zou Nan hai852835f2010-05-21 09:08:56 +08002261 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002262 if (obj->ring != ring && obj->last_write_seqno) {
2263 /* Keep the seqno relative to the current ring */
2264 obj->last_write_seqno = seqno;
2265 }
Chris Wilson05394f32010-11-08 19:18:58 +00002266 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002267
2268 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002269 if (!obj->active) {
2270 drm_gem_object_reference(&obj->base);
2271 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002272 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002273
Chris Wilson05394f32010-11-08 19:18:58 +00002274 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002275
Chris Wilson0201f1e2012-07-20 12:41:01 +01002276 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002277}
2278
Ben Widawskye2d05a82013-09-24 09:57:58 -07002279void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002280 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002281{
2282 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2283 return i915_gem_object_move_to_active(vma->obj, ring);
2284}
2285
Chris Wilsoncaea7472010-11-12 13:53:37 +00002286static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002287i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2288{
Ben Widawskyca191b12013-07-31 17:00:14 -07002289 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002290 struct i915_address_space *vm;
2291 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002292
Chris Wilson65ce3022012-07-20 12:41:02 +01002293 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002294 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002295
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002296 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2297 vma = i915_gem_obj_to_vma(obj, vm);
2298 if (vma && !list_empty(&vma->mm_list))
2299 list_move_tail(&vma->mm_list, &vm->inactive_list);
2300 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002301
Daniel Vetterf99d7062014-06-19 16:01:59 +02002302 intel_fb_obj_flush(obj, true);
2303
Chris Wilson65ce3022012-07-20 12:41:02 +01002304 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002305 obj->ring = NULL;
2306
Chris Wilson65ce3022012-07-20 12:41:02 +01002307 obj->last_read_seqno = 0;
2308 obj->last_write_seqno = 0;
2309 obj->base.write_domain = 0;
2310
2311 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002312
2313 obj->active = 0;
2314 drm_gem_object_unreference(&obj->base);
2315
2316 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002317}
Eric Anholt673a3942008-07-30 12:06:12 -07002318
Chris Wilsonc8725f32014-03-17 12:21:55 +00002319static void
2320i915_gem_object_retire(struct drm_i915_gem_object *obj)
2321{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002322 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002323
2324 if (ring == NULL)
2325 return;
2326
2327 if (i915_seqno_passed(ring->get_seqno(ring, true),
2328 obj->last_read_seqno))
2329 i915_gem_object_move_to_inactive(obj);
2330}
2331
Chris Wilson9d7730912012-11-27 16:22:52 +00002332static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002333i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002334{
Chris Wilson9d7730912012-11-27 16:22:52 +00002335 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002336 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002337 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002338
Chris Wilson107f27a52012-12-10 13:56:17 +02002339 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002340 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002341 ret = intel_ring_idle(ring);
2342 if (ret)
2343 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002344 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002345 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002346
2347 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002348 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002349 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002350
Ben Widawskyebc348b2014-04-29 14:52:28 -07002351 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2352 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002353 }
2354
2355 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002356}
2357
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002358int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2359{
2360 struct drm_i915_private *dev_priv = dev->dev_private;
2361 int ret;
2362
2363 if (seqno == 0)
2364 return -EINVAL;
2365
2366 /* HWS page needs to be set less than what we
2367 * will inject to ring
2368 */
2369 ret = i915_gem_init_seqno(dev, seqno - 1);
2370 if (ret)
2371 return ret;
2372
2373 /* Carefully set the last_seqno value so that wrap
2374 * detection still works
2375 */
2376 dev_priv->next_seqno = seqno;
2377 dev_priv->last_seqno = seqno - 1;
2378 if (dev_priv->last_seqno == 0)
2379 dev_priv->last_seqno--;
2380
2381 return 0;
2382}
2383
Chris Wilson9d7730912012-11-27 16:22:52 +00002384int
2385i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002386{
Chris Wilson9d7730912012-11-27 16:22:52 +00002387 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002388
Chris Wilson9d7730912012-11-27 16:22:52 +00002389 /* reserve 0 for non-seqno */
2390 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002391 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002392 if (ret)
2393 return ret;
2394
2395 dev_priv->next_seqno = 1;
2396 }
2397
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002398 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002399 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002400}
2401
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002402int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002403 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002404 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002405 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002406{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002407 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002408 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002409 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002410 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002411 int ret;
2412
Oscar Mateo48e29f52014-07-24 17:04:29 +01002413 request = ring->preallocated_lazy_request;
2414 if (WARN_ON(request == NULL))
2415 return -ENOMEM;
2416
2417 if (i915.enable_execlists) {
2418 struct intel_context *ctx = request->ctx;
2419 ringbuf = ctx->engine[ring->id].ringbuf;
2420 } else
2421 ringbuf = ring->buffer;
2422
2423 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002424 /*
2425 * Emit any outstanding flushes - execbuf can fail to emit the flush
2426 * after having emitted the batchbuffer command. Hence we need to fix
2427 * things up similar to emitting the lazy request. The difference here
2428 * is that the flush _must_ happen before the next request, no matter
2429 * what.
2430 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002431 if (i915.enable_execlists) {
2432 ret = logical_ring_flush_all_caches(ringbuf);
2433 if (ret)
2434 return ret;
2435 } else {
2436 ret = intel_ring_flush_all_caches(ring);
2437 if (ret)
2438 return ret;
2439 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002440
Chris Wilsona71d8d92012-02-15 11:25:36 +00002441 /* Record the position of the start of the request so that
2442 * should we detect the updated seqno part-way through the
2443 * GPU processing the request, we never over-estimate the
2444 * position of the head.
2445 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002446 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002447
Oscar Mateo48e29f52014-07-24 17:04:29 +01002448 if (i915.enable_execlists) {
2449 ret = ring->emit_request(ringbuf);
2450 if (ret)
2451 return ret;
2452 } else {
2453 ret = ring->add_request(ring);
2454 if (ret)
2455 return ret;
2456 }
Eric Anholt673a3942008-07-30 12:06:12 -07002457
Chris Wilson9d7730912012-11-27 16:22:52 +00002458 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002459 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002460 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002461 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002462
2463 /* Whilst this request exists, batch_obj will be on the
2464 * active_list, and so will hold the active reference. Only when this
2465 * request is retired will the the batch_obj be moved onto the
2466 * inactive_list and lose its active reference. Hence we do not need
2467 * to explicitly hold another reference here.
2468 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002469 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002470
Oscar Mateo48e29f52014-07-24 17:04:29 +01002471 if (!i915.enable_execlists) {
2472 /* Hold a reference to the current context so that we can inspect
2473 * it later in case a hangcheck error event fires.
2474 */
2475 request->ctx = ring->last_context;
2476 if (request->ctx)
2477 i915_gem_context_reference(request->ctx);
2478 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002479
Eric Anholt673a3942008-07-30 12:06:12 -07002480 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002481 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002482 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002483
Chris Wilsondb53a302011-02-03 11:57:46 +00002484 if (file) {
2485 struct drm_i915_file_private *file_priv = file->driver_priv;
2486
Chris Wilson1c255952010-09-26 11:03:27 +01002487 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002488 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002489 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002490 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002491 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002492 }
Eric Anholt673a3942008-07-30 12:06:12 -07002493
Chris Wilson9d7730912012-11-27 16:22:52 +00002494 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002495 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002496 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002497
Daniel Vetter87255482014-11-19 20:36:48 +01002498 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002499
Daniel Vetter87255482014-11-19 20:36:48 +01002500 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2501 queue_delayed_work(dev_priv->wq,
2502 &dev_priv->mm.retire_work,
2503 round_jiffies_up_relative(HZ));
2504 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002505
Chris Wilsonacb868d2012-09-26 13:47:30 +01002506 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002507 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002508 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002509}
2510
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002511static inline void
2512i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002513{
Chris Wilson1c255952010-09-26 11:03:27 +01002514 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002515
Chris Wilson1c255952010-09-26 11:03:27 +01002516 if (!file_priv)
2517 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002518
Chris Wilson1c255952010-09-26 11:03:27 +01002519 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002520 list_del(&request->client_list);
2521 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002522 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002523}
2524
Mika Kuoppala939fd762014-01-30 19:04:44 +02002525static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002526 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002527{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002528 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002529
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002530 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2531
2532 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002533 return true;
2534
2535 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002536 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002537 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002538 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002539 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2540 if (i915_stop_ring_allow_warn(dev_priv))
2541 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002542 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002543 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002544 }
2545
2546 return false;
2547}
2548
Mika Kuoppala939fd762014-01-30 19:04:44 +02002549static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002550 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002551 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002552{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002553 struct i915_ctx_hang_stats *hs;
2554
2555 if (WARN_ON(!ctx))
2556 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002557
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002558 hs = &ctx->hang_stats;
2559
2560 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002561 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002562 hs->batch_active++;
2563 hs->guilty_ts = get_seconds();
2564 } else {
2565 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002566 }
2567}
2568
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002569static void i915_gem_free_request(struct drm_i915_gem_request *request)
2570{
Oscar Mateodcb4c122014-11-13 10:28:10 +00002571 struct intel_context *ctx = request->ctx;
2572
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002573 list_del(&request->list);
2574 i915_gem_request_remove_from_client(request);
2575
Thomas Daniel0794aed2014-11-25 10:39:25 +00002576 if (ctx) {
2577 if (i915.enable_execlists) {
2578 struct intel_engine_cs *ring = request->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002579
Thomas Daniel0794aed2014-11-25 10:39:25 +00002580 if (ctx != ring->default_context)
2581 intel_lr_context_unpin(ring, ctx);
2582 }
Oscar Mateodcb4c122014-11-13 10:28:10 +00002583 i915_gem_context_unreference(ctx);
2584 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002585 kfree(request);
2586}
2587
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002588struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002589i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002590{
Chris Wilson4db080f2013-12-04 11:37:09 +00002591 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002592 u32 completed_seqno;
2593
2594 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002595
Chris Wilson4db080f2013-12-04 11:37:09 +00002596 list_for_each_entry(request, &ring->request_list, list) {
2597 if (i915_seqno_passed(completed_seqno, request->seqno))
2598 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002599
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002600 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002601 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002602
2603 return NULL;
2604}
2605
2606static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002607 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002608{
2609 struct drm_i915_gem_request *request;
2610 bool ring_hung;
2611
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002612 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002613
2614 if (request == NULL)
2615 return;
2616
2617 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2618
Mika Kuoppala939fd762014-01-30 19:04:44 +02002619 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002620
2621 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002622 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002623}
2624
2625static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002626 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002627{
Chris Wilsondfaae392010-09-22 10:31:52 +01002628 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002629 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002630
Chris Wilson05394f32010-11-08 19:18:58 +00002631 obj = list_first_entry(&ring->active_list,
2632 struct drm_i915_gem_object,
2633 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002634
Chris Wilson05394f32010-11-08 19:18:58 +00002635 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002636 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002637
2638 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002639 * Clear the execlists queue up before freeing the requests, as those
2640 * are the ones that keep the context and ringbuffer backing objects
2641 * pinned in place.
2642 */
2643 while (!list_empty(&ring->execlist_queue)) {
2644 struct intel_ctx_submit_request *submit_req;
2645
2646 submit_req = list_first_entry(&ring->execlist_queue,
2647 struct intel_ctx_submit_request,
2648 execlist_link);
2649 list_del(&submit_req->execlist_link);
2650 intel_runtime_pm_put(dev_priv);
2651 i915_gem_context_unreference(submit_req->ctx);
2652 kfree(submit_req);
2653 }
2654
2655 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002656 * We must free the requests after all the corresponding objects have
2657 * been moved off active lists. Which is the same order as the normal
2658 * retire_requests function does. This is important if object hold
2659 * implicit references on things like e.g. ppgtt address spaces through
2660 * the request.
2661 */
2662 while (!list_empty(&ring->request_list)) {
2663 struct drm_i915_gem_request *request;
2664
2665 request = list_first_entry(&ring->request_list,
2666 struct drm_i915_gem_request,
2667 list);
2668
2669 i915_gem_free_request(request);
2670 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002671
2672 /* These may not have been flush before the reset, do so now */
2673 kfree(ring->preallocated_lazy_request);
2674 ring->preallocated_lazy_request = NULL;
2675 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002676}
2677
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002678void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002679{
2680 struct drm_i915_private *dev_priv = dev->dev_private;
2681 int i;
2682
Daniel Vetter4b9de732011-10-09 21:52:02 +02002683 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002684 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002685
Daniel Vetter94a335d2013-07-17 14:51:28 +02002686 /*
2687 * Commit delayed tiling changes if we have an object still
2688 * attached to the fence, otherwise just clear the fence.
2689 */
2690 if (reg->obj) {
2691 i915_gem_object_update_fence(reg->obj, reg,
2692 reg->obj->tiling_mode);
2693 } else {
2694 i915_gem_write_fence(dev, i, NULL);
2695 }
Chris Wilson312817a2010-11-22 11:50:11 +00002696 }
2697}
2698
Chris Wilson069efc12010-09-30 16:53:18 +01002699void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002700{
Chris Wilsondfaae392010-09-22 10:31:52 +01002701 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002702 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002703 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002704
Chris Wilson4db080f2013-12-04 11:37:09 +00002705 /*
2706 * Before we free the objects from the requests, we need to inspect
2707 * them for finding the guilty party. As the requests only borrow
2708 * their reference to the objects, the inspection must be done first.
2709 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002710 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002711 i915_gem_reset_ring_status(dev_priv, ring);
2712
2713 for_each_ring(ring, dev_priv, i)
2714 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002715
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002716 i915_gem_context_reset(dev);
2717
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002718 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002719}
2720
2721/**
2722 * This function clears the request list as sequence numbers are passed.
2723 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002724void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002725i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002726{
Eric Anholt673a3942008-07-30 12:06:12 -07002727 uint32_t seqno;
2728
Chris Wilsondb53a302011-02-03 11:57:46 +00002729 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002730 return;
2731
Chris Wilsondb53a302011-02-03 11:57:46 +00002732 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002733
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002734 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002735
Chris Wilsone9103032014-01-07 11:45:14 +00002736 /* Move any buffers on the active list that are no longer referenced
2737 * by the ringbuffer to the flushing/inactive lists as appropriate,
2738 * before we free the context associated with the requests.
2739 */
2740 while (!list_empty(&ring->active_list)) {
2741 struct drm_i915_gem_object *obj;
2742
2743 obj = list_first_entry(&ring->active_list,
2744 struct drm_i915_gem_object,
2745 ring_list);
2746
2747 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2748 break;
2749
2750 i915_gem_object_move_to_inactive(obj);
2751 }
2752
2753
Zou Nan hai852835f2010-05-21 09:08:56 +08002754 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002755 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002756 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002757
Zou Nan hai852835f2010-05-21 09:08:56 +08002758 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002759 struct drm_i915_gem_request,
2760 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002761
Chris Wilsondfaae392010-09-22 10:31:52 +01002762 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002763 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002764
Chris Wilsondb53a302011-02-03 11:57:46 +00002765 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002766
2767 /* This is one of the few common intersection points
2768 * between legacy ringbuffer submission and execlists:
2769 * we need to tell them apart in order to find the correct
2770 * ringbuffer to which the request belongs to.
2771 */
2772 if (i915.enable_execlists) {
2773 struct intel_context *ctx = request->ctx;
2774 ringbuf = ctx->engine[ring->id].ringbuf;
2775 } else
2776 ringbuf = ring->buffer;
2777
Chris Wilsona71d8d92012-02-15 11:25:36 +00002778 /* We know the GPU must have read the request to have
2779 * sent us the seqno + interrupt, so use the position
2780 * of tail of the request to update the last known position
2781 * of the GPU head.
2782 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002783 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002784
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002785 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002786 }
2787
Chris Wilsondb53a302011-02-03 11:57:46 +00002788 if (unlikely(ring->trace_irq_seqno &&
2789 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002790 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002791 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002792 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002793
Chris Wilsondb53a302011-02-03 11:57:46 +00002794 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002795}
2796
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002797bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002798i915_gem_retire_requests(struct drm_device *dev)
2799{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002800 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002801 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002802 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002803 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002804
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002805 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002806 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002807 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002808 if (i915.enable_execlists) {
2809 unsigned long flags;
2810
2811 spin_lock_irqsave(&ring->execlist_lock, flags);
2812 idle &= list_empty(&ring->execlist_queue);
2813 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2814
2815 intel_execlists_retire_requests(ring);
2816 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002817 }
2818
2819 if (idle)
2820 mod_delayed_work(dev_priv->wq,
2821 &dev_priv->mm.idle_work,
2822 msecs_to_jiffies(100));
2823
2824 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002825}
2826
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002827static void
Eric Anholt673a3942008-07-30 12:06:12 -07002828i915_gem_retire_work_handler(struct work_struct *work)
2829{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002830 struct drm_i915_private *dev_priv =
2831 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2832 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002833 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002834
Chris Wilson891b48c2010-09-29 12:26:37 +01002835 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002836 idle = false;
2837 if (mutex_trylock(&dev->struct_mutex)) {
2838 idle = i915_gem_retire_requests(dev);
2839 mutex_unlock(&dev->struct_mutex);
2840 }
2841 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002842 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2843 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002844}
Chris Wilson891b48c2010-09-29 12:26:37 +01002845
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002846static void
2847i915_gem_idle_work_handler(struct work_struct *work)
2848{
2849 struct drm_i915_private *dev_priv =
2850 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002851
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002852 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002853}
2854
Ben Widawsky5816d642012-04-11 11:18:19 -07002855/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002856 * Ensures that an object will eventually get non-busy by flushing any required
2857 * write domains, emitting any outstanding lazy request and retiring and
2858 * completed requests.
2859 */
2860static int
2861i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2862{
2863 int ret;
2864
2865 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002866 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002867 if (ret)
2868 return ret;
2869
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002870 i915_gem_retire_requests_ring(obj->ring);
2871 }
2872
2873 return 0;
2874}
2875
2876/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002877 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2878 * @DRM_IOCTL_ARGS: standard ioctl arguments
2879 *
2880 * Returns 0 if successful, else an error is returned with the remaining time in
2881 * the timeout parameter.
2882 * -ETIME: object is still busy after timeout
2883 * -ERESTARTSYS: signal interrupted the wait
2884 * -ENONENT: object doesn't exist
2885 * Also possible, but rare:
2886 * -EAGAIN: GPU wedged
2887 * -ENOMEM: damn
2888 * -ENODEV: Internal IRQ fail
2889 * -E?: The add request failed
2890 *
2891 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2892 * non-zero timeout parameter the wait ioctl will wait for the given number of
2893 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2894 * without holding struct_mutex the object may become re-busied before this
2895 * function completes. A similar but shorter * race condition exists in the busy
2896 * ioctl
2897 */
2898int
2899i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2900{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002901 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002902 struct drm_i915_gem_wait *args = data;
2903 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002904 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002905 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002906 u32 seqno = 0;
2907 int ret = 0;
2908
Daniel Vetter11b5d512014-09-29 15:31:26 +02002909 if (args->flags != 0)
2910 return -EINVAL;
2911
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002912 ret = i915_mutex_lock_interruptible(dev);
2913 if (ret)
2914 return ret;
2915
2916 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2917 if (&obj->base == NULL) {
2918 mutex_unlock(&dev->struct_mutex);
2919 return -ENOENT;
2920 }
2921
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002922 /* Need to make sure the object gets inactive eventually. */
2923 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002924 if (ret)
2925 goto out;
2926
2927 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002928 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002929 ring = obj->ring;
2930 }
2931
2932 if (seqno == 0)
2933 goto out;
2934
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002935 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002936 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002937 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002938 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002939 ret = -ETIME;
2940 goto out;
2941 }
2942
2943 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002944 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002945 mutex_unlock(&dev->struct_mutex);
2946
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02002947 return __i915_wait_seqno(ring, seqno, reset_counter, true,
2948 &args->timeout_ns, file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002949
2950out:
2951 drm_gem_object_unreference(&obj->base);
2952 mutex_unlock(&dev->struct_mutex);
2953 return ret;
2954}
2955
2956/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002957 * i915_gem_object_sync - sync an object to a ring.
2958 *
2959 * @obj: object which may be in use on another ring.
2960 * @to: ring we wish to use the object on. May be NULL.
2961 *
2962 * This code is meant to abstract object synchronization with the GPU.
2963 * Calling with NULL implies synchronizing the object with the CPU
2964 * rather than a particular GPU ring.
2965 *
2966 * Returns 0 if successful, else propagates up the lower layer error.
2967 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002968int
2969i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002970 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002971{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002972 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002973 u32 seqno;
2974 int ret, idx;
2975
2976 if (from == NULL || to == from)
2977 return 0;
2978
Ben Widawsky5816d642012-04-11 11:18:19 -07002979 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002980 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002981
2982 idx = intel_ring_sync_index(from, to);
2983
Chris Wilson0201f1e2012-07-20 12:41:01 +01002984 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002985 /* Optimization: Avoid semaphore sync when we are sure we already
2986 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002987 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002988 return 0;
2989
Ben Widawskyb4aca012012-04-25 20:50:12 -07002990 ret = i915_gem_check_olr(obj->ring, seqno);
2991 if (ret)
2992 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002993
Chris Wilsonb52b89d2013-09-25 11:43:28 +01002994 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07002995 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002996 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002997 /* We use last_read_seqno because sync_to()
2998 * might have just caused seqno wrap under
2999 * the radar.
3000 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003001 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07003002
Ben Widawskye3a5a222012-04-11 11:18:20 -07003003 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003004}
3005
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003006static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3007{
3008 u32 old_write_domain, old_read_domains;
3009
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003010 /* Force a pagefault for domain tracking on next user access */
3011 i915_gem_release_mmap(obj);
3012
Keith Packardb97c3d92011-06-24 21:02:59 -07003013 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3014 return;
3015
Chris Wilson97c809fd2012-10-09 19:24:38 +01003016 /* Wait for any direct GTT access to complete */
3017 mb();
3018
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003019 old_read_domains = obj->base.read_domains;
3020 old_write_domain = obj->base.write_domain;
3021
3022 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3023 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3024
3025 trace_i915_gem_object_change_domain(obj,
3026 old_read_domains,
3027 old_write_domain);
3028}
3029
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003030int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003031{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003032 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003033 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003034 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003035
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003036 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003037 return 0;
3038
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003039 if (!drm_mm_node_allocated(&vma->node)) {
3040 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003041 return 0;
3042 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003043
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003044 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003045 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003046
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003047 BUG_ON(obj->pages == NULL);
3048
Chris Wilsona8198ee2011-04-13 22:04:09 +01003049 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003050 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003051 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003052 /* Continue on if we fail due to EIO, the GPU is hung so we
3053 * should be safe and we need to cleanup or else we might
3054 * cause memory corruption through use-after-free.
3055 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003056
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003057 /* Throw away the active reference before moving to the unbound list */
3058 i915_gem_object_retire(obj);
3059
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003060 if (i915_is_ggtt(vma->vm)) {
3061 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003062
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003063 /* release the fence reg _after_ flushing */
3064 ret = i915_gem_object_put_fence(obj);
3065 if (ret)
3066 return ret;
3067 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003068
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003069 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003070
Ben Widawsky6f65e292013-12-06 14:10:56 -08003071 vma->unbind_vma(vma);
3072
Chris Wilson64bf9302014-02-25 14:23:28 +00003073 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003074 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003075 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003076
Ben Widawsky2f633152013-07-17 12:19:03 -07003077 drm_mm_remove_node(&vma->node);
3078 i915_gem_vma_destroy(vma);
3079
3080 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003081 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003082 if (list_empty(&obj->vma_list)) {
3083 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003084 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003085 }
Eric Anholt673a3942008-07-30 12:06:12 -07003086
Chris Wilson70903c32013-12-04 09:59:09 +00003087 /* And finally now the object is completely decoupled from this vma,
3088 * we can drop its hold on the backing storage and allow it to be
3089 * reaped by the shrinker.
3090 */
3091 i915_gem_object_unpin_pages(obj);
3092
Chris Wilson88241782011-01-07 17:09:48 +00003093 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003094}
3095
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003096int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003097{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003098 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003099 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003100 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003101
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003102 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003103 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003104 if (!i915.enable_execlists) {
3105 ret = i915_switch_context(ring, ring->default_context);
3106 if (ret)
3107 return ret;
3108 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003109
Chris Wilson3e960502012-11-27 16:22:54 +00003110 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003111 if (ret)
3112 return ret;
3113 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003114
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003115 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003116}
3117
Chris Wilson9ce079e2012-04-17 15:31:30 +01003118static void i965_write_fence_reg(struct drm_device *dev, int reg,
3119 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003120{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003121 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003122 int fence_reg;
3123 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003124
Imre Deak56c844e2013-01-07 21:47:34 +02003125 if (INTEL_INFO(dev)->gen >= 6) {
3126 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3127 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3128 } else {
3129 fence_reg = FENCE_REG_965_0;
3130 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3131 }
3132
Chris Wilsond18b9612013-07-10 13:36:23 +01003133 fence_reg += reg * 8;
3134
3135 /* To w/a incoherency with non-atomic 64-bit register updates,
3136 * we split the 64-bit update into two 32-bit writes. In order
3137 * for a partial fence not to be evaluated between writes, we
3138 * precede the update with write to turn off the fence register,
3139 * and only enable the fence as the last step.
3140 *
3141 * For extra levels of paranoia, we make sure each step lands
3142 * before applying the next step.
3143 */
3144 I915_WRITE(fence_reg, 0);
3145 POSTING_READ(fence_reg);
3146
Chris Wilson9ce079e2012-04-17 15:31:30 +01003147 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003148 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003149 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003150
Bob Paauweaf1a7302014-12-18 09:51:26 -08003151 /* Adjust fence size to match tiled area */
3152 if (obj->tiling_mode != I915_TILING_NONE) {
3153 uint32_t row_size = obj->stride *
3154 (obj->tiling_mode == I915_TILING_Y ? 32 : 8);
3155 size = (size / row_size) * row_size;
3156 }
3157
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003158 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003159 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003160 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003161 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003162 if (obj->tiling_mode == I915_TILING_Y)
3163 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3164 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003165
Chris Wilsond18b9612013-07-10 13:36:23 +01003166 I915_WRITE(fence_reg + 4, val >> 32);
3167 POSTING_READ(fence_reg + 4);
3168
3169 I915_WRITE(fence_reg + 0, val);
3170 POSTING_READ(fence_reg);
3171 } else {
3172 I915_WRITE(fence_reg + 4, 0);
3173 POSTING_READ(fence_reg + 4);
3174 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003175}
3176
Chris Wilson9ce079e2012-04-17 15:31:30 +01003177static void i915_write_fence_reg(struct drm_device *dev, int reg,
3178 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003179{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003180 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003181 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003182
Chris Wilson9ce079e2012-04-17 15:31:30 +01003183 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003184 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003185 int pitch_val;
3186 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003187
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003188 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003189 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003190 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3191 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3192 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003193
3194 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3195 tile_width = 128;
3196 else
3197 tile_width = 512;
3198
3199 /* Note: pitch better be a power of two tile widths */
3200 pitch_val = obj->stride / tile_width;
3201 pitch_val = ffs(pitch_val) - 1;
3202
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003203 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003204 if (obj->tiling_mode == I915_TILING_Y)
3205 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3206 val |= I915_FENCE_SIZE_BITS(size);
3207 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3208 val |= I830_FENCE_REG_VALID;
3209 } else
3210 val = 0;
3211
3212 if (reg < 8)
3213 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003214 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003215 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003216
Chris Wilson9ce079e2012-04-17 15:31:30 +01003217 I915_WRITE(reg, val);
3218 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003219}
3220
Chris Wilson9ce079e2012-04-17 15:31:30 +01003221static void i830_write_fence_reg(struct drm_device *dev, int reg,
3222 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003223{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003224 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003225 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003226
Chris Wilson9ce079e2012-04-17 15:31:30 +01003227 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003228 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003229 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003230
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003231 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003232 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003233 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3234 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3235 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003236
Chris Wilson9ce079e2012-04-17 15:31:30 +01003237 pitch_val = obj->stride / 128;
3238 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003239
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003240 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003241 if (obj->tiling_mode == I915_TILING_Y)
3242 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3243 val |= I830_FENCE_SIZE_BITS(size);
3244 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3245 val |= I830_FENCE_REG_VALID;
3246 } else
3247 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003248
Chris Wilson9ce079e2012-04-17 15:31:30 +01003249 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3250 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3251}
3252
Chris Wilsond0a57782012-10-09 19:24:37 +01003253inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3254{
3255 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3256}
3257
Chris Wilson9ce079e2012-04-17 15:31:30 +01003258static void i915_gem_write_fence(struct drm_device *dev, int reg,
3259 struct drm_i915_gem_object *obj)
3260{
Chris Wilsond0a57782012-10-09 19:24:37 +01003261 struct drm_i915_private *dev_priv = dev->dev_private;
3262
3263 /* Ensure that all CPU reads are completed before installing a fence
3264 * and all writes before removing the fence.
3265 */
3266 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3267 mb();
3268
Daniel Vetter94a335d2013-07-17 14:51:28 +02003269 WARN(obj && (!obj->stride || !obj->tiling_mode),
3270 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3271 obj->stride, obj->tiling_mode);
3272
Chris Wilson9ce079e2012-04-17 15:31:30 +01003273 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003274 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003275 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003276 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003277 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003278 case 5:
3279 case 4: i965_write_fence_reg(dev, reg, obj); break;
3280 case 3: i915_write_fence_reg(dev, reg, obj); break;
3281 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003282 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003283 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003284
3285 /* And similarly be paranoid that no direct access to this region
3286 * is reordered to before the fence is installed.
3287 */
3288 if (i915_gem_object_needs_mb(obj))
3289 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003290}
3291
Chris Wilson61050802012-04-17 15:31:31 +01003292static inline int fence_number(struct drm_i915_private *dev_priv,
3293 struct drm_i915_fence_reg *fence)
3294{
3295 return fence - dev_priv->fence_regs;
3296}
3297
3298static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3299 struct drm_i915_fence_reg *fence,
3300 bool enable)
3301{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003302 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003303 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003304
Chris Wilson46a0b632013-07-10 13:36:24 +01003305 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003306
3307 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003308 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003309 fence->obj = obj;
3310 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3311 } else {
3312 obj->fence_reg = I915_FENCE_REG_NONE;
3313 fence->obj = NULL;
3314 list_del_init(&fence->lru_list);
3315 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003316 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003317}
3318
Chris Wilsond9e86c02010-11-10 16:40:20 +00003319static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003320i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003321{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003322 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003323 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003324 if (ret)
3325 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003326
3327 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003328 }
3329
3330 return 0;
3331}
3332
3333int
3334i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3335{
Chris Wilson61050802012-04-17 15:31:31 +01003336 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003337 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003338 int ret;
3339
Chris Wilsond0a57782012-10-09 19:24:37 +01003340 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003341 if (ret)
3342 return ret;
3343
Chris Wilson61050802012-04-17 15:31:31 +01003344 if (obj->fence_reg == I915_FENCE_REG_NONE)
3345 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003346
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003347 fence = &dev_priv->fence_regs[obj->fence_reg];
3348
Daniel Vetteraff10b302014-02-14 14:06:05 +01003349 if (WARN_ON(fence->pin_count))
3350 return -EBUSY;
3351
Chris Wilson61050802012-04-17 15:31:31 +01003352 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003353 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003354
3355 return 0;
3356}
3357
3358static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003359i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003360{
Daniel Vetterae3db242010-02-19 11:51:58 +01003361 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003362 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003363 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003364
3365 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003366 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003367 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3368 reg = &dev_priv->fence_regs[i];
3369 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003370 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003371
Chris Wilson1690e1e2011-12-14 13:57:08 +01003372 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003373 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003374 }
3375
Chris Wilsond9e86c02010-11-10 16:40:20 +00003376 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003377 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003378
3379 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003380 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003381 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003382 continue;
3383
Chris Wilson8fe301a2012-04-17 15:31:28 +01003384 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003385 }
3386
Chris Wilson5dce5b932014-01-20 10:17:36 +00003387deadlock:
3388 /* Wait for completion of pending flips which consume fences */
3389 if (intel_has_pending_fb_unpin(dev))
3390 return ERR_PTR(-EAGAIN);
3391
3392 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003393}
3394
Jesse Barnesde151cf2008-11-12 10:03:55 -08003395/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003396 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003397 * @obj: object to map through a fence reg
3398 *
3399 * When mapping objects through the GTT, userspace wants to be able to write
3400 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003401 * This function walks the fence regs looking for a free one for @obj,
3402 * stealing one if it can't find any.
3403 *
3404 * It then sets up the reg based on the object's properties: address, pitch
3405 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003406 *
3407 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003408 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003409int
Chris Wilson06d98132012-04-17 15:31:24 +01003410i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003411{
Chris Wilson05394f32010-11-08 19:18:58 +00003412 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003413 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003414 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003415 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003416 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003417
Chris Wilson14415742012-04-17 15:31:33 +01003418 /* Have we updated the tiling parameters upon the object and so
3419 * will need to serialise the write to the associated fence register?
3420 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003421 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003422 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003423 if (ret)
3424 return ret;
3425 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003426
Chris Wilsond9e86c02010-11-10 16:40:20 +00003427 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003428 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3429 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003430 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003431 list_move_tail(&reg->lru_list,
3432 &dev_priv->mm.fence_list);
3433 return 0;
3434 }
3435 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003436 if (WARN_ON(!obj->map_and_fenceable))
3437 return -EINVAL;
3438
Chris Wilson14415742012-04-17 15:31:33 +01003439 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003440 if (IS_ERR(reg))
3441 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003442
Chris Wilson14415742012-04-17 15:31:33 +01003443 if (reg->obj) {
3444 struct drm_i915_gem_object *old = reg->obj;
3445
Chris Wilsond0a57782012-10-09 19:24:37 +01003446 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003447 if (ret)
3448 return ret;
3449
Chris Wilson14415742012-04-17 15:31:33 +01003450 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003451 }
Chris Wilson14415742012-04-17 15:31:33 +01003452 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003453 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003454
Chris Wilson14415742012-04-17 15:31:33 +01003455 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003456
Chris Wilson9ce079e2012-04-17 15:31:30 +01003457 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003458}
3459
Chris Wilson4144f9b2014-09-11 08:43:48 +01003460static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003461 unsigned long cache_level)
3462{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003463 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003464 struct drm_mm_node *other;
3465
Chris Wilson4144f9b2014-09-11 08:43:48 +01003466 /*
3467 * On some machines we have to be careful when putting differing types
3468 * of snoopable memory together to avoid the prefetcher crossing memory
3469 * domains and dying. During vm initialisation, we decide whether or not
3470 * these constraints apply and set the drm_mm.color_adjust
3471 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003472 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003473 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003474 return true;
3475
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003476 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003477 return true;
3478
3479 if (list_empty(&gtt_space->node_list))
3480 return true;
3481
3482 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3483 if (other->allocated && !other->hole_follows && other->color != cache_level)
3484 return false;
3485
3486 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3487 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3488 return false;
3489
3490 return true;
3491}
3492
Jesse Barnesde151cf2008-11-12 10:03:55 -08003493/**
Eric Anholt673a3942008-07-30 12:06:12 -07003494 * Finds free space in the GTT aperture and binds the object there.
3495 */
Daniel Vetter262de142014-02-14 14:01:20 +01003496static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003497i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3498 struct i915_address_space *vm,
3499 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003500 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003501{
Chris Wilson05394f32010-11-08 19:18:58 +00003502 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003503 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003504 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003505 unsigned long start =
3506 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3507 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003508 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003509 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003510 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003511
Chris Wilsone28f8712011-07-18 13:11:49 -07003512 fence_size = i915_gem_get_gtt_size(dev,
3513 obj->base.size,
3514 obj->tiling_mode);
3515 fence_alignment = i915_gem_get_gtt_alignment(dev,
3516 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003517 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003518 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003519 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003520 obj->base.size,
3521 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003522
Eric Anholt673a3942008-07-30 12:06:12 -07003523 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003524 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003525 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003526 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003527 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003528 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003529 }
3530
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003531 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003532
Chris Wilson654fc602010-05-27 13:18:21 +01003533 /* If the object is bigger than the entire aperture, reject it early
3534 * before evicting everything in a vain attempt to find space.
3535 */
Chris Wilsond23db882014-05-23 08:48:08 +02003536 if (obj->base.size > end) {
3537 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003538 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003539 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003540 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003541 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003542 }
3543
Chris Wilson37e680a2012-06-07 15:38:42 +01003544 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003545 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003546 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003547
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003548 i915_gem_object_pin_pages(obj);
3549
Ben Widawskyaccfef22013-08-14 11:38:35 +02003550 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003551 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003552 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003553
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003554search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003555 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003556 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003557 obj->cache_level,
3558 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003559 DRM_MM_SEARCH_DEFAULT,
3560 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003561 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003562 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003563 obj->cache_level,
3564 start, end,
3565 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003566 if (ret == 0)
3567 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003568
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003569 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003570 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003571 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003572 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003573 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003574 }
3575
Daniel Vetter74163902012-02-15 23:50:21 +01003576 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003577 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003578 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003579
Ben Widawsky35c20a62013-05-31 11:28:48 -07003580 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003581 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003582
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003583 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003584 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003585 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003586
Daniel Vetter262de142014-02-14 14:01:20 +01003587 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003588
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003589err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003590 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003591err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003592 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003593 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003594err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003595 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003596 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003597}
3598
Chris Wilson000433b2013-08-08 14:41:09 +01003599bool
Chris Wilson2c225692013-08-09 12:26:45 +01003600i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3601 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003602{
Eric Anholt673a3942008-07-30 12:06:12 -07003603 /* If we don't have a page list set up, then we're not pinned
3604 * to GPU, and we can ignore the cache flush because it'll happen
3605 * again at bind time.
3606 */
Chris Wilson05394f32010-11-08 19:18:58 +00003607 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003608 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003609
Imre Deak769ce462013-02-13 21:56:05 +02003610 /*
3611 * Stolen memory is always coherent with the GPU as it is explicitly
3612 * marked as wc by the system, or the system is cache-coherent.
3613 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003614 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003615 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003616
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003617 /* If the GPU is snooping the contents of the CPU cache,
3618 * we do not need to manually clear the CPU cache lines. However,
3619 * the caches are only snooped when the render cache is
3620 * flushed/invalidated. As we always have to emit invalidations
3621 * and flushes when moving into and out of the RENDER domain, correct
3622 * snooping behaviour occurs naturally as the result of our domain
3623 * tracking.
3624 */
Chris Wilson2c225692013-08-09 12:26:45 +01003625 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003626 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003627
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003628 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003629 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003630
3631 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003632}
3633
3634/** Flushes the GTT write domain for the object if it's dirty. */
3635static void
Chris Wilson05394f32010-11-08 19:18:58 +00003636i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003637{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003638 uint32_t old_write_domain;
3639
Chris Wilson05394f32010-11-08 19:18:58 +00003640 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003641 return;
3642
Chris Wilson63256ec2011-01-04 18:42:07 +00003643 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003644 * to it immediately go to main memory as far as we know, so there's
3645 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003646 *
3647 * However, we do have to enforce the order so that all writes through
3648 * the GTT land before any writes to the device, such as updates to
3649 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003650 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003651 wmb();
3652
Chris Wilson05394f32010-11-08 19:18:58 +00003653 old_write_domain = obj->base.write_domain;
3654 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003655
Daniel Vetterf99d7062014-06-19 16:01:59 +02003656 intel_fb_obj_flush(obj, false);
3657
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003658 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003659 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003660 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003661}
3662
3663/** Flushes the CPU write domain for the object if it's dirty. */
3664static void
Chris Wilson2c225692013-08-09 12:26:45 +01003665i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3666 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003667{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003668 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003669
Chris Wilson05394f32010-11-08 19:18:58 +00003670 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003671 return;
3672
Chris Wilson000433b2013-08-08 14:41:09 +01003673 if (i915_gem_clflush_object(obj, force))
3674 i915_gem_chipset_flush(obj->base.dev);
3675
Chris Wilson05394f32010-11-08 19:18:58 +00003676 old_write_domain = obj->base.write_domain;
3677 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003678
Daniel Vetterf99d7062014-06-19 16:01:59 +02003679 intel_fb_obj_flush(obj, false);
3680
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003681 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003682 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003683 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003684}
3685
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003686/**
3687 * Moves a single object to the GTT read, and possibly write domain.
3688 *
3689 * This function returns when the move is complete, including waiting on
3690 * flushes to occur.
3691 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003692int
Chris Wilson20217462010-11-23 15:26:33 +00003693i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003694{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003695 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003696 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003697 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003698 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003699
Eric Anholt02354392008-11-26 13:58:13 -08003700 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003701 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003702 return -EINVAL;
3703
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003704 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3705 return 0;
3706
Chris Wilson0201f1e2012-07-20 12:41:01 +01003707 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003708 if (ret)
3709 return ret;
3710
Chris Wilsonc8725f32014-03-17 12:21:55 +00003711 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003712 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003713
Chris Wilsond0a57782012-10-09 19:24:37 +01003714 /* Serialise direct access to this object with the barriers for
3715 * coherent writes from the GPU, by effectively invalidating the
3716 * GTT domain upon first access.
3717 */
3718 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3719 mb();
3720
Chris Wilson05394f32010-11-08 19:18:58 +00003721 old_write_domain = obj->base.write_domain;
3722 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003723
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003724 /* It should now be out of any other write domains, and we can update
3725 * the domain values for our changes.
3726 */
Chris Wilson05394f32010-11-08 19:18:58 +00003727 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3728 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003729 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003730 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3731 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3732 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003733 }
3734
Daniel Vetterf99d7062014-06-19 16:01:59 +02003735 if (write)
3736 intel_fb_obj_invalidate(obj, NULL);
3737
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003738 trace_i915_gem_object_change_domain(obj,
3739 old_read_domains,
3740 old_write_domain);
3741
Chris Wilson8325a092012-04-24 15:52:35 +01003742 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003743 if (i915_gem_object_is_inactive(obj))
3744 list_move_tail(&vma->mm_list,
3745 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003746
Eric Anholte47c68e2008-11-14 13:35:19 -08003747 return 0;
3748}
3749
Chris Wilsone4ffd172011-04-04 09:44:39 +01003750int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3751 enum i915_cache_level cache_level)
3752{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003753 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003754 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003755 int ret;
3756
3757 if (obj->cache_level == cache_level)
3758 return 0;
3759
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003760 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003761 DRM_DEBUG("can not change the cache level of pinned objects\n");
3762 return -EBUSY;
3763 }
3764
Chris Wilsondf6f7832014-03-21 07:40:56 +00003765 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003766 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003767 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003768 if (ret)
3769 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003770 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003771 }
3772
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003773 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003774 ret = i915_gem_object_finish_gpu(obj);
3775 if (ret)
3776 return ret;
3777
3778 i915_gem_object_finish_gtt(obj);
3779
3780 /* Before SandyBridge, you could not use tiling or fence
3781 * registers with snooped memory, so relinquish any fences
3782 * currently pointing to our region in the aperture.
3783 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003784 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003785 ret = i915_gem_object_put_fence(obj);
3786 if (ret)
3787 return ret;
3788 }
3789
Ben Widawsky6f65e292013-12-06 14:10:56 -08003790 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003791 if (drm_mm_node_allocated(&vma->node))
3792 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003793 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003794 }
3795
Chris Wilson2c225692013-08-09 12:26:45 +01003796 list_for_each_entry(vma, &obj->vma_list, vma_link)
3797 vma->node.color = cache_level;
3798 obj->cache_level = cache_level;
3799
3800 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003801 u32 old_read_domains, old_write_domain;
3802
3803 /* If we're coming from LLC cached, then we haven't
3804 * actually been tracking whether the data is in the
3805 * CPU cache or not, since we only allow one bit set
3806 * in obj->write_domain and have been skipping the clflushes.
3807 * Just set it to the CPU cache for now.
3808 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003809 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003810 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003811
3812 old_read_domains = obj->base.read_domains;
3813 old_write_domain = obj->base.write_domain;
3814
3815 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3816 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3817
3818 trace_i915_gem_object_change_domain(obj,
3819 old_read_domains,
3820 old_write_domain);
3821 }
3822
Chris Wilsone4ffd172011-04-04 09:44:39 +01003823 return 0;
3824}
3825
Ben Widawsky199adf42012-09-21 17:01:20 -07003826int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3827 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003828{
Ben Widawsky199adf42012-09-21 17:01:20 -07003829 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003830 struct drm_i915_gem_object *obj;
3831 int ret;
3832
3833 ret = i915_mutex_lock_interruptible(dev);
3834 if (ret)
3835 return ret;
3836
3837 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3838 if (&obj->base == NULL) {
3839 ret = -ENOENT;
3840 goto unlock;
3841 }
3842
Chris Wilson651d7942013-08-08 14:41:10 +01003843 switch (obj->cache_level) {
3844 case I915_CACHE_LLC:
3845 case I915_CACHE_L3_LLC:
3846 args->caching = I915_CACHING_CACHED;
3847 break;
3848
Chris Wilson4257d3b2013-08-08 14:41:11 +01003849 case I915_CACHE_WT:
3850 args->caching = I915_CACHING_DISPLAY;
3851 break;
3852
Chris Wilson651d7942013-08-08 14:41:10 +01003853 default:
3854 args->caching = I915_CACHING_NONE;
3855 break;
3856 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003857
3858 drm_gem_object_unreference(&obj->base);
3859unlock:
3860 mutex_unlock(&dev->struct_mutex);
3861 return ret;
3862}
3863
Ben Widawsky199adf42012-09-21 17:01:20 -07003864int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3865 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003866{
Ben Widawsky199adf42012-09-21 17:01:20 -07003867 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003868 struct drm_i915_gem_object *obj;
3869 enum i915_cache_level level;
3870 int ret;
3871
Ben Widawsky199adf42012-09-21 17:01:20 -07003872 switch (args->caching) {
3873 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003874 level = I915_CACHE_NONE;
3875 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003876 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003877 level = I915_CACHE_LLC;
3878 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003879 case I915_CACHING_DISPLAY:
3880 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3881 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003882 default:
3883 return -EINVAL;
3884 }
3885
Ben Widawsky3bc29132012-09-26 16:15:20 -07003886 ret = i915_mutex_lock_interruptible(dev);
3887 if (ret)
3888 return ret;
3889
Chris Wilsone6994ae2012-07-10 10:27:08 +01003890 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3891 if (&obj->base == NULL) {
3892 ret = -ENOENT;
3893 goto unlock;
3894 }
3895
3896 ret = i915_gem_object_set_cache_level(obj, level);
3897
3898 drm_gem_object_unreference(&obj->base);
3899unlock:
3900 mutex_unlock(&dev->struct_mutex);
3901 return ret;
3902}
3903
Chris Wilsoncc98b412013-08-09 12:25:09 +01003904static bool is_pin_display(struct drm_i915_gem_object *obj)
3905{
Oscar Mateo19656432014-05-16 14:20:43 +01003906 struct i915_vma *vma;
3907
Oscar Mateo19656432014-05-16 14:20:43 +01003908 vma = i915_gem_obj_to_ggtt(obj);
3909 if (!vma)
3910 return false;
3911
Chris Wilsoncc98b412013-08-09 12:25:09 +01003912 /* There are 3 sources that pin objects:
3913 * 1. The display engine (scanouts, sprites, cursors);
3914 * 2. Reservations for execbuffer;
3915 * 3. The user.
3916 *
3917 * We can ignore reservations as we hold the struct_mutex and
3918 * are only called outside of the reservation path. The user
3919 * can only increment pin_count once, and so if after
3920 * subtracting the potential reference by the user, any pin_count
3921 * remains, it must be due to another use by the display engine.
3922 */
Oscar Mateo19656432014-05-16 14:20:43 +01003923 return vma->pin_count - !!obj->user_pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003924}
3925
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003926/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003927 * Prepare buffer for display plane (scanout, cursors, etc).
3928 * Can be called from an uninterruptible phase (modesetting) and allows
3929 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003930 */
3931int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003932i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3933 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003934 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003935{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003936 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003937 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003938 int ret;
3939
Chris Wilson0be73282010-12-06 14:36:27 +00003940 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003941 ret = i915_gem_object_sync(obj, pipelined);
3942 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003943 return ret;
3944 }
3945
Chris Wilsoncc98b412013-08-09 12:25:09 +01003946 /* Mark the pin_display early so that we account for the
3947 * display coherency whilst setting up the cache domains.
3948 */
Oscar Mateo19656432014-05-16 14:20:43 +01003949 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003950 obj->pin_display = true;
3951
Eric Anholta7ef0642011-03-29 16:59:54 -07003952 /* The display engine is not coherent with the LLC cache on gen6. As
3953 * a result, we make sure that the pinning that is about to occur is
3954 * done with uncached PTEs. This is lowest common denominator for all
3955 * chipsets.
3956 *
3957 * However for gen6+, we could do better by using the GFDT bit instead
3958 * of uncaching, which would allow us to flush all the LLC-cached data
3959 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3960 */
Chris Wilson651d7942013-08-08 14:41:10 +01003961 ret = i915_gem_object_set_cache_level(obj,
3962 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003963 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003964 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003965
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003966 /* As the user may map the buffer once pinned in the display plane
3967 * (e.g. libkms for the bootup splash), we have to ensure that we
3968 * always use map_and_fenceable for all scanout buffers.
3969 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003970 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003971 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003972 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003973
Chris Wilson2c225692013-08-09 12:26:45 +01003974 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003975
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003976 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003977 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003978
3979 /* It should now be out of any other write domains, and we can update
3980 * the domain values for our changes.
3981 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003982 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003983 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003984
3985 trace_i915_gem_object_change_domain(obj,
3986 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003987 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003988
3989 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003990
3991err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003992 WARN_ON(was_pin_display != is_pin_display(obj));
3993 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003994 return ret;
3995}
3996
3997void
3998i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3999{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004000 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004001 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004002}
4003
Chris Wilson85345512010-11-13 09:49:11 +00004004int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004005i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004006{
Chris Wilson88241782011-01-07 17:09:48 +00004007 int ret;
4008
Chris Wilsona8198ee2011-04-13 22:04:09 +01004009 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004010 return 0;
4011
Chris Wilson0201f1e2012-07-20 12:41:01 +01004012 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004013 if (ret)
4014 return ret;
4015
Chris Wilsona8198ee2011-04-13 22:04:09 +01004016 /* Ensure that we invalidate the GPU's caches and TLBs. */
4017 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004018 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004019}
4020
Eric Anholte47c68e2008-11-14 13:35:19 -08004021/**
4022 * Moves a single object to the CPU read, and possibly write domain.
4023 *
4024 * This function returns when the move is complete, including waiting on
4025 * flushes to occur.
4026 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004027int
Chris Wilson919926a2010-11-12 13:42:53 +00004028i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004029{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004030 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004031 int ret;
4032
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004033 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4034 return 0;
4035
Chris Wilson0201f1e2012-07-20 12:41:01 +01004036 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004037 if (ret)
4038 return ret;
4039
Chris Wilsonc8725f32014-03-17 12:21:55 +00004040 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004041 i915_gem_object_flush_gtt_write_domain(obj);
4042
Chris Wilson05394f32010-11-08 19:18:58 +00004043 old_write_domain = obj->base.write_domain;
4044 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004045
Eric Anholte47c68e2008-11-14 13:35:19 -08004046 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004047 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004048 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004049
Chris Wilson05394f32010-11-08 19:18:58 +00004050 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004051 }
4052
4053 /* It should now be out of any other write domains, and we can update
4054 * the domain values for our changes.
4055 */
Chris Wilson05394f32010-11-08 19:18:58 +00004056 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004057
4058 /* If we're writing through the CPU, then the GPU read domains will
4059 * need to be invalidated at next use.
4060 */
4061 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004062 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4063 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004064 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004065
Daniel Vetterf99d7062014-06-19 16:01:59 +02004066 if (write)
4067 intel_fb_obj_invalidate(obj, NULL);
4068
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004069 trace_i915_gem_object_change_domain(obj,
4070 old_read_domains,
4071 old_write_domain);
4072
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004073 return 0;
4074}
4075
Eric Anholt673a3942008-07-30 12:06:12 -07004076/* Throttle our rendering by waiting until the ring has completed our requests
4077 * emitted over 20 msec ago.
4078 *
Eric Anholtb9624422009-06-03 07:27:35 +00004079 * Note that if we were to use the current jiffies each time around the loop,
4080 * we wouldn't escape the function with any frames outstanding if the time to
4081 * render a frame was over 20ms.
4082 *
Eric Anholt673a3942008-07-30 12:06:12 -07004083 * This should get us reasonable parallelism between CPU and GPU but also
4084 * relatively low latency when blocking on a particular request to finish.
4085 */
4086static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004087i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004088{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004089 struct drm_i915_private *dev_priv = dev->dev_private;
4090 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004091 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004092 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004093 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004094 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004095 u32 seqno = 0;
4096 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004097
Daniel Vetter308887a2012-11-14 17:14:06 +01004098 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4099 if (ret)
4100 return ret;
4101
4102 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4103 if (ret)
4104 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004105
Chris Wilson1c255952010-09-26 11:03:27 +01004106 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004107 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004108 if (time_after_eq(request->emitted_jiffies, recent_enough))
4109 break;
4110
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004111 ring = request->ring;
4112 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004113 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004114 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004115 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004116
4117 if (seqno == 0)
4118 return 0;
4119
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02004120 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004121 if (ret == 0)
4122 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004123
Eric Anholt673a3942008-07-30 12:06:12 -07004124 return ret;
4125}
4126
Chris Wilsond23db882014-05-23 08:48:08 +02004127static bool
4128i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4129{
4130 struct drm_i915_gem_object *obj = vma->obj;
4131
4132 if (alignment &&
4133 vma->node.start & (alignment - 1))
4134 return true;
4135
4136 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4137 return true;
4138
4139 if (flags & PIN_OFFSET_BIAS &&
4140 vma->node.start < (flags & PIN_OFFSET_MASK))
4141 return true;
4142
4143 return false;
4144}
4145
Eric Anholt673a3942008-07-30 12:06:12 -07004146int
Chris Wilson05394f32010-11-08 19:18:58 +00004147i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004148 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004149 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004150 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004151{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004152 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004153 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004154 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004155 int ret;
4156
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004157 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4158 return -ENODEV;
4159
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004160 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004161 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004162
Chris Wilsonc826c442014-10-31 13:53:53 +00004163 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4164 return -EINVAL;
4165
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004166 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004167 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004168 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4169 return -EBUSY;
4170
Chris Wilsond23db882014-05-23 08:48:08 +02004171 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004172 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004173 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004174 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004175 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004176 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004177 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004178 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004179 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004180 if (ret)
4181 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004182
4183 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004184 }
4185 }
4186
Chris Wilsonef79e172014-10-31 13:53:52 +00004187 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004188 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004189 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4190 if (IS_ERR(vma))
4191 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004192 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004193
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004194 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004195 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004196
Chris Wilsonef79e172014-10-31 13:53:52 +00004197 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4198 bool mappable, fenceable;
4199 u32 fence_size, fence_alignment;
4200
4201 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4202 obj->base.size,
4203 obj->tiling_mode);
4204 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4205 obj->base.size,
4206 obj->tiling_mode,
4207 true);
4208
4209 fenceable = (vma->node.size == fence_size &&
4210 (vma->node.start & (fence_alignment - 1)) == 0);
4211
4212 mappable = (vma->node.start + obj->base.size <=
4213 dev_priv->gtt.mappable_end);
4214
4215 obj->map_and_fenceable = mappable && fenceable;
4216 }
4217
4218 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4219
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004220 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004221 if (flags & PIN_MAPPABLE)
4222 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004223
4224 return 0;
4225}
4226
4227void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004228i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004229{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004230 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004231
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004232 BUG_ON(!vma);
4233 BUG_ON(vma->pin_count == 0);
4234 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4235
4236 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004237 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004238}
4239
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004240bool
4241i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4242{
4243 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4244 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4245 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4246
4247 WARN_ON(!ggtt_vma ||
4248 dev_priv->fence_regs[obj->fence_reg].pin_count >
4249 ggtt_vma->pin_count);
4250 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4251 return true;
4252 } else
4253 return false;
4254}
4255
4256void
4257i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4258{
4259 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4260 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4261 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4262 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4263 }
4264}
4265
Eric Anholt673a3942008-07-30 12:06:12 -07004266int
4267i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004268 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004269{
4270 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004271 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004272 int ret;
4273
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004274 if (drm_core_check_feature(dev, DRIVER_MODESET))
Daniel Vetter02f6bcc2013-12-18 16:30:22 +01004275 return -ENODEV;
4276
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004277 ret = i915_mutex_lock_interruptible(dev);
4278 if (ret)
4279 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004280
Chris Wilson05394f32010-11-08 19:18:58 +00004281 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004282 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004283 ret = -ENOENT;
4284 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004285 }
Eric Anholt673a3942008-07-30 12:06:12 -07004286
Chris Wilson05394f32010-11-08 19:18:58 +00004287 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004288 DRM_DEBUG("Attempting to pin a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00004289 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004290 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004291 }
4292
Chris Wilson05394f32010-11-08 19:18:58 +00004293 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004294 DRM_DEBUG("Already pinned in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004295 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004296 ret = -EINVAL;
4297 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004298 }
4299
Daniel Vetteraa5f8022013-10-10 14:46:37 +02004300 if (obj->user_pin_count == ULONG_MAX) {
4301 ret = -EBUSY;
4302 goto out;
4303 }
4304
Chris Wilson93be8782013-01-02 10:31:22 +00004305 if (obj->user_pin_count == 0) {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004306 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, PIN_MAPPABLE);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004307 if (ret)
4308 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004309 }
4310
Chris Wilson93be8782013-01-02 10:31:22 +00004311 obj->user_pin_count++;
4312 obj->pin_filp = file;
4313
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004314 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004315out:
Chris Wilson05394f32010-11-08 19:18:58 +00004316 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004317unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004318 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004319 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004320}
4321
4322int
4323i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004324 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004325{
4326 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004327 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004328 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004329
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004330 if (drm_core_check_feature(dev, DRIVER_MODESET))
4331 return -ENODEV;
4332
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004333 ret = i915_mutex_lock_interruptible(dev);
4334 if (ret)
4335 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004336
Chris Wilson05394f32010-11-08 19:18:58 +00004337 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004338 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004339 ret = -ENOENT;
4340 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004341 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004342
Chris Wilson05394f32010-11-08 19:18:58 +00004343 if (obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004344 DRM_DEBUG("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004345 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004346 ret = -EINVAL;
4347 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004348 }
Chris Wilson05394f32010-11-08 19:18:58 +00004349 obj->user_pin_count--;
4350 if (obj->user_pin_count == 0) {
4351 obj->pin_filp = NULL;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004352 i915_gem_object_ggtt_unpin(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004353 }
Eric Anholt673a3942008-07-30 12:06:12 -07004354
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004355out:
Chris Wilson05394f32010-11-08 19:18:58 +00004356 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004357unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004358 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004359 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004360}
4361
4362int
4363i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004364 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004365{
4366 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004367 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004368 int ret;
4369
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004370 ret = i915_mutex_lock_interruptible(dev);
4371 if (ret)
4372 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004373
Chris Wilson05394f32010-11-08 19:18:58 +00004374 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004375 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004376 ret = -ENOENT;
4377 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004378 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004379
Chris Wilson0be555b2010-08-04 15:36:30 +01004380 /* Count all active objects as busy, even if they are currently not used
4381 * by the gpu. Users of this interface expect objects to eventually
4382 * become non-busy without any further actions, therefore emit any
4383 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004384 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004385 ret = i915_gem_object_flush_active(obj);
4386
Chris Wilson05394f32010-11-08 19:18:58 +00004387 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004388 if (obj->ring) {
4389 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4390 args->busy |= intel_ring_flag(obj->ring) << 16;
4391 }
Eric Anholt673a3942008-07-30 12:06:12 -07004392
Chris Wilson05394f32010-11-08 19:18:58 +00004393 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004394unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004395 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004396 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004397}
4398
4399int
4400i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4401 struct drm_file *file_priv)
4402{
Akshay Joshi0206e352011-08-16 15:34:10 -04004403 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004404}
4405
Chris Wilson3ef94da2009-09-14 16:50:29 +01004406int
4407i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4408 struct drm_file *file_priv)
4409{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004410 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004411 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004412 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004413 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004414
4415 switch (args->madv) {
4416 case I915_MADV_DONTNEED:
4417 case I915_MADV_WILLNEED:
4418 break;
4419 default:
4420 return -EINVAL;
4421 }
4422
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004423 ret = i915_mutex_lock_interruptible(dev);
4424 if (ret)
4425 return ret;
4426
Chris Wilson05394f32010-11-08 19:18:58 +00004427 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004428 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004429 ret = -ENOENT;
4430 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004431 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004432
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004433 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004434 ret = -EINVAL;
4435 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004436 }
4437
Daniel Vetter656bfa32014-11-20 09:26:30 +01004438 if (obj->pages &&
4439 obj->tiling_mode != I915_TILING_NONE &&
4440 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4441 if (obj->madv == I915_MADV_WILLNEED)
4442 i915_gem_object_unpin_pages(obj);
4443 if (args->madv == I915_MADV_WILLNEED)
4444 i915_gem_object_pin_pages(obj);
4445 }
4446
Chris Wilson05394f32010-11-08 19:18:58 +00004447 if (obj->madv != __I915_MADV_PURGED)
4448 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004449
Chris Wilson6c085a72012-08-20 11:40:46 +02004450 /* if the object is no longer attached, discard its backing storage */
4451 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004452 i915_gem_object_truncate(obj);
4453
Chris Wilson05394f32010-11-08 19:18:58 +00004454 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004455
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004456out:
Chris Wilson05394f32010-11-08 19:18:58 +00004457 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004458unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004459 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004460 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004461}
4462
Chris Wilson37e680a2012-06-07 15:38:42 +01004463void i915_gem_object_init(struct drm_i915_gem_object *obj,
4464 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004465{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004466 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004467 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004468 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004469 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004470
Chris Wilson37e680a2012-06-07 15:38:42 +01004471 obj->ops = ops;
4472
Chris Wilson0327d6b2012-08-11 15:41:06 +01004473 obj->fence_reg = I915_FENCE_REG_NONE;
4474 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004475
4476 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4477}
4478
Chris Wilson37e680a2012-06-07 15:38:42 +01004479static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4480 .get_pages = i915_gem_object_get_pages_gtt,
4481 .put_pages = i915_gem_object_put_pages_gtt,
4482};
4483
Chris Wilson05394f32010-11-08 19:18:58 +00004484struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4485 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004486{
Daniel Vetterc397b902010-04-09 19:05:07 +00004487 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004488 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004489 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004490
Chris Wilson42dcedd2012-11-15 11:32:30 +00004491 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004492 if (obj == NULL)
4493 return NULL;
4494
4495 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004496 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004497 return NULL;
4498 }
4499
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004500 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4501 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4502 /* 965gm cannot relocate objects above 4GiB. */
4503 mask &= ~__GFP_HIGHMEM;
4504 mask |= __GFP_DMA32;
4505 }
4506
Al Viro496ad9a2013-01-23 17:07:38 -05004507 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004508 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004509
Chris Wilson37e680a2012-06-07 15:38:42 +01004510 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004511
Daniel Vetterc397b902010-04-09 19:05:07 +00004512 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4513 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4514
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004515 if (HAS_LLC(dev)) {
4516 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004517 * cache) for about a 10% performance improvement
4518 * compared to uncached. Graphics requests other than
4519 * display scanout are coherent with the CPU in
4520 * accessing this cache. This means in this mode we
4521 * don't need to clflush on the CPU side, and on the
4522 * GPU side we only need to flush internal caches to
4523 * get data visible to the CPU.
4524 *
4525 * However, we maintain the display planes as UC, and so
4526 * need to rebind when first used as such.
4527 */
4528 obj->cache_level = I915_CACHE_LLC;
4529 } else
4530 obj->cache_level = I915_CACHE_NONE;
4531
Daniel Vetterd861e332013-07-24 23:25:03 +02004532 trace_i915_gem_object_create(obj);
4533
Chris Wilson05394f32010-11-08 19:18:58 +00004534 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004535}
4536
Chris Wilson340fbd82014-05-22 09:16:52 +01004537static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4538{
4539 /* If we are the last user of the backing storage (be it shmemfs
4540 * pages or stolen etc), we know that the pages are going to be
4541 * immediately released. In this case, we can then skip copying
4542 * back the contents from the GPU.
4543 */
4544
4545 if (obj->madv != I915_MADV_WILLNEED)
4546 return false;
4547
4548 if (obj->base.filp == NULL)
4549 return true;
4550
4551 /* At first glance, this looks racy, but then again so would be
4552 * userspace racing mmap against close. However, the first external
4553 * reference to the filp can only be obtained through the
4554 * i915_gem_mmap_ioctl() which safeguards us against the user
4555 * acquiring such a reference whilst we are in the middle of
4556 * freeing the object.
4557 */
4558 return atomic_long_read(&obj->base.filp->f_count) == 1;
4559}
4560
Chris Wilson1488fc02012-04-24 15:47:31 +01004561void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004562{
Chris Wilson1488fc02012-04-24 15:47:31 +01004563 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004564 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004565 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004566 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004567
Paulo Zanonif65c9162013-11-27 18:20:34 -02004568 intel_runtime_pm_get(dev_priv);
4569
Chris Wilson26e12f892011-03-20 11:20:19 +00004570 trace_i915_gem_object_destroy(obj);
4571
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004572 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004573 int ret;
4574
4575 vma->pin_count = 0;
4576 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004577 if (WARN_ON(ret == -ERESTARTSYS)) {
4578 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004579
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004580 was_interruptible = dev_priv->mm.interruptible;
4581 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004582
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004583 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004584
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004585 dev_priv->mm.interruptible = was_interruptible;
4586 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004587 }
4588
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004589 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4590 * before progressing. */
4591 if (obj->stolen)
4592 i915_gem_object_unpin_pages(obj);
4593
Daniel Vettera071fa02014-06-18 23:28:09 +02004594 WARN_ON(obj->frontbuffer_bits);
4595
Daniel Vetter656bfa32014-11-20 09:26:30 +01004596 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4597 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4598 obj->tiling_mode != I915_TILING_NONE)
4599 i915_gem_object_unpin_pages(obj);
4600
Ben Widawsky401c29f2013-05-31 11:28:47 -07004601 if (WARN_ON(obj->pages_pin_count))
4602 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004603 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004604 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004605 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004606 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004607
Chris Wilson9da3da62012-06-01 15:20:22 +01004608 BUG_ON(obj->pages);
4609
Chris Wilson2f745ad2012-09-04 21:02:58 +01004610 if (obj->base.import_attach)
4611 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004612
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004613 if (obj->ops->release)
4614 obj->ops->release(obj);
4615
Chris Wilson05394f32010-11-08 19:18:58 +00004616 drm_gem_object_release(&obj->base);
4617 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004618
Chris Wilson05394f32010-11-08 19:18:58 +00004619 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004620 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004621
4622 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004623}
4624
Daniel Vettere656a6c2013-08-14 14:14:04 +02004625struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004626 struct i915_address_space *vm)
4627{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004628 struct i915_vma *vma;
4629 list_for_each_entry(vma, &obj->vma_list, vma_link)
4630 if (vma->vm == vm)
4631 return vma;
4632
4633 return NULL;
4634}
4635
Ben Widawsky2f633152013-07-17 12:19:03 -07004636void i915_gem_vma_destroy(struct i915_vma *vma)
4637{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004638 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004639 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004640
4641 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4642 if (!list_empty(&vma->exec_list))
4643 return;
4644
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004645 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004646
Daniel Vetter841cd772014-08-06 15:04:48 +02004647 if (!i915_is_ggtt(vm))
4648 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004649
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004650 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004651
Ben Widawsky2f633152013-07-17 12:19:03 -07004652 kfree(vma);
4653}
4654
Chris Wilsone3efda42014-04-09 09:19:41 +01004655static void
4656i915_gem_stop_ringbuffers(struct drm_device *dev)
4657{
4658 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004659 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004660 int i;
4661
4662 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004663 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004664}
4665
Jesse Barnes5669fca2009-02-17 15:13:31 -08004666int
Chris Wilson45c5f202013-10-16 11:50:01 +01004667i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004668{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004669 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004670 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004671
Chris Wilson45c5f202013-10-16 11:50:01 +01004672 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004673 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004674 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004675 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004676
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004677 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004678
Chris Wilson29105cc2010-01-07 10:39:13 +00004679 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004680 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004681 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004682
Chris Wilsone3efda42014-04-09 09:19:41 +01004683 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004684 mutex_unlock(&dev->struct_mutex);
4685
4686 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004687 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004688 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004689
Eric Anholt673a3942008-07-30 12:06:12 -07004690 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004691
4692err:
4693 mutex_unlock(&dev->struct_mutex);
4694 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004695}
4696
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004697int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004698{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004699 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004700 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004701 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4702 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004703 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004704
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004705 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004706 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004707
Ben Widawskyc3787e22013-09-17 21:12:44 -07004708 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4709 if (ret)
4710 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004711
Ben Widawskyc3787e22013-09-17 21:12:44 -07004712 /*
4713 * Note: We do not worry about the concurrent register cacheline hang
4714 * here because no other code should access these registers other than
4715 * at initialization time.
4716 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004717 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004718 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4719 intel_ring_emit(ring, reg_base + i);
4720 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004721 }
4722
Ben Widawskyc3787e22013-09-17 21:12:44 -07004723 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004724
Ben Widawskyc3787e22013-09-17 21:12:44 -07004725 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004726}
4727
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004728void i915_gem_init_swizzling(struct drm_device *dev)
4729{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004730 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004731
Daniel Vetter11782b02012-01-31 16:47:55 +01004732 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004733 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4734 return;
4735
4736 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4737 DISP_TILE_SURFACE_SWIZZLING);
4738
Daniel Vetter11782b02012-01-31 16:47:55 +01004739 if (IS_GEN5(dev))
4740 return;
4741
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004742 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4743 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004744 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004745 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004746 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004747 else if (IS_GEN8(dev))
4748 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004749 else
4750 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004751}
Daniel Vettere21af882012-02-09 20:53:27 +01004752
Chris Wilson67b1b572012-07-05 23:49:40 +01004753static bool
4754intel_enable_blt(struct drm_device *dev)
4755{
4756 if (!HAS_BLT(dev))
4757 return false;
4758
4759 /* The blitter was dysfunctional on early prototypes */
4760 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4761 DRM_INFO("BLT not supported on this pre-production hardware;"
4762 " graphics performance will be degraded.\n");
4763 return false;
4764 }
4765
4766 return true;
4767}
4768
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004769static void init_unused_ring(struct drm_device *dev, u32 base)
4770{
4771 struct drm_i915_private *dev_priv = dev->dev_private;
4772
4773 I915_WRITE(RING_CTL(base), 0);
4774 I915_WRITE(RING_HEAD(base), 0);
4775 I915_WRITE(RING_TAIL(base), 0);
4776 I915_WRITE(RING_START(base), 0);
4777}
4778
4779static void init_unused_rings(struct drm_device *dev)
4780{
4781 if (IS_I830(dev)) {
4782 init_unused_ring(dev, PRB1_BASE);
4783 init_unused_ring(dev, SRB0_BASE);
4784 init_unused_ring(dev, SRB1_BASE);
4785 init_unused_ring(dev, SRB2_BASE);
4786 init_unused_ring(dev, SRB3_BASE);
4787 } else if (IS_GEN2(dev)) {
4788 init_unused_ring(dev, SRB0_BASE);
4789 init_unused_ring(dev, SRB1_BASE);
4790 } else if (IS_GEN3(dev)) {
4791 init_unused_ring(dev, PRB1_BASE);
4792 init_unused_ring(dev, PRB2_BASE);
4793 }
4794}
4795
Oscar Mateoa83014d2014-07-24 17:04:21 +01004796int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004797{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004798 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004799 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004800
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004801 /*
4802 * At least 830 can leave some of the unused rings
4803 * "active" (ie. head != tail) after resume which
4804 * will prevent c3 entry. Makes sure all unused rings
4805 * are totally idle.
4806 */
4807 init_unused_rings(dev);
4808
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004809 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004810 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004811 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004812
4813 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004814 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004815 if (ret)
4816 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004817 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004818
Chris Wilson67b1b572012-07-05 23:49:40 +01004819 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004820 ret = intel_init_blt_ring_buffer(dev);
4821 if (ret)
4822 goto cleanup_bsd_ring;
4823 }
4824
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004825 if (HAS_VEBOX(dev)) {
4826 ret = intel_init_vebox_ring_buffer(dev);
4827 if (ret)
4828 goto cleanup_blt_ring;
4829 }
4830
Zhao Yakui845f74a2014-04-17 10:37:37 +08004831 if (HAS_BSD2(dev)) {
4832 ret = intel_init_bsd2_ring_buffer(dev);
4833 if (ret)
4834 goto cleanup_vebox_ring;
4835 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004836
Mika Kuoppala99433932013-01-22 14:12:17 +02004837 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4838 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004839 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004840
4841 return 0;
4842
Zhao Yakui845f74a2014-04-17 10:37:37 +08004843cleanup_bsd2_ring:
4844 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004845cleanup_vebox_ring:
4846 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004847cleanup_blt_ring:
4848 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4849cleanup_bsd_ring:
4850 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4851cleanup_render_ring:
4852 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4853
4854 return ret;
4855}
4856
4857int
4858i915_gem_init_hw(struct drm_device *dev)
4859{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004860 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004861 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004862
4863 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4864 return -EIO;
4865
Ben Widawsky59124502013-07-04 11:02:05 -07004866 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004867 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004868
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004869 if (IS_HASWELL(dev))
4870 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4871 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004872
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004873 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004874 if (IS_IVYBRIDGE(dev)) {
4875 u32 temp = I915_READ(GEN7_MSG_CTL);
4876 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4877 I915_WRITE(GEN7_MSG_CTL, temp);
4878 } else if (INTEL_INFO(dev)->gen >= 7) {
4879 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4880 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4881 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4882 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004883 }
4884
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004885 i915_gem_init_swizzling(dev);
4886
Oscar Mateoa83014d2014-07-24 17:04:21 +01004887 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004888 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004889 return ret;
4890
Ben Widawskyc3787e22013-09-17 21:12:44 -07004891 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4892 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4893
David Woodhousef48a0162015-01-20 17:21:42 +00004894 ret = i915_ppgtt_init_hw(dev);
4895 if (ret && ret != -EIO) {
4896 DRM_ERROR("PPGTT enable failed %d\n", ret);
4897 i915_gem_cleanup_ringbuffer(dev);
4898 }
4899
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004900 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004901 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004902 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004903 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004904
4905 return ret;
4906 }
4907
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004908 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004909}
4910
Chris Wilson1070a422012-04-24 15:47:41 +01004911int i915_gem_init(struct drm_device *dev)
4912{
4913 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004914 int ret;
4915
Oscar Mateo127f1002014-07-24 17:04:11 +01004916 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4917 i915.enable_execlists);
4918
Chris Wilson1070a422012-04-24 15:47:41 +01004919 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004920
4921 if (IS_VALLEYVIEW(dev)) {
4922 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004923 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4924 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4925 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004926 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4927 }
4928
Oscar Mateoa83014d2014-07-24 17:04:21 +01004929 if (!i915.enable_execlists) {
4930 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4931 dev_priv->gt.init_rings = i915_gem_init_rings;
4932 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4933 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004934 } else {
4935 dev_priv->gt.do_execbuf = intel_execlists_submission;
4936 dev_priv->gt.init_rings = intel_logical_rings_init;
4937 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4938 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004939 }
4940
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004941 ret = i915_gem_init_userptr(dev);
4942 if (ret) {
4943 mutex_unlock(&dev->struct_mutex);
4944 return ret;
4945 }
4946
Ben Widawskyd7e50082012-12-18 10:31:25 -08004947 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004948
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004949 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004950 if (ret) {
4951 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004952 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004953 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004954
Chris Wilson1070a422012-04-24 15:47:41 +01004955 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004956 if (ret == -EIO) {
4957 /* Allow ring initialisation to fail by marking the GPU as
4958 * wedged. But we only want to do this where the GPU is angry,
4959 * for all other failure, such as an allocation failure, bail.
4960 */
4961 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4962 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4963 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004964 }
Chris Wilson60990322014-04-09 09:19:42 +01004965 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004966
Chris Wilson60990322014-04-09 09:19:42 +01004967 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004968}
4969
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004970void
4971i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4972{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004973 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004974 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004975 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004976
Chris Wilsonb4519512012-05-11 14:29:30 +01004977 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004978 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004979}
4980
Chris Wilson64193402010-10-24 12:38:05 +01004981static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004982init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004983{
4984 INIT_LIST_HEAD(&ring->active_list);
4985 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004986}
4987
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004988void i915_init_vm(struct drm_i915_private *dev_priv,
4989 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004990{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004991 if (!i915_is_ggtt(vm))
4992 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004993 vm->dev = dev_priv->dev;
4994 INIT_LIST_HEAD(&vm->active_list);
4995 INIT_LIST_HEAD(&vm->inactive_list);
4996 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004997 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004998}
4999
Eric Anholt673a3942008-07-30 12:06:12 -07005000void
5001i915_gem_load(struct drm_device *dev)
5002{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005003 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00005004 int i;
5005
5006 dev_priv->slab =
5007 kmem_cache_create("i915_gem_object",
5008 sizeof(struct drm_i915_gem_object), 0,
5009 SLAB_HWCACHE_ALIGN,
5010 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005011
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005012 INIT_LIST_HEAD(&dev_priv->vm_list);
5013 i915_init_vm(dev_priv, &dev_priv->gtt.base);
5014
Ben Widawskya33afea2013-09-17 21:12:45 -07005015 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005016 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5017 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005018 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005019 for (i = 0; i < I915_NUM_RINGS; i++)
5020 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005021 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005022 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005023 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5024 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005025 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5026 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005027 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005028
Dave Airlie94400122010-07-20 13:15:31 +10005029 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02005030 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02005031 I915_WRITE(MI_ARB_STATE,
5032 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10005033 }
5034
Chris Wilson72bfa192010-12-19 11:42:05 +00005035 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5036
Jesse Barnesde151cf2008-11-12 10:03:55 -08005037 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08005038 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5039 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005040
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005041 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5042 dev_priv->num_fence_regs = 32;
5043 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005044 dev_priv->num_fence_regs = 16;
5045 else
5046 dev_priv->num_fence_regs = 8;
5047
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005048 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005049 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5050 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005051
Eric Anholt673a3942008-07-30 12:06:12 -07005052 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005053 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005054
Chris Wilsonce453d82011-02-21 14:43:56 +00005055 dev_priv->mm.interruptible = true;
5056
Chris Wilsonceabbba52014-03-25 13:23:04 +00005057 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5058 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5059 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5060 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005061
5062 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5063 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005064
5065 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005066}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005067
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005068void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005069{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005070 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005071
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005072 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5073
Eric Anholtb9624422009-06-03 07:27:35 +00005074 /* Clean up our request list when the client is going away, so that
5075 * later retire_requests won't dereference our soon-to-be-gone
5076 * file_priv.
5077 */
Chris Wilson1c255952010-09-26 11:03:27 +01005078 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005079 while (!list_empty(&file_priv->mm.request_list)) {
5080 struct drm_i915_gem_request *request;
5081
5082 request = list_first_entry(&file_priv->mm.request_list,
5083 struct drm_i915_gem_request,
5084 client_list);
5085 list_del(&request->client_list);
5086 request->file_priv = NULL;
5087 }
Chris Wilson1c255952010-09-26 11:03:27 +01005088 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005089}
Chris Wilson31169712009-09-14 16:50:28 +01005090
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005091static void
5092i915_gem_file_idle_work_handler(struct work_struct *work)
5093{
5094 struct drm_i915_file_private *file_priv =
5095 container_of(work, typeof(*file_priv), mm.idle_work.work);
5096
5097 atomic_set(&file_priv->rps_wait_boost, false);
5098}
5099
5100int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5101{
5102 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005103 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005104
5105 DRM_DEBUG_DRIVER("\n");
5106
5107 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5108 if (!file_priv)
5109 return -ENOMEM;
5110
5111 file->driver_priv = file_priv;
5112 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005113 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005114
5115 spin_lock_init(&file_priv->mm.lock);
5116 INIT_LIST_HEAD(&file_priv->mm.request_list);
5117 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5118 i915_gem_file_idle_work_handler);
5119
Ben Widawskye422b882013-12-06 14:10:58 -08005120 ret = i915_gem_context_open(dev, file);
5121 if (ret)
5122 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005123
Ben Widawskye422b882013-12-06 14:10:58 -08005124 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005125}
5126
Daniel Vetterb680c372014-09-19 18:27:27 +02005127/**
5128 * i915_gem_track_fb - update frontbuffer tracking
5129 * old: current GEM buffer for the frontbuffer slots
5130 * new: new GEM buffer for the frontbuffer slots
5131 * frontbuffer_bits: bitmask of frontbuffer slots
5132 *
5133 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5134 * from @old and setting them in @new. Both @old and @new can be NULL.
5135 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005136void i915_gem_track_fb(struct drm_i915_gem_object *old,
5137 struct drm_i915_gem_object *new,
5138 unsigned frontbuffer_bits)
5139{
5140 if (old) {
5141 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5142 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5143 old->frontbuffer_bits &= ~frontbuffer_bits;
5144 }
5145
5146 if (new) {
5147 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5148 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5149 new->frontbuffer_bits |= frontbuffer_bits;
5150 }
5151}
5152
Chris Wilson57745062012-11-21 13:04:04 +00005153static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5154{
5155 if (!mutex_is_locked(mutex))
5156 return false;
5157
Chris Wilson226e5ae2015-01-02 09:47:10 +00005158#if defined(CONFIG_SMP) && !defined(CONFIG_DEBUG_MUTEXES)
Chris Wilson57745062012-11-21 13:04:04 +00005159 return mutex->owner == task;
5160#else
5161 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5162 return false;
5163#endif
5164}
5165
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005166static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5167{
5168 if (!mutex_trylock(&dev->struct_mutex)) {
5169 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5170 return false;
5171
5172 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5173 return false;
5174
5175 *unlock = false;
5176 } else
5177 *unlock = true;
5178
5179 return true;
5180}
5181
Chris Wilsonceabbba52014-03-25 13:23:04 +00005182static int num_vma_bound(struct drm_i915_gem_object *obj)
5183{
5184 struct i915_vma *vma;
5185 int count = 0;
5186
5187 list_for_each_entry(vma, &obj->vma_list, vma_link)
5188 if (drm_mm_node_allocated(&vma->node))
5189 count++;
5190
5191 return count;
5192}
5193
Dave Chinner7dc19d52013-08-28 10:18:11 +10005194static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005195i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005196{
Chris Wilson17250b72010-10-28 12:51:39 +01005197 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005198 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005199 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005200 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005201 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005202 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005203
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005204 if (!i915_gem_shrinker_lock(dev, &unlock))
5205 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005206
Dave Chinner7dc19d52013-08-28 10:18:11 +10005207 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005208 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005209 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005210 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005211
5212 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005213 if (!i915_gem_obj_is_pinned(obj) &&
5214 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005215 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005216 }
Chris Wilson31169712009-09-14 16:50:28 +01005217
Chris Wilson57745062012-11-21 13:04:04 +00005218 if (unlock)
5219 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005220
Dave Chinner7dc19d52013-08-28 10:18:11 +10005221 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005222}
Ben Widawskya70a3142013-07-31 16:59:56 -07005223
5224/* All the new VM stuff */
5225unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5226 struct i915_address_space *vm)
5227{
5228 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5229 struct i915_vma *vma;
5230
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005231 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005232
Ben Widawskya70a3142013-07-31 16:59:56 -07005233 list_for_each_entry(vma, &o->vma_list, vma_link) {
5234 if (vma->vm == vm)
5235 return vma->node.start;
5236
5237 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005238 WARN(1, "%s vma for this object not found.\n",
5239 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005240 return -1;
5241}
5242
5243bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5244 struct i915_address_space *vm)
5245{
5246 struct i915_vma *vma;
5247
5248 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005249 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005250 return true;
5251
5252 return false;
5253}
5254
5255bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5256{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005257 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005258
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005259 list_for_each_entry(vma, &o->vma_list, vma_link)
5260 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005261 return true;
5262
5263 return false;
5264}
5265
5266unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5267 struct i915_address_space *vm)
5268{
5269 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5270 struct i915_vma *vma;
5271
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005272 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005273
5274 BUG_ON(list_empty(&o->vma_list));
5275
5276 list_for_each_entry(vma, &o->vma_list, vma_link)
5277 if (vma->vm == vm)
5278 return vma->node.size;
5279
5280 return 0;
5281}
5282
Dave Chinner7dc19d52013-08-28 10:18:11 +10005283static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005284i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005285{
5286 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005287 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005288 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005289 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005290 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005291
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005292 if (!i915_gem_shrinker_lock(dev, &unlock))
5293 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005294
Chris Wilson21ab4e72014-09-09 11:16:08 +01005295 freed = i915_gem_shrink(dev_priv,
5296 sc->nr_to_scan,
5297 I915_SHRINK_BOUND |
5298 I915_SHRINK_UNBOUND |
5299 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005300 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005301 freed += i915_gem_shrink(dev_priv,
5302 sc->nr_to_scan - freed,
5303 I915_SHRINK_BOUND |
5304 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005305 if (unlock)
5306 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005307
Dave Chinner7dc19d52013-08-28 10:18:11 +10005308 return freed;
5309}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005310
Chris Wilson2cfcd322014-05-20 08:28:43 +01005311static int
5312i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5313{
5314 struct drm_i915_private *dev_priv =
5315 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5316 struct drm_device *dev = dev_priv->dev;
5317 struct drm_i915_gem_object *obj;
5318 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005319 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005320 bool was_interruptible;
5321 bool unlock;
5322
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005323 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005324 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005325 if (fatal_signal_pending(current))
5326 return NOTIFY_DONE;
5327 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005328 if (timeout == 0) {
5329 pr_err("Unable to purge GPU memory due lock contention.\n");
5330 return NOTIFY_DONE;
5331 }
5332
5333 was_interruptible = dev_priv->mm.interruptible;
5334 dev_priv->mm.interruptible = false;
5335
Chris Wilson005445c2014-10-08 11:25:16 +01005336 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005337
5338 dev_priv->mm.interruptible = was_interruptible;
5339
5340 /* Because we may be allocating inside our own driver, we cannot
5341 * assert that there are no objects with pinned pages that are not
5342 * being pointed to by hardware.
5343 */
5344 unbound = bound = pinned = 0;
5345 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5346 if (!obj->base.filp) /* not backed by a freeable object */
5347 continue;
5348
5349 if (obj->pages_pin_count)
5350 pinned += obj->base.size;
5351 else
5352 unbound += obj->base.size;
5353 }
5354 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5355 if (!obj->base.filp)
5356 continue;
5357
5358 if (obj->pages_pin_count)
5359 pinned += obj->base.size;
5360 else
5361 bound += obj->base.size;
5362 }
5363
5364 if (unlock)
5365 mutex_unlock(&dev->struct_mutex);
5366
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005367 if (freed_pages || unbound || bound)
5368 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5369 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005370 if (unbound || bound)
5371 pr_err("%lu and %lu bytes still available in the "
5372 "bound and unbound GPU page lists.\n",
5373 bound, unbound);
5374
Chris Wilson005445c2014-10-08 11:25:16 +01005375 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005376 return NOTIFY_DONE;
5377}
5378
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005379struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5380{
5381 struct i915_vma *vma;
5382
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005383 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005384 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005385 return NULL;
5386
5387 return vma;
5388}