blob: ef45e2eac95230f9c8ec801ad598c2c3805e8a19 [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,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100404 bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +1000405 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700406{
Chris Wilson05394f32010-11-08 19:18:58 +0000407 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300408 int ret;
409 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700410
Dave Airlieff72145b2011-02-07 12:16:14 +1000411 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200412 if (size == 0)
413 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700414
415 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000416 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700417 if (obj == NULL)
418 return -ENOMEM;
419
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100420 obj->base.dumb = dumb;
Chris Wilson05394f32010-11-08 19:18:58 +0000421 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100422 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200423 drm_gem_object_unreference_unlocked(&obj->base);
424 if (ret)
425 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100426
Dave Airlieff72145b2011-02-07 12:16:14 +1000427 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700428 return 0;
429}
430
Dave Airlieff72145b2011-02-07 12:16:14 +1000431int
432i915_gem_dumb_create(struct drm_file *file,
433 struct drm_device *dev,
434 struct drm_mode_create_dumb *args)
435{
436 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300437 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000438 args->size = args->pitch * args->height;
439 return i915_gem_create(file, dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100440 args->size, true, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000441}
442
Dave Airlieff72145b2011-02-07 12:16:14 +1000443/**
444 * Creates a new mm object and returns a handle to it.
445 */
446int
447i915_gem_create_ioctl(struct drm_device *dev, void *data,
448 struct drm_file *file)
449{
450 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200451
Dave Airlieff72145b2011-02-07 12:16:14 +1000452 return i915_gem_create(file, dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100453 args->size, false, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000454}
455
Daniel Vetter8c599672011-12-14 13:57:31 +0100456static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100457__copy_to_user_swizzled(char __user *cpu_vaddr,
458 const char *gpu_vaddr, int gpu_offset,
459 int length)
460{
461 int ret, cpu_offset = 0;
462
463 while (length > 0) {
464 int cacheline_end = ALIGN(gpu_offset + 1, 64);
465 int this_length = min(cacheline_end - gpu_offset, length);
466 int swizzled_gpu_offset = gpu_offset ^ 64;
467
468 ret = __copy_to_user(cpu_vaddr + cpu_offset,
469 gpu_vaddr + swizzled_gpu_offset,
470 this_length);
471 if (ret)
472 return ret + length;
473
474 cpu_offset += this_length;
475 gpu_offset += this_length;
476 length -= this_length;
477 }
478
479 return 0;
480}
481
482static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700483__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
484 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100485 int length)
486{
487 int ret, cpu_offset = 0;
488
489 while (length > 0) {
490 int cacheline_end = ALIGN(gpu_offset + 1, 64);
491 int this_length = min(cacheline_end - gpu_offset, length);
492 int swizzled_gpu_offset = gpu_offset ^ 64;
493
494 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
495 cpu_vaddr + cpu_offset,
496 this_length);
497 if (ret)
498 return ret + length;
499
500 cpu_offset += this_length;
501 gpu_offset += this_length;
502 length -= this_length;
503 }
504
505 return 0;
506}
507
Brad Volkin4c914c02014-02-18 10:15:45 -0800508/*
509 * Pins the specified object's pages and synchronizes the object with
510 * GPU accesses. Sets needs_clflush to non-zero if the caller should
511 * flush the object from the CPU cache.
512 */
513int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
514 int *needs_clflush)
515{
516 int ret;
517
518 *needs_clflush = 0;
519
520 if (!obj->base.filp)
521 return -EINVAL;
522
523 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
524 /* If we're not in the cpu read domain, set ourself into the gtt
525 * read domain and manually flush cachelines (if required). This
526 * optimizes for the case when the gpu will dirty the data
527 * anyway again before the next pread happens. */
528 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
529 obj->cache_level);
530 ret = i915_gem_object_wait_rendering(obj, true);
531 if (ret)
532 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000533
534 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800535 }
536
537 ret = i915_gem_object_get_pages(obj);
538 if (ret)
539 return ret;
540
541 i915_gem_object_pin_pages(obj);
542
543 return ret;
544}
545
Daniel Vetterd174bd62012-03-25 19:47:40 +0200546/* Per-page copy function for the shmem pread fastpath.
547 * Flushes invalid cachelines before reading the target if
548 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700549static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200550shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
551 char __user *user_data,
552 bool page_do_bit17_swizzling, bool needs_clflush)
553{
554 char *vaddr;
555 int ret;
556
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200557 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200558 return -EINVAL;
559
560 vaddr = kmap_atomic(page);
561 if (needs_clflush)
562 drm_clflush_virt_range(vaddr + shmem_page_offset,
563 page_length);
564 ret = __copy_to_user_inatomic(user_data,
565 vaddr + shmem_page_offset,
566 page_length);
567 kunmap_atomic(vaddr);
568
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100569 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200570}
571
Daniel Vetter23c18c72012-03-25 19:47:42 +0200572static void
573shmem_clflush_swizzled_range(char *addr, unsigned long length,
574 bool swizzled)
575{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200576 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200577 unsigned long start = (unsigned long) addr;
578 unsigned long end = (unsigned long) addr + length;
579
580 /* For swizzling simply ensure that we always flush both
581 * channels. Lame, but simple and it works. Swizzled
582 * pwrite/pread is far from a hotpath - current userspace
583 * doesn't use it at all. */
584 start = round_down(start, 128);
585 end = round_up(end, 128);
586
587 drm_clflush_virt_range((void *)start, end - start);
588 } else {
589 drm_clflush_virt_range(addr, length);
590 }
591
592}
593
Daniel Vetterd174bd62012-03-25 19:47:40 +0200594/* Only difference to the fast-path function is that this can handle bit17
595 * and uses non-atomic copy and kmap functions. */
596static int
597shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
598 char __user *user_data,
599 bool page_do_bit17_swizzling, bool needs_clflush)
600{
601 char *vaddr;
602 int ret;
603
604 vaddr = kmap(page);
605 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200606 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
607 page_length,
608 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200609
610 if (page_do_bit17_swizzling)
611 ret = __copy_to_user_swizzled(user_data,
612 vaddr, shmem_page_offset,
613 page_length);
614 else
615 ret = __copy_to_user(user_data,
616 vaddr + shmem_page_offset,
617 page_length);
618 kunmap(page);
619
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100620 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200621}
622
Eric Anholteb014592009-03-10 11:44:52 -0700623static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200624i915_gem_shmem_pread(struct drm_device *dev,
625 struct drm_i915_gem_object *obj,
626 struct drm_i915_gem_pread *args,
627 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700628{
Daniel Vetter8461d222011-12-14 13:57:32 +0100629 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700630 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100631 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100632 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100633 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200634 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200635 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200636 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700637
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200638 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700639 remain = args->size;
640
Daniel Vetter8461d222011-12-14 13:57:32 +0100641 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700642
Brad Volkin4c914c02014-02-18 10:15:45 -0800643 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100644 if (ret)
645 return ret;
646
Eric Anholteb014592009-03-10 11:44:52 -0700647 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100648
Imre Deak67d5a502013-02-18 19:28:02 +0200649 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
650 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200651 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100652
653 if (remain <= 0)
654 break;
655
Eric Anholteb014592009-03-10 11:44:52 -0700656 /* Operation in this page
657 *
Eric Anholteb014592009-03-10 11:44:52 -0700658 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700659 * page_length = bytes to copy for this page
660 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100661 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700662 page_length = remain;
663 if ((shmem_page_offset + page_length) > PAGE_SIZE)
664 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700665
Daniel Vetter8461d222011-12-14 13:57:32 +0100666 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
667 (page_to_phys(page) & (1 << 17)) != 0;
668
Daniel Vetterd174bd62012-03-25 19:47:40 +0200669 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
670 user_data, page_do_bit17_swizzling,
671 needs_clflush);
672 if (ret == 0)
673 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700674
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200675 mutex_unlock(&dev->struct_mutex);
676
Jani Nikulad330a952014-01-21 11:24:25 +0200677 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200678 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200679 /* Userspace is tricking us, but we've already clobbered
680 * its pages with the prefault and promised to write the
681 * data up to the first fault. Hence ignore any errors
682 * and just continue. */
683 (void)ret;
684 prefaulted = 1;
685 }
686
Daniel Vetterd174bd62012-03-25 19:47:40 +0200687 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
688 user_data, page_do_bit17_swizzling,
689 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700690
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200691 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100692
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100693 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100694 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100695
Chris Wilson17793c92014-03-07 08:30:36 +0000696next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700697 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100698 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700699 offset += page_length;
700 }
701
Chris Wilson4f27b752010-10-14 15:26:45 +0100702out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100703 i915_gem_object_unpin_pages(obj);
704
Eric Anholteb014592009-03-10 11:44:52 -0700705 return ret;
706}
707
Eric Anholt673a3942008-07-30 12:06:12 -0700708/**
709 * Reads data from the object referenced by handle.
710 *
711 * On error, the contents of *data are undefined.
712 */
713int
714i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000715 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700716{
717 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000718 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100719 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700720
Chris Wilson51311d02010-11-17 09:10:42 +0000721 if (args->size == 0)
722 return 0;
723
724 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200725 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000726 args->size))
727 return -EFAULT;
728
Chris Wilson4f27b752010-10-14 15:26:45 +0100729 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100730 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100731 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700732
Chris Wilson05394f32010-11-08 19:18:58 +0000733 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000734 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100735 ret = -ENOENT;
736 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100737 }
Eric Anholt673a3942008-07-30 12:06:12 -0700738
Chris Wilson7dcd2492010-09-26 20:21:44 +0100739 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000740 if (args->offset > obj->base.size ||
741 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100742 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100743 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100744 }
745
Daniel Vetter1286ff72012-05-10 15:25:09 +0200746 /* prime objects have no backing filp to GEM pread/pwrite
747 * pages from.
748 */
749 if (!obj->base.filp) {
750 ret = -EINVAL;
751 goto out;
752 }
753
Chris Wilsondb53a302011-02-03 11:57:46 +0000754 trace_i915_gem_object_pread(obj, args->offset, args->size);
755
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200756 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700757
Chris Wilson35b62a82010-09-26 20:23:38 +0100758out:
Chris Wilson05394f32010-11-08 19:18:58 +0000759 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100760unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100761 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700762 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700763}
764
Keith Packard0839ccb2008-10-30 19:38:48 -0700765/* This is the fast write path which cannot handle
766 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700767 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700768
Keith Packard0839ccb2008-10-30 19:38:48 -0700769static inline int
770fast_user_write(struct io_mapping *mapping,
771 loff_t page_base, int page_offset,
772 char __user *user_data,
773 int length)
774{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700775 void __iomem *vaddr_atomic;
776 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700777 unsigned long unwritten;
778
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700779 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700780 /* We can use the cpu mem copy function because this is X86. */
781 vaddr = (void __force*)vaddr_atomic + page_offset;
782 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700783 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700784 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100785 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700786}
787
Eric Anholt3de09aa2009-03-09 09:42:23 -0700788/**
789 * This is the fast pwrite path, where we copy the data directly from the
790 * user into the GTT, uncached.
791 */
Eric Anholt673a3942008-07-30 12:06:12 -0700792static int
Chris Wilson05394f32010-11-08 19:18:58 +0000793i915_gem_gtt_pwrite_fast(struct drm_device *dev,
794 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700795 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000796 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700797{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300798 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700799 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700800 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700801 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200802 int page_offset, page_length, ret;
803
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100804 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200805 if (ret)
806 goto out;
807
808 ret = i915_gem_object_set_to_gtt_domain(obj, true);
809 if (ret)
810 goto out_unpin;
811
812 ret = i915_gem_object_put_fence(obj);
813 if (ret)
814 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700815
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200816 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700817 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700818
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700819 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700820
821 while (remain > 0) {
822 /* Operation in this page
823 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700824 * page_base = page offset within aperture
825 * page_offset = offset within page
826 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700827 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100828 page_base = offset & PAGE_MASK;
829 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700830 page_length = remain;
831 if ((page_offset + remain) > PAGE_SIZE)
832 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700833
Keith Packard0839ccb2008-10-30 19:38:48 -0700834 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700835 * source page isn't available. Return the error and we'll
836 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700837 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800838 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200839 page_offset, user_data, page_length)) {
840 ret = -EFAULT;
841 goto out_unpin;
842 }
Eric Anholt673a3942008-07-30 12:06:12 -0700843
Keith Packard0839ccb2008-10-30 19:38:48 -0700844 remain -= page_length;
845 user_data += page_length;
846 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700847 }
Eric Anholt673a3942008-07-30 12:06:12 -0700848
Daniel Vetter935aaa62012-03-25 19:47:35 +0200849out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800850 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200851out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700852 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700853}
854
Daniel Vetterd174bd62012-03-25 19:47:40 +0200855/* Per-page copy function for the shmem pwrite fastpath.
856 * Flushes invalid cachelines before writing to the target if
857 * needs_clflush_before is set and flushes out any written cachelines after
858 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700859static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200860shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
861 char __user *user_data,
862 bool page_do_bit17_swizzling,
863 bool needs_clflush_before,
864 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700865{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200866 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700867 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700868
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200869 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200870 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700871
Daniel Vetterd174bd62012-03-25 19:47:40 +0200872 vaddr = kmap_atomic(page);
873 if (needs_clflush_before)
874 drm_clflush_virt_range(vaddr + shmem_page_offset,
875 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000876 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
877 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200878 if (needs_clflush_after)
879 drm_clflush_virt_range(vaddr + shmem_page_offset,
880 page_length);
881 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700882
Chris Wilson755d2212012-09-04 21:02:55 +0100883 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700884}
885
Daniel Vetterd174bd62012-03-25 19:47:40 +0200886/* Only difference to the fast-path function is that this can handle bit17
887 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700888static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200889shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
890 char __user *user_data,
891 bool page_do_bit17_swizzling,
892 bool needs_clflush_before,
893 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700894{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200895 char *vaddr;
896 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700897
Daniel Vetterd174bd62012-03-25 19:47:40 +0200898 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200899 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200900 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
901 page_length,
902 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200903 if (page_do_bit17_swizzling)
904 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100905 user_data,
906 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200907 else
908 ret = __copy_from_user(vaddr + shmem_page_offset,
909 user_data,
910 page_length);
911 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200912 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
913 page_length,
914 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200915 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100916
Chris Wilson755d2212012-09-04 21:02:55 +0100917 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700918}
919
Eric Anholt40123c12009-03-09 13:42:30 -0700920static int
Daniel Vettere244a442012-03-25 19:47:28 +0200921i915_gem_shmem_pwrite(struct drm_device *dev,
922 struct drm_i915_gem_object *obj,
923 struct drm_i915_gem_pwrite *args,
924 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700925{
Eric Anholt40123c12009-03-09 13:42:30 -0700926 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100927 loff_t offset;
928 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100929 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100930 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200931 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200932 int needs_clflush_after = 0;
933 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200934 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700935
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200936 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700937 remain = args->size;
938
Daniel Vetter8c599672011-12-14 13:57:31 +0100939 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700940
Daniel Vetter58642882012-03-25 19:47:37 +0200941 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
942 /* If we're not in the cpu write domain, set ourself into the gtt
943 * write domain and manually flush cachelines (if required). This
944 * optimizes for the case when the gpu will use the data
945 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100946 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700947 ret = i915_gem_object_wait_rendering(obj, false);
948 if (ret)
949 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000950
951 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200952 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100953 /* Same trick applies to invalidate partially written cachelines read
954 * before writing. */
955 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
956 needs_clflush_before =
957 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200958
Chris Wilson755d2212012-09-04 21:02:55 +0100959 ret = i915_gem_object_get_pages(obj);
960 if (ret)
961 return ret;
962
963 i915_gem_object_pin_pages(obj);
964
Eric Anholt40123c12009-03-09 13:42:30 -0700965 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000966 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700967
Imre Deak67d5a502013-02-18 19:28:02 +0200968 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
969 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200970 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200971 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100972
Chris Wilson9da3da62012-06-01 15:20:22 +0100973 if (remain <= 0)
974 break;
975
Eric Anholt40123c12009-03-09 13:42:30 -0700976 /* Operation in this page
977 *
Eric Anholt40123c12009-03-09 13:42:30 -0700978 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700979 * page_length = bytes to copy for this page
980 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100981 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700982
983 page_length = remain;
984 if ((shmem_page_offset + page_length) > PAGE_SIZE)
985 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700986
Daniel Vetter58642882012-03-25 19:47:37 +0200987 /* If we don't overwrite a cacheline completely we need to be
988 * careful to have up-to-date data by first clflushing. Don't
989 * overcomplicate things and flush the entire patch. */
990 partial_cacheline_write = needs_clflush_before &&
991 ((shmem_page_offset | page_length)
992 & (boot_cpu_data.x86_clflush_size - 1));
993
Daniel Vetter8c599672011-12-14 13:57:31 +0100994 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
995 (page_to_phys(page) & (1 << 17)) != 0;
996
Daniel Vetterd174bd62012-03-25 19:47:40 +0200997 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
998 user_data, page_do_bit17_swizzling,
999 partial_cacheline_write,
1000 needs_clflush_after);
1001 if (ret == 0)
1002 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001003
Daniel Vettere244a442012-03-25 19:47:28 +02001004 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001005 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001006 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1007 user_data, page_do_bit17_swizzling,
1008 partial_cacheline_write,
1009 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001010
Daniel Vettere244a442012-03-25 19:47:28 +02001011 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001012
Chris Wilson755d2212012-09-04 21:02:55 +01001013 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001014 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001015
Chris Wilson17793c92014-03-07 08:30:36 +00001016next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001017 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001018 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001019 offset += page_length;
1020 }
1021
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001022out:
Chris Wilson755d2212012-09-04 21:02:55 +01001023 i915_gem_object_unpin_pages(obj);
1024
Daniel Vettere244a442012-03-25 19:47:28 +02001025 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001026 /*
1027 * Fixup: Flush cpu caches in case we didn't flush the dirty
1028 * cachelines in-line while writing and the object moved
1029 * out of the cpu write domain while we've dropped the lock.
1030 */
1031 if (!needs_clflush_after &&
1032 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001033 if (i915_gem_clflush_object(obj, obj->pin_display))
1034 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001035 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001036 }
Eric Anholt40123c12009-03-09 13:42:30 -07001037
Daniel Vetter58642882012-03-25 19:47:37 +02001038 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001039 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001040
Eric Anholt40123c12009-03-09 13:42:30 -07001041 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001042}
1043
1044/**
1045 * Writes data to the object referenced by handle.
1046 *
1047 * On error, the contents of the buffer that were to be modified are undefined.
1048 */
1049int
1050i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001051 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001052{
1053 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001054 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001055 int ret;
1056
1057 if (args->size == 0)
1058 return 0;
1059
1060 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001061 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001062 args->size))
1063 return -EFAULT;
1064
Jani Nikulad330a952014-01-21 11:24:25 +02001065 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001066 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1067 args->size);
1068 if (ret)
1069 return -EFAULT;
1070 }
Eric Anholt673a3942008-07-30 12:06:12 -07001071
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001072 ret = i915_mutex_lock_interruptible(dev);
1073 if (ret)
1074 return ret;
1075
Chris Wilson05394f32010-11-08 19:18:58 +00001076 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001077 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001078 ret = -ENOENT;
1079 goto unlock;
1080 }
Eric Anholt673a3942008-07-30 12:06:12 -07001081
Chris Wilson7dcd2492010-09-26 20:21:44 +01001082 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001083 if (args->offset > obj->base.size ||
1084 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001085 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001086 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001087 }
1088
Daniel Vetter1286ff72012-05-10 15:25:09 +02001089 /* prime objects have no backing filp to GEM pread/pwrite
1090 * pages from.
1091 */
1092 if (!obj->base.filp) {
1093 ret = -EINVAL;
1094 goto out;
1095 }
1096
Chris Wilsondb53a302011-02-03 11:57:46 +00001097 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1098
Daniel Vetter935aaa62012-03-25 19:47:35 +02001099 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001100 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1101 * it would end up going through the fenced access, and we'll get
1102 * different detiling behavior between reading and writing.
1103 * pread/pwrite currently are reading and writing from the CPU
1104 * perspective, requiring manual detiling by the client.
1105 */
Chris Wilson2c225692013-08-09 12:26:45 +01001106 if (obj->tiling_mode == I915_TILING_NONE &&
1107 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1108 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001109 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001110 /* Note that the gtt paths might fail with non-page-backed user
1111 * pointers (e.g. gtt mappings when moving data between
1112 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001113 }
Eric Anholt673a3942008-07-30 12:06:12 -07001114
Chris Wilson6a2c4232014-11-04 04:51:40 -08001115 if (ret == -EFAULT || ret == -ENOSPC) {
1116 if (obj->phys_handle)
1117 ret = i915_gem_phys_pwrite(obj, args, file);
1118 else
1119 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1120 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001121
Chris Wilson35b62a82010-09-26 20:23:38 +01001122out:
Chris Wilson05394f32010-11-08 19:18:58 +00001123 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001124unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001125 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001126 return ret;
1127}
1128
Chris Wilsonb3612372012-08-24 09:35:08 +01001129int
Daniel Vetter33196de2012-11-14 17:14:05 +01001130i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001131 bool interruptible)
1132{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001133 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001134 /* Non-interruptible callers can't handle -EAGAIN, hence return
1135 * -EIO unconditionally for these. */
1136 if (!interruptible)
1137 return -EIO;
1138
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001139 /* Recovery complete, but the reset failed ... */
1140 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001141 return -EIO;
1142
McAulay, Alistair6689c162014-08-15 18:51:35 +01001143 /*
1144 * Check if GPU Reset is in progress - we need intel_ring_begin
1145 * to work properly to reinit the hw state while the gpu is
1146 * still marked as reset-in-progress. Handle this with a flag.
1147 */
1148 if (!error->reload_in_reset)
1149 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001150 }
1151
1152 return 0;
1153}
1154
1155/*
1156 * Compare seqno against outstanding lazy request. Emit a request if they are
1157 * equal.
1158 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301159int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001160i915_gem_check_olr(struct intel_engine_cs *ring, u32 seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001161{
1162 int ret;
1163
1164 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1165
1166 ret = 0;
Chris Wilson18235212013-09-04 10:45:51 +01001167 if (seqno == ring->outstanding_lazy_seqno)
Mika Kuoppala0025c072013-06-12 12:35:30 +03001168 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001169
1170 return ret;
1171}
1172
Chris Wilson094f9a52013-09-25 17:34:55 +01001173static void fake_irq(unsigned long data)
1174{
1175 wake_up_process((struct task_struct *)data);
1176}
1177
1178static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001179 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001180{
1181 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1182}
1183
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001184static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1185{
1186 if (file_priv == NULL)
1187 return true;
1188
1189 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1190}
1191
Chris Wilsonb3612372012-08-24 09:35:08 +01001192/**
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001193 * __i915_wait_seqno - wait until execution of seqno has finished
Chris Wilsonb3612372012-08-24 09:35:08 +01001194 * @ring: the ring expected to report seqno
1195 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001196 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001197 * @interruptible: do an interruptible wait (normally yes)
1198 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1199 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001200 * Note: It is of utmost importance that the passed in seqno and reset_counter
1201 * values have been read by the caller in an smp safe manner. Where read-side
1202 * locks are involved, it is sufficient to read the reset_counter before
1203 * unlocking the lock that protects the seqno. For lockless tricks, the
1204 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1205 * inserted.
1206 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001207 * Returns 0 if the seqno was found within the alloted time. Else returns the
1208 * errno with remaining time filled in timeout argument.
1209 */
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001210int __i915_wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001211 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001212 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001213 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001214 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001215{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001216 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001217 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001218 const bool irq_test_in_progress =
1219 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001220 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001221 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001222 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001223 int ret;
1224
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001225 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001226
Chris Wilsonb3612372012-08-24 09:35:08 +01001227 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1228 return 0;
1229
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001230 timeout_expire = timeout ? jiffies + nsecs_to_jiffies((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001231
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001232 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001233 gen6_rps_boost(dev_priv);
1234 if (file_priv)
1235 mod_delayed_work(dev_priv->wq,
1236 &file_priv->mm.idle_work,
1237 msecs_to_jiffies(100));
1238 }
1239
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001240 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001241 return -ENODEV;
1242
Chris Wilson094f9a52013-09-25 17:34:55 +01001243 /* Record current time in case interrupted by signal, or wedged */
1244 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001245 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001246 for (;;) {
1247 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001248
Chris Wilson094f9a52013-09-25 17:34:55 +01001249 prepare_to_wait(&ring->irq_queue, &wait,
1250 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001251
Daniel Vetterf69061b2012-12-06 09:01:42 +01001252 /* We need to check whether any gpu reset happened in between
1253 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001254 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1255 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1256 * is truely gone. */
1257 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1258 if (ret == 0)
1259 ret = -EAGAIN;
1260 break;
1261 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001262
Chris Wilson094f9a52013-09-25 17:34:55 +01001263 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1264 ret = 0;
1265 break;
1266 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001267
Chris Wilson094f9a52013-09-25 17:34:55 +01001268 if (interruptible && signal_pending(current)) {
1269 ret = -ERESTARTSYS;
1270 break;
1271 }
1272
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001273 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001274 ret = -ETIME;
1275 break;
1276 }
1277
1278 timer.function = NULL;
1279 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001280 unsigned long expire;
1281
Chris Wilson094f9a52013-09-25 17:34:55 +01001282 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001283 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001284 mod_timer(&timer, expire);
1285 }
1286
Chris Wilson5035c272013-10-04 09:58:46 +01001287 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001288
Chris Wilson094f9a52013-09-25 17:34:55 +01001289 if (timer.function) {
1290 del_singleshot_timer_sync(&timer);
1291 destroy_timer_on_stack(&timer);
1292 }
1293 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001294 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001295 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001296
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001297 if (!irq_test_in_progress)
1298 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001299
1300 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001301
1302 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001303 s64 tres = *timeout - (now - before);
1304
1305 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001306 }
1307
Chris Wilson094f9a52013-09-25 17:34:55 +01001308 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001309}
1310
1311/**
1312 * Waits for a sequence number to be signaled, and cleans up the
1313 * request and object lists appropriately for that event.
1314 */
1315int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001316i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001317{
1318 struct drm_device *dev = ring->dev;
1319 struct drm_i915_private *dev_priv = dev->dev_private;
1320 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001321 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001322 int ret;
1323
1324 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1325 BUG_ON(seqno == 0);
1326
Daniel Vetter33196de2012-11-14 17:14:05 +01001327 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001328 if (ret)
1329 return ret;
1330
1331 ret = i915_gem_check_olr(ring, seqno);
1332 if (ret)
1333 return ret;
1334
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001335 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1336 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1337 NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001338}
1339
Chris Wilsond26e3af2013-06-29 22:05:26 +01001340static int
John Harrison8e6395492014-10-30 18:40:53 +00001341i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001342{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001343 if (!obj->active)
1344 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001345
1346 /* Manually manage the write flush as we may have not yet
1347 * retired the buffer.
1348 *
1349 * Note that the last_write_seqno is always the earlier of
1350 * the two (read/write) seqno, so if we haved successfully waited,
1351 * we know we have passed the last write.
1352 */
1353 obj->last_write_seqno = 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001354
1355 return 0;
1356}
1357
Chris Wilsonb3612372012-08-24 09:35:08 +01001358/**
1359 * Ensures that all rendering to the object has completed and the object is
1360 * safe to unbind from the GTT or access from the CPU.
1361 */
1362static __must_check int
1363i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1364 bool readonly)
1365{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001366 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001367 u32 seqno;
1368 int ret;
1369
1370 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1371 if (seqno == 0)
1372 return 0;
1373
1374 ret = i915_wait_seqno(ring, seqno);
1375 if (ret)
1376 return ret;
1377
John Harrison8e6395492014-10-30 18:40:53 +00001378 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001379}
1380
Chris Wilson3236f572012-08-24 09:35:09 +01001381/* A nonblocking variant of the above wait. This is a highly dangerous routine
1382 * as the object state may change during this call.
1383 */
1384static __must_check int
1385i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001386 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001387 bool readonly)
1388{
1389 struct drm_device *dev = obj->base.dev;
1390 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001391 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001392 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001393 u32 seqno;
1394 int ret;
1395
1396 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1397 BUG_ON(!dev_priv->mm.interruptible);
1398
1399 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1400 if (seqno == 0)
1401 return 0;
1402
Daniel Vetter33196de2012-11-14 17:14:05 +01001403 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001404 if (ret)
1405 return ret;
1406
1407 ret = i915_gem_check_olr(ring, seqno);
1408 if (ret)
1409 return ret;
1410
Daniel Vetterf69061b2012-12-06 09:01:42 +01001411 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001412 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001413 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL,
1414 file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001415 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001416 if (ret)
1417 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001418
John Harrison8e6395492014-10-30 18:40:53 +00001419 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001420}
1421
Eric Anholt673a3942008-07-30 12:06:12 -07001422/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001423 * Called when user space prepares to use an object with the CPU, either
1424 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001425 */
1426int
1427i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001428 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001429{
1430 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001431 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001432 uint32_t read_domains = args->read_domains;
1433 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001434 int ret;
1435
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001436 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001437 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001438 return -EINVAL;
1439
Chris Wilson21d509e2009-06-06 09:46:02 +01001440 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001441 return -EINVAL;
1442
1443 /* Having something in the write domain implies it's in the read
1444 * domain, and only that read domain. Enforce that in the request.
1445 */
1446 if (write_domain != 0 && read_domains != write_domain)
1447 return -EINVAL;
1448
Chris Wilson76c1dec2010-09-25 11:22:51 +01001449 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001450 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001451 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001452
Chris Wilson05394f32010-11-08 19:18:58 +00001453 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001454 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001455 ret = -ENOENT;
1456 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001457 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001458
Chris Wilson3236f572012-08-24 09:35:09 +01001459 /* Try to flush the object off the GPU without holding the lock.
1460 * We will repeat the flush holding the lock in the normal manner
1461 * to catch cases where we are gazumped.
1462 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001463 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1464 file->driver_priv,
1465 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001466 if (ret)
1467 goto unref;
1468
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001469 if (read_domains & I915_GEM_DOMAIN_GTT) {
1470 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001471
1472 /* Silently promote "you're not bound, there was nothing to do"
1473 * to success, since the client was just asking us to
1474 * make sure everything was done.
1475 */
1476 if (ret == -EINVAL)
1477 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001478 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001479 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001480 }
1481
Chris Wilson3236f572012-08-24 09:35:09 +01001482unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001483 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001484unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001485 mutex_unlock(&dev->struct_mutex);
1486 return ret;
1487}
1488
1489/**
1490 * Called when user space has done writes to this buffer
1491 */
1492int
1493i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001494 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001495{
1496 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001497 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001498 int ret = 0;
1499
Chris Wilson76c1dec2010-09-25 11:22:51 +01001500 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001501 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001502 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001503
Chris Wilson05394f32010-11-08 19:18:58 +00001504 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001505 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001506 ret = -ENOENT;
1507 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001508 }
1509
Eric Anholt673a3942008-07-30 12:06:12 -07001510 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001511 if (obj->pin_display)
1512 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001513
Chris Wilson05394f32010-11-08 19:18:58 +00001514 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001515unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001516 mutex_unlock(&dev->struct_mutex);
1517 return ret;
1518}
1519
1520/**
1521 * Maps the contents of an object, returning the address it is mapped
1522 * into.
1523 *
1524 * While the mapping holds a reference on the contents of the object, it doesn't
1525 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001526 *
1527 * IMPORTANT:
1528 *
1529 * DRM driver writers who look a this function as an example for how to do GEM
1530 * mmap support, please don't implement mmap support like here. The modern way
1531 * to implement DRM mmap support is with an mmap offset ioctl (like
1532 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1533 * That way debug tooling like valgrind will understand what's going on, hiding
1534 * the mmap call in a driver private ioctl will break that. The i915 driver only
1535 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001536 */
1537int
1538i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001539 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001540{
1541 struct drm_i915_gem_mmap *args = data;
1542 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001543 unsigned long addr;
1544
Chris Wilson05394f32010-11-08 19:18:58 +00001545 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001546 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001547 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001548
Daniel Vetter1286ff72012-05-10 15:25:09 +02001549 /* prime objects have no backing filp to GEM mmap
1550 * pages from.
1551 */
1552 if (!obj->filp) {
1553 drm_gem_object_unreference_unlocked(obj);
1554 return -EINVAL;
1555 }
1556
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001557 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001558 PROT_READ | PROT_WRITE, MAP_SHARED,
1559 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001560 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001561 if (IS_ERR((void *)addr))
1562 return addr;
1563
1564 args->addr_ptr = (uint64_t) addr;
1565
1566 return 0;
1567}
1568
Jesse Barnesde151cf2008-11-12 10:03:55 -08001569/**
1570 * i915_gem_fault - fault a page into the GTT
1571 * vma: VMA in question
1572 * vmf: fault info
1573 *
1574 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1575 * from userspace. The fault handler takes care of binding the object to
1576 * the GTT (if needed), allocating and programming a fence register (again,
1577 * only if needed based on whether the old reg is still valid or the object
1578 * is tiled) and inserting a new PTE into the faulting process.
1579 *
1580 * Note that the faulting process may involve evicting existing objects
1581 * from the GTT and/or fence registers to make room. So performance may
1582 * suffer if the GTT working set is large or there are few fence registers
1583 * left.
1584 */
1585int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1586{
Chris Wilson05394f32010-11-08 19:18:58 +00001587 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1588 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001589 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001590 pgoff_t page_offset;
1591 unsigned long pfn;
1592 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001593 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001594
Paulo Zanonif65c9162013-11-27 18:20:34 -02001595 intel_runtime_pm_get(dev_priv);
1596
Jesse Barnesde151cf2008-11-12 10:03:55 -08001597 /* We don't use vmf->pgoff since that has the fake offset */
1598 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1599 PAGE_SHIFT;
1600
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001601 ret = i915_mutex_lock_interruptible(dev);
1602 if (ret)
1603 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001604
Chris Wilsondb53a302011-02-03 11:57:46 +00001605 trace_i915_gem_object_fault(obj, page_offset, true, write);
1606
Chris Wilson6e4930f2014-02-07 18:37:06 -02001607 /* Try to flush the object off the GPU first without holding the lock.
1608 * Upon reacquiring the lock, we will perform our sanity checks and then
1609 * repeat the flush holding the lock in the normal manner to catch cases
1610 * where we are gazumped.
1611 */
1612 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1613 if (ret)
1614 goto unlock;
1615
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001616 /* Access to snoopable pages through the GTT is incoherent. */
1617 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001618 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001619 goto unlock;
1620 }
1621
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001622 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001623 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001624 if (ret)
1625 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001626
Chris Wilsonc9839302012-11-20 10:45:17 +00001627 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1628 if (ret)
1629 goto unpin;
1630
1631 ret = i915_gem_object_get_fence(obj);
1632 if (ret)
1633 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001634
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001635 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001636 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1637 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001638
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001639 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001640 unsigned long size = min_t(unsigned long,
1641 vma->vm_end - vma->vm_start,
1642 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001643 int i;
1644
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001645 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001646 ret = vm_insert_pfn(vma,
1647 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1648 pfn + i);
1649 if (ret)
1650 break;
1651 }
1652
1653 obj->fault_mappable = true;
1654 } else
1655 ret = vm_insert_pfn(vma,
1656 (unsigned long)vmf->virtual_address,
1657 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001658unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001659 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001660unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001661 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001662out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001663 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001664 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001665 /*
1666 * We eat errors when the gpu is terminally wedged to avoid
1667 * userspace unduly crashing (gl has no provisions for mmaps to
1668 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1669 * and so needs to be reported.
1670 */
1671 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001672 ret = VM_FAULT_SIGBUS;
1673 break;
1674 }
Chris Wilson045e7692010-11-07 09:18:22 +00001675 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001676 /*
1677 * EAGAIN means the gpu is hung and we'll wait for the error
1678 * handler to reset everything when re-faulting in
1679 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001680 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001681 case 0:
1682 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001683 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001684 case -EBUSY:
1685 /*
1686 * EBUSY is ok: this just means that another thread
1687 * already did the job.
1688 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001689 ret = VM_FAULT_NOPAGE;
1690 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001691 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001692 ret = VM_FAULT_OOM;
1693 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001694 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001695 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001696 ret = VM_FAULT_SIGBUS;
1697 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001698 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001699 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001700 ret = VM_FAULT_SIGBUS;
1701 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001702 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001703
1704 intel_runtime_pm_put(dev_priv);
1705 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001706}
1707
1708/**
Chris Wilson901782b2009-07-10 08:18:50 +01001709 * i915_gem_release_mmap - remove physical page mappings
1710 * @obj: obj in question
1711 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001712 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001713 * relinquish ownership of the pages back to the system.
1714 *
1715 * It is vital that we remove the page mapping if we have mapped a tiled
1716 * object through the GTT and then lose the fence register due to
1717 * resource pressure. Similarly if the object has been moved out of the
1718 * aperture, than pages mapped into userspace must be revoked. Removing the
1719 * mapping will then trigger a page fault on the next user access, allowing
1720 * fixup by i915_gem_fault().
1721 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001722void
Chris Wilson05394f32010-11-08 19:18:58 +00001723i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001724{
Chris Wilson6299f992010-11-24 12:23:44 +00001725 if (!obj->fault_mappable)
1726 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001727
David Herrmann6796cb12014-01-03 14:24:19 +01001728 drm_vma_node_unmap(&obj->base.vma_node,
1729 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001730 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001731}
1732
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001733void
1734i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1735{
1736 struct drm_i915_gem_object *obj;
1737
1738 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1739 i915_gem_release_mmap(obj);
1740}
1741
Imre Deak0fa87792013-01-07 21:47:35 +02001742uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001743i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001744{
Chris Wilsone28f8712011-07-18 13:11:49 -07001745 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001746
1747 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001748 tiling_mode == I915_TILING_NONE)
1749 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001750
1751 /* Previous chips need a power-of-two fence region when tiling */
1752 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001753 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001754 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001755 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001756
Chris Wilsone28f8712011-07-18 13:11:49 -07001757 while (gtt_size < size)
1758 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001759
Chris Wilsone28f8712011-07-18 13:11:49 -07001760 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001761}
1762
Jesse Barnesde151cf2008-11-12 10:03:55 -08001763/**
1764 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1765 * @obj: object to check
1766 *
1767 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001768 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001769 */
Imre Deakd8651102013-01-07 21:47:33 +02001770uint32_t
1771i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1772 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001773{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001774 /*
1775 * Minimum alignment is 4k (GTT page size), but might be greater
1776 * if a fence register is needed for the object.
1777 */
Imre Deakd8651102013-01-07 21:47:33 +02001778 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001779 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001780 return 4096;
1781
1782 /*
1783 * Previous chips need to be aligned to the size of the smallest
1784 * fence register that can contain the object.
1785 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001786 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001787}
1788
Chris Wilsond8cb5082012-08-11 15:41:03 +01001789static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1790{
1791 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1792 int ret;
1793
David Herrmann0de23972013-07-24 21:07:52 +02001794 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001795 return 0;
1796
Daniel Vetterda494d72012-12-20 15:11:16 +01001797 dev_priv->mm.shrinker_no_lock_stealing = true;
1798
Chris Wilsond8cb5082012-08-11 15:41:03 +01001799 ret = drm_gem_create_mmap_offset(&obj->base);
1800 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001801 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001802
1803 /* Badly fragmented mmap space? The only way we can recover
1804 * space is by destroying unwanted objects. We can't randomly release
1805 * mmap_offsets as userspace expects them to be persistent for the
1806 * lifetime of the objects. The closest we can is to release the
1807 * offsets on purgeable objects by truncating it and marking it purged,
1808 * which prevents userspace from ever using that object again.
1809 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001810 i915_gem_shrink(dev_priv,
1811 obj->base.size >> PAGE_SHIFT,
1812 I915_SHRINK_BOUND |
1813 I915_SHRINK_UNBOUND |
1814 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001815 ret = drm_gem_create_mmap_offset(&obj->base);
1816 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001817 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001818
1819 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001820 ret = drm_gem_create_mmap_offset(&obj->base);
1821out:
1822 dev_priv->mm.shrinker_no_lock_stealing = false;
1823
1824 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001825}
1826
1827static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1828{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001829 drm_gem_free_mmap_offset(&obj->base);
1830}
1831
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001832static int
Dave Airlieff72145b2011-02-07 12:16:14 +10001833i915_gem_mmap_gtt(struct drm_file *file,
1834 struct drm_device *dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001835 uint32_t handle, bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +10001836 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001837{
Chris Wilsonda761a62010-10-27 17:37:08 +01001838 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001839 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001840 int ret;
1841
Chris Wilson76c1dec2010-09-25 11:22:51 +01001842 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001843 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001844 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001845
Dave Airlieff72145b2011-02-07 12:16:14 +10001846 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001847 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001848 ret = -ENOENT;
1849 goto unlock;
1850 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001851
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001852 /*
1853 * We don't allow dumb mmaps on objects created using another
1854 * interface.
1855 */
1856 WARN_ONCE(dumb && !(obj->base.dumb || obj->base.import_attach),
1857 "Illegal dumb map of accelerated buffer.\n");
1858
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001859 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001860 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001861 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001862 }
1863
Chris Wilson05394f32010-11-08 19:18:58 +00001864 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001865 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001866 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001867 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001868 }
1869
Chris Wilsond8cb5082012-08-11 15:41:03 +01001870 ret = i915_gem_object_create_mmap_offset(obj);
1871 if (ret)
1872 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001873
David Herrmann0de23972013-07-24 21:07:52 +02001874 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001875
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001876out:
Chris Wilson05394f32010-11-08 19:18:58 +00001877 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001878unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001879 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001880 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001881}
1882
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001883int
1884i915_gem_dumb_map_offset(struct drm_file *file,
1885 struct drm_device *dev,
1886 uint32_t handle,
1887 uint64_t *offset)
1888{
1889 return i915_gem_mmap_gtt(file, dev, handle, true, offset);
1890}
1891
Dave Airlieff72145b2011-02-07 12:16:14 +10001892/**
1893 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1894 * @dev: DRM device
1895 * @data: GTT mapping ioctl data
1896 * @file: GEM object info
1897 *
1898 * Simply returns the fake offset to userspace so it can mmap it.
1899 * The mmap call will end up in drm_gem_mmap(), which will set things
1900 * up so we can get faults in the handler above.
1901 *
1902 * The fault handler will take care of binding the object into the GTT
1903 * (since it may have been evicted to make room for something), allocating
1904 * a fence register, and mapping the appropriate aperture address into
1905 * userspace.
1906 */
1907int
1908i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1909 struct drm_file *file)
1910{
1911 struct drm_i915_gem_mmap_gtt *args = data;
1912
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001913 return i915_gem_mmap_gtt(file, dev, args->handle, false, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001914}
1915
Chris Wilson55372522014-03-25 13:23:06 +00001916static inline int
1917i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1918{
1919 return obj->madv == I915_MADV_DONTNEED;
1920}
1921
Daniel Vetter225067e2012-08-20 10:23:20 +02001922/* Immediately discard the backing storage */
1923static void
1924i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001925{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001926 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001927
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001928 if (obj->base.filp == NULL)
1929 return;
1930
Daniel Vetter225067e2012-08-20 10:23:20 +02001931 /* Our goal here is to return as much of the memory as
1932 * is possible back to the system as we are called from OOM.
1933 * To do this we must instruct the shmfs to drop all of its
1934 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001935 */
Chris Wilson55372522014-03-25 13:23:06 +00001936 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001937 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001938}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001939
Chris Wilson55372522014-03-25 13:23:06 +00001940/* Try to discard unwanted pages */
1941static void
1942i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001943{
Chris Wilson55372522014-03-25 13:23:06 +00001944 struct address_space *mapping;
1945
1946 switch (obj->madv) {
1947 case I915_MADV_DONTNEED:
1948 i915_gem_object_truncate(obj);
1949 case __I915_MADV_PURGED:
1950 return;
1951 }
1952
1953 if (obj->base.filp == NULL)
1954 return;
1955
1956 mapping = file_inode(obj->base.filp)->i_mapping,
1957 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001958}
1959
Chris Wilson5cdf5882010-09-27 15:51:07 +01001960static void
Chris Wilson05394f32010-11-08 19:18:58 +00001961i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001962{
Imre Deak90797e62013-02-18 19:28:03 +02001963 struct sg_page_iter sg_iter;
1964 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001965
Chris Wilson05394f32010-11-08 19:18:58 +00001966 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001967
Chris Wilson6c085a72012-08-20 11:40:46 +02001968 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1969 if (ret) {
1970 /* In the event of a disaster, abandon all caches and
1971 * hope for the best.
1972 */
1973 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001974 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001975 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1976 }
1977
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001978 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001979 i915_gem_object_save_bit_17_swizzle(obj);
1980
Chris Wilson05394f32010-11-08 19:18:58 +00001981 if (obj->madv == I915_MADV_DONTNEED)
1982 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001983
Imre Deak90797e62013-02-18 19:28:03 +02001984 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001985 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001986
Chris Wilson05394f32010-11-08 19:18:58 +00001987 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001988 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001989
Chris Wilson05394f32010-11-08 19:18:58 +00001990 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001991 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001992
Chris Wilson9da3da62012-06-01 15:20:22 +01001993 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001994 }
Chris Wilson05394f32010-11-08 19:18:58 +00001995 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001996
Chris Wilson9da3da62012-06-01 15:20:22 +01001997 sg_free_table(obj->pages);
1998 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001999}
2000
Chris Wilsondd624af2013-01-15 12:39:35 +00002001int
Chris Wilson37e680a2012-06-07 15:38:42 +01002002i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2003{
2004 const struct drm_i915_gem_object_ops *ops = obj->ops;
2005
Chris Wilson2f745ad2012-09-04 21:02:58 +01002006 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002007 return 0;
2008
Chris Wilsona5570172012-09-04 21:02:54 +01002009 if (obj->pages_pin_count)
2010 return -EBUSY;
2011
Ben Widawsky98438772013-07-31 17:00:12 -07002012 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002013
Chris Wilsona2165e32012-12-03 11:49:00 +00002014 /* ->put_pages might need to allocate memory for the bit17 swizzle
2015 * array, hence protect them from being reaped by removing them from gtt
2016 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002017 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002018
Chris Wilson37e680a2012-06-07 15:38:42 +01002019 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002020 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002021
Chris Wilson55372522014-03-25 13:23:06 +00002022 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002023
2024 return 0;
2025}
2026
Chris Wilson21ab4e72014-09-09 11:16:08 +01002027unsigned long
2028i915_gem_shrink(struct drm_i915_private *dev_priv,
2029 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002030{
Chris Wilson60a53722014-10-03 10:29:51 +01002031 const struct {
2032 struct list_head *list;
2033 unsigned int bit;
2034 } phases[] = {
2035 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2036 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2037 { NULL, 0 },
2038 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002039 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002040
Chris Wilson57094f82013-09-04 10:45:50 +01002041 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002042 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002043 * (due to retiring requests) we have to strictly process only
2044 * one element of the list at the time, and recheck the list
2045 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002046 *
2047 * In particular, we must hold a reference whilst removing the
2048 * object as we may end up waiting for and/or retiring the objects.
2049 * This might release the final reference (held by the active list)
2050 * and result in the object being freed from under us. This is
2051 * similar to the precautions the eviction code must take whilst
2052 * removing objects.
2053 *
2054 * Also note that although these lists do not hold a reference to
2055 * the object we can safely grab one here: The final object
2056 * unreferencing and the bound_list are both protected by the
2057 * dev->struct_mutex and so we won't ever be able to observe an
2058 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002059 */
Chris Wilson60a53722014-10-03 10:29:51 +01002060 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002061 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002062
Chris Wilson60a53722014-10-03 10:29:51 +01002063 if ((flags & phase->bit) == 0)
2064 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002065
Chris Wilson21ab4e72014-09-09 11:16:08 +01002066 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002067 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002068 struct drm_i915_gem_object *obj;
2069 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002070
Chris Wilson60a53722014-10-03 10:29:51 +01002071 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002072 typeof(*obj), global_list);
2073 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002074
Chris Wilson60a53722014-10-03 10:29:51 +01002075 if (flags & I915_SHRINK_PURGEABLE &&
2076 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002077 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002078
Chris Wilson21ab4e72014-09-09 11:16:08 +01002079 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002080
Chris Wilson60a53722014-10-03 10:29:51 +01002081 /* For the unbound phase, this should be a no-op! */
2082 list_for_each_entry_safe(vma, v,
2083 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002084 if (i915_vma_unbind(vma))
2085 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002086
Chris Wilson21ab4e72014-09-09 11:16:08 +01002087 if (i915_gem_object_put_pages(obj) == 0)
2088 count += obj->base.size >> PAGE_SHIFT;
2089
2090 drm_gem_object_unreference(&obj->base);
2091 }
Chris Wilson60a53722014-10-03 10:29:51 +01002092 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002093 }
2094
2095 return count;
2096}
2097
Chris Wilsond9973b42013-10-04 10:33:00 +01002098static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002099i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2100{
Chris Wilson6c085a72012-08-20 11:40:46 +02002101 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002102 return i915_gem_shrink(dev_priv, LONG_MAX,
2103 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002104}
2105
Chris Wilson37e680a2012-06-07 15:38:42 +01002106static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002107i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002108{
Chris Wilson6c085a72012-08-20 11:40:46 +02002109 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002110 int page_count, i;
2111 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002112 struct sg_table *st;
2113 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002114 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002115 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002116 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002117 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002118
Chris Wilson6c085a72012-08-20 11:40:46 +02002119 /* Assert that the object is not currently in any GPU domain. As it
2120 * wasn't in the GTT, there shouldn't be any way it could have been in
2121 * a GPU cache
2122 */
2123 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2124 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2125
Chris Wilson9da3da62012-06-01 15:20:22 +01002126 st = kmalloc(sizeof(*st), GFP_KERNEL);
2127 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002128 return -ENOMEM;
2129
Chris Wilson9da3da62012-06-01 15:20:22 +01002130 page_count = obj->base.size / PAGE_SIZE;
2131 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002132 kfree(st);
2133 return -ENOMEM;
2134 }
2135
2136 /* Get the list of pages out of our struct file. They'll be pinned
2137 * at this point until we release them.
2138 *
2139 * Fail silently without starting the shrinker
2140 */
Al Viro496ad9a2013-01-23 17:07:38 -05002141 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002142 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002143 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002144 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002145 sg = st->sgl;
2146 st->nents = 0;
2147 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002148 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2149 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002150 i915_gem_shrink(dev_priv,
2151 page_count,
2152 I915_SHRINK_BOUND |
2153 I915_SHRINK_UNBOUND |
2154 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002155 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2156 }
2157 if (IS_ERR(page)) {
2158 /* We've tried hard to allocate the memory by reaping
2159 * our own buffer, now let the real VM do its job and
2160 * go down in flames if truly OOM.
2161 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002162 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002163 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002164 if (IS_ERR(page))
2165 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002166 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002167#ifdef CONFIG_SWIOTLB
2168 if (swiotlb_nr_tbl()) {
2169 st->nents++;
2170 sg_set_page(sg, page, PAGE_SIZE, 0);
2171 sg = sg_next(sg);
2172 continue;
2173 }
2174#endif
Imre Deak90797e62013-02-18 19:28:03 +02002175 if (!i || page_to_pfn(page) != last_pfn + 1) {
2176 if (i)
2177 sg = sg_next(sg);
2178 st->nents++;
2179 sg_set_page(sg, page, PAGE_SIZE, 0);
2180 } else {
2181 sg->length += PAGE_SIZE;
2182 }
2183 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002184
2185 /* Check that the i965g/gm workaround works. */
2186 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002187 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002188#ifdef CONFIG_SWIOTLB
2189 if (!swiotlb_nr_tbl())
2190#endif
2191 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002192 obj->pages = st;
2193
Eric Anholt673a3942008-07-30 12:06:12 -07002194 if (i915_gem_object_needs_bit17_swizzle(obj))
2195 i915_gem_object_do_bit_17_swizzle(obj);
2196
Daniel Vetter656bfa32014-11-20 09:26:30 +01002197 if (obj->tiling_mode != I915_TILING_NONE &&
2198 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2199 i915_gem_object_pin_pages(obj);
2200
Eric Anholt673a3942008-07-30 12:06:12 -07002201 return 0;
2202
2203err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002204 sg_mark_end(sg);
2205 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002206 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002207 sg_free_table(st);
2208 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002209
2210 /* shmemfs first checks if there is enough memory to allocate the page
2211 * and reports ENOSPC should there be insufficient, along with the usual
2212 * ENOMEM for a genuine allocation failure.
2213 *
2214 * We use ENOSPC in our driver to mean that we have run out of aperture
2215 * space and so want to translate the error from shmemfs back to our
2216 * usual understanding of ENOMEM.
2217 */
2218 if (PTR_ERR(page) == -ENOSPC)
2219 return -ENOMEM;
2220 else
2221 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002222}
2223
Chris Wilson37e680a2012-06-07 15:38:42 +01002224/* Ensure that the associated pages are gathered from the backing storage
2225 * and pinned into our object. i915_gem_object_get_pages() may be called
2226 * multiple times before they are released by a single call to
2227 * i915_gem_object_put_pages() - once the pages are no longer referenced
2228 * either as a result of memory pressure (reaping pages under the shrinker)
2229 * or as the object is itself released.
2230 */
2231int
2232i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2233{
2234 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2235 const struct drm_i915_gem_object_ops *ops = obj->ops;
2236 int ret;
2237
Chris Wilson2f745ad2012-09-04 21:02:58 +01002238 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002239 return 0;
2240
Chris Wilson43e28f02013-01-08 10:53:09 +00002241 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002242 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002243 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002244 }
2245
Chris Wilsona5570172012-09-04 21:02:54 +01002246 BUG_ON(obj->pages_pin_count);
2247
Chris Wilson37e680a2012-06-07 15:38:42 +01002248 ret = ops->get_pages(obj);
2249 if (ret)
2250 return ret;
2251
Ben Widawsky35c20a62013-05-31 11:28:48 -07002252 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002253 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002254}
2255
Ben Widawskye2d05a82013-09-24 09:57:58 -07002256static void
Chris Wilson05394f32010-11-08 19:18:58 +00002257i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002258 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002259{
Chris Wilson9d7730912012-11-27 16:22:52 +00002260 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002261
Zou Nan hai852835f2010-05-21 09:08:56 +08002262 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002263 if (obj->ring != ring && obj->last_write_seqno) {
2264 /* Keep the seqno relative to the current ring */
2265 obj->last_write_seqno = seqno;
2266 }
Chris Wilson05394f32010-11-08 19:18:58 +00002267 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002268
2269 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002270 if (!obj->active) {
2271 drm_gem_object_reference(&obj->base);
2272 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002273 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002274
Chris Wilson05394f32010-11-08 19:18:58 +00002275 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002276
Chris Wilson0201f1e2012-07-20 12:41:01 +01002277 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002278}
2279
Ben Widawskye2d05a82013-09-24 09:57:58 -07002280void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002281 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002282{
2283 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2284 return i915_gem_object_move_to_active(vma->obj, ring);
2285}
2286
Chris Wilsoncaea7472010-11-12 13:53:37 +00002287static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002288i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2289{
Ben Widawskyca191b12013-07-31 17:00:14 -07002290 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002291 struct i915_address_space *vm;
2292 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002293
Chris Wilson65ce3022012-07-20 12:41:02 +01002294 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002295 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002296
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002297 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2298 vma = i915_gem_obj_to_vma(obj, vm);
2299 if (vma && !list_empty(&vma->mm_list))
2300 list_move_tail(&vma->mm_list, &vm->inactive_list);
2301 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002302
Daniel Vetterf99d7062014-06-19 16:01:59 +02002303 intel_fb_obj_flush(obj, true);
2304
Chris Wilson65ce3022012-07-20 12:41:02 +01002305 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002306 obj->ring = NULL;
2307
Chris Wilson65ce3022012-07-20 12:41:02 +01002308 obj->last_read_seqno = 0;
2309 obj->last_write_seqno = 0;
2310 obj->base.write_domain = 0;
2311
2312 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002313
2314 obj->active = 0;
2315 drm_gem_object_unreference(&obj->base);
2316
2317 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002318}
Eric Anholt673a3942008-07-30 12:06:12 -07002319
Chris Wilsonc8725f32014-03-17 12:21:55 +00002320static void
2321i915_gem_object_retire(struct drm_i915_gem_object *obj)
2322{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002323 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002324
2325 if (ring == NULL)
2326 return;
2327
2328 if (i915_seqno_passed(ring->get_seqno(ring, true),
2329 obj->last_read_seqno))
2330 i915_gem_object_move_to_inactive(obj);
2331}
2332
Chris Wilson9d7730912012-11-27 16:22:52 +00002333static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002334i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002335{
Chris Wilson9d7730912012-11-27 16:22:52 +00002336 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002337 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002338 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002339
Chris Wilson107f27a52012-12-10 13:56:17 +02002340 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002341 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002342 ret = intel_ring_idle(ring);
2343 if (ret)
2344 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002345 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002346 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002347
2348 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002349 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002350 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002351
Ben Widawskyebc348b2014-04-29 14:52:28 -07002352 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2353 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002354 }
2355
2356 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002357}
2358
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002359int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2360{
2361 struct drm_i915_private *dev_priv = dev->dev_private;
2362 int ret;
2363
2364 if (seqno == 0)
2365 return -EINVAL;
2366
2367 /* HWS page needs to be set less than what we
2368 * will inject to ring
2369 */
2370 ret = i915_gem_init_seqno(dev, seqno - 1);
2371 if (ret)
2372 return ret;
2373
2374 /* Carefully set the last_seqno value so that wrap
2375 * detection still works
2376 */
2377 dev_priv->next_seqno = seqno;
2378 dev_priv->last_seqno = seqno - 1;
2379 if (dev_priv->last_seqno == 0)
2380 dev_priv->last_seqno--;
2381
2382 return 0;
2383}
2384
Chris Wilson9d7730912012-11-27 16:22:52 +00002385int
2386i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002387{
Chris Wilson9d7730912012-11-27 16:22:52 +00002388 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002389
Chris Wilson9d7730912012-11-27 16:22:52 +00002390 /* reserve 0 for non-seqno */
2391 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002392 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002393 if (ret)
2394 return ret;
2395
2396 dev_priv->next_seqno = 1;
2397 }
2398
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002399 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002400 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002401}
2402
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002403int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002404 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002405 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002406 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002407{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002408 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002409 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002410 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002411 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002412 int ret;
2413
Oscar Mateo48e29f52014-07-24 17:04:29 +01002414 request = ring->preallocated_lazy_request;
2415 if (WARN_ON(request == NULL))
2416 return -ENOMEM;
2417
2418 if (i915.enable_execlists) {
2419 struct intel_context *ctx = request->ctx;
2420 ringbuf = ctx->engine[ring->id].ringbuf;
2421 } else
2422 ringbuf = ring->buffer;
2423
2424 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002425 /*
2426 * Emit any outstanding flushes - execbuf can fail to emit the flush
2427 * after having emitted the batchbuffer command. Hence we need to fix
2428 * things up similar to emitting the lazy request. The difference here
2429 * is that the flush _must_ happen before the next request, no matter
2430 * what.
2431 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002432 if (i915.enable_execlists) {
2433 ret = logical_ring_flush_all_caches(ringbuf);
2434 if (ret)
2435 return ret;
2436 } else {
2437 ret = intel_ring_flush_all_caches(ring);
2438 if (ret)
2439 return ret;
2440 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002441
Chris Wilsona71d8d92012-02-15 11:25:36 +00002442 /* Record the position of the start of the request so that
2443 * should we detect the updated seqno part-way through the
2444 * GPU processing the request, we never over-estimate the
2445 * position of the head.
2446 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002447 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002448
Oscar Mateo48e29f52014-07-24 17:04:29 +01002449 if (i915.enable_execlists) {
2450 ret = ring->emit_request(ringbuf);
2451 if (ret)
2452 return ret;
2453 } else {
2454 ret = ring->add_request(ring);
2455 if (ret)
2456 return ret;
2457 }
Eric Anholt673a3942008-07-30 12:06:12 -07002458
Chris Wilson9d7730912012-11-27 16:22:52 +00002459 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002460 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002461 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002462 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002463
2464 /* Whilst this request exists, batch_obj will be on the
2465 * active_list, and so will hold the active reference. Only when this
2466 * request is retired will the the batch_obj be moved onto the
2467 * inactive_list and lose its active reference. Hence we do not need
2468 * to explicitly hold another reference here.
2469 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002470 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002471
Oscar Mateo48e29f52014-07-24 17:04:29 +01002472 if (!i915.enable_execlists) {
2473 /* Hold a reference to the current context so that we can inspect
2474 * it later in case a hangcheck error event fires.
2475 */
2476 request->ctx = ring->last_context;
2477 if (request->ctx)
2478 i915_gem_context_reference(request->ctx);
2479 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002480
Eric Anholt673a3942008-07-30 12:06:12 -07002481 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002482 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002483 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002484
Chris Wilsondb53a302011-02-03 11:57:46 +00002485 if (file) {
2486 struct drm_i915_file_private *file_priv = file->driver_priv;
2487
Chris Wilson1c255952010-09-26 11:03:27 +01002488 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002489 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002490 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002491 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002492 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002493 }
Eric Anholt673a3942008-07-30 12:06:12 -07002494
Chris Wilson9d7730912012-11-27 16:22:52 +00002495 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002496 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002497 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002498
Daniel Vetter87255482014-11-19 20:36:48 +01002499 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002500
Daniel Vetter87255482014-11-19 20:36:48 +01002501 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2502 queue_delayed_work(dev_priv->wq,
2503 &dev_priv->mm.retire_work,
2504 round_jiffies_up_relative(HZ));
2505 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002506
Chris Wilsonacb868d2012-09-26 13:47:30 +01002507 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002508 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002509 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002510}
2511
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002512static inline void
2513i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002514{
Chris Wilson1c255952010-09-26 11:03:27 +01002515 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002516
Chris Wilson1c255952010-09-26 11:03:27 +01002517 if (!file_priv)
2518 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002519
Chris Wilson1c255952010-09-26 11:03:27 +01002520 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002521 list_del(&request->client_list);
2522 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002523 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002524}
2525
Mika Kuoppala939fd762014-01-30 19:04:44 +02002526static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002527 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002528{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002529 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002530
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002531 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2532
2533 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002534 return true;
2535
2536 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002537 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002538 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002539 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002540 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2541 if (i915_stop_ring_allow_warn(dev_priv))
2542 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002543 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002544 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002545 }
2546
2547 return false;
2548}
2549
Mika Kuoppala939fd762014-01-30 19:04:44 +02002550static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002551 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002552 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002553{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002554 struct i915_ctx_hang_stats *hs;
2555
2556 if (WARN_ON(!ctx))
2557 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002558
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002559 hs = &ctx->hang_stats;
2560
2561 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002562 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002563 hs->batch_active++;
2564 hs->guilty_ts = get_seconds();
2565 } else {
2566 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002567 }
2568}
2569
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002570static void i915_gem_free_request(struct drm_i915_gem_request *request)
2571{
2572 list_del(&request->list);
2573 i915_gem_request_remove_from_client(request);
2574
John Harrisonabfe2622014-11-24 18:49:24 +00002575 i915_gem_request_unreference(request);
2576}
2577
2578void i915_gem_request_free(struct kref *req_ref)
2579{
2580 struct drm_i915_gem_request *req = container_of(req_ref,
2581 typeof(*req), ref);
2582 struct intel_context *ctx = req->ctx;
2583
Thomas Daniel0794aed2014-11-25 10:39:25 +00002584 if (ctx) {
2585 if (i915.enable_execlists) {
John Harrisonabfe2622014-11-24 18:49:24 +00002586 struct intel_engine_cs *ring = req->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002587
Thomas Daniel0794aed2014-11-25 10:39:25 +00002588 if (ctx != ring->default_context)
2589 intel_lr_context_unpin(ring, ctx);
2590 }
John Harrisonabfe2622014-11-24 18:49:24 +00002591
Oscar Mateodcb4c122014-11-13 10:28:10 +00002592 i915_gem_context_unreference(ctx);
2593 }
John Harrisonabfe2622014-11-24 18:49:24 +00002594
2595 kfree(req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002596}
2597
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002598struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002599i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002600{
Chris Wilson4db080f2013-12-04 11:37:09 +00002601 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002602 u32 completed_seqno;
2603
2604 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002605
Chris Wilson4db080f2013-12-04 11:37:09 +00002606 list_for_each_entry(request, &ring->request_list, list) {
2607 if (i915_seqno_passed(completed_seqno, request->seqno))
2608 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002609
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002610 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002611 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002612
2613 return NULL;
2614}
2615
2616static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002617 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002618{
2619 struct drm_i915_gem_request *request;
2620 bool ring_hung;
2621
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002622 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002623
2624 if (request == NULL)
2625 return;
2626
2627 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2628
Mika Kuoppala939fd762014-01-30 19:04:44 +02002629 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002630
2631 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002632 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002633}
2634
2635static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002636 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002637{
Chris Wilsondfaae392010-09-22 10:31:52 +01002638 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002639 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002640
Chris Wilson05394f32010-11-08 19:18:58 +00002641 obj = list_first_entry(&ring->active_list,
2642 struct drm_i915_gem_object,
2643 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002644
Chris Wilson05394f32010-11-08 19:18:58 +00002645 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002646 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002647
2648 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002649 * Clear the execlists queue up before freeing the requests, as those
2650 * are the ones that keep the context and ringbuffer backing objects
2651 * pinned in place.
2652 */
2653 while (!list_empty(&ring->execlist_queue)) {
2654 struct intel_ctx_submit_request *submit_req;
2655
2656 submit_req = list_first_entry(&ring->execlist_queue,
2657 struct intel_ctx_submit_request,
2658 execlist_link);
2659 list_del(&submit_req->execlist_link);
2660 intel_runtime_pm_put(dev_priv);
2661 i915_gem_context_unreference(submit_req->ctx);
2662 kfree(submit_req);
2663 }
2664
2665 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002666 * We must free the requests after all the corresponding objects have
2667 * been moved off active lists. Which is the same order as the normal
2668 * retire_requests function does. This is important if object hold
2669 * implicit references on things like e.g. ppgtt address spaces through
2670 * the request.
2671 */
2672 while (!list_empty(&ring->request_list)) {
2673 struct drm_i915_gem_request *request;
2674
2675 request = list_first_entry(&ring->request_list,
2676 struct drm_i915_gem_request,
2677 list);
2678
2679 i915_gem_free_request(request);
2680 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002681
2682 /* These may not have been flush before the reset, do so now */
John Harrisonabfe2622014-11-24 18:49:24 +00002683 i915_gem_request_assign(&ring->preallocated_lazy_request, NULL);
Chris Wilsone3efda42014-04-09 09:19:41 +01002684 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002685}
2686
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002687void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002688{
2689 struct drm_i915_private *dev_priv = dev->dev_private;
2690 int i;
2691
Daniel Vetter4b9de732011-10-09 21:52:02 +02002692 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002693 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002694
Daniel Vetter94a335d2013-07-17 14:51:28 +02002695 /*
2696 * Commit delayed tiling changes if we have an object still
2697 * attached to the fence, otherwise just clear the fence.
2698 */
2699 if (reg->obj) {
2700 i915_gem_object_update_fence(reg->obj, reg,
2701 reg->obj->tiling_mode);
2702 } else {
2703 i915_gem_write_fence(dev, i, NULL);
2704 }
Chris Wilson312817a2010-11-22 11:50:11 +00002705 }
2706}
2707
Chris Wilson069efc12010-09-30 16:53:18 +01002708void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002709{
Chris Wilsondfaae392010-09-22 10:31:52 +01002710 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002711 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002712 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002713
Chris Wilson4db080f2013-12-04 11:37:09 +00002714 /*
2715 * Before we free the objects from the requests, we need to inspect
2716 * them for finding the guilty party. As the requests only borrow
2717 * their reference to the objects, the inspection must be done first.
2718 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002719 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002720 i915_gem_reset_ring_status(dev_priv, ring);
2721
2722 for_each_ring(ring, dev_priv, i)
2723 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002724
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002725 i915_gem_context_reset(dev);
2726
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002727 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002728}
2729
2730/**
2731 * This function clears the request list as sequence numbers are passed.
2732 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002733void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002734i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002735{
Eric Anholt673a3942008-07-30 12:06:12 -07002736 uint32_t seqno;
2737
Chris Wilsondb53a302011-02-03 11:57:46 +00002738 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002739 return;
2740
Chris Wilsondb53a302011-02-03 11:57:46 +00002741 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002742
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002743 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002744
Chris Wilsone9103032014-01-07 11:45:14 +00002745 /* Move any buffers on the active list that are no longer referenced
2746 * by the ringbuffer to the flushing/inactive lists as appropriate,
2747 * before we free the context associated with the requests.
2748 */
2749 while (!list_empty(&ring->active_list)) {
2750 struct drm_i915_gem_object *obj;
2751
2752 obj = list_first_entry(&ring->active_list,
2753 struct drm_i915_gem_object,
2754 ring_list);
2755
2756 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2757 break;
2758
2759 i915_gem_object_move_to_inactive(obj);
2760 }
2761
2762
Zou Nan hai852835f2010-05-21 09:08:56 +08002763 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002764 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002765 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002766
Zou Nan hai852835f2010-05-21 09:08:56 +08002767 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002768 struct drm_i915_gem_request,
2769 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002770
Chris Wilsondfaae392010-09-22 10:31:52 +01002771 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002772 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002773
Chris Wilsondb53a302011-02-03 11:57:46 +00002774 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002775
2776 /* This is one of the few common intersection points
2777 * between legacy ringbuffer submission and execlists:
2778 * we need to tell them apart in order to find the correct
2779 * ringbuffer to which the request belongs to.
2780 */
2781 if (i915.enable_execlists) {
2782 struct intel_context *ctx = request->ctx;
2783 ringbuf = ctx->engine[ring->id].ringbuf;
2784 } else
2785 ringbuf = ring->buffer;
2786
Chris Wilsona71d8d92012-02-15 11:25:36 +00002787 /* We know the GPU must have read the request to have
2788 * sent us the seqno + interrupt, so use the position
2789 * of tail of the request to update the last known position
2790 * of the GPU head.
2791 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002792 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002793
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002794 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002795 }
2796
Chris Wilsondb53a302011-02-03 11:57:46 +00002797 if (unlikely(ring->trace_irq_seqno &&
2798 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002799 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002800 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002801 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002802
Chris Wilsondb53a302011-02-03 11:57:46 +00002803 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002804}
2805
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002806bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002807i915_gem_retire_requests(struct drm_device *dev)
2808{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002809 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002810 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002811 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002812 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002813
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002814 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002815 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002816 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002817 if (i915.enable_execlists) {
2818 unsigned long flags;
2819
2820 spin_lock_irqsave(&ring->execlist_lock, flags);
2821 idle &= list_empty(&ring->execlist_queue);
2822 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2823
2824 intel_execlists_retire_requests(ring);
2825 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002826 }
2827
2828 if (idle)
2829 mod_delayed_work(dev_priv->wq,
2830 &dev_priv->mm.idle_work,
2831 msecs_to_jiffies(100));
2832
2833 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002834}
2835
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002836static void
Eric Anholt673a3942008-07-30 12:06:12 -07002837i915_gem_retire_work_handler(struct work_struct *work)
2838{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002839 struct drm_i915_private *dev_priv =
2840 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2841 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002842 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002843
Chris Wilson891b48c2010-09-29 12:26:37 +01002844 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002845 idle = false;
2846 if (mutex_trylock(&dev->struct_mutex)) {
2847 idle = i915_gem_retire_requests(dev);
2848 mutex_unlock(&dev->struct_mutex);
2849 }
2850 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002851 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2852 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002853}
Chris Wilson891b48c2010-09-29 12:26:37 +01002854
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002855static void
2856i915_gem_idle_work_handler(struct work_struct *work)
2857{
2858 struct drm_i915_private *dev_priv =
2859 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002860
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002861 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002862}
2863
Ben Widawsky5816d642012-04-11 11:18:19 -07002864/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002865 * Ensures that an object will eventually get non-busy by flushing any required
2866 * write domains, emitting any outstanding lazy request and retiring and
2867 * completed requests.
2868 */
2869static int
2870i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2871{
2872 int ret;
2873
2874 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002875 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002876 if (ret)
2877 return ret;
2878
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002879 i915_gem_retire_requests_ring(obj->ring);
2880 }
2881
2882 return 0;
2883}
2884
2885/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002886 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2887 * @DRM_IOCTL_ARGS: standard ioctl arguments
2888 *
2889 * Returns 0 if successful, else an error is returned with the remaining time in
2890 * the timeout parameter.
2891 * -ETIME: object is still busy after timeout
2892 * -ERESTARTSYS: signal interrupted the wait
2893 * -ENONENT: object doesn't exist
2894 * Also possible, but rare:
2895 * -EAGAIN: GPU wedged
2896 * -ENOMEM: damn
2897 * -ENODEV: Internal IRQ fail
2898 * -E?: The add request failed
2899 *
2900 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2901 * non-zero timeout parameter the wait ioctl will wait for the given number of
2902 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2903 * without holding struct_mutex the object may become re-busied before this
2904 * function completes. A similar but shorter * race condition exists in the busy
2905 * ioctl
2906 */
2907int
2908i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2909{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002910 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002911 struct drm_i915_gem_wait *args = data;
2912 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002913 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002914 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002915 u32 seqno = 0;
2916 int ret = 0;
2917
Daniel Vetter11b5d512014-09-29 15:31:26 +02002918 if (args->flags != 0)
2919 return -EINVAL;
2920
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002921 ret = i915_mutex_lock_interruptible(dev);
2922 if (ret)
2923 return ret;
2924
2925 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2926 if (&obj->base == NULL) {
2927 mutex_unlock(&dev->struct_mutex);
2928 return -ENOENT;
2929 }
2930
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002931 /* Need to make sure the object gets inactive eventually. */
2932 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002933 if (ret)
2934 goto out;
2935
2936 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002937 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002938 ring = obj->ring;
2939 }
2940
2941 if (seqno == 0)
2942 goto out;
2943
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002944 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002945 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002946 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002947 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002948 ret = -ETIME;
2949 goto out;
2950 }
2951
2952 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002953 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002954 mutex_unlock(&dev->struct_mutex);
2955
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02002956 return __i915_wait_seqno(ring, seqno, reset_counter, true,
2957 &args->timeout_ns, file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002958
2959out:
2960 drm_gem_object_unreference(&obj->base);
2961 mutex_unlock(&dev->struct_mutex);
2962 return ret;
2963}
2964
2965/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002966 * i915_gem_object_sync - sync an object to a ring.
2967 *
2968 * @obj: object which may be in use on another ring.
2969 * @to: ring we wish to use the object on. May be NULL.
2970 *
2971 * This code is meant to abstract object synchronization with the GPU.
2972 * Calling with NULL implies synchronizing the object with the CPU
2973 * rather than a particular GPU ring.
2974 *
2975 * Returns 0 if successful, else propagates up the lower layer error.
2976 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002977int
2978i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002979 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002980{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002981 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002982 u32 seqno;
2983 int ret, idx;
2984
2985 if (from == NULL || to == from)
2986 return 0;
2987
Ben Widawsky5816d642012-04-11 11:18:19 -07002988 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002989 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002990
2991 idx = intel_ring_sync_index(from, to);
2992
Chris Wilson0201f1e2012-07-20 12:41:01 +01002993 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002994 /* Optimization: Avoid semaphore sync when we are sure we already
2995 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002996 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002997 return 0;
2998
Ben Widawskyb4aca012012-04-25 20:50:12 -07002999 ret = i915_gem_check_olr(obj->ring, seqno);
3000 if (ret)
3001 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003002
Chris Wilsonb52b89d2013-09-25 11:43:28 +01003003 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003004 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003005 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003006 /* We use last_read_seqno because sync_to()
3007 * might have just caused seqno wrap under
3008 * the radar.
3009 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003010 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07003011
Ben Widawskye3a5a222012-04-11 11:18:20 -07003012 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003013}
3014
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003015static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3016{
3017 u32 old_write_domain, old_read_domains;
3018
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003019 /* Force a pagefault for domain tracking on next user access */
3020 i915_gem_release_mmap(obj);
3021
Keith Packardb97c3d92011-06-24 21:02:59 -07003022 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3023 return;
3024
Chris Wilson97c809fd2012-10-09 19:24:38 +01003025 /* Wait for any direct GTT access to complete */
3026 mb();
3027
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003028 old_read_domains = obj->base.read_domains;
3029 old_write_domain = obj->base.write_domain;
3030
3031 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3032 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3033
3034 trace_i915_gem_object_change_domain(obj,
3035 old_read_domains,
3036 old_write_domain);
3037}
3038
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003039int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003040{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003041 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003042 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003043 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003044
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003045 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003046 return 0;
3047
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003048 if (!drm_mm_node_allocated(&vma->node)) {
3049 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003050 return 0;
3051 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003052
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003053 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003054 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003055
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003056 BUG_ON(obj->pages == NULL);
3057
Chris Wilsona8198ee2011-04-13 22:04:09 +01003058 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003059 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003060 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003061 /* Continue on if we fail due to EIO, the GPU is hung so we
3062 * should be safe and we need to cleanup or else we might
3063 * cause memory corruption through use-after-free.
3064 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003065
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003066 /* Throw away the active reference before moving to the unbound list */
3067 i915_gem_object_retire(obj);
3068
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003069 if (i915_is_ggtt(vma->vm)) {
3070 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003071
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003072 /* release the fence reg _after_ flushing */
3073 ret = i915_gem_object_put_fence(obj);
3074 if (ret)
3075 return ret;
3076 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003077
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003078 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003079
Ben Widawsky6f65e292013-12-06 14:10:56 -08003080 vma->unbind_vma(vma);
3081
Chris Wilson64bf9302014-02-25 14:23:28 +00003082 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003083 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003084 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003085
Ben Widawsky2f633152013-07-17 12:19:03 -07003086 drm_mm_remove_node(&vma->node);
3087 i915_gem_vma_destroy(vma);
3088
3089 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003090 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003091 if (list_empty(&obj->vma_list)) {
3092 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003093 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003094 }
Eric Anholt673a3942008-07-30 12:06:12 -07003095
Chris Wilson70903c32013-12-04 09:59:09 +00003096 /* And finally now the object is completely decoupled from this vma,
3097 * we can drop its hold on the backing storage and allow it to be
3098 * reaped by the shrinker.
3099 */
3100 i915_gem_object_unpin_pages(obj);
3101
Chris Wilson88241782011-01-07 17:09:48 +00003102 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003103}
3104
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003105int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003106{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003107 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003108 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003109 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003110
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003111 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003112 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003113 if (!i915.enable_execlists) {
3114 ret = i915_switch_context(ring, ring->default_context);
3115 if (ret)
3116 return ret;
3117 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003118
Chris Wilson3e960502012-11-27 16:22:54 +00003119 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003120 if (ret)
3121 return ret;
3122 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003123
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003124 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003125}
3126
Chris Wilson9ce079e2012-04-17 15:31:30 +01003127static void i965_write_fence_reg(struct drm_device *dev, int reg,
3128 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003129{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003130 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003131 int fence_reg;
3132 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003133
Imre Deak56c844e2013-01-07 21:47:34 +02003134 if (INTEL_INFO(dev)->gen >= 6) {
3135 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3136 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3137 } else {
3138 fence_reg = FENCE_REG_965_0;
3139 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3140 }
3141
Chris Wilsond18b9612013-07-10 13:36:23 +01003142 fence_reg += reg * 8;
3143
3144 /* To w/a incoherency with non-atomic 64-bit register updates,
3145 * we split the 64-bit update into two 32-bit writes. In order
3146 * for a partial fence not to be evaluated between writes, we
3147 * precede the update with write to turn off the fence register,
3148 * and only enable the fence as the last step.
3149 *
3150 * For extra levels of paranoia, we make sure each step lands
3151 * before applying the next step.
3152 */
3153 I915_WRITE(fence_reg, 0);
3154 POSTING_READ(fence_reg);
3155
Chris Wilson9ce079e2012-04-17 15:31:30 +01003156 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003157 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003158 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003159
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003160 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003161 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003162 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003163 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003164 if (obj->tiling_mode == I915_TILING_Y)
3165 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3166 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003167
Chris Wilsond18b9612013-07-10 13:36:23 +01003168 I915_WRITE(fence_reg + 4, val >> 32);
3169 POSTING_READ(fence_reg + 4);
3170
3171 I915_WRITE(fence_reg + 0, val);
3172 POSTING_READ(fence_reg);
3173 } else {
3174 I915_WRITE(fence_reg + 4, 0);
3175 POSTING_READ(fence_reg + 4);
3176 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003177}
3178
Chris Wilson9ce079e2012-04-17 15:31:30 +01003179static void i915_write_fence_reg(struct drm_device *dev, int reg,
3180 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003181{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003182 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003183 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003184
Chris Wilson9ce079e2012-04-17 15:31:30 +01003185 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003186 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003187 int pitch_val;
3188 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003189
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003190 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003191 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003192 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3193 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3194 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003195
3196 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3197 tile_width = 128;
3198 else
3199 tile_width = 512;
3200
3201 /* Note: pitch better be a power of two tile widths */
3202 pitch_val = obj->stride / tile_width;
3203 pitch_val = ffs(pitch_val) - 1;
3204
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003205 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003206 if (obj->tiling_mode == I915_TILING_Y)
3207 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3208 val |= I915_FENCE_SIZE_BITS(size);
3209 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3210 val |= I830_FENCE_REG_VALID;
3211 } else
3212 val = 0;
3213
3214 if (reg < 8)
3215 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003216 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003217 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003218
Chris Wilson9ce079e2012-04-17 15:31:30 +01003219 I915_WRITE(reg, val);
3220 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003221}
3222
Chris Wilson9ce079e2012-04-17 15:31:30 +01003223static void i830_write_fence_reg(struct drm_device *dev, int reg,
3224 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003225{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003226 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003227 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003228
Chris Wilson9ce079e2012-04-17 15:31:30 +01003229 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003230 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003231 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003232
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003233 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003234 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003235 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3236 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3237 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003238
Chris Wilson9ce079e2012-04-17 15:31:30 +01003239 pitch_val = obj->stride / 128;
3240 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003241
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003242 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003243 if (obj->tiling_mode == I915_TILING_Y)
3244 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3245 val |= I830_FENCE_SIZE_BITS(size);
3246 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3247 val |= I830_FENCE_REG_VALID;
3248 } else
3249 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003250
Chris Wilson9ce079e2012-04-17 15:31:30 +01003251 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3252 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3253}
3254
Chris Wilsond0a57782012-10-09 19:24:37 +01003255inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3256{
3257 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3258}
3259
Chris Wilson9ce079e2012-04-17 15:31:30 +01003260static void i915_gem_write_fence(struct drm_device *dev, int reg,
3261 struct drm_i915_gem_object *obj)
3262{
Chris Wilsond0a57782012-10-09 19:24:37 +01003263 struct drm_i915_private *dev_priv = dev->dev_private;
3264
3265 /* Ensure that all CPU reads are completed before installing a fence
3266 * and all writes before removing the fence.
3267 */
3268 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3269 mb();
3270
Daniel Vetter94a335d2013-07-17 14:51:28 +02003271 WARN(obj && (!obj->stride || !obj->tiling_mode),
3272 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3273 obj->stride, obj->tiling_mode);
3274
Chris Wilson9ce079e2012-04-17 15:31:30 +01003275 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003276 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003277 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003278 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003279 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003280 case 5:
3281 case 4: i965_write_fence_reg(dev, reg, obj); break;
3282 case 3: i915_write_fence_reg(dev, reg, obj); break;
3283 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003284 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003285 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003286
3287 /* And similarly be paranoid that no direct access to this region
3288 * is reordered to before the fence is installed.
3289 */
3290 if (i915_gem_object_needs_mb(obj))
3291 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003292}
3293
Chris Wilson61050802012-04-17 15:31:31 +01003294static inline int fence_number(struct drm_i915_private *dev_priv,
3295 struct drm_i915_fence_reg *fence)
3296{
3297 return fence - dev_priv->fence_regs;
3298}
3299
3300static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3301 struct drm_i915_fence_reg *fence,
3302 bool enable)
3303{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003304 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003305 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003306
Chris Wilson46a0b632013-07-10 13:36:24 +01003307 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003308
3309 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003310 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003311 fence->obj = obj;
3312 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3313 } else {
3314 obj->fence_reg = I915_FENCE_REG_NONE;
3315 fence->obj = NULL;
3316 list_del_init(&fence->lru_list);
3317 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003318 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003319}
3320
Chris Wilsond9e86c02010-11-10 16:40:20 +00003321static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003322i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003323{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003324 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003325 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003326 if (ret)
3327 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003328
3329 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003330 }
3331
3332 return 0;
3333}
3334
3335int
3336i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3337{
Chris Wilson61050802012-04-17 15:31:31 +01003338 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003339 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003340 int ret;
3341
Chris Wilsond0a57782012-10-09 19:24:37 +01003342 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003343 if (ret)
3344 return ret;
3345
Chris Wilson61050802012-04-17 15:31:31 +01003346 if (obj->fence_reg == I915_FENCE_REG_NONE)
3347 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003348
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003349 fence = &dev_priv->fence_regs[obj->fence_reg];
3350
Daniel Vetteraff10b302014-02-14 14:06:05 +01003351 if (WARN_ON(fence->pin_count))
3352 return -EBUSY;
3353
Chris Wilson61050802012-04-17 15:31:31 +01003354 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003355 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003356
3357 return 0;
3358}
3359
3360static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003361i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003362{
Daniel Vetterae3db242010-02-19 11:51:58 +01003363 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003364 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003365 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003366
3367 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003368 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003369 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3370 reg = &dev_priv->fence_regs[i];
3371 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003372 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003373
Chris Wilson1690e1e2011-12-14 13:57:08 +01003374 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003375 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003376 }
3377
Chris Wilsond9e86c02010-11-10 16:40:20 +00003378 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003379 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003380
3381 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003382 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003383 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003384 continue;
3385
Chris Wilson8fe301a2012-04-17 15:31:28 +01003386 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003387 }
3388
Chris Wilson5dce5b932014-01-20 10:17:36 +00003389deadlock:
3390 /* Wait for completion of pending flips which consume fences */
3391 if (intel_has_pending_fb_unpin(dev))
3392 return ERR_PTR(-EAGAIN);
3393
3394 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003395}
3396
Jesse Barnesde151cf2008-11-12 10:03:55 -08003397/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003398 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003399 * @obj: object to map through a fence reg
3400 *
3401 * When mapping objects through the GTT, userspace wants to be able to write
3402 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003403 * This function walks the fence regs looking for a free one for @obj,
3404 * stealing one if it can't find any.
3405 *
3406 * It then sets up the reg based on the object's properties: address, pitch
3407 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003408 *
3409 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003410 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003411int
Chris Wilson06d98132012-04-17 15:31:24 +01003412i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003413{
Chris Wilson05394f32010-11-08 19:18:58 +00003414 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003415 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003416 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003417 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003418 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003419
Chris Wilson14415742012-04-17 15:31:33 +01003420 /* Have we updated the tiling parameters upon the object and so
3421 * will need to serialise the write to the associated fence register?
3422 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003423 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003424 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003425 if (ret)
3426 return ret;
3427 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003428
Chris Wilsond9e86c02010-11-10 16:40:20 +00003429 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003430 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3431 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003432 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003433 list_move_tail(&reg->lru_list,
3434 &dev_priv->mm.fence_list);
3435 return 0;
3436 }
3437 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003438 if (WARN_ON(!obj->map_and_fenceable))
3439 return -EINVAL;
3440
Chris Wilson14415742012-04-17 15:31:33 +01003441 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003442 if (IS_ERR(reg))
3443 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003444
Chris Wilson14415742012-04-17 15:31:33 +01003445 if (reg->obj) {
3446 struct drm_i915_gem_object *old = reg->obj;
3447
Chris Wilsond0a57782012-10-09 19:24:37 +01003448 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003449 if (ret)
3450 return ret;
3451
Chris Wilson14415742012-04-17 15:31:33 +01003452 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003453 }
Chris Wilson14415742012-04-17 15:31:33 +01003454 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003455 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003456
Chris Wilson14415742012-04-17 15:31:33 +01003457 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003458
Chris Wilson9ce079e2012-04-17 15:31:30 +01003459 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003460}
3461
Chris Wilson4144f9b2014-09-11 08:43:48 +01003462static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003463 unsigned long cache_level)
3464{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003465 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003466 struct drm_mm_node *other;
3467
Chris Wilson4144f9b2014-09-11 08:43:48 +01003468 /*
3469 * On some machines we have to be careful when putting differing types
3470 * of snoopable memory together to avoid the prefetcher crossing memory
3471 * domains and dying. During vm initialisation, we decide whether or not
3472 * these constraints apply and set the drm_mm.color_adjust
3473 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003474 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003475 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003476 return true;
3477
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003478 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003479 return true;
3480
3481 if (list_empty(&gtt_space->node_list))
3482 return true;
3483
3484 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3485 if (other->allocated && !other->hole_follows && other->color != cache_level)
3486 return false;
3487
3488 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3489 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3490 return false;
3491
3492 return true;
3493}
3494
Jesse Barnesde151cf2008-11-12 10:03:55 -08003495/**
Eric Anholt673a3942008-07-30 12:06:12 -07003496 * Finds free space in the GTT aperture and binds the object there.
3497 */
Daniel Vetter262de142014-02-14 14:01:20 +01003498static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003499i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3500 struct i915_address_space *vm,
3501 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003502 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003503{
Chris Wilson05394f32010-11-08 19:18:58 +00003504 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003505 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003506 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003507 unsigned long start =
3508 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3509 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003510 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003511 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003512 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003513
Chris Wilsone28f8712011-07-18 13:11:49 -07003514 fence_size = i915_gem_get_gtt_size(dev,
3515 obj->base.size,
3516 obj->tiling_mode);
3517 fence_alignment = i915_gem_get_gtt_alignment(dev,
3518 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003519 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003520 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003521 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003522 obj->base.size,
3523 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003524
Eric Anholt673a3942008-07-30 12:06:12 -07003525 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003526 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003527 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003528 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003529 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003530 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003531 }
3532
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003533 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003534
Chris Wilson654fc602010-05-27 13:18:21 +01003535 /* If the object is bigger than the entire aperture, reject it early
3536 * before evicting everything in a vain attempt to find space.
3537 */
Chris Wilsond23db882014-05-23 08:48:08 +02003538 if (obj->base.size > end) {
3539 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003540 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003541 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003542 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003543 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003544 }
3545
Chris Wilson37e680a2012-06-07 15:38:42 +01003546 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003547 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003548 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003549
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003550 i915_gem_object_pin_pages(obj);
3551
Ben Widawskyaccfef22013-08-14 11:38:35 +02003552 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003553 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003554 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003555
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003556search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003557 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003558 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003559 obj->cache_level,
3560 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003561 DRM_MM_SEARCH_DEFAULT,
3562 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003563 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003564 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003565 obj->cache_level,
3566 start, end,
3567 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003568 if (ret == 0)
3569 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003570
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003571 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003572 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003573 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003574 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003575 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003576 }
3577
Daniel Vetter74163902012-02-15 23:50:21 +01003578 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003579 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003580 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003581
Ben Widawsky35c20a62013-05-31 11:28:48 -07003582 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003583 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003584
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003585 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003586 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003587 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003588
Daniel Vetter262de142014-02-14 14:01:20 +01003589 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003590
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003591err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003592 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003593err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003594 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003595 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003596err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003597 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003598 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003599}
3600
Chris Wilson000433b2013-08-08 14:41:09 +01003601bool
Chris Wilson2c225692013-08-09 12:26:45 +01003602i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3603 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003604{
Eric Anholt673a3942008-07-30 12:06:12 -07003605 /* If we don't have a page list set up, then we're not pinned
3606 * to GPU, and we can ignore the cache flush because it'll happen
3607 * again at bind time.
3608 */
Chris Wilson05394f32010-11-08 19:18:58 +00003609 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003610 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003611
Imre Deak769ce462013-02-13 21:56:05 +02003612 /*
3613 * Stolen memory is always coherent with the GPU as it is explicitly
3614 * marked as wc by the system, or the system is cache-coherent.
3615 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003616 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003617 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003618
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003619 /* If the GPU is snooping the contents of the CPU cache,
3620 * we do not need to manually clear the CPU cache lines. However,
3621 * the caches are only snooped when the render cache is
3622 * flushed/invalidated. As we always have to emit invalidations
3623 * and flushes when moving into and out of the RENDER domain, correct
3624 * snooping behaviour occurs naturally as the result of our domain
3625 * tracking.
3626 */
Chris Wilson2c225692013-08-09 12:26:45 +01003627 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003628 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003629
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003630 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003631 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003632
3633 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003634}
3635
3636/** Flushes the GTT write domain for the object if it's dirty. */
3637static void
Chris Wilson05394f32010-11-08 19:18:58 +00003638i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003639{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003640 uint32_t old_write_domain;
3641
Chris Wilson05394f32010-11-08 19:18:58 +00003642 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003643 return;
3644
Chris Wilson63256ec2011-01-04 18:42:07 +00003645 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003646 * to it immediately go to main memory as far as we know, so there's
3647 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003648 *
3649 * However, we do have to enforce the order so that all writes through
3650 * the GTT land before any writes to the device, such as updates to
3651 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003652 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003653 wmb();
3654
Chris Wilson05394f32010-11-08 19:18:58 +00003655 old_write_domain = obj->base.write_domain;
3656 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003657
Daniel Vetterf99d7062014-06-19 16:01:59 +02003658 intel_fb_obj_flush(obj, false);
3659
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003660 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003661 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003662 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003663}
3664
3665/** Flushes the CPU write domain for the object if it's dirty. */
3666static void
Chris Wilson2c225692013-08-09 12:26:45 +01003667i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3668 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003669{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003670 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003671
Chris Wilson05394f32010-11-08 19:18:58 +00003672 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003673 return;
3674
Chris Wilson000433b2013-08-08 14:41:09 +01003675 if (i915_gem_clflush_object(obj, force))
3676 i915_gem_chipset_flush(obj->base.dev);
3677
Chris Wilson05394f32010-11-08 19:18:58 +00003678 old_write_domain = obj->base.write_domain;
3679 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003680
Daniel Vetterf99d7062014-06-19 16:01:59 +02003681 intel_fb_obj_flush(obj, false);
3682
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003683 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003684 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003685 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003686}
3687
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003688/**
3689 * Moves a single object to the GTT read, and possibly write domain.
3690 *
3691 * This function returns when the move is complete, including waiting on
3692 * flushes to occur.
3693 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003694int
Chris Wilson20217462010-11-23 15:26:33 +00003695i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003696{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003697 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003698 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003699 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003700 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003701
Eric Anholt02354392008-11-26 13:58:13 -08003702 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003703 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003704 return -EINVAL;
3705
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003706 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3707 return 0;
3708
Chris Wilson0201f1e2012-07-20 12:41:01 +01003709 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003710 if (ret)
3711 return ret;
3712
Chris Wilsonc8725f32014-03-17 12:21:55 +00003713 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003714 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003715
Chris Wilsond0a57782012-10-09 19:24:37 +01003716 /* Serialise direct access to this object with the barriers for
3717 * coherent writes from the GPU, by effectively invalidating the
3718 * GTT domain upon first access.
3719 */
3720 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3721 mb();
3722
Chris Wilson05394f32010-11-08 19:18:58 +00003723 old_write_domain = obj->base.write_domain;
3724 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003725
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003726 /* It should now be out of any other write domains, and we can update
3727 * the domain values for our changes.
3728 */
Chris Wilson05394f32010-11-08 19:18:58 +00003729 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3730 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003731 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003732 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3733 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3734 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003735 }
3736
Daniel Vetterf99d7062014-06-19 16:01:59 +02003737 if (write)
3738 intel_fb_obj_invalidate(obj, NULL);
3739
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003740 trace_i915_gem_object_change_domain(obj,
3741 old_read_domains,
3742 old_write_domain);
3743
Chris Wilson8325a092012-04-24 15:52:35 +01003744 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003745 if (i915_gem_object_is_inactive(obj))
3746 list_move_tail(&vma->mm_list,
3747 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003748
Eric Anholte47c68e2008-11-14 13:35:19 -08003749 return 0;
3750}
3751
Chris Wilsone4ffd172011-04-04 09:44:39 +01003752int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3753 enum i915_cache_level cache_level)
3754{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003755 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003756 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003757 int ret;
3758
3759 if (obj->cache_level == cache_level)
3760 return 0;
3761
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003762 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003763 DRM_DEBUG("can not change the cache level of pinned objects\n");
3764 return -EBUSY;
3765 }
3766
Chris Wilsondf6f7832014-03-21 07:40:56 +00003767 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003768 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003769 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003770 if (ret)
3771 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003772 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003773 }
3774
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003775 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003776 ret = i915_gem_object_finish_gpu(obj);
3777 if (ret)
3778 return ret;
3779
3780 i915_gem_object_finish_gtt(obj);
3781
3782 /* Before SandyBridge, you could not use tiling or fence
3783 * registers with snooped memory, so relinquish any fences
3784 * currently pointing to our region in the aperture.
3785 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003786 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003787 ret = i915_gem_object_put_fence(obj);
3788 if (ret)
3789 return ret;
3790 }
3791
Ben Widawsky6f65e292013-12-06 14:10:56 -08003792 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003793 if (drm_mm_node_allocated(&vma->node))
3794 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003795 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003796 }
3797
Chris Wilson2c225692013-08-09 12:26:45 +01003798 list_for_each_entry(vma, &obj->vma_list, vma_link)
3799 vma->node.color = cache_level;
3800 obj->cache_level = cache_level;
3801
3802 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003803 u32 old_read_domains, old_write_domain;
3804
3805 /* If we're coming from LLC cached, then we haven't
3806 * actually been tracking whether the data is in the
3807 * CPU cache or not, since we only allow one bit set
3808 * in obj->write_domain and have been skipping the clflushes.
3809 * Just set it to the CPU cache for now.
3810 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003811 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003812 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003813
3814 old_read_domains = obj->base.read_domains;
3815 old_write_domain = obj->base.write_domain;
3816
3817 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3818 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3819
3820 trace_i915_gem_object_change_domain(obj,
3821 old_read_domains,
3822 old_write_domain);
3823 }
3824
Chris Wilsone4ffd172011-04-04 09:44:39 +01003825 return 0;
3826}
3827
Ben Widawsky199adf42012-09-21 17:01:20 -07003828int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3829 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003830{
Ben Widawsky199adf42012-09-21 17:01:20 -07003831 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003832 struct drm_i915_gem_object *obj;
3833 int ret;
3834
3835 ret = i915_mutex_lock_interruptible(dev);
3836 if (ret)
3837 return ret;
3838
3839 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3840 if (&obj->base == NULL) {
3841 ret = -ENOENT;
3842 goto unlock;
3843 }
3844
Chris Wilson651d7942013-08-08 14:41:10 +01003845 switch (obj->cache_level) {
3846 case I915_CACHE_LLC:
3847 case I915_CACHE_L3_LLC:
3848 args->caching = I915_CACHING_CACHED;
3849 break;
3850
Chris Wilson4257d3b2013-08-08 14:41:11 +01003851 case I915_CACHE_WT:
3852 args->caching = I915_CACHING_DISPLAY;
3853 break;
3854
Chris Wilson651d7942013-08-08 14:41:10 +01003855 default:
3856 args->caching = I915_CACHING_NONE;
3857 break;
3858 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003859
3860 drm_gem_object_unreference(&obj->base);
3861unlock:
3862 mutex_unlock(&dev->struct_mutex);
3863 return ret;
3864}
3865
Ben Widawsky199adf42012-09-21 17:01:20 -07003866int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3867 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003868{
Ben Widawsky199adf42012-09-21 17:01:20 -07003869 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003870 struct drm_i915_gem_object *obj;
3871 enum i915_cache_level level;
3872 int ret;
3873
Ben Widawsky199adf42012-09-21 17:01:20 -07003874 switch (args->caching) {
3875 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003876 level = I915_CACHE_NONE;
3877 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003878 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003879 level = I915_CACHE_LLC;
3880 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003881 case I915_CACHING_DISPLAY:
3882 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3883 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003884 default:
3885 return -EINVAL;
3886 }
3887
Ben Widawsky3bc29132012-09-26 16:15:20 -07003888 ret = i915_mutex_lock_interruptible(dev);
3889 if (ret)
3890 return ret;
3891
Chris Wilsone6994ae2012-07-10 10:27:08 +01003892 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3893 if (&obj->base == NULL) {
3894 ret = -ENOENT;
3895 goto unlock;
3896 }
3897
3898 ret = i915_gem_object_set_cache_level(obj, level);
3899
3900 drm_gem_object_unreference(&obj->base);
3901unlock:
3902 mutex_unlock(&dev->struct_mutex);
3903 return ret;
3904}
3905
Chris Wilsoncc98b412013-08-09 12:25:09 +01003906static bool is_pin_display(struct drm_i915_gem_object *obj)
3907{
Oscar Mateo19656432014-05-16 14:20:43 +01003908 struct i915_vma *vma;
3909
Oscar Mateo19656432014-05-16 14:20:43 +01003910 vma = i915_gem_obj_to_ggtt(obj);
3911 if (!vma)
3912 return false;
3913
Daniel Vetter4feb7652014-11-24 11:21:52 +01003914 /* There are 2 sources that pin objects:
Chris Wilsoncc98b412013-08-09 12:25:09 +01003915 * 1. The display engine (scanouts, sprites, cursors);
3916 * 2. Reservations for execbuffer;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003917 *
3918 * We can ignore reservations as we hold the struct_mutex and
Daniel Vetter4feb7652014-11-24 11:21:52 +01003919 * are only called outside of the reservation path.
Chris Wilsoncc98b412013-08-09 12:25:09 +01003920 */
Daniel Vetter4feb7652014-11-24 11:21:52 +01003921 return vma->pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003922}
3923
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003924/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003925 * Prepare buffer for display plane (scanout, cursors, etc).
3926 * Can be called from an uninterruptible phase (modesetting) and allows
3927 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003928 */
3929int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003930i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3931 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003932 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003933{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003934 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003935 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003936 int ret;
3937
Chris Wilson0be73282010-12-06 14:36:27 +00003938 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003939 ret = i915_gem_object_sync(obj, pipelined);
3940 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003941 return ret;
3942 }
3943
Chris Wilsoncc98b412013-08-09 12:25:09 +01003944 /* Mark the pin_display early so that we account for the
3945 * display coherency whilst setting up the cache domains.
3946 */
Oscar Mateo19656432014-05-16 14:20:43 +01003947 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003948 obj->pin_display = true;
3949
Eric Anholta7ef0642011-03-29 16:59:54 -07003950 /* The display engine is not coherent with the LLC cache on gen6. As
3951 * a result, we make sure that the pinning that is about to occur is
3952 * done with uncached PTEs. This is lowest common denominator for all
3953 * chipsets.
3954 *
3955 * However for gen6+, we could do better by using the GFDT bit instead
3956 * of uncaching, which would allow us to flush all the LLC-cached data
3957 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3958 */
Chris Wilson651d7942013-08-08 14:41:10 +01003959 ret = i915_gem_object_set_cache_level(obj,
3960 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003961 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003962 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003963
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003964 /* As the user may map the buffer once pinned in the display plane
3965 * (e.g. libkms for the bootup splash), we have to ensure that we
3966 * always use map_and_fenceable for all scanout buffers.
3967 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003968 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003969 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003970 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003971
Chris Wilson2c225692013-08-09 12:26:45 +01003972 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003973
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003974 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003975 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003976
3977 /* It should now be out of any other write domains, and we can update
3978 * the domain values for our changes.
3979 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003980 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003981 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003982
3983 trace_i915_gem_object_change_domain(obj,
3984 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003985 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003986
3987 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003988
3989err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003990 WARN_ON(was_pin_display != is_pin_display(obj));
3991 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003992 return ret;
3993}
3994
3995void
3996i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3997{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003998 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003999 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004000}
4001
Chris Wilson85345512010-11-13 09:49:11 +00004002int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004003i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004004{
Chris Wilson88241782011-01-07 17:09:48 +00004005 int ret;
4006
Chris Wilsona8198ee2011-04-13 22:04:09 +01004007 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004008 return 0;
4009
Chris Wilson0201f1e2012-07-20 12:41:01 +01004010 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004011 if (ret)
4012 return ret;
4013
Chris Wilsona8198ee2011-04-13 22:04:09 +01004014 /* Ensure that we invalidate the GPU's caches and TLBs. */
4015 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004016 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004017}
4018
Eric Anholte47c68e2008-11-14 13:35:19 -08004019/**
4020 * Moves a single object to the CPU read, and possibly write domain.
4021 *
4022 * This function returns when the move is complete, including waiting on
4023 * flushes to occur.
4024 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004025int
Chris Wilson919926a2010-11-12 13:42:53 +00004026i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004027{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004028 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004029 int ret;
4030
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004031 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4032 return 0;
4033
Chris Wilson0201f1e2012-07-20 12:41:01 +01004034 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004035 if (ret)
4036 return ret;
4037
Chris Wilsonc8725f32014-03-17 12:21:55 +00004038 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004039 i915_gem_object_flush_gtt_write_domain(obj);
4040
Chris Wilson05394f32010-11-08 19:18:58 +00004041 old_write_domain = obj->base.write_domain;
4042 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004043
Eric Anholte47c68e2008-11-14 13:35:19 -08004044 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004045 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004046 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004047
Chris Wilson05394f32010-11-08 19:18:58 +00004048 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004049 }
4050
4051 /* It should now be out of any other write domains, and we can update
4052 * the domain values for our changes.
4053 */
Chris Wilson05394f32010-11-08 19:18:58 +00004054 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004055
4056 /* If we're writing through the CPU, then the GPU read domains will
4057 * need to be invalidated at next use.
4058 */
4059 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004060 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4061 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004062 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004063
Daniel Vetterf99d7062014-06-19 16:01:59 +02004064 if (write)
4065 intel_fb_obj_invalidate(obj, NULL);
4066
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004067 trace_i915_gem_object_change_domain(obj,
4068 old_read_domains,
4069 old_write_domain);
4070
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004071 return 0;
4072}
4073
Eric Anholt673a3942008-07-30 12:06:12 -07004074/* Throttle our rendering by waiting until the ring has completed our requests
4075 * emitted over 20 msec ago.
4076 *
Eric Anholtb9624422009-06-03 07:27:35 +00004077 * Note that if we were to use the current jiffies each time around the loop,
4078 * we wouldn't escape the function with any frames outstanding if the time to
4079 * render a frame was over 20ms.
4080 *
Eric Anholt673a3942008-07-30 12:06:12 -07004081 * This should get us reasonable parallelism between CPU and GPU but also
4082 * relatively low latency when blocking on a particular request to finish.
4083 */
4084static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004085i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004086{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004087 struct drm_i915_private *dev_priv = dev->dev_private;
4088 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004089 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004090 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004091 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004092 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004093 u32 seqno = 0;
4094 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004095
Daniel Vetter308887a2012-11-14 17:14:06 +01004096 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4097 if (ret)
4098 return ret;
4099
4100 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4101 if (ret)
4102 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004103
Chris Wilson1c255952010-09-26 11:03:27 +01004104 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004105 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004106 if (time_after_eq(request->emitted_jiffies, recent_enough))
4107 break;
4108
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004109 ring = request->ring;
4110 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004111 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004112 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004113 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004114
4115 if (seqno == 0)
4116 return 0;
4117
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02004118 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004119 if (ret == 0)
4120 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004121
Eric Anholt673a3942008-07-30 12:06:12 -07004122 return ret;
4123}
4124
Chris Wilsond23db882014-05-23 08:48:08 +02004125static bool
4126i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4127{
4128 struct drm_i915_gem_object *obj = vma->obj;
4129
4130 if (alignment &&
4131 vma->node.start & (alignment - 1))
4132 return true;
4133
4134 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4135 return true;
4136
4137 if (flags & PIN_OFFSET_BIAS &&
4138 vma->node.start < (flags & PIN_OFFSET_MASK))
4139 return true;
4140
4141 return false;
4142}
4143
Eric Anholt673a3942008-07-30 12:06:12 -07004144int
Chris Wilson05394f32010-11-08 19:18:58 +00004145i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004146 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004147 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004148 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004149{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004150 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004151 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004152 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004153 int ret;
4154
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004155 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4156 return -ENODEV;
4157
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004158 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004159 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004160
Chris Wilsonc826c442014-10-31 13:53:53 +00004161 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4162 return -EINVAL;
4163
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004164 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004165 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004166 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4167 return -EBUSY;
4168
Chris Wilsond23db882014-05-23 08:48:08 +02004169 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004170 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004171 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004172 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004173 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004174 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004175 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004176 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004177 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004178 if (ret)
4179 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004180
4181 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004182 }
4183 }
4184
Chris Wilsonef79e172014-10-31 13:53:52 +00004185 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004186 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004187 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4188 if (IS_ERR(vma))
4189 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004190 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004191
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004192 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004193 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004194
Chris Wilsonef79e172014-10-31 13:53:52 +00004195 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4196 bool mappable, fenceable;
4197 u32 fence_size, fence_alignment;
4198
4199 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4200 obj->base.size,
4201 obj->tiling_mode);
4202 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4203 obj->base.size,
4204 obj->tiling_mode,
4205 true);
4206
4207 fenceable = (vma->node.size == fence_size &&
4208 (vma->node.start & (fence_alignment - 1)) == 0);
4209
4210 mappable = (vma->node.start + obj->base.size <=
4211 dev_priv->gtt.mappable_end);
4212
4213 obj->map_and_fenceable = mappable && fenceable;
4214 }
4215
4216 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4217
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004218 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004219 if (flags & PIN_MAPPABLE)
4220 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004221
4222 return 0;
4223}
4224
4225void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004226i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004227{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004228 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004229
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004230 BUG_ON(!vma);
4231 BUG_ON(vma->pin_count == 0);
4232 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4233
4234 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004235 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004236}
4237
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004238bool
4239i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4240{
4241 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4242 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4243 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4244
4245 WARN_ON(!ggtt_vma ||
4246 dev_priv->fence_regs[obj->fence_reg].pin_count >
4247 ggtt_vma->pin_count);
4248 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4249 return true;
4250 } else
4251 return false;
4252}
4253
4254void
4255i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4256{
4257 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4258 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4259 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4260 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4261 }
4262}
4263
Eric Anholt673a3942008-07-30 12:06:12 -07004264int
Eric Anholt673a3942008-07-30 12:06:12 -07004265i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004266 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004267{
4268 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004269 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004270 int ret;
4271
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004272 ret = i915_mutex_lock_interruptible(dev);
4273 if (ret)
4274 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004275
Chris Wilson05394f32010-11-08 19:18:58 +00004276 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004277 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004278 ret = -ENOENT;
4279 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004280 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004281
Chris Wilson0be555b2010-08-04 15:36:30 +01004282 /* Count all active objects as busy, even if they are currently not used
4283 * by the gpu. Users of this interface expect objects to eventually
4284 * become non-busy without any further actions, therefore emit any
4285 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004286 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004287 ret = i915_gem_object_flush_active(obj);
4288
Chris Wilson05394f32010-11-08 19:18:58 +00004289 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004290 if (obj->ring) {
4291 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4292 args->busy |= intel_ring_flag(obj->ring) << 16;
4293 }
Eric Anholt673a3942008-07-30 12:06:12 -07004294
Chris Wilson05394f32010-11-08 19:18:58 +00004295 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004296unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004297 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004298 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004299}
4300
4301int
4302i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4303 struct drm_file *file_priv)
4304{
Akshay Joshi0206e352011-08-16 15:34:10 -04004305 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004306}
4307
Chris Wilson3ef94da2009-09-14 16:50:29 +01004308int
4309i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4310 struct drm_file *file_priv)
4311{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004312 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004313 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004314 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004315 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004316
4317 switch (args->madv) {
4318 case I915_MADV_DONTNEED:
4319 case I915_MADV_WILLNEED:
4320 break;
4321 default:
4322 return -EINVAL;
4323 }
4324
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004325 ret = i915_mutex_lock_interruptible(dev);
4326 if (ret)
4327 return ret;
4328
Chris Wilson05394f32010-11-08 19:18:58 +00004329 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004330 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004331 ret = -ENOENT;
4332 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004333 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004334
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004335 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004336 ret = -EINVAL;
4337 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004338 }
4339
Daniel Vetter656bfa32014-11-20 09:26:30 +01004340 if (obj->pages &&
4341 obj->tiling_mode != I915_TILING_NONE &&
4342 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4343 if (obj->madv == I915_MADV_WILLNEED)
4344 i915_gem_object_unpin_pages(obj);
4345 if (args->madv == I915_MADV_WILLNEED)
4346 i915_gem_object_pin_pages(obj);
4347 }
4348
Chris Wilson05394f32010-11-08 19:18:58 +00004349 if (obj->madv != __I915_MADV_PURGED)
4350 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004351
Chris Wilson6c085a72012-08-20 11:40:46 +02004352 /* if the object is no longer attached, discard its backing storage */
4353 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004354 i915_gem_object_truncate(obj);
4355
Chris Wilson05394f32010-11-08 19:18:58 +00004356 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004357
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004358out:
Chris Wilson05394f32010-11-08 19:18:58 +00004359 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004360unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004361 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004362 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004363}
4364
Chris Wilson37e680a2012-06-07 15:38:42 +01004365void i915_gem_object_init(struct drm_i915_gem_object *obj,
4366 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004367{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004368 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004369 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004370 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004371 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004372
Chris Wilson37e680a2012-06-07 15:38:42 +01004373 obj->ops = ops;
4374
Chris Wilson0327d6b2012-08-11 15:41:06 +01004375 obj->fence_reg = I915_FENCE_REG_NONE;
4376 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004377
4378 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4379}
4380
Chris Wilson37e680a2012-06-07 15:38:42 +01004381static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4382 .get_pages = i915_gem_object_get_pages_gtt,
4383 .put_pages = i915_gem_object_put_pages_gtt,
4384};
4385
Chris Wilson05394f32010-11-08 19:18:58 +00004386struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4387 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004388{
Daniel Vetterc397b902010-04-09 19:05:07 +00004389 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004390 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004391 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004392
Chris Wilson42dcedd2012-11-15 11:32:30 +00004393 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004394 if (obj == NULL)
4395 return NULL;
4396
4397 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004398 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004399 return NULL;
4400 }
4401
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004402 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4403 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4404 /* 965gm cannot relocate objects above 4GiB. */
4405 mask &= ~__GFP_HIGHMEM;
4406 mask |= __GFP_DMA32;
4407 }
4408
Al Viro496ad9a2013-01-23 17:07:38 -05004409 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004410 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004411
Chris Wilson37e680a2012-06-07 15:38:42 +01004412 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004413
Daniel Vetterc397b902010-04-09 19:05:07 +00004414 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4415 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4416
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004417 if (HAS_LLC(dev)) {
4418 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004419 * cache) for about a 10% performance improvement
4420 * compared to uncached. Graphics requests other than
4421 * display scanout are coherent with the CPU in
4422 * accessing this cache. This means in this mode we
4423 * don't need to clflush on the CPU side, and on the
4424 * GPU side we only need to flush internal caches to
4425 * get data visible to the CPU.
4426 *
4427 * However, we maintain the display planes as UC, and so
4428 * need to rebind when first used as such.
4429 */
4430 obj->cache_level = I915_CACHE_LLC;
4431 } else
4432 obj->cache_level = I915_CACHE_NONE;
4433
Daniel Vetterd861e332013-07-24 23:25:03 +02004434 trace_i915_gem_object_create(obj);
4435
Chris Wilson05394f32010-11-08 19:18:58 +00004436 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004437}
4438
Chris Wilson340fbd82014-05-22 09:16:52 +01004439static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4440{
4441 /* If we are the last user of the backing storage (be it shmemfs
4442 * pages or stolen etc), we know that the pages are going to be
4443 * immediately released. In this case, we can then skip copying
4444 * back the contents from the GPU.
4445 */
4446
4447 if (obj->madv != I915_MADV_WILLNEED)
4448 return false;
4449
4450 if (obj->base.filp == NULL)
4451 return true;
4452
4453 /* At first glance, this looks racy, but then again so would be
4454 * userspace racing mmap against close. However, the first external
4455 * reference to the filp can only be obtained through the
4456 * i915_gem_mmap_ioctl() which safeguards us against the user
4457 * acquiring such a reference whilst we are in the middle of
4458 * freeing the object.
4459 */
4460 return atomic_long_read(&obj->base.filp->f_count) == 1;
4461}
4462
Chris Wilson1488fc02012-04-24 15:47:31 +01004463void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004464{
Chris Wilson1488fc02012-04-24 15:47:31 +01004465 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004466 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004467 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004468 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004469
Paulo Zanonif65c9162013-11-27 18:20:34 -02004470 intel_runtime_pm_get(dev_priv);
4471
Chris Wilson26e12f892011-03-20 11:20:19 +00004472 trace_i915_gem_object_destroy(obj);
4473
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004474 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004475 int ret;
4476
4477 vma->pin_count = 0;
4478 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004479 if (WARN_ON(ret == -ERESTARTSYS)) {
4480 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004481
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004482 was_interruptible = dev_priv->mm.interruptible;
4483 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004484
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004485 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004486
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004487 dev_priv->mm.interruptible = was_interruptible;
4488 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004489 }
4490
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004491 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4492 * before progressing. */
4493 if (obj->stolen)
4494 i915_gem_object_unpin_pages(obj);
4495
Daniel Vettera071fa02014-06-18 23:28:09 +02004496 WARN_ON(obj->frontbuffer_bits);
4497
Daniel Vetter656bfa32014-11-20 09:26:30 +01004498 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4499 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4500 obj->tiling_mode != I915_TILING_NONE)
4501 i915_gem_object_unpin_pages(obj);
4502
Ben Widawsky401c29f2013-05-31 11:28:47 -07004503 if (WARN_ON(obj->pages_pin_count))
4504 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004505 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004506 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004507 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004508 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004509
Chris Wilson9da3da62012-06-01 15:20:22 +01004510 BUG_ON(obj->pages);
4511
Chris Wilson2f745ad2012-09-04 21:02:58 +01004512 if (obj->base.import_attach)
4513 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004514
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004515 if (obj->ops->release)
4516 obj->ops->release(obj);
4517
Chris Wilson05394f32010-11-08 19:18:58 +00004518 drm_gem_object_release(&obj->base);
4519 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004520
Chris Wilson05394f32010-11-08 19:18:58 +00004521 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004522 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004523
4524 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004525}
4526
Daniel Vettere656a6c2013-08-14 14:14:04 +02004527struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004528 struct i915_address_space *vm)
4529{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004530 struct i915_vma *vma;
4531 list_for_each_entry(vma, &obj->vma_list, vma_link)
4532 if (vma->vm == vm)
4533 return vma;
4534
4535 return NULL;
4536}
4537
Ben Widawsky2f633152013-07-17 12:19:03 -07004538void i915_gem_vma_destroy(struct i915_vma *vma)
4539{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004540 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004541 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004542
4543 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4544 if (!list_empty(&vma->exec_list))
4545 return;
4546
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004547 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004548
Daniel Vetter841cd772014-08-06 15:04:48 +02004549 if (!i915_is_ggtt(vm))
4550 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004551
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004552 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004553
Ben Widawsky2f633152013-07-17 12:19:03 -07004554 kfree(vma);
4555}
4556
Chris Wilsone3efda42014-04-09 09:19:41 +01004557static void
4558i915_gem_stop_ringbuffers(struct drm_device *dev)
4559{
4560 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004561 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004562 int i;
4563
4564 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004565 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004566}
4567
Jesse Barnes5669fca2009-02-17 15:13:31 -08004568int
Chris Wilson45c5f202013-10-16 11:50:01 +01004569i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004570{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004571 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004572 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004573
Chris Wilson45c5f202013-10-16 11:50:01 +01004574 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004575 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004576 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004577 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004578
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004579 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004580
Chris Wilson29105cc2010-01-07 10:39:13 +00004581 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004582 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004583 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004584
Chris Wilsone3efda42014-04-09 09:19:41 +01004585 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004586 mutex_unlock(&dev->struct_mutex);
4587
4588 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004589 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004590 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004591
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004592 /* Assert that we sucessfully flushed all the work and
4593 * reset the GPU back to its idle, low power state.
4594 */
4595 WARN_ON(dev_priv->mm.busy);
4596
Eric Anholt673a3942008-07-30 12:06:12 -07004597 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004598
4599err:
4600 mutex_unlock(&dev->struct_mutex);
4601 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004602}
4603
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004604int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004605{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004606 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004607 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004608 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4609 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004610 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004611
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004612 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004613 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004614
Ben Widawskyc3787e22013-09-17 21:12:44 -07004615 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4616 if (ret)
4617 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004618
Ben Widawskyc3787e22013-09-17 21:12:44 -07004619 /*
4620 * Note: We do not worry about the concurrent register cacheline hang
4621 * here because no other code should access these registers other than
4622 * at initialization time.
4623 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004624 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004625 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4626 intel_ring_emit(ring, reg_base + i);
4627 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004628 }
4629
Ben Widawskyc3787e22013-09-17 21:12:44 -07004630 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004631
Ben Widawskyc3787e22013-09-17 21:12:44 -07004632 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004633}
4634
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004635void i915_gem_init_swizzling(struct drm_device *dev)
4636{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004637 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004638
Daniel Vetter11782b02012-01-31 16:47:55 +01004639 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004640 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4641 return;
4642
4643 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4644 DISP_TILE_SURFACE_SWIZZLING);
4645
Daniel Vetter11782b02012-01-31 16:47:55 +01004646 if (IS_GEN5(dev))
4647 return;
4648
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004649 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4650 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004651 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004652 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004653 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004654 else if (IS_GEN8(dev))
4655 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004656 else
4657 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004658}
Daniel Vettere21af882012-02-09 20:53:27 +01004659
Chris Wilson67b1b572012-07-05 23:49:40 +01004660static bool
4661intel_enable_blt(struct drm_device *dev)
4662{
4663 if (!HAS_BLT(dev))
4664 return false;
4665
4666 /* The blitter was dysfunctional on early prototypes */
4667 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4668 DRM_INFO("BLT not supported on this pre-production hardware;"
4669 " graphics performance will be degraded.\n");
4670 return false;
4671 }
4672
4673 return true;
4674}
4675
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004676static void init_unused_ring(struct drm_device *dev, u32 base)
4677{
4678 struct drm_i915_private *dev_priv = dev->dev_private;
4679
4680 I915_WRITE(RING_CTL(base), 0);
4681 I915_WRITE(RING_HEAD(base), 0);
4682 I915_WRITE(RING_TAIL(base), 0);
4683 I915_WRITE(RING_START(base), 0);
4684}
4685
4686static void init_unused_rings(struct drm_device *dev)
4687{
4688 if (IS_I830(dev)) {
4689 init_unused_ring(dev, PRB1_BASE);
4690 init_unused_ring(dev, SRB0_BASE);
4691 init_unused_ring(dev, SRB1_BASE);
4692 init_unused_ring(dev, SRB2_BASE);
4693 init_unused_ring(dev, SRB3_BASE);
4694 } else if (IS_GEN2(dev)) {
4695 init_unused_ring(dev, SRB0_BASE);
4696 init_unused_ring(dev, SRB1_BASE);
4697 } else if (IS_GEN3(dev)) {
4698 init_unused_ring(dev, PRB1_BASE);
4699 init_unused_ring(dev, PRB2_BASE);
4700 }
4701}
4702
Oscar Mateoa83014d2014-07-24 17:04:21 +01004703int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004704{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004705 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004706 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004707
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004708 /*
4709 * At least 830 can leave some of the unused rings
4710 * "active" (ie. head != tail) after resume which
4711 * will prevent c3 entry. Makes sure all unused rings
4712 * are totally idle.
4713 */
4714 init_unused_rings(dev);
4715
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004716 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004717 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004718 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004719
4720 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004721 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004722 if (ret)
4723 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004724 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004725
Chris Wilson67b1b572012-07-05 23:49:40 +01004726 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004727 ret = intel_init_blt_ring_buffer(dev);
4728 if (ret)
4729 goto cleanup_bsd_ring;
4730 }
4731
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004732 if (HAS_VEBOX(dev)) {
4733 ret = intel_init_vebox_ring_buffer(dev);
4734 if (ret)
4735 goto cleanup_blt_ring;
4736 }
4737
Zhao Yakui845f74a2014-04-17 10:37:37 +08004738 if (HAS_BSD2(dev)) {
4739 ret = intel_init_bsd2_ring_buffer(dev);
4740 if (ret)
4741 goto cleanup_vebox_ring;
4742 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004743
Mika Kuoppala99433932013-01-22 14:12:17 +02004744 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4745 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004746 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004747
4748 return 0;
4749
Zhao Yakui845f74a2014-04-17 10:37:37 +08004750cleanup_bsd2_ring:
4751 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004752cleanup_vebox_ring:
4753 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004754cleanup_blt_ring:
4755 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4756cleanup_bsd_ring:
4757 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4758cleanup_render_ring:
4759 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4760
4761 return ret;
4762}
4763
4764int
4765i915_gem_init_hw(struct drm_device *dev)
4766{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004767 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004768 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004769
4770 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4771 return -EIO;
4772
Ben Widawsky59124502013-07-04 11:02:05 -07004773 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004774 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004775
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004776 if (IS_HASWELL(dev))
4777 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4778 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004779
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004780 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004781 if (IS_IVYBRIDGE(dev)) {
4782 u32 temp = I915_READ(GEN7_MSG_CTL);
4783 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4784 I915_WRITE(GEN7_MSG_CTL, temp);
4785 } else if (INTEL_INFO(dev)->gen >= 7) {
4786 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4787 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4788 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4789 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004790 }
4791
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004792 i915_gem_init_swizzling(dev);
4793
Oscar Mateoa83014d2014-07-24 17:04:21 +01004794 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004795 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004796 return ret;
4797
Ben Widawskyc3787e22013-09-17 21:12:44 -07004798 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4799 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4800
Ben Widawsky254f9652012-06-04 14:42:42 -07004801 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004802 * XXX: Contexts should only be initialized once. Doing a switch to the
4803 * default context switch however is something we'd like to do after
4804 * reset or thaw (the latter may not actually be necessary for HW, but
4805 * goes with our code better). Context switching requires rings (for
4806 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004807 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004808 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004809 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004810 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004811 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004812
4813 return ret;
4814 }
4815
4816 ret = i915_ppgtt_init_hw(dev);
4817 if (ret && ret != -EIO) {
4818 DRM_ERROR("PPGTT enable failed %d\n", ret);
4819 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004820 }
Daniel Vettere21af882012-02-09 20:53:27 +01004821
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004822 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004823}
4824
Chris Wilson1070a422012-04-24 15:47:41 +01004825int i915_gem_init(struct drm_device *dev)
4826{
4827 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004828 int ret;
4829
Oscar Mateo127f1002014-07-24 17:04:11 +01004830 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4831 i915.enable_execlists);
4832
Chris Wilson1070a422012-04-24 15:47:41 +01004833 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004834
4835 if (IS_VALLEYVIEW(dev)) {
4836 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004837 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4838 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4839 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004840 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4841 }
4842
Oscar Mateoa83014d2014-07-24 17:04:21 +01004843 if (!i915.enable_execlists) {
4844 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4845 dev_priv->gt.init_rings = i915_gem_init_rings;
4846 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4847 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004848 } else {
4849 dev_priv->gt.do_execbuf = intel_execlists_submission;
4850 dev_priv->gt.init_rings = intel_logical_rings_init;
4851 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4852 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004853 }
4854
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004855 ret = i915_gem_init_userptr(dev);
4856 if (ret) {
4857 mutex_unlock(&dev->struct_mutex);
4858 return ret;
4859 }
4860
Ben Widawskyd7e50082012-12-18 10:31:25 -08004861 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004862
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004863 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004864 if (ret) {
4865 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004866 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004867 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004868
Chris Wilson1070a422012-04-24 15:47:41 +01004869 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004870 if (ret == -EIO) {
4871 /* Allow ring initialisation to fail by marking the GPU as
4872 * wedged. But we only want to do this where the GPU is angry,
4873 * for all other failure, such as an allocation failure, bail.
4874 */
4875 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4876 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4877 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004878 }
Chris Wilson60990322014-04-09 09:19:42 +01004879 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004880
Chris Wilson60990322014-04-09 09:19:42 +01004881 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004882}
4883
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004884void
4885i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4886{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004887 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004888 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004889 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004890
Chris Wilsonb4519512012-05-11 14:29:30 +01004891 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004892 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004893}
4894
Chris Wilson64193402010-10-24 12:38:05 +01004895static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004896init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004897{
4898 INIT_LIST_HEAD(&ring->active_list);
4899 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004900}
4901
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004902void i915_init_vm(struct drm_i915_private *dev_priv,
4903 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004904{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004905 if (!i915_is_ggtt(vm))
4906 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004907 vm->dev = dev_priv->dev;
4908 INIT_LIST_HEAD(&vm->active_list);
4909 INIT_LIST_HEAD(&vm->inactive_list);
4910 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004911 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004912}
4913
Eric Anholt673a3942008-07-30 12:06:12 -07004914void
4915i915_gem_load(struct drm_device *dev)
4916{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004917 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004918 int i;
4919
4920 dev_priv->slab =
4921 kmem_cache_create("i915_gem_object",
4922 sizeof(struct drm_i915_gem_object), 0,
4923 SLAB_HWCACHE_ALIGN,
4924 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004925
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004926 INIT_LIST_HEAD(&dev_priv->vm_list);
4927 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4928
Ben Widawskya33afea2013-09-17 21:12:45 -07004929 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004930 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4931 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004932 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004933 for (i = 0; i < I915_NUM_RINGS; i++)
4934 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004935 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004936 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004937 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4938 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004939 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
4940 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004941 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004942
Dave Airlie94400122010-07-20 13:15:31 +10004943 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02004944 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004945 I915_WRITE(MI_ARB_STATE,
4946 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004947 }
4948
Chris Wilson72bfa192010-12-19 11:42:05 +00004949 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4950
Jesse Barnesde151cf2008-11-12 10:03:55 -08004951 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004952 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4953 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004954
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004955 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4956 dev_priv->num_fence_regs = 32;
4957 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004958 dev_priv->num_fence_regs = 16;
4959 else
4960 dev_priv->num_fence_regs = 8;
4961
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004962 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004963 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4964 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004965
Eric Anholt673a3942008-07-30 12:06:12 -07004966 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004967 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004968
Chris Wilsonce453d82011-02-21 14:43:56 +00004969 dev_priv->mm.interruptible = true;
4970
Chris Wilsonceabbba52014-03-25 13:23:04 +00004971 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
4972 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
4973 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
4974 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01004975
4976 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
4977 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004978
4979 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004980}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004981
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004982void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004983{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004984 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004985
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004986 cancel_delayed_work_sync(&file_priv->mm.idle_work);
4987
Eric Anholtb9624422009-06-03 07:27:35 +00004988 /* Clean up our request list when the client is going away, so that
4989 * later retire_requests won't dereference our soon-to-be-gone
4990 * file_priv.
4991 */
Chris Wilson1c255952010-09-26 11:03:27 +01004992 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004993 while (!list_empty(&file_priv->mm.request_list)) {
4994 struct drm_i915_gem_request *request;
4995
4996 request = list_first_entry(&file_priv->mm.request_list,
4997 struct drm_i915_gem_request,
4998 client_list);
4999 list_del(&request->client_list);
5000 request->file_priv = NULL;
5001 }
Chris Wilson1c255952010-09-26 11:03:27 +01005002 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005003}
Chris Wilson31169712009-09-14 16:50:28 +01005004
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005005static void
5006i915_gem_file_idle_work_handler(struct work_struct *work)
5007{
5008 struct drm_i915_file_private *file_priv =
5009 container_of(work, typeof(*file_priv), mm.idle_work.work);
5010
5011 atomic_set(&file_priv->rps_wait_boost, false);
5012}
5013
5014int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5015{
5016 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005017 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005018
5019 DRM_DEBUG_DRIVER("\n");
5020
5021 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5022 if (!file_priv)
5023 return -ENOMEM;
5024
5025 file->driver_priv = file_priv;
5026 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005027 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005028
5029 spin_lock_init(&file_priv->mm.lock);
5030 INIT_LIST_HEAD(&file_priv->mm.request_list);
5031 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5032 i915_gem_file_idle_work_handler);
5033
Ben Widawskye422b882013-12-06 14:10:58 -08005034 ret = i915_gem_context_open(dev, file);
5035 if (ret)
5036 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005037
Ben Widawskye422b882013-12-06 14:10:58 -08005038 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005039}
5040
Daniel Vetterb680c372014-09-19 18:27:27 +02005041/**
5042 * i915_gem_track_fb - update frontbuffer tracking
5043 * old: current GEM buffer for the frontbuffer slots
5044 * new: new GEM buffer for the frontbuffer slots
5045 * frontbuffer_bits: bitmask of frontbuffer slots
5046 *
5047 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5048 * from @old and setting them in @new. Both @old and @new can be NULL.
5049 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005050void i915_gem_track_fb(struct drm_i915_gem_object *old,
5051 struct drm_i915_gem_object *new,
5052 unsigned frontbuffer_bits)
5053{
5054 if (old) {
5055 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5056 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5057 old->frontbuffer_bits &= ~frontbuffer_bits;
5058 }
5059
5060 if (new) {
5061 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5062 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5063 new->frontbuffer_bits |= frontbuffer_bits;
5064 }
5065}
5066
Chris Wilson57745062012-11-21 13:04:04 +00005067static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5068{
5069 if (!mutex_is_locked(mutex))
5070 return false;
5071
5072#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5073 return mutex->owner == task;
5074#else
5075 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5076 return false;
5077#endif
5078}
5079
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005080static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5081{
5082 if (!mutex_trylock(&dev->struct_mutex)) {
5083 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5084 return false;
5085
5086 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5087 return false;
5088
5089 *unlock = false;
5090 } else
5091 *unlock = true;
5092
5093 return true;
5094}
5095
Chris Wilsonceabbba52014-03-25 13:23:04 +00005096static int num_vma_bound(struct drm_i915_gem_object *obj)
5097{
5098 struct i915_vma *vma;
5099 int count = 0;
5100
5101 list_for_each_entry(vma, &obj->vma_list, vma_link)
5102 if (drm_mm_node_allocated(&vma->node))
5103 count++;
5104
5105 return count;
5106}
5107
Dave Chinner7dc19d52013-08-28 10:18:11 +10005108static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005109i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005110{
Chris Wilson17250b72010-10-28 12:51:39 +01005111 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005112 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005113 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005114 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005115 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005116 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005117
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005118 if (!i915_gem_shrinker_lock(dev, &unlock))
5119 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005120
Dave Chinner7dc19d52013-08-28 10:18:11 +10005121 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005122 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005123 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005124 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005125
5126 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005127 if (!i915_gem_obj_is_pinned(obj) &&
5128 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005129 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005130 }
Chris Wilson31169712009-09-14 16:50:28 +01005131
Chris Wilson57745062012-11-21 13:04:04 +00005132 if (unlock)
5133 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005134
Dave Chinner7dc19d52013-08-28 10:18:11 +10005135 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005136}
Ben Widawskya70a3142013-07-31 16:59:56 -07005137
5138/* All the new VM stuff */
5139unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5140 struct i915_address_space *vm)
5141{
5142 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5143 struct i915_vma *vma;
5144
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005145 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005146
Ben Widawskya70a3142013-07-31 16:59:56 -07005147 list_for_each_entry(vma, &o->vma_list, vma_link) {
5148 if (vma->vm == vm)
5149 return vma->node.start;
5150
5151 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005152 WARN(1, "%s vma for this object not found.\n",
5153 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005154 return -1;
5155}
5156
5157bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5158 struct i915_address_space *vm)
5159{
5160 struct i915_vma *vma;
5161
5162 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005163 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005164 return true;
5165
5166 return false;
5167}
5168
5169bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5170{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005171 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005172
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005173 list_for_each_entry(vma, &o->vma_list, vma_link)
5174 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005175 return true;
5176
5177 return false;
5178}
5179
5180unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5181 struct i915_address_space *vm)
5182{
5183 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5184 struct i915_vma *vma;
5185
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005186 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005187
5188 BUG_ON(list_empty(&o->vma_list));
5189
5190 list_for_each_entry(vma, &o->vma_list, vma_link)
5191 if (vma->vm == vm)
5192 return vma->node.size;
5193
5194 return 0;
5195}
5196
Dave Chinner7dc19d52013-08-28 10:18:11 +10005197static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005198i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005199{
5200 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005201 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005202 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005203 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005204 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005205
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005206 if (!i915_gem_shrinker_lock(dev, &unlock))
5207 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005208
Chris Wilson21ab4e72014-09-09 11:16:08 +01005209 freed = i915_gem_shrink(dev_priv,
5210 sc->nr_to_scan,
5211 I915_SHRINK_BOUND |
5212 I915_SHRINK_UNBOUND |
5213 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005214 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005215 freed += i915_gem_shrink(dev_priv,
5216 sc->nr_to_scan - freed,
5217 I915_SHRINK_BOUND |
5218 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005219 if (unlock)
5220 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005221
Dave Chinner7dc19d52013-08-28 10:18:11 +10005222 return freed;
5223}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005224
Chris Wilson2cfcd322014-05-20 08:28:43 +01005225static int
5226i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5227{
5228 struct drm_i915_private *dev_priv =
5229 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5230 struct drm_device *dev = dev_priv->dev;
5231 struct drm_i915_gem_object *obj;
5232 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005233 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005234 bool was_interruptible;
5235 bool unlock;
5236
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005237 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005238 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005239 if (fatal_signal_pending(current))
5240 return NOTIFY_DONE;
5241 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005242 if (timeout == 0) {
5243 pr_err("Unable to purge GPU memory due lock contention.\n");
5244 return NOTIFY_DONE;
5245 }
5246
5247 was_interruptible = dev_priv->mm.interruptible;
5248 dev_priv->mm.interruptible = false;
5249
Chris Wilson005445c2014-10-08 11:25:16 +01005250 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005251
5252 dev_priv->mm.interruptible = was_interruptible;
5253
5254 /* Because we may be allocating inside our own driver, we cannot
5255 * assert that there are no objects with pinned pages that are not
5256 * being pointed to by hardware.
5257 */
5258 unbound = bound = pinned = 0;
5259 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5260 if (!obj->base.filp) /* not backed by a freeable object */
5261 continue;
5262
5263 if (obj->pages_pin_count)
5264 pinned += obj->base.size;
5265 else
5266 unbound += obj->base.size;
5267 }
5268 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5269 if (!obj->base.filp)
5270 continue;
5271
5272 if (obj->pages_pin_count)
5273 pinned += obj->base.size;
5274 else
5275 bound += obj->base.size;
5276 }
5277
5278 if (unlock)
5279 mutex_unlock(&dev->struct_mutex);
5280
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005281 if (freed_pages || unbound || bound)
5282 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5283 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005284 if (unbound || bound)
5285 pr_err("%lu and %lu bytes still available in the "
5286 "bound and unbound GPU page lists.\n",
5287 bound, unbound);
5288
Chris Wilson005445c2014-10-08 11:25:16 +01005289 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005290 return NOTIFY_DONE;
5291}
5292
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005293struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5294{
5295 struct i915_vma *vma;
5296
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005297 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005298 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005299 return NULL;
5300
5301 return vma;
5302}