blob: 820bc984082eb2e2becbec8e683cf961285940c9 [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
Daniel Vetter7bd0e222014-12-04 11:12:54 +01001230 timeout_expire = timeout ?
1231 jiffies + nsecs_to_jiffies_timeout((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001232
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001233 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001234 gen6_rps_boost(dev_priv);
1235 if (file_priv)
1236 mod_delayed_work(dev_priv->wq,
1237 &file_priv->mm.idle_work,
1238 msecs_to_jiffies(100));
1239 }
1240
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001241 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001242 return -ENODEV;
1243
Chris Wilson094f9a52013-09-25 17:34:55 +01001244 /* Record current time in case interrupted by signal, or wedged */
1245 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001246 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001247 for (;;) {
1248 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001249
Chris Wilson094f9a52013-09-25 17:34:55 +01001250 prepare_to_wait(&ring->irq_queue, &wait,
1251 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001252
Daniel Vetterf69061b2012-12-06 09:01:42 +01001253 /* We need to check whether any gpu reset happened in between
1254 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001255 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1256 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1257 * is truely gone. */
1258 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1259 if (ret == 0)
1260 ret = -EAGAIN;
1261 break;
1262 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001263
Chris Wilson094f9a52013-09-25 17:34:55 +01001264 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1265 ret = 0;
1266 break;
1267 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001268
Chris Wilson094f9a52013-09-25 17:34:55 +01001269 if (interruptible && signal_pending(current)) {
1270 ret = -ERESTARTSYS;
1271 break;
1272 }
1273
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001274 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001275 ret = -ETIME;
1276 break;
1277 }
1278
1279 timer.function = NULL;
1280 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001281 unsigned long expire;
1282
Chris Wilson094f9a52013-09-25 17:34:55 +01001283 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001284 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001285 mod_timer(&timer, expire);
1286 }
1287
Chris Wilson5035c272013-10-04 09:58:46 +01001288 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001289
Chris Wilson094f9a52013-09-25 17:34:55 +01001290 if (timer.function) {
1291 del_singleshot_timer_sync(&timer);
1292 destroy_timer_on_stack(&timer);
1293 }
1294 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001295 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001296 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001297
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001298 if (!irq_test_in_progress)
1299 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001300
1301 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001302
1303 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001304 s64 tres = *timeout - (now - before);
1305
1306 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001307 }
1308
Chris Wilson094f9a52013-09-25 17:34:55 +01001309 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001310}
1311
1312/**
1313 * Waits for a sequence number to be signaled, and cleans up the
1314 * request and object lists appropriately for that event.
1315 */
1316int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001317i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001318{
1319 struct drm_device *dev = ring->dev;
1320 struct drm_i915_private *dev_priv = dev->dev_private;
1321 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001322 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001323 int ret;
1324
1325 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1326 BUG_ON(seqno == 0);
1327
Daniel Vetter33196de2012-11-14 17:14:05 +01001328 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001329 if (ret)
1330 return ret;
1331
1332 ret = i915_gem_check_olr(ring, seqno);
1333 if (ret)
1334 return ret;
1335
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001336 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1337 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1338 NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001339}
1340
Chris Wilsond26e3af2013-06-29 22:05:26 +01001341static int
John Harrison8e6395492014-10-30 18:40:53 +00001342i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001343{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001344 if (!obj->active)
1345 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001346
1347 /* Manually manage the write flush as we may have not yet
1348 * retired the buffer.
1349 *
1350 * Note that the last_write_seqno is always the earlier of
1351 * the two (read/write) seqno, so if we haved successfully waited,
1352 * we know we have passed the last write.
1353 */
1354 obj->last_write_seqno = 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001355
1356 return 0;
1357}
1358
Chris Wilsonb3612372012-08-24 09:35:08 +01001359/**
1360 * Ensures that all rendering to the object has completed and the object is
1361 * safe to unbind from the GTT or access from the CPU.
1362 */
1363static __must_check int
1364i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1365 bool readonly)
1366{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001367 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001368 u32 seqno;
1369 int ret;
1370
1371 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1372 if (seqno == 0)
1373 return 0;
1374
1375 ret = i915_wait_seqno(ring, seqno);
1376 if (ret)
1377 return ret;
1378
John Harrison8e6395492014-10-30 18:40:53 +00001379 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001380}
1381
Chris Wilson3236f572012-08-24 09:35:09 +01001382/* A nonblocking variant of the above wait. This is a highly dangerous routine
1383 * as the object state may change during this call.
1384 */
1385static __must_check int
1386i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001387 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001388 bool readonly)
1389{
1390 struct drm_device *dev = obj->base.dev;
1391 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001392 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001393 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001394 u32 seqno;
1395 int ret;
1396
1397 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1398 BUG_ON(!dev_priv->mm.interruptible);
1399
1400 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1401 if (seqno == 0)
1402 return 0;
1403
Daniel Vetter33196de2012-11-14 17:14:05 +01001404 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001405 if (ret)
1406 return ret;
1407
1408 ret = i915_gem_check_olr(ring, seqno);
1409 if (ret)
1410 return ret;
1411
Daniel Vetterf69061b2012-12-06 09:01:42 +01001412 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001413 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001414 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL,
1415 file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001416 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001417 if (ret)
1418 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001419
John Harrison8e6395492014-10-30 18:40:53 +00001420 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001421}
1422
Eric Anholt673a3942008-07-30 12:06:12 -07001423/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001424 * Called when user space prepares to use an object with the CPU, either
1425 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001426 */
1427int
1428i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001429 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001430{
1431 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001432 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001433 uint32_t read_domains = args->read_domains;
1434 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001435 int ret;
1436
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001437 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001438 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001439 return -EINVAL;
1440
Chris Wilson21d509e2009-06-06 09:46:02 +01001441 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001442 return -EINVAL;
1443
1444 /* Having something in the write domain implies it's in the read
1445 * domain, and only that read domain. Enforce that in the request.
1446 */
1447 if (write_domain != 0 && read_domains != write_domain)
1448 return -EINVAL;
1449
Chris Wilson76c1dec2010-09-25 11:22:51 +01001450 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001451 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001452 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001453
Chris Wilson05394f32010-11-08 19:18:58 +00001454 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001455 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001456 ret = -ENOENT;
1457 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001458 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001459
Chris Wilson3236f572012-08-24 09:35:09 +01001460 /* Try to flush the object off the GPU without holding the lock.
1461 * We will repeat the flush holding the lock in the normal manner
1462 * to catch cases where we are gazumped.
1463 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001464 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1465 file->driver_priv,
1466 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001467 if (ret)
1468 goto unref;
1469
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001470 if (read_domains & I915_GEM_DOMAIN_GTT) {
1471 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001472
1473 /* Silently promote "you're not bound, there was nothing to do"
1474 * to success, since the client was just asking us to
1475 * make sure everything was done.
1476 */
1477 if (ret == -EINVAL)
1478 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001479 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001480 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001481 }
1482
Chris Wilson3236f572012-08-24 09:35:09 +01001483unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001484 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001485unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001486 mutex_unlock(&dev->struct_mutex);
1487 return ret;
1488}
1489
1490/**
1491 * Called when user space has done writes to this buffer
1492 */
1493int
1494i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001495 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001496{
1497 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001498 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001499 int ret = 0;
1500
Chris Wilson76c1dec2010-09-25 11:22:51 +01001501 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001502 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001503 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001504
Chris Wilson05394f32010-11-08 19:18:58 +00001505 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001506 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001507 ret = -ENOENT;
1508 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001509 }
1510
Eric Anholt673a3942008-07-30 12:06:12 -07001511 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001512 if (obj->pin_display)
1513 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001514
Chris Wilson05394f32010-11-08 19:18:58 +00001515 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001516unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001517 mutex_unlock(&dev->struct_mutex);
1518 return ret;
1519}
1520
1521/**
1522 * Maps the contents of an object, returning the address it is mapped
1523 * into.
1524 *
1525 * While the mapping holds a reference on the contents of the object, it doesn't
1526 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001527 *
1528 * IMPORTANT:
1529 *
1530 * DRM driver writers who look a this function as an example for how to do GEM
1531 * mmap support, please don't implement mmap support like here. The modern way
1532 * to implement DRM mmap support is with an mmap offset ioctl (like
1533 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1534 * That way debug tooling like valgrind will understand what's going on, hiding
1535 * the mmap call in a driver private ioctl will break that. The i915 driver only
1536 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001537 */
1538int
1539i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001540 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001541{
1542 struct drm_i915_gem_mmap *args = data;
1543 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001544 unsigned long addr;
1545
Chris Wilson05394f32010-11-08 19:18:58 +00001546 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001547 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001548 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001549
Daniel Vetter1286ff72012-05-10 15:25:09 +02001550 /* prime objects have no backing filp to GEM mmap
1551 * pages from.
1552 */
1553 if (!obj->filp) {
1554 drm_gem_object_unreference_unlocked(obj);
1555 return -EINVAL;
1556 }
1557
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001558 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001559 PROT_READ | PROT_WRITE, MAP_SHARED,
1560 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001561 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001562 if (IS_ERR((void *)addr))
1563 return addr;
1564
1565 args->addr_ptr = (uint64_t) addr;
1566
1567 return 0;
1568}
1569
Jesse Barnesde151cf2008-11-12 10:03:55 -08001570/**
1571 * i915_gem_fault - fault a page into the GTT
1572 * vma: VMA in question
1573 * vmf: fault info
1574 *
1575 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1576 * from userspace. The fault handler takes care of binding the object to
1577 * the GTT (if needed), allocating and programming a fence register (again,
1578 * only if needed based on whether the old reg is still valid or the object
1579 * is tiled) and inserting a new PTE into the faulting process.
1580 *
1581 * Note that the faulting process may involve evicting existing objects
1582 * from the GTT and/or fence registers to make room. So performance may
1583 * suffer if the GTT working set is large or there are few fence registers
1584 * left.
1585 */
1586int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1587{
Chris Wilson05394f32010-11-08 19:18:58 +00001588 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1589 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001590 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001591 pgoff_t page_offset;
1592 unsigned long pfn;
1593 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001594 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001595
Paulo Zanonif65c9162013-11-27 18:20:34 -02001596 intel_runtime_pm_get(dev_priv);
1597
Jesse Barnesde151cf2008-11-12 10:03:55 -08001598 /* We don't use vmf->pgoff since that has the fake offset */
1599 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1600 PAGE_SHIFT;
1601
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001602 ret = i915_mutex_lock_interruptible(dev);
1603 if (ret)
1604 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001605
Chris Wilsondb53a302011-02-03 11:57:46 +00001606 trace_i915_gem_object_fault(obj, page_offset, true, write);
1607
Chris Wilson6e4930f2014-02-07 18:37:06 -02001608 /* Try to flush the object off the GPU first without holding the lock.
1609 * Upon reacquiring the lock, we will perform our sanity checks and then
1610 * repeat the flush holding the lock in the normal manner to catch cases
1611 * where we are gazumped.
1612 */
1613 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1614 if (ret)
1615 goto unlock;
1616
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001617 /* Access to snoopable pages through the GTT is incoherent. */
1618 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001619 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001620 goto unlock;
1621 }
1622
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001623 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001624 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001625 if (ret)
1626 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001627
Chris Wilsonc9839302012-11-20 10:45:17 +00001628 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1629 if (ret)
1630 goto unpin;
1631
1632 ret = i915_gem_object_get_fence(obj);
1633 if (ret)
1634 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001635
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001636 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001637 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1638 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001639
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001640 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001641 unsigned long size = min_t(unsigned long,
1642 vma->vm_end - vma->vm_start,
1643 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001644 int i;
1645
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001646 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001647 ret = vm_insert_pfn(vma,
1648 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1649 pfn + i);
1650 if (ret)
1651 break;
1652 }
1653
1654 obj->fault_mappable = true;
1655 } else
1656 ret = vm_insert_pfn(vma,
1657 (unsigned long)vmf->virtual_address,
1658 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001659unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001660 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001661unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001662 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001663out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001664 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001665 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001666 /*
1667 * We eat errors when the gpu is terminally wedged to avoid
1668 * userspace unduly crashing (gl has no provisions for mmaps to
1669 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1670 * and so needs to be reported.
1671 */
1672 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001673 ret = VM_FAULT_SIGBUS;
1674 break;
1675 }
Chris Wilson045e7692010-11-07 09:18:22 +00001676 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001677 /*
1678 * EAGAIN means the gpu is hung and we'll wait for the error
1679 * handler to reset everything when re-faulting in
1680 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001681 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001682 case 0:
1683 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001684 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001685 case -EBUSY:
1686 /*
1687 * EBUSY is ok: this just means that another thread
1688 * already did the job.
1689 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001690 ret = VM_FAULT_NOPAGE;
1691 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001692 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001693 ret = VM_FAULT_OOM;
1694 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001695 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001696 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001697 ret = VM_FAULT_SIGBUS;
1698 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001699 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001700 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001701 ret = VM_FAULT_SIGBUS;
1702 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001703 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001704
1705 intel_runtime_pm_put(dev_priv);
1706 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001707}
1708
1709/**
Chris Wilson901782b2009-07-10 08:18:50 +01001710 * i915_gem_release_mmap - remove physical page mappings
1711 * @obj: obj in question
1712 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001713 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001714 * relinquish ownership of the pages back to the system.
1715 *
1716 * It is vital that we remove the page mapping if we have mapped a tiled
1717 * object through the GTT and then lose the fence register due to
1718 * resource pressure. Similarly if the object has been moved out of the
1719 * aperture, than pages mapped into userspace must be revoked. Removing the
1720 * mapping will then trigger a page fault on the next user access, allowing
1721 * fixup by i915_gem_fault().
1722 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001723void
Chris Wilson05394f32010-11-08 19:18:58 +00001724i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001725{
Chris Wilson6299f992010-11-24 12:23:44 +00001726 if (!obj->fault_mappable)
1727 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001728
David Herrmann6796cb12014-01-03 14:24:19 +01001729 drm_vma_node_unmap(&obj->base.vma_node,
1730 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001731 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001732}
1733
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001734void
1735i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1736{
1737 struct drm_i915_gem_object *obj;
1738
1739 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1740 i915_gem_release_mmap(obj);
1741}
1742
Imre Deak0fa87792013-01-07 21:47:35 +02001743uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001744i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001745{
Chris Wilsone28f8712011-07-18 13:11:49 -07001746 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001747
1748 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001749 tiling_mode == I915_TILING_NONE)
1750 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001751
1752 /* Previous chips need a power-of-two fence region when tiling */
1753 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001754 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001755 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001756 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001757
Chris Wilsone28f8712011-07-18 13:11:49 -07001758 while (gtt_size < size)
1759 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001760
Chris Wilsone28f8712011-07-18 13:11:49 -07001761 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001762}
1763
Jesse Barnesde151cf2008-11-12 10:03:55 -08001764/**
1765 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1766 * @obj: object to check
1767 *
1768 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001769 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001770 */
Imre Deakd8651102013-01-07 21:47:33 +02001771uint32_t
1772i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1773 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001774{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001775 /*
1776 * Minimum alignment is 4k (GTT page size), but might be greater
1777 * if a fence register is needed for the object.
1778 */
Imre Deakd8651102013-01-07 21:47:33 +02001779 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001780 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001781 return 4096;
1782
1783 /*
1784 * Previous chips need to be aligned to the size of the smallest
1785 * fence register that can contain the object.
1786 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001787 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001788}
1789
Chris Wilsond8cb5082012-08-11 15:41:03 +01001790static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1791{
1792 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1793 int ret;
1794
David Herrmann0de23972013-07-24 21:07:52 +02001795 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001796 return 0;
1797
Daniel Vetterda494d72012-12-20 15:11:16 +01001798 dev_priv->mm.shrinker_no_lock_stealing = true;
1799
Chris Wilsond8cb5082012-08-11 15:41:03 +01001800 ret = drm_gem_create_mmap_offset(&obj->base);
1801 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001802 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001803
1804 /* Badly fragmented mmap space? The only way we can recover
1805 * space is by destroying unwanted objects. We can't randomly release
1806 * mmap_offsets as userspace expects them to be persistent for the
1807 * lifetime of the objects. The closest we can is to release the
1808 * offsets on purgeable objects by truncating it and marking it purged,
1809 * which prevents userspace from ever using that object again.
1810 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001811 i915_gem_shrink(dev_priv,
1812 obj->base.size >> PAGE_SHIFT,
1813 I915_SHRINK_BOUND |
1814 I915_SHRINK_UNBOUND |
1815 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001816 ret = drm_gem_create_mmap_offset(&obj->base);
1817 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001818 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001819
1820 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001821 ret = drm_gem_create_mmap_offset(&obj->base);
1822out:
1823 dev_priv->mm.shrinker_no_lock_stealing = false;
1824
1825 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001826}
1827
1828static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1829{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001830 drm_gem_free_mmap_offset(&obj->base);
1831}
1832
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001833static int
Dave Airlieff72145b2011-02-07 12:16:14 +10001834i915_gem_mmap_gtt(struct drm_file *file,
1835 struct drm_device *dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001836 uint32_t handle, bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +10001837 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001838{
Chris Wilsonda761a62010-10-27 17:37:08 +01001839 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001840 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001841 int ret;
1842
Chris Wilson76c1dec2010-09-25 11:22:51 +01001843 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001844 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001845 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001846
Dave Airlieff72145b2011-02-07 12:16:14 +10001847 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001848 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001849 ret = -ENOENT;
1850 goto unlock;
1851 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001852
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001853 /*
1854 * We don't allow dumb mmaps on objects created using another
1855 * interface.
1856 */
1857 WARN_ONCE(dumb && !(obj->base.dumb || obj->base.import_attach),
1858 "Illegal dumb map of accelerated buffer.\n");
1859
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001860 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001861 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001862 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001863 }
1864
Chris Wilson05394f32010-11-08 19:18:58 +00001865 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001866 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001867 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001868 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001869 }
1870
Chris Wilsond8cb5082012-08-11 15:41:03 +01001871 ret = i915_gem_object_create_mmap_offset(obj);
1872 if (ret)
1873 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001874
David Herrmann0de23972013-07-24 21:07:52 +02001875 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001876
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001877out:
Chris Wilson05394f32010-11-08 19:18:58 +00001878 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001879unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001880 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001881 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001882}
1883
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001884int
1885i915_gem_dumb_map_offset(struct drm_file *file,
1886 struct drm_device *dev,
1887 uint32_t handle,
1888 uint64_t *offset)
1889{
1890 return i915_gem_mmap_gtt(file, dev, handle, true, offset);
1891}
1892
Dave Airlieff72145b2011-02-07 12:16:14 +10001893/**
1894 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1895 * @dev: DRM device
1896 * @data: GTT mapping ioctl data
1897 * @file: GEM object info
1898 *
1899 * Simply returns the fake offset to userspace so it can mmap it.
1900 * The mmap call will end up in drm_gem_mmap(), which will set things
1901 * up so we can get faults in the handler above.
1902 *
1903 * The fault handler will take care of binding the object into the GTT
1904 * (since it may have been evicted to make room for something), allocating
1905 * a fence register, and mapping the appropriate aperture address into
1906 * userspace.
1907 */
1908int
1909i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1910 struct drm_file *file)
1911{
1912 struct drm_i915_gem_mmap_gtt *args = data;
1913
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001914 return i915_gem_mmap_gtt(file, dev, args->handle, false, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001915}
1916
Chris Wilson55372522014-03-25 13:23:06 +00001917static inline int
1918i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1919{
1920 return obj->madv == I915_MADV_DONTNEED;
1921}
1922
Daniel Vetter225067e2012-08-20 10:23:20 +02001923/* Immediately discard the backing storage */
1924static void
1925i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001926{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001927 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001928
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001929 if (obj->base.filp == NULL)
1930 return;
1931
Daniel Vetter225067e2012-08-20 10:23:20 +02001932 /* Our goal here is to return as much of the memory as
1933 * is possible back to the system as we are called from OOM.
1934 * To do this we must instruct the shmfs to drop all of its
1935 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001936 */
Chris Wilson55372522014-03-25 13:23:06 +00001937 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001938 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001939}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001940
Chris Wilson55372522014-03-25 13:23:06 +00001941/* Try to discard unwanted pages */
1942static void
1943i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001944{
Chris Wilson55372522014-03-25 13:23:06 +00001945 struct address_space *mapping;
1946
1947 switch (obj->madv) {
1948 case I915_MADV_DONTNEED:
1949 i915_gem_object_truncate(obj);
1950 case __I915_MADV_PURGED:
1951 return;
1952 }
1953
1954 if (obj->base.filp == NULL)
1955 return;
1956
1957 mapping = file_inode(obj->base.filp)->i_mapping,
1958 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001959}
1960
Chris Wilson5cdf5882010-09-27 15:51:07 +01001961static void
Chris Wilson05394f32010-11-08 19:18:58 +00001962i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001963{
Imre Deak90797e62013-02-18 19:28:03 +02001964 struct sg_page_iter sg_iter;
1965 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001966
Chris Wilson05394f32010-11-08 19:18:58 +00001967 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001968
Chris Wilson6c085a72012-08-20 11:40:46 +02001969 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1970 if (ret) {
1971 /* In the event of a disaster, abandon all caches and
1972 * hope for the best.
1973 */
1974 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001975 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001976 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1977 }
1978
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001979 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001980 i915_gem_object_save_bit_17_swizzle(obj);
1981
Chris Wilson05394f32010-11-08 19:18:58 +00001982 if (obj->madv == I915_MADV_DONTNEED)
1983 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001984
Imre Deak90797e62013-02-18 19:28:03 +02001985 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001986 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001987
Chris Wilson05394f32010-11-08 19:18:58 +00001988 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001989 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001990
Chris Wilson05394f32010-11-08 19:18:58 +00001991 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001992 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001993
Chris Wilson9da3da62012-06-01 15:20:22 +01001994 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001995 }
Chris Wilson05394f32010-11-08 19:18:58 +00001996 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001997
Chris Wilson9da3da62012-06-01 15:20:22 +01001998 sg_free_table(obj->pages);
1999 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002000}
2001
Chris Wilsondd624af2013-01-15 12:39:35 +00002002int
Chris Wilson37e680a2012-06-07 15:38:42 +01002003i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2004{
2005 const struct drm_i915_gem_object_ops *ops = obj->ops;
2006
Chris Wilson2f745ad2012-09-04 21:02:58 +01002007 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002008 return 0;
2009
Chris Wilsona5570172012-09-04 21:02:54 +01002010 if (obj->pages_pin_count)
2011 return -EBUSY;
2012
Ben Widawsky98438772013-07-31 17:00:12 -07002013 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002014
Chris Wilsona2165e32012-12-03 11:49:00 +00002015 /* ->put_pages might need to allocate memory for the bit17 swizzle
2016 * array, hence protect them from being reaped by removing them from gtt
2017 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002018 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002019
Chris Wilson37e680a2012-06-07 15:38:42 +01002020 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002021 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002022
Chris Wilson55372522014-03-25 13:23:06 +00002023 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002024
2025 return 0;
2026}
2027
Chris Wilson21ab4e72014-09-09 11:16:08 +01002028unsigned long
2029i915_gem_shrink(struct drm_i915_private *dev_priv,
2030 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002031{
Chris Wilson60a53722014-10-03 10:29:51 +01002032 const struct {
2033 struct list_head *list;
2034 unsigned int bit;
2035 } phases[] = {
2036 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2037 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2038 { NULL, 0 },
2039 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002040 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002041
Chris Wilson57094f82013-09-04 10:45:50 +01002042 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002043 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002044 * (due to retiring requests) we have to strictly process only
2045 * one element of the list at the time, and recheck the list
2046 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002047 *
2048 * In particular, we must hold a reference whilst removing the
2049 * object as we may end up waiting for and/or retiring the objects.
2050 * This might release the final reference (held by the active list)
2051 * and result in the object being freed from under us. This is
2052 * similar to the precautions the eviction code must take whilst
2053 * removing objects.
2054 *
2055 * Also note that although these lists do not hold a reference to
2056 * the object we can safely grab one here: The final object
2057 * unreferencing and the bound_list are both protected by the
2058 * dev->struct_mutex and so we won't ever be able to observe an
2059 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002060 */
Chris Wilson60a53722014-10-03 10:29:51 +01002061 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002062 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002063
Chris Wilson60a53722014-10-03 10:29:51 +01002064 if ((flags & phase->bit) == 0)
2065 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002066
Chris Wilson21ab4e72014-09-09 11:16:08 +01002067 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002068 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002069 struct drm_i915_gem_object *obj;
2070 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002071
Chris Wilson60a53722014-10-03 10:29:51 +01002072 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002073 typeof(*obj), global_list);
2074 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002075
Chris Wilson60a53722014-10-03 10:29:51 +01002076 if (flags & I915_SHRINK_PURGEABLE &&
2077 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002078 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002079
Chris Wilson21ab4e72014-09-09 11:16:08 +01002080 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002081
Chris Wilson60a53722014-10-03 10:29:51 +01002082 /* For the unbound phase, this should be a no-op! */
2083 list_for_each_entry_safe(vma, v,
2084 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002085 if (i915_vma_unbind(vma))
2086 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002087
Chris Wilson21ab4e72014-09-09 11:16:08 +01002088 if (i915_gem_object_put_pages(obj) == 0)
2089 count += obj->base.size >> PAGE_SHIFT;
2090
2091 drm_gem_object_unreference(&obj->base);
2092 }
Chris Wilson60a53722014-10-03 10:29:51 +01002093 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002094 }
2095
2096 return count;
2097}
2098
Chris Wilsond9973b42013-10-04 10:33:00 +01002099static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002100i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2101{
Chris Wilson6c085a72012-08-20 11:40:46 +02002102 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002103 return i915_gem_shrink(dev_priv, LONG_MAX,
2104 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002105}
2106
Chris Wilson37e680a2012-06-07 15:38:42 +01002107static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002108i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002109{
Chris Wilson6c085a72012-08-20 11:40:46 +02002110 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002111 int page_count, i;
2112 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002113 struct sg_table *st;
2114 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002115 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002116 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002117 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002118 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002119
Chris Wilson6c085a72012-08-20 11:40:46 +02002120 /* Assert that the object is not currently in any GPU domain. As it
2121 * wasn't in the GTT, there shouldn't be any way it could have been in
2122 * a GPU cache
2123 */
2124 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2125 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2126
Chris Wilson9da3da62012-06-01 15:20:22 +01002127 st = kmalloc(sizeof(*st), GFP_KERNEL);
2128 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002129 return -ENOMEM;
2130
Chris Wilson9da3da62012-06-01 15:20:22 +01002131 page_count = obj->base.size / PAGE_SIZE;
2132 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002133 kfree(st);
2134 return -ENOMEM;
2135 }
2136
2137 /* Get the list of pages out of our struct file. They'll be pinned
2138 * at this point until we release them.
2139 *
2140 * Fail silently without starting the shrinker
2141 */
Al Viro496ad9a2013-01-23 17:07:38 -05002142 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002143 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002144 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002145 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002146 sg = st->sgl;
2147 st->nents = 0;
2148 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002149 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2150 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002151 i915_gem_shrink(dev_priv,
2152 page_count,
2153 I915_SHRINK_BOUND |
2154 I915_SHRINK_UNBOUND |
2155 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002156 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2157 }
2158 if (IS_ERR(page)) {
2159 /* We've tried hard to allocate the memory by reaping
2160 * our own buffer, now let the real VM do its job and
2161 * go down in flames if truly OOM.
2162 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002163 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002164 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002165 if (IS_ERR(page))
2166 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002167 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002168#ifdef CONFIG_SWIOTLB
2169 if (swiotlb_nr_tbl()) {
2170 st->nents++;
2171 sg_set_page(sg, page, PAGE_SIZE, 0);
2172 sg = sg_next(sg);
2173 continue;
2174 }
2175#endif
Imre Deak90797e62013-02-18 19:28:03 +02002176 if (!i || page_to_pfn(page) != last_pfn + 1) {
2177 if (i)
2178 sg = sg_next(sg);
2179 st->nents++;
2180 sg_set_page(sg, page, PAGE_SIZE, 0);
2181 } else {
2182 sg->length += PAGE_SIZE;
2183 }
2184 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002185
2186 /* Check that the i965g/gm workaround works. */
2187 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002188 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002189#ifdef CONFIG_SWIOTLB
2190 if (!swiotlb_nr_tbl())
2191#endif
2192 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002193 obj->pages = st;
2194
Eric Anholt673a3942008-07-30 12:06:12 -07002195 if (i915_gem_object_needs_bit17_swizzle(obj))
2196 i915_gem_object_do_bit_17_swizzle(obj);
2197
Daniel Vetter656bfa32014-11-20 09:26:30 +01002198 if (obj->tiling_mode != I915_TILING_NONE &&
2199 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2200 i915_gem_object_pin_pages(obj);
2201
Eric Anholt673a3942008-07-30 12:06:12 -07002202 return 0;
2203
2204err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002205 sg_mark_end(sg);
2206 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002207 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002208 sg_free_table(st);
2209 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002210
2211 /* shmemfs first checks if there is enough memory to allocate the page
2212 * and reports ENOSPC should there be insufficient, along with the usual
2213 * ENOMEM for a genuine allocation failure.
2214 *
2215 * We use ENOSPC in our driver to mean that we have run out of aperture
2216 * space and so want to translate the error from shmemfs back to our
2217 * usual understanding of ENOMEM.
2218 */
2219 if (PTR_ERR(page) == -ENOSPC)
2220 return -ENOMEM;
2221 else
2222 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002223}
2224
Chris Wilson37e680a2012-06-07 15:38:42 +01002225/* Ensure that the associated pages are gathered from the backing storage
2226 * and pinned into our object. i915_gem_object_get_pages() may be called
2227 * multiple times before they are released by a single call to
2228 * i915_gem_object_put_pages() - once the pages are no longer referenced
2229 * either as a result of memory pressure (reaping pages under the shrinker)
2230 * or as the object is itself released.
2231 */
2232int
2233i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2234{
2235 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2236 const struct drm_i915_gem_object_ops *ops = obj->ops;
2237 int ret;
2238
Chris Wilson2f745ad2012-09-04 21:02:58 +01002239 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002240 return 0;
2241
Chris Wilson43e28f02013-01-08 10:53:09 +00002242 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002243 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002244 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002245 }
2246
Chris Wilsona5570172012-09-04 21:02:54 +01002247 BUG_ON(obj->pages_pin_count);
2248
Chris Wilson37e680a2012-06-07 15:38:42 +01002249 ret = ops->get_pages(obj);
2250 if (ret)
2251 return ret;
2252
Ben Widawsky35c20a62013-05-31 11:28:48 -07002253 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002254 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002255}
2256
Ben Widawskye2d05a82013-09-24 09:57:58 -07002257static void
Chris Wilson05394f32010-11-08 19:18:58 +00002258i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002259 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002260{
Chris Wilson9d7730912012-11-27 16:22:52 +00002261 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002262
Zou Nan hai852835f2010-05-21 09:08:56 +08002263 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002264 if (obj->ring != ring && obj->last_write_seqno) {
2265 /* Keep the seqno relative to the current ring */
2266 obj->last_write_seqno = seqno;
2267 }
Chris Wilson05394f32010-11-08 19:18:58 +00002268 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002269
2270 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002271 if (!obj->active) {
2272 drm_gem_object_reference(&obj->base);
2273 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002274 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002275
Chris Wilson05394f32010-11-08 19:18:58 +00002276 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002277
Chris Wilson0201f1e2012-07-20 12:41:01 +01002278 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002279}
2280
Ben Widawskye2d05a82013-09-24 09:57:58 -07002281void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002282 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002283{
2284 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2285 return i915_gem_object_move_to_active(vma->obj, ring);
2286}
2287
Chris Wilsoncaea7472010-11-12 13:53:37 +00002288static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002289i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2290{
Ben Widawskyca191b12013-07-31 17:00:14 -07002291 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002292 struct i915_address_space *vm;
2293 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002294
Chris Wilson65ce3022012-07-20 12:41:02 +01002295 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002296 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002297
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002298 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2299 vma = i915_gem_obj_to_vma(obj, vm);
2300 if (vma && !list_empty(&vma->mm_list))
2301 list_move_tail(&vma->mm_list, &vm->inactive_list);
2302 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002303
Daniel Vetterf99d7062014-06-19 16:01:59 +02002304 intel_fb_obj_flush(obj, true);
2305
Chris Wilson65ce3022012-07-20 12:41:02 +01002306 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002307 obj->ring = NULL;
2308
Chris Wilson65ce3022012-07-20 12:41:02 +01002309 obj->last_read_seqno = 0;
2310 obj->last_write_seqno = 0;
2311 obj->base.write_domain = 0;
2312
2313 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002314
2315 obj->active = 0;
2316 drm_gem_object_unreference(&obj->base);
2317
2318 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002319}
Eric Anholt673a3942008-07-30 12:06:12 -07002320
Chris Wilsonc8725f32014-03-17 12:21:55 +00002321static void
2322i915_gem_object_retire(struct drm_i915_gem_object *obj)
2323{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002324 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002325
2326 if (ring == NULL)
2327 return;
2328
2329 if (i915_seqno_passed(ring->get_seqno(ring, true),
2330 obj->last_read_seqno))
2331 i915_gem_object_move_to_inactive(obj);
2332}
2333
Chris Wilson9d7730912012-11-27 16:22:52 +00002334static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002335i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002336{
Chris Wilson9d7730912012-11-27 16:22:52 +00002337 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002338 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002339 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002340
Chris Wilson107f27a52012-12-10 13:56:17 +02002341 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002342 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002343 ret = intel_ring_idle(ring);
2344 if (ret)
2345 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002346 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002347 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002348
2349 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002350 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002351 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002352
Ben Widawskyebc348b2014-04-29 14:52:28 -07002353 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2354 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002355 }
2356
2357 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002358}
2359
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002360int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2361{
2362 struct drm_i915_private *dev_priv = dev->dev_private;
2363 int ret;
2364
2365 if (seqno == 0)
2366 return -EINVAL;
2367
2368 /* HWS page needs to be set less than what we
2369 * will inject to ring
2370 */
2371 ret = i915_gem_init_seqno(dev, seqno - 1);
2372 if (ret)
2373 return ret;
2374
2375 /* Carefully set the last_seqno value so that wrap
2376 * detection still works
2377 */
2378 dev_priv->next_seqno = seqno;
2379 dev_priv->last_seqno = seqno - 1;
2380 if (dev_priv->last_seqno == 0)
2381 dev_priv->last_seqno--;
2382
2383 return 0;
2384}
2385
Chris Wilson9d7730912012-11-27 16:22:52 +00002386int
2387i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002388{
Chris Wilson9d7730912012-11-27 16:22:52 +00002389 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002390
Chris Wilson9d7730912012-11-27 16:22:52 +00002391 /* reserve 0 for non-seqno */
2392 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002393 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002394 if (ret)
2395 return ret;
2396
2397 dev_priv->next_seqno = 1;
2398 }
2399
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002400 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002401 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002402}
2403
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002404int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002405 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002406 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002407 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002408{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002409 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002410 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002411 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002412 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002413 int ret;
2414
Oscar Mateo48e29f52014-07-24 17:04:29 +01002415 request = ring->preallocated_lazy_request;
2416 if (WARN_ON(request == NULL))
2417 return -ENOMEM;
2418
2419 if (i915.enable_execlists) {
2420 struct intel_context *ctx = request->ctx;
2421 ringbuf = ctx->engine[ring->id].ringbuf;
2422 } else
2423 ringbuf = ring->buffer;
2424
2425 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002426 /*
2427 * Emit any outstanding flushes - execbuf can fail to emit the flush
2428 * after having emitted the batchbuffer command. Hence we need to fix
2429 * things up similar to emitting the lazy request. The difference here
2430 * is that the flush _must_ happen before the next request, no matter
2431 * what.
2432 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002433 if (i915.enable_execlists) {
2434 ret = logical_ring_flush_all_caches(ringbuf);
2435 if (ret)
2436 return ret;
2437 } else {
2438 ret = intel_ring_flush_all_caches(ring);
2439 if (ret)
2440 return ret;
2441 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002442
Chris Wilsona71d8d92012-02-15 11:25:36 +00002443 /* Record the position of the start of the request so that
2444 * should we detect the updated seqno part-way through the
2445 * GPU processing the request, we never over-estimate the
2446 * position of the head.
2447 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002448 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002449
Oscar Mateo48e29f52014-07-24 17:04:29 +01002450 if (i915.enable_execlists) {
2451 ret = ring->emit_request(ringbuf);
2452 if (ret)
2453 return ret;
2454 } else {
2455 ret = ring->add_request(ring);
2456 if (ret)
2457 return ret;
2458 }
Eric Anholt673a3942008-07-30 12:06:12 -07002459
Chris Wilson9d7730912012-11-27 16:22:52 +00002460 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002461 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002462 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002463 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002464
2465 /* Whilst this request exists, batch_obj will be on the
2466 * active_list, and so will hold the active reference. Only when this
2467 * request is retired will the the batch_obj be moved onto the
2468 * inactive_list and lose its active reference. Hence we do not need
2469 * to explicitly hold another reference here.
2470 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002471 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002472
Oscar Mateo48e29f52014-07-24 17:04:29 +01002473 if (!i915.enable_execlists) {
2474 /* Hold a reference to the current context so that we can inspect
2475 * it later in case a hangcheck error event fires.
2476 */
2477 request->ctx = ring->last_context;
2478 if (request->ctx)
2479 i915_gem_context_reference(request->ctx);
2480 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002481
Eric Anholt673a3942008-07-30 12:06:12 -07002482 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002483 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002484 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002485
Chris Wilsondb53a302011-02-03 11:57:46 +00002486 if (file) {
2487 struct drm_i915_file_private *file_priv = file->driver_priv;
2488
Chris Wilson1c255952010-09-26 11:03:27 +01002489 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002490 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002491 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002492 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002493 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002494 }
Eric Anholt673a3942008-07-30 12:06:12 -07002495
Chris Wilson9d7730912012-11-27 16:22:52 +00002496 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002497 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002498 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002499
Daniel Vetter87255482014-11-19 20:36:48 +01002500 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002501
Daniel Vetter87255482014-11-19 20:36:48 +01002502 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2503 queue_delayed_work(dev_priv->wq,
2504 &dev_priv->mm.retire_work,
2505 round_jiffies_up_relative(HZ));
2506 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002507
Chris Wilsonacb868d2012-09-26 13:47:30 +01002508 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002509 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002510 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002511}
2512
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002513static inline void
2514i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002515{
Chris Wilson1c255952010-09-26 11:03:27 +01002516 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002517
Chris Wilson1c255952010-09-26 11:03:27 +01002518 if (!file_priv)
2519 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002520
Chris Wilson1c255952010-09-26 11:03:27 +01002521 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002522 list_del(&request->client_list);
2523 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002524 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002525}
2526
Mika Kuoppala939fd762014-01-30 19:04:44 +02002527static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002528 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002529{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002530 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002531
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002532 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2533
2534 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002535 return true;
2536
2537 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002538 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002539 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002540 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002541 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2542 if (i915_stop_ring_allow_warn(dev_priv))
2543 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002544 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002545 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002546 }
2547
2548 return false;
2549}
2550
Mika Kuoppala939fd762014-01-30 19:04:44 +02002551static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002552 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002553 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002554{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002555 struct i915_ctx_hang_stats *hs;
2556
2557 if (WARN_ON(!ctx))
2558 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002559
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002560 hs = &ctx->hang_stats;
2561
2562 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002563 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002564 hs->batch_active++;
2565 hs->guilty_ts = get_seconds();
2566 } else {
2567 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002568 }
2569}
2570
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002571static void i915_gem_free_request(struct drm_i915_gem_request *request)
2572{
Oscar Mateodcb4c122014-11-13 10:28:10 +00002573 struct intel_context *ctx = request->ctx;
2574
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002575 list_del(&request->list);
2576 i915_gem_request_remove_from_client(request);
2577
Thomas Daniel0794aed2014-11-25 10:39:25 +00002578 if (ctx) {
2579 if (i915.enable_execlists) {
2580 struct intel_engine_cs *ring = request->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002581
Thomas Daniel0794aed2014-11-25 10:39:25 +00002582 if (ctx != ring->default_context)
2583 intel_lr_context_unpin(ring, ctx);
2584 }
Oscar Mateodcb4c122014-11-13 10:28:10 +00002585 i915_gem_context_unreference(ctx);
2586 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002587 kfree(request);
2588}
2589
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002590struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002591i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002592{
Chris Wilson4db080f2013-12-04 11:37:09 +00002593 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002594 u32 completed_seqno;
2595
2596 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002597
Chris Wilson4db080f2013-12-04 11:37:09 +00002598 list_for_each_entry(request, &ring->request_list, list) {
2599 if (i915_seqno_passed(completed_seqno, request->seqno))
2600 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002601
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002602 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002603 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002604
2605 return NULL;
2606}
2607
2608static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002609 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002610{
2611 struct drm_i915_gem_request *request;
2612 bool ring_hung;
2613
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002614 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002615
2616 if (request == NULL)
2617 return;
2618
2619 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2620
Mika Kuoppala939fd762014-01-30 19:04:44 +02002621 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002622
2623 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002624 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002625}
2626
2627static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002628 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002629{
Chris Wilsondfaae392010-09-22 10:31:52 +01002630 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002631 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002632
Chris Wilson05394f32010-11-08 19:18:58 +00002633 obj = list_first_entry(&ring->active_list,
2634 struct drm_i915_gem_object,
2635 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002636
Chris Wilson05394f32010-11-08 19:18:58 +00002637 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002638 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002639
2640 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002641 * Clear the execlists queue up before freeing the requests, as those
2642 * are the ones that keep the context and ringbuffer backing objects
2643 * pinned in place.
2644 */
2645 while (!list_empty(&ring->execlist_queue)) {
2646 struct intel_ctx_submit_request *submit_req;
2647
2648 submit_req = list_first_entry(&ring->execlist_queue,
2649 struct intel_ctx_submit_request,
2650 execlist_link);
2651 list_del(&submit_req->execlist_link);
2652 intel_runtime_pm_put(dev_priv);
2653 i915_gem_context_unreference(submit_req->ctx);
2654 kfree(submit_req);
2655 }
2656
2657 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002658 * We must free the requests after all the corresponding objects have
2659 * been moved off active lists. Which is the same order as the normal
2660 * retire_requests function does. This is important if object hold
2661 * implicit references on things like e.g. ppgtt address spaces through
2662 * the request.
2663 */
2664 while (!list_empty(&ring->request_list)) {
2665 struct drm_i915_gem_request *request;
2666
2667 request = list_first_entry(&ring->request_list,
2668 struct drm_i915_gem_request,
2669 list);
2670
2671 i915_gem_free_request(request);
2672 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002673
2674 /* These may not have been flush before the reset, do so now */
2675 kfree(ring->preallocated_lazy_request);
2676 ring->preallocated_lazy_request = NULL;
2677 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002678}
2679
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002680void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002681{
2682 struct drm_i915_private *dev_priv = dev->dev_private;
2683 int i;
2684
Daniel Vetter4b9de732011-10-09 21:52:02 +02002685 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002686 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002687
Daniel Vetter94a335d2013-07-17 14:51:28 +02002688 /*
2689 * Commit delayed tiling changes if we have an object still
2690 * attached to the fence, otherwise just clear the fence.
2691 */
2692 if (reg->obj) {
2693 i915_gem_object_update_fence(reg->obj, reg,
2694 reg->obj->tiling_mode);
2695 } else {
2696 i915_gem_write_fence(dev, i, NULL);
2697 }
Chris Wilson312817a2010-11-22 11:50:11 +00002698 }
2699}
2700
Chris Wilson069efc12010-09-30 16:53:18 +01002701void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002702{
Chris Wilsondfaae392010-09-22 10:31:52 +01002703 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002704 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002705 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002706
Chris Wilson4db080f2013-12-04 11:37:09 +00002707 /*
2708 * Before we free the objects from the requests, we need to inspect
2709 * them for finding the guilty party. As the requests only borrow
2710 * their reference to the objects, the inspection must be done first.
2711 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002712 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002713 i915_gem_reset_ring_status(dev_priv, ring);
2714
2715 for_each_ring(ring, dev_priv, i)
2716 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002717
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002718 i915_gem_context_reset(dev);
2719
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002720 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002721}
2722
2723/**
2724 * This function clears the request list as sequence numbers are passed.
2725 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002726void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002727i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002728{
Eric Anholt673a3942008-07-30 12:06:12 -07002729 uint32_t seqno;
2730
Chris Wilsondb53a302011-02-03 11:57:46 +00002731 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002732 return;
2733
Chris Wilsondb53a302011-02-03 11:57:46 +00002734 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002735
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002736 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002737
Chris Wilsone9103032014-01-07 11:45:14 +00002738 /* Move any buffers on the active list that are no longer referenced
2739 * by the ringbuffer to the flushing/inactive lists as appropriate,
2740 * before we free the context associated with the requests.
2741 */
2742 while (!list_empty(&ring->active_list)) {
2743 struct drm_i915_gem_object *obj;
2744
2745 obj = list_first_entry(&ring->active_list,
2746 struct drm_i915_gem_object,
2747 ring_list);
2748
2749 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2750 break;
2751
2752 i915_gem_object_move_to_inactive(obj);
2753 }
2754
2755
Zou Nan hai852835f2010-05-21 09:08:56 +08002756 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002757 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002758 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002759
Zou Nan hai852835f2010-05-21 09:08:56 +08002760 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002761 struct drm_i915_gem_request,
2762 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002763
Chris Wilsondfaae392010-09-22 10:31:52 +01002764 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002765 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002766
Chris Wilsondb53a302011-02-03 11:57:46 +00002767 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002768
2769 /* This is one of the few common intersection points
2770 * between legacy ringbuffer submission and execlists:
2771 * we need to tell them apart in order to find the correct
2772 * ringbuffer to which the request belongs to.
2773 */
2774 if (i915.enable_execlists) {
2775 struct intel_context *ctx = request->ctx;
2776 ringbuf = ctx->engine[ring->id].ringbuf;
2777 } else
2778 ringbuf = ring->buffer;
2779
Chris Wilsona71d8d92012-02-15 11:25:36 +00002780 /* We know the GPU must have read the request to have
2781 * sent us the seqno + interrupt, so use the position
2782 * of tail of the request to update the last known position
2783 * of the GPU head.
2784 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002785 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002786
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002787 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002788 }
2789
Chris Wilsondb53a302011-02-03 11:57:46 +00002790 if (unlikely(ring->trace_irq_seqno &&
2791 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002792 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002793 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002794 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002795
Chris Wilsondb53a302011-02-03 11:57:46 +00002796 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002797}
2798
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002799bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002800i915_gem_retire_requests(struct drm_device *dev)
2801{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002802 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002803 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002804 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002805 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002806
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002807 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002808 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002809 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002810 if (i915.enable_execlists) {
2811 unsigned long flags;
2812
2813 spin_lock_irqsave(&ring->execlist_lock, flags);
2814 idle &= list_empty(&ring->execlist_queue);
2815 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2816
2817 intel_execlists_retire_requests(ring);
2818 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002819 }
2820
2821 if (idle)
2822 mod_delayed_work(dev_priv->wq,
2823 &dev_priv->mm.idle_work,
2824 msecs_to_jiffies(100));
2825
2826 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002827}
2828
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002829static void
Eric Anholt673a3942008-07-30 12:06:12 -07002830i915_gem_retire_work_handler(struct work_struct *work)
2831{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002832 struct drm_i915_private *dev_priv =
2833 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2834 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002835 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002836
Chris Wilson891b48c2010-09-29 12:26:37 +01002837 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002838 idle = false;
2839 if (mutex_trylock(&dev->struct_mutex)) {
2840 idle = i915_gem_retire_requests(dev);
2841 mutex_unlock(&dev->struct_mutex);
2842 }
2843 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002844 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2845 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002846}
Chris Wilson891b48c2010-09-29 12:26:37 +01002847
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002848static void
2849i915_gem_idle_work_handler(struct work_struct *work)
2850{
2851 struct drm_i915_private *dev_priv =
2852 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002853
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002854 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002855}
2856
Ben Widawsky5816d642012-04-11 11:18:19 -07002857/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002858 * Ensures that an object will eventually get non-busy by flushing any required
2859 * write domains, emitting any outstanding lazy request and retiring and
2860 * completed requests.
2861 */
2862static int
2863i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2864{
2865 int ret;
2866
2867 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002868 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002869 if (ret)
2870 return ret;
2871
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002872 i915_gem_retire_requests_ring(obj->ring);
2873 }
2874
2875 return 0;
2876}
2877
2878/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002879 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2880 * @DRM_IOCTL_ARGS: standard ioctl arguments
2881 *
2882 * Returns 0 if successful, else an error is returned with the remaining time in
2883 * the timeout parameter.
2884 * -ETIME: object is still busy after timeout
2885 * -ERESTARTSYS: signal interrupted the wait
2886 * -ENONENT: object doesn't exist
2887 * Also possible, but rare:
2888 * -EAGAIN: GPU wedged
2889 * -ENOMEM: damn
2890 * -ENODEV: Internal IRQ fail
2891 * -E?: The add request failed
2892 *
2893 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2894 * non-zero timeout parameter the wait ioctl will wait for the given number of
2895 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2896 * without holding struct_mutex the object may become re-busied before this
2897 * function completes. A similar but shorter * race condition exists in the busy
2898 * ioctl
2899 */
2900int
2901i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2902{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002903 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002904 struct drm_i915_gem_wait *args = data;
2905 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002906 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002907 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002908 u32 seqno = 0;
2909 int ret = 0;
2910
Daniel Vetter11b5d512014-09-29 15:31:26 +02002911 if (args->flags != 0)
2912 return -EINVAL;
2913
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002914 ret = i915_mutex_lock_interruptible(dev);
2915 if (ret)
2916 return ret;
2917
2918 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2919 if (&obj->base == NULL) {
2920 mutex_unlock(&dev->struct_mutex);
2921 return -ENOENT;
2922 }
2923
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002924 /* Need to make sure the object gets inactive eventually. */
2925 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002926 if (ret)
2927 goto out;
2928
2929 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002930 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002931 ring = obj->ring;
2932 }
2933
2934 if (seqno == 0)
2935 goto out;
2936
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002937 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002938 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002939 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002940 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002941 ret = -ETIME;
2942 goto out;
2943 }
2944
2945 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002946 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002947 mutex_unlock(&dev->struct_mutex);
2948
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02002949 return __i915_wait_seqno(ring, seqno, reset_counter, true,
2950 &args->timeout_ns, file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002951
2952out:
2953 drm_gem_object_unreference(&obj->base);
2954 mutex_unlock(&dev->struct_mutex);
2955 return ret;
2956}
2957
2958/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002959 * i915_gem_object_sync - sync an object to a ring.
2960 *
2961 * @obj: object which may be in use on another ring.
2962 * @to: ring we wish to use the object on. May be NULL.
2963 *
2964 * This code is meant to abstract object synchronization with the GPU.
2965 * Calling with NULL implies synchronizing the object with the CPU
2966 * rather than a particular GPU ring.
2967 *
2968 * Returns 0 if successful, else propagates up the lower layer error.
2969 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002970int
2971i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002972 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002973{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002974 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002975 u32 seqno;
2976 int ret, idx;
2977
2978 if (from == NULL || to == from)
2979 return 0;
2980
Ben Widawsky5816d642012-04-11 11:18:19 -07002981 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002982 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002983
2984 idx = intel_ring_sync_index(from, to);
2985
Chris Wilson0201f1e2012-07-20 12:41:01 +01002986 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002987 /* Optimization: Avoid semaphore sync when we are sure we already
2988 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002989 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002990 return 0;
2991
Ben Widawskyb4aca012012-04-25 20:50:12 -07002992 ret = i915_gem_check_olr(obj->ring, seqno);
2993 if (ret)
2994 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002995
Chris Wilsonb52b89d2013-09-25 11:43:28 +01002996 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07002997 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002998 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002999 /* We use last_read_seqno because sync_to()
3000 * might have just caused seqno wrap under
3001 * the radar.
3002 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003003 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07003004
Ben Widawskye3a5a222012-04-11 11:18:20 -07003005 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003006}
3007
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003008static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3009{
3010 u32 old_write_domain, old_read_domains;
3011
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003012 /* Force a pagefault for domain tracking on next user access */
3013 i915_gem_release_mmap(obj);
3014
Keith Packardb97c3d92011-06-24 21:02:59 -07003015 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3016 return;
3017
Chris Wilson97c809fd2012-10-09 19:24:38 +01003018 /* Wait for any direct GTT access to complete */
3019 mb();
3020
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003021 old_read_domains = obj->base.read_domains;
3022 old_write_domain = obj->base.write_domain;
3023
3024 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3025 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3026
3027 trace_i915_gem_object_change_domain(obj,
3028 old_read_domains,
3029 old_write_domain);
3030}
3031
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003032int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003033{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003034 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003035 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003036 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003037
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003038 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003039 return 0;
3040
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003041 if (!drm_mm_node_allocated(&vma->node)) {
3042 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003043 return 0;
3044 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003045
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003046 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003047 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003048
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003049 BUG_ON(obj->pages == NULL);
3050
Chris Wilsona8198ee2011-04-13 22:04:09 +01003051 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003052 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003053 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003054 /* Continue on if we fail due to EIO, the GPU is hung so we
3055 * should be safe and we need to cleanup or else we might
3056 * cause memory corruption through use-after-free.
3057 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003058
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003059 /* Throw away the active reference before moving to the unbound list */
3060 i915_gem_object_retire(obj);
3061
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003062 if (i915_is_ggtt(vma->vm)) {
3063 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003064
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003065 /* release the fence reg _after_ flushing */
3066 ret = i915_gem_object_put_fence(obj);
3067 if (ret)
3068 return ret;
3069 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003070
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003071 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003072
Ben Widawsky6f65e292013-12-06 14:10:56 -08003073 vma->unbind_vma(vma);
3074
Chris Wilson64bf9302014-02-25 14:23:28 +00003075 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003076 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003077 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003078
Ben Widawsky2f633152013-07-17 12:19:03 -07003079 drm_mm_remove_node(&vma->node);
3080 i915_gem_vma_destroy(vma);
3081
3082 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003083 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003084 if (list_empty(&obj->vma_list)) {
3085 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003086 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003087 }
Eric Anholt673a3942008-07-30 12:06:12 -07003088
Chris Wilson70903c32013-12-04 09:59:09 +00003089 /* And finally now the object is completely decoupled from this vma,
3090 * we can drop its hold on the backing storage and allow it to be
3091 * reaped by the shrinker.
3092 */
3093 i915_gem_object_unpin_pages(obj);
3094
Chris Wilson88241782011-01-07 17:09:48 +00003095 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003096}
3097
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003098int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003099{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003100 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003101 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003102 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003103
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003104 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003105 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003106 if (!i915.enable_execlists) {
3107 ret = i915_switch_context(ring, ring->default_context);
3108 if (ret)
3109 return ret;
3110 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003111
Chris Wilson3e960502012-11-27 16:22:54 +00003112 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003113 if (ret)
3114 return ret;
3115 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003116
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003117 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003118}
3119
Chris Wilson9ce079e2012-04-17 15:31:30 +01003120static void i965_write_fence_reg(struct drm_device *dev, int reg,
3121 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003122{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003123 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003124 int fence_reg;
3125 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003126
Imre Deak56c844e2013-01-07 21:47:34 +02003127 if (INTEL_INFO(dev)->gen >= 6) {
3128 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3129 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3130 } else {
3131 fence_reg = FENCE_REG_965_0;
3132 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3133 }
3134
Chris Wilsond18b9612013-07-10 13:36:23 +01003135 fence_reg += reg * 8;
3136
3137 /* To w/a incoherency with non-atomic 64-bit register updates,
3138 * we split the 64-bit update into two 32-bit writes. In order
3139 * for a partial fence not to be evaluated between writes, we
3140 * precede the update with write to turn off the fence register,
3141 * and only enable the fence as the last step.
3142 *
3143 * For extra levels of paranoia, we make sure each step lands
3144 * before applying the next step.
3145 */
3146 I915_WRITE(fence_reg, 0);
3147 POSTING_READ(fence_reg);
3148
Chris Wilson9ce079e2012-04-17 15:31:30 +01003149 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003150 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003151 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003152
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003153 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003154 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003155 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003156 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003157 if (obj->tiling_mode == I915_TILING_Y)
3158 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3159 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003160
Chris Wilsond18b9612013-07-10 13:36:23 +01003161 I915_WRITE(fence_reg + 4, val >> 32);
3162 POSTING_READ(fence_reg + 4);
3163
3164 I915_WRITE(fence_reg + 0, val);
3165 POSTING_READ(fence_reg);
3166 } else {
3167 I915_WRITE(fence_reg + 4, 0);
3168 POSTING_READ(fence_reg + 4);
3169 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003170}
3171
Chris Wilson9ce079e2012-04-17 15:31:30 +01003172static void i915_write_fence_reg(struct drm_device *dev, int reg,
3173 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003174{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003175 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003176 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003177
Chris Wilson9ce079e2012-04-17 15:31:30 +01003178 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003179 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003180 int pitch_val;
3181 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003182
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003183 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003184 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003185 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3186 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3187 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003188
3189 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3190 tile_width = 128;
3191 else
3192 tile_width = 512;
3193
3194 /* Note: pitch better be a power of two tile widths */
3195 pitch_val = obj->stride / tile_width;
3196 pitch_val = ffs(pitch_val) - 1;
3197
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003198 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003199 if (obj->tiling_mode == I915_TILING_Y)
3200 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3201 val |= I915_FENCE_SIZE_BITS(size);
3202 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3203 val |= I830_FENCE_REG_VALID;
3204 } else
3205 val = 0;
3206
3207 if (reg < 8)
3208 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003209 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003210 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003211
Chris Wilson9ce079e2012-04-17 15:31:30 +01003212 I915_WRITE(reg, val);
3213 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003214}
3215
Chris Wilson9ce079e2012-04-17 15:31:30 +01003216static void i830_write_fence_reg(struct drm_device *dev, int reg,
3217 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003218{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003219 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003220 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003221
Chris Wilson9ce079e2012-04-17 15:31:30 +01003222 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003223 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003224 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003225
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003226 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003227 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003228 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3229 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3230 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003231
Chris Wilson9ce079e2012-04-17 15:31:30 +01003232 pitch_val = obj->stride / 128;
3233 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003234
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003235 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003236 if (obj->tiling_mode == I915_TILING_Y)
3237 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3238 val |= I830_FENCE_SIZE_BITS(size);
3239 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3240 val |= I830_FENCE_REG_VALID;
3241 } else
3242 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003243
Chris Wilson9ce079e2012-04-17 15:31:30 +01003244 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3245 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3246}
3247
Chris Wilsond0a57782012-10-09 19:24:37 +01003248inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3249{
3250 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3251}
3252
Chris Wilson9ce079e2012-04-17 15:31:30 +01003253static void i915_gem_write_fence(struct drm_device *dev, int reg,
3254 struct drm_i915_gem_object *obj)
3255{
Chris Wilsond0a57782012-10-09 19:24:37 +01003256 struct drm_i915_private *dev_priv = dev->dev_private;
3257
3258 /* Ensure that all CPU reads are completed before installing a fence
3259 * and all writes before removing the fence.
3260 */
3261 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3262 mb();
3263
Daniel Vetter94a335d2013-07-17 14:51:28 +02003264 WARN(obj && (!obj->stride || !obj->tiling_mode),
3265 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3266 obj->stride, obj->tiling_mode);
3267
Chris Wilson9ce079e2012-04-17 15:31:30 +01003268 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003269 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003270 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003271 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003272 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003273 case 5:
3274 case 4: i965_write_fence_reg(dev, reg, obj); break;
3275 case 3: i915_write_fence_reg(dev, reg, obj); break;
3276 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003277 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003278 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003279
3280 /* And similarly be paranoid that no direct access to this region
3281 * is reordered to before the fence is installed.
3282 */
3283 if (i915_gem_object_needs_mb(obj))
3284 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003285}
3286
Chris Wilson61050802012-04-17 15:31:31 +01003287static inline int fence_number(struct drm_i915_private *dev_priv,
3288 struct drm_i915_fence_reg *fence)
3289{
3290 return fence - dev_priv->fence_regs;
3291}
3292
3293static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3294 struct drm_i915_fence_reg *fence,
3295 bool enable)
3296{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003297 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003298 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003299
Chris Wilson46a0b632013-07-10 13:36:24 +01003300 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003301
3302 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003303 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003304 fence->obj = obj;
3305 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3306 } else {
3307 obj->fence_reg = I915_FENCE_REG_NONE;
3308 fence->obj = NULL;
3309 list_del_init(&fence->lru_list);
3310 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003311 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003312}
3313
Chris Wilsond9e86c02010-11-10 16:40:20 +00003314static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003315i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003316{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003317 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003318 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003319 if (ret)
3320 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003321
3322 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003323 }
3324
3325 return 0;
3326}
3327
3328int
3329i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3330{
Chris Wilson61050802012-04-17 15:31:31 +01003331 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003332 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003333 int ret;
3334
Chris Wilsond0a57782012-10-09 19:24:37 +01003335 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003336 if (ret)
3337 return ret;
3338
Chris Wilson61050802012-04-17 15:31:31 +01003339 if (obj->fence_reg == I915_FENCE_REG_NONE)
3340 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003341
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003342 fence = &dev_priv->fence_regs[obj->fence_reg];
3343
Daniel Vetteraff10b302014-02-14 14:06:05 +01003344 if (WARN_ON(fence->pin_count))
3345 return -EBUSY;
3346
Chris Wilson61050802012-04-17 15:31:31 +01003347 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003348 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003349
3350 return 0;
3351}
3352
3353static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003354i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003355{
Daniel Vetterae3db242010-02-19 11:51:58 +01003356 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003357 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003358 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003359
3360 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003361 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003362 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3363 reg = &dev_priv->fence_regs[i];
3364 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003365 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003366
Chris Wilson1690e1e2011-12-14 13:57:08 +01003367 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003368 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003369 }
3370
Chris Wilsond9e86c02010-11-10 16:40:20 +00003371 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003372 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003373
3374 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003375 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003376 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003377 continue;
3378
Chris Wilson8fe301a2012-04-17 15:31:28 +01003379 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003380 }
3381
Chris Wilson5dce5b932014-01-20 10:17:36 +00003382deadlock:
3383 /* Wait for completion of pending flips which consume fences */
3384 if (intel_has_pending_fb_unpin(dev))
3385 return ERR_PTR(-EAGAIN);
3386
3387 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003388}
3389
Jesse Barnesde151cf2008-11-12 10:03:55 -08003390/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003391 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003392 * @obj: object to map through a fence reg
3393 *
3394 * When mapping objects through the GTT, userspace wants to be able to write
3395 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003396 * This function walks the fence regs looking for a free one for @obj,
3397 * stealing one if it can't find any.
3398 *
3399 * It then sets up the reg based on the object's properties: address, pitch
3400 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003401 *
3402 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003403 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003404int
Chris Wilson06d98132012-04-17 15:31:24 +01003405i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003406{
Chris Wilson05394f32010-11-08 19:18:58 +00003407 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003408 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003409 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003410 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003411 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003412
Chris Wilson14415742012-04-17 15:31:33 +01003413 /* Have we updated the tiling parameters upon the object and so
3414 * will need to serialise the write to the associated fence register?
3415 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003416 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003417 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003418 if (ret)
3419 return ret;
3420 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003421
Chris Wilsond9e86c02010-11-10 16:40:20 +00003422 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003423 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3424 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003425 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003426 list_move_tail(&reg->lru_list,
3427 &dev_priv->mm.fence_list);
3428 return 0;
3429 }
3430 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003431 if (WARN_ON(!obj->map_and_fenceable))
3432 return -EINVAL;
3433
Chris Wilson14415742012-04-17 15:31:33 +01003434 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003435 if (IS_ERR(reg))
3436 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003437
Chris Wilson14415742012-04-17 15:31:33 +01003438 if (reg->obj) {
3439 struct drm_i915_gem_object *old = reg->obj;
3440
Chris Wilsond0a57782012-10-09 19:24:37 +01003441 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003442 if (ret)
3443 return ret;
3444
Chris Wilson14415742012-04-17 15:31:33 +01003445 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003446 }
Chris Wilson14415742012-04-17 15:31:33 +01003447 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003448 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003449
Chris Wilson14415742012-04-17 15:31:33 +01003450 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003451
Chris Wilson9ce079e2012-04-17 15:31:30 +01003452 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003453}
3454
Chris Wilson4144f9b2014-09-11 08:43:48 +01003455static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003456 unsigned long cache_level)
3457{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003458 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003459 struct drm_mm_node *other;
3460
Chris Wilson4144f9b2014-09-11 08:43:48 +01003461 /*
3462 * On some machines we have to be careful when putting differing types
3463 * of snoopable memory together to avoid the prefetcher crossing memory
3464 * domains and dying. During vm initialisation, we decide whether or not
3465 * these constraints apply and set the drm_mm.color_adjust
3466 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003467 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003468 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003469 return true;
3470
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003471 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003472 return true;
3473
3474 if (list_empty(&gtt_space->node_list))
3475 return true;
3476
3477 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3478 if (other->allocated && !other->hole_follows && other->color != cache_level)
3479 return false;
3480
3481 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3482 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3483 return false;
3484
3485 return true;
3486}
3487
Jesse Barnesde151cf2008-11-12 10:03:55 -08003488/**
Eric Anholt673a3942008-07-30 12:06:12 -07003489 * Finds free space in the GTT aperture and binds the object there.
3490 */
Daniel Vetter262de142014-02-14 14:01:20 +01003491static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003492i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3493 struct i915_address_space *vm,
3494 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003495 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003496{
Chris Wilson05394f32010-11-08 19:18:58 +00003497 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003498 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003499 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003500 unsigned long start =
3501 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3502 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003503 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003504 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003505 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003506
Chris Wilsone28f8712011-07-18 13:11:49 -07003507 fence_size = i915_gem_get_gtt_size(dev,
3508 obj->base.size,
3509 obj->tiling_mode);
3510 fence_alignment = i915_gem_get_gtt_alignment(dev,
3511 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003512 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003513 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003514 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003515 obj->base.size,
3516 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003517
Eric Anholt673a3942008-07-30 12:06:12 -07003518 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003519 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003520 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003521 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003522 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003523 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003524 }
3525
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003526 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003527
Chris Wilson654fc602010-05-27 13:18:21 +01003528 /* If the object is bigger than the entire aperture, reject it early
3529 * before evicting everything in a vain attempt to find space.
3530 */
Chris Wilsond23db882014-05-23 08:48:08 +02003531 if (obj->base.size > end) {
3532 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003533 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003534 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003535 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003536 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003537 }
3538
Chris Wilson37e680a2012-06-07 15:38:42 +01003539 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003540 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003541 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003542
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003543 i915_gem_object_pin_pages(obj);
3544
Ben Widawskyaccfef22013-08-14 11:38:35 +02003545 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003546 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003547 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003548
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003549search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003550 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003551 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003552 obj->cache_level,
3553 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003554 DRM_MM_SEARCH_DEFAULT,
3555 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003556 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003557 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003558 obj->cache_level,
3559 start, end,
3560 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003561 if (ret == 0)
3562 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003563
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003564 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003565 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003566 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003567 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003568 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003569 }
3570
Daniel Vetter74163902012-02-15 23:50:21 +01003571 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003572 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003573 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003574
Ben Widawsky35c20a62013-05-31 11:28:48 -07003575 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003576 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003577
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003578 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003579 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003580 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003581
Daniel Vetter262de142014-02-14 14:01:20 +01003582 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003583
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003584err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003585 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003586err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003587 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003588 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003589err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003590 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003591 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003592}
3593
Chris Wilson000433b2013-08-08 14:41:09 +01003594bool
Chris Wilson2c225692013-08-09 12:26:45 +01003595i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3596 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003597{
Eric Anholt673a3942008-07-30 12:06:12 -07003598 /* If we don't have a page list set up, then we're not pinned
3599 * to GPU, and we can ignore the cache flush because it'll happen
3600 * again at bind time.
3601 */
Chris Wilson05394f32010-11-08 19:18:58 +00003602 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003603 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003604
Imre Deak769ce462013-02-13 21:56:05 +02003605 /*
3606 * Stolen memory is always coherent with the GPU as it is explicitly
3607 * marked as wc by the system, or the system is cache-coherent.
3608 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003609 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003610 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003611
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003612 /* If the GPU is snooping the contents of the CPU cache,
3613 * we do not need to manually clear the CPU cache lines. However,
3614 * the caches are only snooped when the render cache is
3615 * flushed/invalidated. As we always have to emit invalidations
3616 * and flushes when moving into and out of the RENDER domain, correct
3617 * snooping behaviour occurs naturally as the result of our domain
3618 * tracking.
3619 */
Chris Wilson2c225692013-08-09 12:26:45 +01003620 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003621 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003622
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003623 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003624 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003625
3626 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003627}
3628
3629/** Flushes the GTT write domain for the object if it's dirty. */
3630static void
Chris Wilson05394f32010-11-08 19:18:58 +00003631i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003632{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003633 uint32_t old_write_domain;
3634
Chris Wilson05394f32010-11-08 19:18:58 +00003635 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003636 return;
3637
Chris Wilson63256ec2011-01-04 18:42:07 +00003638 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003639 * to it immediately go to main memory as far as we know, so there's
3640 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003641 *
3642 * However, we do have to enforce the order so that all writes through
3643 * the GTT land before any writes to the device, such as updates to
3644 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003645 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003646 wmb();
3647
Chris Wilson05394f32010-11-08 19:18:58 +00003648 old_write_domain = obj->base.write_domain;
3649 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003650
Daniel Vetterf99d7062014-06-19 16:01:59 +02003651 intel_fb_obj_flush(obj, false);
3652
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003653 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003654 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003655 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003656}
3657
3658/** Flushes the CPU write domain for the object if it's dirty. */
3659static void
Chris Wilson2c225692013-08-09 12:26:45 +01003660i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3661 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003662{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003663 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003664
Chris Wilson05394f32010-11-08 19:18:58 +00003665 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003666 return;
3667
Chris Wilson000433b2013-08-08 14:41:09 +01003668 if (i915_gem_clflush_object(obj, force))
3669 i915_gem_chipset_flush(obj->base.dev);
3670
Chris Wilson05394f32010-11-08 19:18:58 +00003671 old_write_domain = obj->base.write_domain;
3672 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003673
Daniel Vetterf99d7062014-06-19 16:01:59 +02003674 intel_fb_obj_flush(obj, false);
3675
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003676 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003677 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003678 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003679}
3680
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003681/**
3682 * Moves a single object to the GTT read, and possibly write domain.
3683 *
3684 * This function returns when the move is complete, including waiting on
3685 * flushes to occur.
3686 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003687int
Chris Wilson20217462010-11-23 15:26:33 +00003688i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003689{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003690 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003691 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003692 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003693 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003694
Eric Anholt02354392008-11-26 13:58:13 -08003695 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003696 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003697 return -EINVAL;
3698
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003699 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3700 return 0;
3701
Chris Wilson0201f1e2012-07-20 12:41:01 +01003702 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003703 if (ret)
3704 return ret;
3705
Chris Wilsonc8725f32014-03-17 12:21:55 +00003706 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003707 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003708
Chris Wilsond0a57782012-10-09 19:24:37 +01003709 /* Serialise direct access to this object with the barriers for
3710 * coherent writes from the GPU, by effectively invalidating the
3711 * GTT domain upon first access.
3712 */
3713 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3714 mb();
3715
Chris Wilson05394f32010-11-08 19:18:58 +00003716 old_write_domain = obj->base.write_domain;
3717 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003718
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003719 /* It should now be out of any other write domains, and we can update
3720 * the domain values for our changes.
3721 */
Chris Wilson05394f32010-11-08 19:18:58 +00003722 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3723 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003724 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003725 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3726 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3727 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003728 }
3729
Daniel Vetterf99d7062014-06-19 16:01:59 +02003730 if (write)
3731 intel_fb_obj_invalidate(obj, NULL);
3732
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003733 trace_i915_gem_object_change_domain(obj,
3734 old_read_domains,
3735 old_write_domain);
3736
Chris Wilson8325a092012-04-24 15:52:35 +01003737 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003738 if (i915_gem_object_is_inactive(obj))
3739 list_move_tail(&vma->mm_list,
3740 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003741
Eric Anholte47c68e2008-11-14 13:35:19 -08003742 return 0;
3743}
3744
Chris Wilsone4ffd172011-04-04 09:44:39 +01003745int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3746 enum i915_cache_level cache_level)
3747{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003748 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003749 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003750 int ret;
3751
3752 if (obj->cache_level == cache_level)
3753 return 0;
3754
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003755 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003756 DRM_DEBUG("can not change the cache level of pinned objects\n");
3757 return -EBUSY;
3758 }
3759
Chris Wilsondf6f7832014-03-21 07:40:56 +00003760 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003761 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003762 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003763 if (ret)
3764 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003765 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003766 }
3767
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003768 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003769 ret = i915_gem_object_finish_gpu(obj);
3770 if (ret)
3771 return ret;
3772
3773 i915_gem_object_finish_gtt(obj);
3774
3775 /* Before SandyBridge, you could not use tiling or fence
3776 * registers with snooped memory, so relinquish any fences
3777 * currently pointing to our region in the aperture.
3778 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003779 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003780 ret = i915_gem_object_put_fence(obj);
3781 if (ret)
3782 return ret;
3783 }
3784
Ben Widawsky6f65e292013-12-06 14:10:56 -08003785 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003786 if (drm_mm_node_allocated(&vma->node))
3787 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003788 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003789 }
3790
Chris Wilson2c225692013-08-09 12:26:45 +01003791 list_for_each_entry(vma, &obj->vma_list, vma_link)
3792 vma->node.color = cache_level;
3793 obj->cache_level = cache_level;
3794
3795 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003796 u32 old_read_domains, old_write_domain;
3797
3798 /* If we're coming from LLC cached, then we haven't
3799 * actually been tracking whether the data is in the
3800 * CPU cache or not, since we only allow one bit set
3801 * in obj->write_domain and have been skipping the clflushes.
3802 * Just set it to the CPU cache for now.
3803 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003804 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003805 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003806
3807 old_read_domains = obj->base.read_domains;
3808 old_write_domain = obj->base.write_domain;
3809
3810 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3811 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3812
3813 trace_i915_gem_object_change_domain(obj,
3814 old_read_domains,
3815 old_write_domain);
3816 }
3817
Chris Wilsone4ffd172011-04-04 09:44:39 +01003818 return 0;
3819}
3820
Ben Widawsky199adf42012-09-21 17:01:20 -07003821int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3822 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003823{
Ben Widawsky199adf42012-09-21 17:01:20 -07003824 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003825 struct drm_i915_gem_object *obj;
3826 int ret;
3827
3828 ret = i915_mutex_lock_interruptible(dev);
3829 if (ret)
3830 return ret;
3831
3832 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3833 if (&obj->base == NULL) {
3834 ret = -ENOENT;
3835 goto unlock;
3836 }
3837
Chris Wilson651d7942013-08-08 14:41:10 +01003838 switch (obj->cache_level) {
3839 case I915_CACHE_LLC:
3840 case I915_CACHE_L3_LLC:
3841 args->caching = I915_CACHING_CACHED;
3842 break;
3843
Chris Wilson4257d3b2013-08-08 14:41:11 +01003844 case I915_CACHE_WT:
3845 args->caching = I915_CACHING_DISPLAY;
3846 break;
3847
Chris Wilson651d7942013-08-08 14:41:10 +01003848 default:
3849 args->caching = I915_CACHING_NONE;
3850 break;
3851 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003852
3853 drm_gem_object_unreference(&obj->base);
3854unlock:
3855 mutex_unlock(&dev->struct_mutex);
3856 return ret;
3857}
3858
Ben Widawsky199adf42012-09-21 17:01:20 -07003859int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3860 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003861{
Ben Widawsky199adf42012-09-21 17:01:20 -07003862 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003863 struct drm_i915_gem_object *obj;
3864 enum i915_cache_level level;
3865 int ret;
3866
Ben Widawsky199adf42012-09-21 17:01:20 -07003867 switch (args->caching) {
3868 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003869 level = I915_CACHE_NONE;
3870 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003871 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003872 level = I915_CACHE_LLC;
3873 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003874 case I915_CACHING_DISPLAY:
3875 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3876 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003877 default:
3878 return -EINVAL;
3879 }
3880
Ben Widawsky3bc29132012-09-26 16:15:20 -07003881 ret = i915_mutex_lock_interruptible(dev);
3882 if (ret)
3883 return ret;
3884
Chris Wilsone6994ae2012-07-10 10:27:08 +01003885 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3886 if (&obj->base == NULL) {
3887 ret = -ENOENT;
3888 goto unlock;
3889 }
3890
3891 ret = i915_gem_object_set_cache_level(obj, level);
3892
3893 drm_gem_object_unreference(&obj->base);
3894unlock:
3895 mutex_unlock(&dev->struct_mutex);
3896 return ret;
3897}
3898
Chris Wilsoncc98b412013-08-09 12:25:09 +01003899static bool is_pin_display(struct drm_i915_gem_object *obj)
3900{
Oscar Mateo19656432014-05-16 14:20:43 +01003901 struct i915_vma *vma;
3902
Oscar Mateo19656432014-05-16 14:20:43 +01003903 vma = i915_gem_obj_to_ggtt(obj);
3904 if (!vma)
3905 return false;
3906
Chris Wilsoncc98b412013-08-09 12:25:09 +01003907 /* There are 3 sources that pin objects:
3908 * 1. The display engine (scanouts, sprites, cursors);
3909 * 2. Reservations for execbuffer;
3910 * 3. The user.
3911 *
3912 * We can ignore reservations as we hold the struct_mutex and
3913 * are only called outside of the reservation path. The user
3914 * can only increment pin_count once, and so if after
3915 * subtracting the potential reference by the user, any pin_count
3916 * remains, it must be due to another use by the display engine.
3917 */
Oscar Mateo19656432014-05-16 14:20:43 +01003918 return vma->pin_count - !!obj->user_pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003919}
3920
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003921/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003922 * Prepare buffer for display plane (scanout, cursors, etc).
3923 * Can be called from an uninterruptible phase (modesetting) and allows
3924 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003925 */
3926int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003927i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3928 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003929 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003930{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003931 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003932 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003933 int ret;
3934
Chris Wilson0be73282010-12-06 14:36:27 +00003935 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003936 ret = i915_gem_object_sync(obj, pipelined);
3937 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003938 return ret;
3939 }
3940
Chris Wilsoncc98b412013-08-09 12:25:09 +01003941 /* Mark the pin_display early so that we account for the
3942 * display coherency whilst setting up the cache domains.
3943 */
Oscar Mateo19656432014-05-16 14:20:43 +01003944 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003945 obj->pin_display = true;
3946
Eric Anholta7ef0642011-03-29 16:59:54 -07003947 /* The display engine is not coherent with the LLC cache on gen6. As
3948 * a result, we make sure that the pinning that is about to occur is
3949 * done with uncached PTEs. This is lowest common denominator for all
3950 * chipsets.
3951 *
3952 * However for gen6+, we could do better by using the GFDT bit instead
3953 * of uncaching, which would allow us to flush all the LLC-cached data
3954 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3955 */
Chris Wilson651d7942013-08-08 14:41:10 +01003956 ret = i915_gem_object_set_cache_level(obj,
3957 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003958 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003959 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003960
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003961 /* As the user may map the buffer once pinned in the display plane
3962 * (e.g. libkms for the bootup splash), we have to ensure that we
3963 * always use map_and_fenceable for all scanout buffers.
3964 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003965 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003966 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003967 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003968
Chris Wilson2c225692013-08-09 12:26:45 +01003969 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003970
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003971 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003972 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003973
3974 /* It should now be out of any other write domains, and we can update
3975 * the domain values for our changes.
3976 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003977 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003978 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003979
3980 trace_i915_gem_object_change_domain(obj,
3981 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003982 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003983
3984 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003985
3986err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003987 WARN_ON(was_pin_display != is_pin_display(obj));
3988 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003989 return ret;
3990}
3991
3992void
3993i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3994{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003995 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003996 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003997}
3998
Chris Wilson85345512010-11-13 09:49:11 +00003999int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004000i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004001{
Chris Wilson88241782011-01-07 17:09:48 +00004002 int ret;
4003
Chris Wilsona8198ee2011-04-13 22:04:09 +01004004 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004005 return 0;
4006
Chris Wilson0201f1e2012-07-20 12:41:01 +01004007 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004008 if (ret)
4009 return ret;
4010
Chris Wilsona8198ee2011-04-13 22:04:09 +01004011 /* Ensure that we invalidate the GPU's caches and TLBs. */
4012 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004013 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004014}
4015
Eric Anholte47c68e2008-11-14 13:35:19 -08004016/**
4017 * Moves a single object to the CPU read, and possibly write domain.
4018 *
4019 * This function returns when the move is complete, including waiting on
4020 * flushes to occur.
4021 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004022int
Chris Wilson919926a2010-11-12 13:42:53 +00004023i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004024{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004025 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004026 int ret;
4027
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004028 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4029 return 0;
4030
Chris Wilson0201f1e2012-07-20 12:41:01 +01004031 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004032 if (ret)
4033 return ret;
4034
Chris Wilsonc8725f32014-03-17 12:21:55 +00004035 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004036 i915_gem_object_flush_gtt_write_domain(obj);
4037
Chris Wilson05394f32010-11-08 19:18:58 +00004038 old_write_domain = obj->base.write_domain;
4039 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004040
Eric Anholte47c68e2008-11-14 13:35:19 -08004041 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004042 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004043 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004044
Chris Wilson05394f32010-11-08 19:18:58 +00004045 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004046 }
4047
4048 /* It should now be out of any other write domains, and we can update
4049 * the domain values for our changes.
4050 */
Chris Wilson05394f32010-11-08 19:18:58 +00004051 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004052
4053 /* If we're writing through the CPU, then the GPU read domains will
4054 * need to be invalidated at next use.
4055 */
4056 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004057 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4058 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004059 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004060
Daniel Vetterf99d7062014-06-19 16:01:59 +02004061 if (write)
4062 intel_fb_obj_invalidate(obj, NULL);
4063
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004064 trace_i915_gem_object_change_domain(obj,
4065 old_read_domains,
4066 old_write_domain);
4067
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004068 return 0;
4069}
4070
Eric Anholt673a3942008-07-30 12:06:12 -07004071/* Throttle our rendering by waiting until the ring has completed our requests
4072 * emitted over 20 msec ago.
4073 *
Eric Anholtb9624422009-06-03 07:27:35 +00004074 * Note that if we were to use the current jiffies each time around the loop,
4075 * we wouldn't escape the function with any frames outstanding if the time to
4076 * render a frame was over 20ms.
4077 *
Eric Anholt673a3942008-07-30 12:06:12 -07004078 * This should get us reasonable parallelism between CPU and GPU but also
4079 * relatively low latency when blocking on a particular request to finish.
4080 */
4081static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004082i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004083{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004084 struct drm_i915_private *dev_priv = dev->dev_private;
4085 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004086 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004087 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004088 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004089 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004090 u32 seqno = 0;
4091 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004092
Daniel Vetter308887a2012-11-14 17:14:06 +01004093 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4094 if (ret)
4095 return ret;
4096
4097 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4098 if (ret)
4099 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004100
Chris Wilson1c255952010-09-26 11:03:27 +01004101 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004102 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004103 if (time_after_eq(request->emitted_jiffies, recent_enough))
4104 break;
4105
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004106 ring = request->ring;
4107 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004108 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004109 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004110 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004111
4112 if (seqno == 0)
4113 return 0;
4114
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02004115 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004116 if (ret == 0)
4117 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004118
Eric Anholt673a3942008-07-30 12:06:12 -07004119 return ret;
4120}
4121
Chris Wilsond23db882014-05-23 08:48:08 +02004122static bool
4123i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4124{
4125 struct drm_i915_gem_object *obj = vma->obj;
4126
4127 if (alignment &&
4128 vma->node.start & (alignment - 1))
4129 return true;
4130
4131 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4132 return true;
4133
4134 if (flags & PIN_OFFSET_BIAS &&
4135 vma->node.start < (flags & PIN_OFFSET_MASK))
4136 return true;
4137
4138 return false;
4139}
4140
Eric Anholt673a3942008-07-30 12:06:12 -07004141int
Chris Wilson05394f32010-11-08 19:18:58 +00004142i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004143 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004144 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004145 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004146{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004147 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004148 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004149 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004150 int ret;
4151
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004152 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4153 return -ENODEV;
4154
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004155 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004156 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004157
Chris Wilsonc826c442014-10-31 13:53:53 +00004158 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4159 return -EINVAL;
4160
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004161 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004162 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004163 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4164 return -EBUSY;
4165
Chris Wilsond23db882014-05-23 08:48:08 +02004166 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004167 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004168 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004169 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004170 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004171 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004172 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004173 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004174 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004175 if (ret)
4176 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004177
4178 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004179 }
4180 }
4181
Chris Wilsonef79e172014-10-31 13:53:52 +00004182 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004183 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004184 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4185 if (IS_ERR(vma))
4186 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004187 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004188
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004189 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004190 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004191
Chris Wilsonef79e172014-10-31 13:53:52 +00004192 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4193 bool mappable, fenceable;
4194 u32 fence_size, fence_alignment;
4195
4196 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4197 obj->base.size,
4198 obj->tiling_mode);
4199 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4200 obj->base.size,
4201 obj->tiling_mode,
4202 true);
4203
4204 fenceable = (vma->node.size == fence_size &&
4205 (vma->node.start & (fence_alignment - 1)) == 0);
4206
4207 mappable = (vma->node.start + obj->base.size <=
4208 dev_priv->gtt.mappable_end);
4209
4210 obj->map_and_fenceable = mappable && fenceable;
4211 }
4212
4213 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4214
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004215 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004216 if (flags & PIN_MAPPABLE)
4217 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004218
4219 return 0;
4220}
4221
4222void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004223i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004224{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004225 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004226
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004227 BUG_ON(!vma);
4228 BUG_ON(vma->pin_count == 0);
4229 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4230
4231 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004232 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004233}
4234
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004235bool
4236i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4237{
4238 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4239 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4240 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4241
4242 WARN_ON(!ggtt_vma ||
4243 dev_priv->fence_regs[obj->fence_reg].pin_count >
4244 ggtt_vma->pin_count);
4245 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4246 return true;
4247 } else
4248 return false;
4249}
4250
4251void
4252i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4253{
4254 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4255 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4256 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4257 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4258 }
4259}
4260
Eric Anholt673a3942008-07-30 12:06:12 -07004261int
4262i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004263 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004264{
4265 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004266 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004267 int ret;
4268
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004269 if (drm_core_check_feature(dev, DRIVER_MODESET))
Daniel Vetter02f6bcc2013-12-18 16:30:22 +01004270 return -ENODEV;
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 }
Eric Anholt673a3942008-07-30 12:06:12 -07004281
Chris Wilson05394f32010-11-08 19:18:58 +00004282 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004283 DRM_DEBUG("Attempting to pin a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00004284 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004285 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004286 }
4287
Chris Wilson05394f32010-11-08 19:18:58 +00004288 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004289 DRM_DEBUG("Already pinned in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004290 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004291 ret = -EINVAL;
4292 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004293 }
4294
Daniel Vetteraa5f8022013-10-10 14:46:37 +02004295 if (obj->user_pin_count == ULONG_MAX) {
4296 ret = -EBUSY;
4297 goto out;
4298 }
4299
Chris Wilson93be8782013-01-02 10:31:22 +00004300 if (obj->user_pin_count == 0) {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004301 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, PIN_MAPPABLE);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004302 if (ret)
4303 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004304 }
4305
Chris Wilson93be8782013-01-02 10:31:22 +00004306 obj->user_pin_count++;
4307 obj->pin_filp = file;
4308
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004309 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004310out:
Chris Wilson05394f32010-11-08 19:18:58 +00004311 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004312unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004313 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004314 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004315}
4316
4317int
4318i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004319 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004320{
4321 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004322 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004323 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004324
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004325 if (drm_core_check_feature(dev, DRIVER_MODESET))
4326 return -ENODEV;
4327
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004328 ret = i915_mutex_lock_interruptible(dev);
4329 if (ret)
4330 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004331
Chris Wilson05394f32010-11-08 19:18:58 +00004332 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004333 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004334 ret = -ENOENT;
4335 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004336 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004337
Chris Wilson05394f32010-11-08 19:18:58 +00004338 if (obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004339 DRM_DEBUG("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004340 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004341 ret = -EINVAL;
4342 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004343 }
Chris Wilson05394f32010-11-08 19:18:58 +00004344 obj->user_pin_count--;
4345 if (obj->user_pin_count == 0) {
4346 obj->pin_filp = NULL;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004347 i915_gem_object_ggtt_unpin(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004348 }
Eric Anholt673a3942008-07-30 12:06:12 -07004349
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004350out:
Chris Wilson05394f32010-11-08 19:18:58 +00004351 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004352unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004353 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004354 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004355}
4356
4357int
4358i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004359 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004360{
4361 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004362 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004363 int ret;
4364
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004365 ret = i915_mutex_lock_interruptible(dev);
4366 if (ret)
4367 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004368
Chris Wilson05394f32010-11-08 19:18:58 +00004369 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004370 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004371 ret = -ENOENT;
4372 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004373 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004374
Chris Wilson0be555b2010-08-04 15:36:30 +01004375 /* Count all active objects as busy, even if they are currently not used
4376 * by the gpu. Users of this interface expect objects to eventually
4377 * become non-busy without any further actions, therefore emit any
4378 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004379 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004380 ret = i915_gem_object_flush_active(obj);
4381
Chris Wilson05394f32010-11-08 19:18:58 +00004382 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004383 if (obj->ring) {
4384 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4385 args->busy |= intel_ring_flag(obj->ring) << 16;
4386 }
Eric Anholt673a3942008-07-30 12:06:12 -07004387
Chris Wilson05394f32010-11-08 19:18:58 +00004388 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004389unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004390 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004391 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004392}
4393
4394int
4395i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4396 struct drm_file *file_priv)
4397{
Akshay Joshi0206e352011-08-16 15:34:10 -04004398 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004399}
4400
Chris Wilson3ef94da2009-09-14 16:50:29 +01004401int
4402i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4403 struct drm_file *file_priv)
4404{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004405 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004406 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004407 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004408 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004409
4410 switch (args->madv) {
4411 case I915_MADV_DONTNEED:
4412 case I915_MADV_WILLNEED:
4413 break;
4414 default:
4415 return -EINVAL;
4416 }
4417
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004418 ret = i915_mutex_lock_interruptible(dev);
4419 if (ret)
4420 return ret;
4421
Chris Wilson05394f32010-11-08 19:18:58 +00004422 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004423 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004424 ret = -ENOENT;
4425 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004426 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004427
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004428 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004429 ret = -EINVAL;
4430 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004431 }
4432
Daniel Vetter656bfa32014-11-20 09:26:30 +01004433 if (obj->pages &&
4434 obj->tiling_mode != I915_TILING_NONE &&
4435 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4436 if (obj->madv == I915_MADV_WILLNEED)
4437 i915_gem_object_unpin_pages(obj);
4438 if (args->madv == I915_MADV_WILLNEED)
4439 i915_gem_object_pin_pages(obj);
4440 }
4441
Chris Wilson05394f32010-11-08 19:18:58 +00004442 if (obj->madv != __I915_MADV_PURGED)
4443 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004444
Chris Wilson6c085a72012-08-20 11:40:46 +02004445 /* if the object is no longer attached, discard its backing storage */
4446 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004447 i915_gem_object_truncate(obj);
4448
Chris Wilson05394f32010-11-08 19:18:58 +00004449 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004450
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004451out:
Chris Wilson05394f32010-11-08 19:18:58 +00004452 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004453unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004454 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004455 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004456}
4457
Chris Wilson37e680a2012-06-07 15:38:42 +01004458void i915_gem_object_init(struct drm_i915_gem_object *obj,
4459 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004460{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004461 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004462 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004463 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004464 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004465
Chris Wilson37e680a2012-06-07 15:38:42 +01004466 obj->ops = ops;
4467
Chris Wilson0327d6b2012-08-11 15:41:06 +01004468 obj->fence_reg = I915_FENCE_REG_NONE;
4469 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004470
4471 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4472}
4473
Chris Wilson37e680a2012-06-07 15:38:42 +01004474static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4475 .get_pages = i915_gem_object_get_pages_gtt,
4476 .put_pages = i915_gem_object_put_pages_gtt,
4477};
4478
Chris Wilson05394f32010-11-08 19:18:58 +00004479struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4480 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004481{
Daniel Vetterc397b902010-04-09 19:05:07 +00004482 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004483 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004484 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004485
Chris Wilson42dcedd2012-11-15 11:32:30 +00004486 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004487 if (obj == NULL)
4488 return NULL;
4489
4490 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004491 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004492 return NULL;
4493 }
4494
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004495 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4496 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4497 /* 965gm cannot relocate objects above 4GiB. */
4498 mask &= ~__GFP_HIGHMEM;
4499 mask |= __GFP_DMA32;
4500 }
4501
Al Viro496ad9a2013-01-23 17:07:38 -05004502 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004503 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004504
Chris Wilson37e680a2012-06-07 15:38:42 +01004505 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004506
Daniel Vetterc397b902010-04-09 19:05:07 +00004507 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4508 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4509
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004510 if (HAS_LLC(dev)) {
4511 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004512 * cache) for about a 10% performance improvement
4513 * compared to uncached. Graphics requests other than
4514 * display scanout are coherent with the CPU in
4515 * accessing this cache. This means in this mode we
4516 * don't need to clflush on the CPU side, and on the
4517 * GPU side we only need to flush internal caches to
4518 * get data visible to the CPU.
4519 *
4520 * However, we maintain the display planes as UC, and so
4521 * need to rebind when first used as such.
4522 */
4523 obj->cache_level = I915_CACHE_LLC;
4524 } else
4525 obj->cache_level = I915_CACHE_NONE;
4526
Daniel Vetterd861e332013-07-24 23:25:03 +02004527 trace_i915_gem_object_create(obj);
4528
Chris Wilson05394f32010-11-08 19:18:58 +00004529 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004530}
4531
Chris Wilson340fbd82014-05-22 09:16:52 +01004532static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4533{
4534 /* If we are the last user of the backing storage (be it shmemfs
4535 * pages or stolen etc), we know that the pages are going to be
4536 * immediately released. In this case, we can then skip copying
4537 * back the contents from the GPU.
4538 */
4539
4540 if (obj->madv != I915_MADV_WILLNEED)
4541 return false;
4542
4543 if (obj->base.filp == NULL)
4544 return true;
4545
4546 /* At first glance, this looks racy, but then again so would be
4547 * userspace racing mmap against close. However, the first external
4548 * reference to the filp can only be obtained through the
4549 * i915_gem_mmap_ioctl() which safeguards us against the user
4550 * acquiring such a reference whilst we are in the middle of
4551 * freeing the object.
4552 */
4553 return atomic_long_read(&obj->base.filp->f_count) == 1;
4554}
4555
Chris Wilson1488fc02012-04-24 15:47:31 +01004556void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004557{
Chris Wilson1488fc02012-04-24 15:47:31 +01004558 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004559 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004560 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004561 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004562
Paulo Zanonif65c9162013-11-27 18:20:34 -02004563 intel_runtime_pm_get(dev_priv);
4564
Chris Wilson26e12f892011-03-20 11:20:19 +00004565 trace_i915_gem_object_destroy(obj);
4566
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004567 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004568 int ret;
4569
4570 vma->pin_count = 0;
4571 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004572 if (WARN_ON(ret == -ERESTARTSYS)) {
4573 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004574
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004575 was_interruptible = dev_priv->mm.interruptible;
4576 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004577
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004578 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004579
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004580 dev_priv->mm.interruptible = was_interruptible;
4581 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004582 }
4583
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004584 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4585 * before progressing. */
4586 if (obj->stolen)
4587 i915_gem_object_unpin_pages(obj);
4588
Daniel Vettera071fa02014-06-18 23:28:09 +02004589 WARN_ON(obj->frontbuffer_bits);
4590
Daniel Vetter656bfa32014-11-20 09:26:30 +01004591 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4592 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4593 obj->tiling_mode != I915_TILING_NONE)
4594 i915_gem_object_unpin_pages(obj);
4595
Ben Widawsky401c29f2013-05-31 11:28:47 -07004596 if (WARN_ON(obj->pages_pin_count))
4597 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004598 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004599 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004600 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004601 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004602
Chris Wilson9da3da62012-06-01 15:20:22 +01004603 BUG_ON(obj->pages);
4604
Chris Wilson2f745ad2012-09-04 21:02:58 +01004605 if (obj->base.import_attach)
4606 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004607
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004608 if (obj->ops->release)
4609 obj->ops->release(obj);
4610
Chris Wilson05394f32010-11-08 19:18:58 +00004611 drm_gem_object_release(&obj->base);
4612 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004613
Chris Wilson05394f32010-11-08 19:18:58 +00004614 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004615 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004616
4617 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004618}
4619
Daniel Vettere656a6c2013-08-14 14:14:04 +02004620struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004621 struct i915_address_space *vm)
4622{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004623 struct i915_vma *vma;
4624 list_for_each_entry(vma, &obj->vma_list, vma_link)
4625 if (vma->vm == vm)
4626 return vma;
4627
4628 return NULL;
4629}
4630
Ben Widawsky2f633152013-07-17 12:19:03 -07004631void i915_gem_vma_destroy(struct i915_vma *vma)
4632{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004633 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004634 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004635
4636 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4637 if (!list_empty(&vma->exec_list))
4638 return;
4639
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004640 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004641
Daniel Vetter841cd772014-08-06 15:04:48 +02004642 if (!i915_is_ggtt(vm))
4643 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004644
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004645 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004646
Ben Widawsky2f633152013-07-17 12:19:03 -07004647 kfree(vma);
4648}
4649
Chris Wilsone3efda42014-04-09 09:19:41 +01004650static void
4651i915_gem_stop_ringbuffers(struct drm_device *dev)
4652{
4653 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004654 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004655 int i;
4656
4657 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004658 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004659}
4660
Jesse Barnes5669fca2009-02-17 15:13:31 -08004661int
Chris Wilson45c5f202013-10-16 11:50:01 +01004662i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004663{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004664 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004665 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004666
Chris Wilson45c5f202013-10-16 11:50:01 +01004667 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004668 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004669 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004670 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004671
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004672 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004673
Chris Wilson29105cc2010-01-07 10:39:13 +00004674 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004675 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004676 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004677
Chris Wilsone3efda42014-04-09 09:19:41 +01004678 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004679 mutex_unlock(&dev->struct_mutex);
4680
4681 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004682 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004683 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004684
Eric Anholt673a3942008-07-30 12:06:12 -07004685 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004686
4687err:
4688 mutex_unlock(&dev->struct_mutex);
4689 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004690}
4691
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004692int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004693{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004694 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004695 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004696 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4697 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004698 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004699
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004700 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004701 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004702
Ben Widawskyc3787e22013-09-17 21:12:44 -07004703 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4704 if (ret)
4705 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004706
Ben Widawskyc3787e22013-09-17 21:12:44 -07004707 /*
4708 * Note: We do not worry about the concurrent register cacheline hang
4709 * here because no other code should access these registers other than
4710 * at initialization time.
4711 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004712 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004713 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4714 intel_ring_emit(ring, reg_base + i);
4715 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004716 }
4717
Ben Widawskyc3787e22013-09-17 21:12:44 -07004718 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004719
Ben Widawskyc3787e22013-09-17 21:12:44 -07004720 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004721}
4722
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004723void i915_gem_init_swizzling(struct drm_device *dev)
4724{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004725 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004726
Daniel Vetter11782b02012-01-31 16:47:55 +01004727 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004728 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4729 return;
4730
4731 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4732 DISP_TILE_SURFACE_SWIZZLING);
4733
Daniel Vetter11782b02012-01-31 16:47:55 +01004734 if (IS_GEN5(dev))
4735 return;
4736
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004737 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4738 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004739 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004740 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004741 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004742 else if (IS_GEN8(dev))
4743 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004744 else
4745 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004746}
Daniel Vettere21af882012-02-09 20:53:27 +01004747
Chris Wilson67b1b572012-07-05 23:49:40 +01004748static bool
4749intel_enable_blt(struct drm_device *dev)
4750{
4751 if (!HAS_BLT(dev))
4752 return false;
4753
4754 /* The blitter was dysfunctional on early prototypes */
4755 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4756 DRM_INFO("BLT not supported on this pre-production hardware;"
4757 " graphics performance will be degraded.\n");
4758 return false;
4759 }
4760
4761 return true;
4762}
4763
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004764static void init_unused_ring(struct drm_device *dev, u32 base)
4765{
4766 struct drm_i915_private *dev_priv = dev->dev_private;
4767
4768 I915_WRITE(RING_CTL(base), 0);
4769 I915_WRITE(RING_HEAD(base), 0);
4770 I915_WRITE(RING_TAIL(base), 0);
4771 I915_WRITE(RING_START(base), 0);
4772}
4773
4774static void init_unused_rings(struct drm_device *dev)
4775{
4776 if (IS_I830(dev)) {
4777 init_unused_ring(dev, PRB1_BASE);
4778 init_unused_ring(dev, SRB0_BASE);
4779 init_unused_ring(dev, SRB1_BASE);
4780 init_unused_ring(dev, SRB2_BASE);
4781 init_unused_ring(dev, SRB3_BASE);
4782 } else if (IS_GEN2(dev)) {
4783 init_unused_ring(dev, SRB0_BASE);
4784 init_unused_ring(dev, SRB1_BASE);
4785 } else if (IS_GEN3(dev)) {
4786 init_unused_ring(dev, PRB1_BASE);
4787 init_unused_ring(dev, PRB2_BASE);
4788 }
4789}
4790
Oscar Mateoa83014d2014-07-24 17:04:21 +01004791int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004792{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004793 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004794 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004795
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004796 /*
4797 * At least 830 can leave some of the unused rings
4798 * "active" (ie. head != tail) after resume which
4799 * will prevent c3 entry. Makes sure all unused rings
4800 * are totally idle.
4801 */
4802 init_unused_rings(dev);
4803
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004804 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004805 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004806 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004807
4808 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004809 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004810 if (ret)
4811 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004812 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004813
Chris Wilson67b1b572012-07-05 23:49:40 +01004814 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004815 ret = intel_init_blt_ring_buffer(dev);
4816 if (ret)
4817 goto cleanup_bsd_ring;
4818 }
4819
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004820 if (HAS_VEBOX(dev)) {
4821 ret = intel_init_vebox_ring_buffer(dev);
4822 if (ret)
4823 goto cleanup_blt_ring;
4824 }
4825
Zhao Yakui845f74a2014-04-17 10:37:37 +08004826 if (HAS_BSD2(dev)) {
4827 ret = intel_init_bsd2_ring_buffer(dev);
4828 if (ret)
4829 goto cleanup_vebox_ring;
4830 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004831
Mika Kuoppala99433932013-01-22 14:12:17 +02004832 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4833 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004834 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004835
4836 return 0;
4837
Zhao Yakui845f74a2014-04-17 10:37:37 +08004838cleanup_bsd2_ring:
4839 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004840cleanup_vebox_ring:
4841 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004842cleanup_blt_ring:
4843 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4844cleanup_bsd_ring:
4845 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4846cleanup_render_ring:
4847 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4848
4849 return ret;
4850}
4851
4852int
4853i915_gem_init_hw(struct drm_device *dev)
4854{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004855 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004856 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004857
4858 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4859 return -EIO;
4860
Ben Widawsky59124502013-07-04 11:02:05 -07004861 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004862 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004863
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004864 if (IS_HASWELL(dev))
4865 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4866 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004867
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004868 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004869 if (IS_IVYBRIDGE(dev)) {
4870 u32 temp = I915_READ(GEN7_MSG_CTL);
4871 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4872 I915_WRITE(GEN7_MSG_CTL, temp);
4873 } else if (INTEL_INFO(dev)->gen >= 7) {
4874 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4875 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4876 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4877 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004878 }
4879
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004880 i915_gem_init_swizzling(dev);
4881
Oscar Mateoa83014d2014-07-24 17:04:21 +01004882 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004883 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004884 return ret;
4885
Ben Widawskyc3787e22013-09-17 21:12:44 -07004886 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4887 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4888
Ben Widawsky254f9652012-06-04 14:42:42 -07004889 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004890 * XXX: Contexts should only be initialized once. Doing a switch to the
4891 * default context switch however is something we'd like to do after
4892 * reset or thaw (the latter may not actually be necessary for HW, but
4893 * goes with our code better). Context switching requires rings (for
4894 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004895 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004896 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004897 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004898 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004899 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004900
4901 return ret;
4902 }
4903
4904 ret = i915_ppgtt_init_hw(dev);
4905 if (ret && ret != -EIO) {
4906 DRM_ERROR("PPGTT enable failed %d\n", ret);
4907 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004908 }
Daniel Vettere21af882012-02-09 20:53:27 +01004909
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004910 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004911}
4912
Chris Wilson1070a422012-04-24 15:47:41 +01004913int i915_gem_init(struct drm_device *dev)
4914{
4915 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004916 int ret;
4917
Oscar Mateo127f1002014-07-24 17:04:11 +01004918 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4919 i915.enable_execlists);
4920
Chris Wilson1070a422012-04-24 15:47:41 +01004921 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004922
4923 if (IS_VALLEYVIEW(dev)) {
4924 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004925 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4926 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4927 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004928 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4929 }
4930
Oscar Mateoa83014d2014-07-24 17:04:21 +01004931 if (!i915.enable_execlists) {
4932 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4933 dev_priv->gt.init_rings = i915_gem_init_rings;
4934 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4935 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004936 } else {
4937 dev_priv->gt.do_execbuf = intel_execlists_submission;
4938 dev_priv->gt.init_rings = intel_logical_rings_init;
4939 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4940 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004941 }
4942
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004943 ret = i915_gem_init_userptr(dev);
4944 if (ret) {
4945 mutex_unlock(&dev->struct_mutex);
4946 return ret;
4947 }
4948
Ben Widawskyd7e50082012-12-18 10:31:25 -08004949 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004950
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004951 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004952 if (ret) {
4953 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004954 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004955 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004956
Chris Wilson1070a422012-04-24 15:47:41 +01004957 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004958 if (ret == -EIO) {
4959 /* Allow ring initialisation to fail by marking the GPU as
4960 * wedged. But we only want to do this where the GPU is angry,
4961 * for all other failure, such as an allocation failure, bail.
4962 */
4963 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4964 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4965 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004966 }
Chris Wilson60990322014-04-09 09:19:42 +01004967 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004968
Chris Wilson60990322014-04-09 09:19:42 +01004969 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004970}
4971
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004972void
4973i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4974{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004975 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004976 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004977 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004978
Chris Wilsonb4519512012-05-11 14:29:30 +01004979 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004980 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004981}
4982
Chris Wilson64193402010-10-24 12:38:05 +01004983static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004984init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004985{
4986 INIT_LIST_HEAD(&ring->active_list);
4987 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004988}
4989
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004990void i915_init_vm(struct drm_i915_private *dev_priv,
4991 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004992{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004993 if (!i915_is_ggtt(vm))
4994 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004995 vm->dev = dev_priv->dev;
4996 INIT_LIST_HEAD(&vm->active_list);
4997 INIT_LIST_HEAD(&vm->inactive_list);
4998 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004999 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005000}
5001
Eric Anholt673a3942008-07-30 12:06:12 -07005002void
5003i915_gem_load(struct drm_device *dev)
5004{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005005 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00005006 int i;
5007
5008 dev_priv->slab =
5009 kmem_cache_create("i915_gem_object",
5010 sizeof(struct drm_i915_gem_object), 0,
5011 SLAB_HWCACHE_ALIGN,
5012 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005013
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005014 INIT_LIST_HEAD(&dev_priv->vm_list);
5015 i915_init_vm(dev_priv, &dev_priv->gtt.base);
5016
Ben Widawskya33afea2013-09-17 21:12:45 -07005017 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005018 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5019 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005020 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005021 for (i = 0; i < I915_NUM_RINGS; i++)
5022 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005023 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005024 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005025 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5026 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005027 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5028 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005029 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005030
Dave Airlie94400122010-07-20 13:15:31 +10005031 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02005032 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02005033 I915_WRITE(MI_ARB_STATE,
5034 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10005035 }
5036
Chris Wilson72bfa192010-12-19 11:42:05 +00005037 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5038
Jesse Barnesde151cf2008-11-12 10:03:55 -08005039 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08005040 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5041 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005042
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005043 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5044 dev_priv->num_fence_regs = 32;
5045 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005046 dev_priv->num_fence_regs = 16;
5047 else
5048 dev_priv->num_fence_regs = 8;
5049
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005050 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005051 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5052 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005053
Eric Anholt673a3942008-07-30 12:06:12 -07005054 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005055 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005056
Chris Wilsonce453d82011-02-21 14:43:56 +00005057 dev_priv->mm.interruptible = true;
5058
Chris Wilsonceabbba52014-03-25 13:23:04 +00005059 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5060 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5061 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5062 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005063
5064 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5065 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005066
5067 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005068}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005069
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005070void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005071{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005072 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005073
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005074 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5075
Eric Anholtb9624422009-06-03 07:27:35 +00005076 /* Clean up our request list when the client is going away, so that
5077 * later retire_requests won't dereference our soon-to-be-gone
5078 * file_priv.
5079 */
Chris Wilson1c255952010-09-26 11:03:27 +01005080 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005081 while (!list_empty(&file_priv->mm.request_list)) {
5082 struct drm_i915_gem_request *request;
5083
5084 request = list_first_entry(&file_priv->mm.request_list,
5085 struct drm_i915_gem_request,
5086 client_list);
5087 list_del(&request->client_list);
5088 request->file_priv = NULL;
5089 }
Chris Wilson1c255952010-09-26 11:03:27 +01005090 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005091}
Chris Wilson31169712009-09-14 16:50:28 +01005092
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005093static void
5094i915_gem_file_idle_work_handler(struct work_struct *work)
5095{
5096 struct drm_i915_file_private *file_priv =
5097 container_of(work, typeof(*file_priv), mm.idle_work.work);
5098
5099 atomic_set(&file_priv->rps_wait_boost, false);
5100}
5101
5102int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5103{
5104 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005105 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005106
5107 DRM_DEBUG_DRIVER("\n");
5108
5109 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5110 if (!file_priv)
5111 return -ENOMEM;
5112
5113 file->driver_priv = file_priv;
5114 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005115 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005116
5117 spin_lock_init(&file_priv->mm.lock);
5118 INIT_LIST_HEAD(&file_priv->mm.request_list);
5119 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5120 i915_gem_file_idle_work_handler);
5121
Ben Widawskye422b882013-12-06 14:10:58 -08005122 ret = i915_gem_context_open(dev, file);
5123 if (ret)
5124 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005125
Ben Widawskye422b882013-12-06 14:10:58 -08005126 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005127}
5128
Daniel Vetterb680c372014-09-19 18:27:27 +02005129/**
5130 * i915_gem_track_fb - update frontbuffer tracking
5131 * old: current GEM buffer for the frontbuffer slots
5132 * new: new GEM buffer for the frontbuffer slots
5133 * frontbuffer_bits: bitmask of frontbuffer slots
5134 *
5135 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5136 * from @old and setting them in @new. Both @old and @new can be NULL.
5137 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005138void i915_gem_track_fb(struct drm_i915_gem_object *old,
5139 struct drm_i915_gem_object *new,
5140 unsigned frontbuffer_bits)
5141{
5142 if (old) {
5143 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5144 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5145 old->frontbuffer_bits &= ~frontbuffer_bits;
5146 }
5147
5148 if (new) {
5149 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5150 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5151 new->frontbuffer_bits |= frontbuffer_bits;
5152 }
5153}
5154
Chris Wilson57745062012-11-21 13:04:04 +00005155static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5156{
5157 if (!mutex_is_locked(mutex))
5158 return false;
5159
5160#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5161 return mutex->owner == task;
5162#else
5163 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5164 return false;
5165#endif
5166}
5167
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005168static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5169{
5170 if (!mutex_trylock(&dev->struct_mutex)) {
5171 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5172 return false;
5173
5174 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5175 return false;
5176
5177 *unlock = false;
5178 } else
5179 *unlock = true;
5180
5181 return true;
5182}
5183
Chris Wilsonceabbba52014-03-25 13:23:04 +00005184static int num_vma_bound(struct drm_i915_gem_object *obj)
5185{
5186 struct i915_vma *vma;
5187 int count = 0;
5188
5189 list_for_each_entry(vma, &obj->vma_list, vma_link)
5190 if (drm_mm_node_allocated(&vma->node))
5191 count++;
5192
5193 return count;
5194}
5195
Dave Chinner7dc19d52013-08-28 10:18:11 +10005196static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005197i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005198{
Chris Wilson17250b72010-10-28 12:51:39 +01005199 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005200 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005201 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005202 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005203 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005204 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005205
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005206 if (!i915_gem_shrinker_lock(dev, &unlock))
5207 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005208
Dave Chinner7dc19d52013-08-28 10:18:11 +10005209 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005210 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005211 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005212 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005213
5214 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005215 if (!i915_gem_obj_is_pinned(obj) &&
5216 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005217 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005218 }
Chris Wilson31169712009-09-14 16:50:28 +01005219
Chris Wilson57745062012-11-21 13:04:04 +00005220 if (unlock)
5221 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005222
Dave Chinner7dc19d52013-08-28 10:18:11 +10005223 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005224}
Ben Widawskya70a3142013-07-31 16:59:56 -07005225
5226/* All the new VM stuff */
5227unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5228 struct i915_address_space *vm)
5229{
5230 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5231 struct i915_vma *vma;
5232
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005233 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005234
Ben Widawskya70a3142013-07-31 16:59:56 -07005235 list_for_each_entry(vma, &o->vma_list, vma_link) {
5236 if (vma->vm == vm)
5237 return vma->node.start;
5238
5239 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005240 WARN(1, "%s vma for this object not found.\n",
5241 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005242 return -1;
5243}
5244
5245bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5246 struct i915_address_space *vm)
5247{
5248 struct i915_vma *vma;
5249
5250 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005251 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005252 return true;
5253
5254 return false;
5255}
5256
5257bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5258{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005259 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005260
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005261 list_for_each_entry(vma, &o->vma_list, vma_link)
5262 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005263 return true;
5264
5265 return false;
5266}
5267
5268unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5269 struct i915_address_space *vm)
5270{
5271 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5272 struct i915_vma *vma;
5273
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005274 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005275
5276 BUG_ON(list_empty(&o->vma_list));
5277
5278 list_for_each_entry(vma, &o->vma_list, vma_link)
5279 if (vma->vm == vm)
5280 return vma->node.size;
5281
5282 return 0;
5283}
5284
Dave Chinner7dc19d52013-08-28 10:18:11 +10005285static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005286i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005287{
5288 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005289 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005290 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005291 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005292 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005293
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005294 if (!i915_gem_shrinker_lock(dev, &unlock))
5295 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005296
Chris Wilson21ab4e72014-09-09 11:16:08 +01005297 freed = i915_gem_shrink(dev_priv,
5298 sc->nr_to_scan,
5299 I915_SHRINK_BOUND |
5300 I915_SHRINK_UNBOUND |
5301 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005302 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005303 freed += i915_gem_shrink(dev_priv,
5304 sc->nr_to_scan - freed,
5305 I915_SHRINK_BOUND |
5306 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005307 if (unlock)
5308 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005309
Dave Chinner7dc19d52013-08-28 10:18:11 +10005310 return freed;
5311}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005312
Chris Wilson2cfcd322014-05-20 08:28:43 +01005313static int
5314i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5315{
5316 struct drm_i915_private *dev_priv =
5317 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5318 struct drm_device *dev = dev_priv->dev;
5319 struct drm_i915_gem_object *obj;
5320 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005321 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005322 bool was_interruptible;
5323 bool unlock;
5324
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005325 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005326 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005327 if (fatal_signal_pending(current))
5328 return NOTIFY_DONE;
5329 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005330 if (timeout == 0) {
5331 pr_err("Unable to purge GPU memory due lock contention.\n");
5332 return NOTIFY_DONE;
5333 }
5334
5335 was_interruptible = dev_priv->mm.interruptible;
5336 dev_priv->mm.interruptible = false;
5337
Chris Wilson005445c2014-10-08 11:25:16 +01005338 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005339
5340 dev_priv->mm.interruptible = was_interruptible;
5341
5342 /* Because we may be allocating inside our own driver, we cannot
5343 * assert that there are no objects with pinned pages that are not
5344 * being pointed to by hardware.
5345 */
5346 unbound = bound = pinned = 0;
5347 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5348 if (!obj->base.filp) /* not backed by a freeable object */
5349 continue;
5350
5351 if (obj->pages_pin_count)
5352 pinned += obj->base.size;
5353 else
5354 unbound += obj->base.size;
5355 }
5356 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5357 if (!obj->base.filp)
5358 continue;
5359
5360 if (obj->pages_pin_count)
5361 pinned += obj->base.size;
5362 else
5363 bound += obj->base.size;
5364 }
5365
5366 if (unlock)
5367 mutex_unlock(&dev->struct_mutex);
5368
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005369 if (freed_pages || unbound || bound)
5370 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5371 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005372 if (unbound || bound)
5373 pr_err("%lu and %lu bytes still available in the "
5374 "bound and unbound GPU page lists.\n",
5375 bound, unbound);
5376
Chris Wilson005445c2014-10-08 11:25:16 +01005377 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005378 return NOTIFY_DONE;
5379}
5380
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005381struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5382{
5383 struct i915_vma *vma;
5384
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005385 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005386 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005387 return NULL;
5388
5389 return vma;
5390}