blob: 910fbaff0e99d70680c43fac05e0d4575c2c6de4 [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>
29#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070030#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010031#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070032#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070033#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070035#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020037#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson05394f32010-11-08 19:18:58 +000039static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson2c225692013-08-09 12:26:45 +010040static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
41 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070042static __must_check int
43i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
44 struct i915_address_space *vm,
45 unsigned alignment,
46 bool map_and_fenceable,
47 bool nonblocking);
Chris Wilson05394f32010-11-08 19:18:58 +000048static int i915_gem_phys_pwrite(struct drm_device *dev,
49 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100050 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000051 struct drm_file *file);
Eric Anholt673a3942008-07-30 12:06:12 -070052
Chris Wilson61050802012-04-17 15:31:31 +010053static void i915_gem_write_fence(struct drm_device *dev, int reg,
54 struct drm_i915_gem_object *obj);
55static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
56 struct drm_i915_fence_reg *fence,
57 bool enable);
58
Chris Wilson17250b72010-10-28 12:51:39 +010059static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070060 struct shrink_control *sc);
Chris Wilson6c085a72012-08-20 11:40:46 +020061static long i915_gem_purge(struct drm_i915_private *dev_priv, long target);
62static void i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Daniel Vetter8c599672011-12-14 13:57:31 +010063static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
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
163i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700165{
Ben Widawsky93d18792013-01-17 12:45:17 -0800166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700167 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000168
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200169 if (drm_core_check_feature(dev, DRIVER_MODESET))
170 return -ENODEV;
171
Chris Wilson20217462010-11-23 15:26:33 +0000172 if (args->gtt_start >= args->gtt_end ||
173 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
174 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700175
Daniel Vetterf534bc02012-03-26 22:37:04 +0200176 /* GEM with user mode setting was never supported on ilk and later. */
177 if (INTEL_INFO(dev)->gen >= 5)
178 return -ENODEV;
179
Eric Anholt673a3942008-07-30 12:06:12 -0700180 mutex_lock(&dev->struct_mutex);
Ben Widawskyd7e50082012-12-18 10:31:25 -0800181 i915_gem_setup_global_gtt(dev, args->gtt_start, args->gtt_end,
182 args->gtt_end);
Ben Widawsky93d18792013-01-17 12:45:17 -0800183 dev_priv->gtt.mappable_end = args->gtt_end;
Eric Anholt673a3942008-07-30 12:06:12 -0700184 mutex_unlock(&dev->struct_mutex);
185
Chris Wilson20217462010-11-23 15:26:33 +0000186 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700187}
188
Eric Anholt5a125c32008-10-22 21:40:13 -0700189int
190i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000191 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700192{
Chris Wilson73aa8082010-09-30 11:46:12 +0100193 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700194 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000195 struct drm_i915_gem_object *obj;
196 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700197
Chris Wilson6299f992010-11-24 12:23:44 +0000198 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100199 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700200 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Chris Wilson1b502472012-04-24 15:47:30 +0100201 if (obj->pin_count)
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700202 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100203 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700204
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700205 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400206 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000207
Eric Anholt5a125c32008-10-22 21:40:13 -0700208 return 0;
209}
210
Chris Wilson42dcedd2012-11-15 11:32:30 +0000211void *i915_gem_object_alloc(struct drm_device *dev)
212{
213 struct drm_i915_private *dev_priv = dev->dev_private;
214 return kmem_cache_alloc(dev_priv->slab, GFP_KERNEL | __GFP_ZERO);
215}
216
217void i915_gem_object_free(struct drm_i915_gem_object *obj)
218{
219 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
220 kmem_cache_free(dev_priv->slab, obj);
221}
222
Dave Airlieff72145b2011-02-07 12:16:14 +1000223static int
224i915_gem_create(struct drm_file *file,
225 struct drm_device *dev,
226 uint64_t size,
227 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700228{
Chris Wilson05394f32010-11-08 19:18:58 +0000229 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300230 int ret;
231 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700232
Dave Airlieff72145b2011-02-07 12:16:14 +1000233 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200234 if (size == 0)
235 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700236
237 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000238 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700239 if (obj == NULL)
240 return -ENOMEM;
241
Chris Wilson05394f32010-11-08 19:18:58 +0000242 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100243 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200244 drm_gem_object_unreference_unlocked(&obj->base);
245 if (ret)
246 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100247
Dave Airlieff72145b2011-02-07 12:16:14 +1000248 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700249 return 0;
250}
251
Dave Airlieff72145b2011-02-07 12:16:14 +1000252int
253i915_gem_dumb_create(struct drm_file *file,
254 struct drm_device *dev,
255 struct drm_mode_create_dumb *args)
256{
257 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000258 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000259 args->size = args->pitch * args->height;
260 return i915_gem_create(file, dev,
261 args->size, &args->handle);
262}
263
264int i915_gem_dumb_destroy(struct drm_file *file,
265 struct drm_device *dev,
266 uint32_t handle)
267{
268 return drm_gem_handle_delete(file, handle);
269}
270
271/**
272 * Creates a new mm object and returns a handle to it.
273 */
274int
275i915_gem_create_ioctl(struct drm_device *dev, void *data,
276 struct drm_file *file)
277{
278 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200279
Dave Airlieff72145b2011-02-07 12:16:14 +1000280 return i915_gem_create(file, dev,
281 args->size, &args->handle);
282}
283
Daniel Vetter8c599672011-12-14 13:57:31 +0100284static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100285__copy_to_user_swizzled(char __user *cpu_vaddr,
286 const char *gpu_vaddr, int gpu_offset,
287 int length)
288{
289 int ret, cpu_offset = 0;
290
291 while (length > 0) {
292 int cacheline_end = ALIGN(gpu_offset + 1, 64);
293 int this_length = min(cacheline_end - gpu_offset, length);
294 int swizzled_gpu_offset = gpu_offset ^ 64;
295
296 ret = __copy_to_user(cpu_vaddr + cpu_offset,
297 gpu_vaddr + swizzled_gpu_offset,
298 this_length);
299 if (ret)
300 return ret + length;
301
302 cpu_offset += this_length;
303 gpu_offset += this_length;
304 length -= this_length;
305 }
306
307 return 0;
308}
309
310static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700311__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
312 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100313 int length)
314{
315 int ret, cpu_offset = 0;
316
317 while (length > 0) {
318 int cacheline_end = ALIGN(gpu_offset + 1, 64);
319 int this_length = min(cacheline_end - gpu_offset, length);
320 int swizzled_gpu_offset = gpu_offset ^ 64;
321
322 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
323 cpu_vaddr + cpu_offset,
324 this_length);
325 if (ret)
326 return ret + length;
327
328 cpu_offset += this_length;
329 gpu_offset += this_length;
330 length -= this_length;
331 }
332
333 return 0;
334}
335
Daniel Vetterd174bd62012-03-25 19:47:40 +0200336/* Per-page copy function for the shmem pread fastpath.
337 * Flushes invalid cachelines before reading the target if
338 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700339static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200340shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
341 char __user *user_data,
342 bool page_do_bit17_swizzling, bool needs_clflush)
343{
344 char *vaddr;
345 int ret;
346
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200347 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200348 return -EINVAL;
349
350 vaddr = kmap_atomic(page);
351 if (needs_clflush)
352 drm_clflush_virt_range(vaddr + shmem_page_offset,
353 page_length);
354 ret = __copy_to_user_inatomic(user_data,
355 vaddr + shmem_page_offset,
356 page_length);
357 kunmap_atomic(vaddr);
358
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100359 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200360}
361
Daniel Vetter23c18c72012-03-25 19:47:42 +0200362static void
363shmem_clflush_swizzled_range(char *addr, unsigned long length,
364 bool swizzled)
365{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200366 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200367 unsigned long start = (unsigned long) addr;
368 unsigned long end = (unsigned long) addr + length;
369
370 /* For swizzling simply ensure that we always flush both
371 * channels. Lame, but simple and it works. Swizzled
372 * pwrite/pread is far from a hotpath - current userspace
373 * doesn't use it at all. */
374 start = round_down(start, 128);
375 end = round_up(end, 128);
376
377 drm_clflush_virt_range((void *)start, end - start);
378 } else {
379 drm_clflush_virt_range(addr, length);
380 }
381
382}
383
Daniel Vetterd174bd62012-03-25 19:47:40 +0200384/* Only difference to the fast-path function is that this can handle bit17
385 * and uses non-atomic copy and kmap functions. */
386static int
387shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
388 char __user *user_data,
389 bool page_do_bit17_swizzling, bool needs_clflush)
390{
391 char *vaddr;
392 int ret;
393
394 vaddr = kmap(page);
395 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200396 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
397 page_length,
398 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200399
400 if (page_do_bit17_swizzling)
401 ret = __copy_to_user_swizzled(user_data,
402 vaddr, shmem_page_offset,
403 page_length);
404 else
405 ret = __copy_to_user(user_data,
406 vaddr + shmem_page_offset,
407 page_length);
408 kunmap(page);
409
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100410 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200411}
412
Eric Anholteb014592009-03-10 11:44:52 -0700413static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200414i915_gem_shmem_pread(struct drm_device *dev,
415 struct drm_i915_gem_object *obj,
416 struct drm_i915_gem_pread *args,
417 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700418{
Daniel Vetter8461d222011-12-14 13:57:32 +0100419 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700420 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100421 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100422 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100423 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200424 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200425 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200426 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700427
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200428 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700429 remain = args->size;
430
Daniel Vetter8461d222011-12-14 13:57:32 +0100431 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700432
Daniel Vetter84897312012-03-25 19:47:31 +0200433 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
434 /* If we're not in the cpu read domain, set ourself into the gtt
435 * read domain and manually flush cachelines (if required). This
436 * optimizes for the case when the gpu will dirty the data
437 * anyway again before the next pread happens. */
Chris Wilsonc76ce032013-08-08 14:41:03 +0100438 needs_clflush = !cpu_cache_is_coherent(dev, obj->cache_level);
Ben Widawsky98438772013-07-31 17:00:12 -0700439 if (i915_gem_obj_bound_any(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200440 ret = i915_gem_object_set_to_gtt_domain(obj, false);
441 if (ret)
442 return ret;
443 }
Daniel Vetter84897312012-03-25 19:47:31 +0200444 }
Eric Anholteb014592009-03-10 11:44:52 -0700445
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100446 ret = i915_gem_object_get_pages(obj);
447 if (ret)
448 return ret;
449
450 i915_gem_object_pin_pages(obj);
451
Eric Anholteb014592009-03-10 11:44:52 -0700452 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100453
Imre Deak67d5a502013-02-18 19:28:02 +0200454 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
455 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200456 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100457
458 if (remain <= 0)
459 break;
460
Eric Anholteb014592009-03-10 11:44:52 -0700461 /* Operation in this page
462 *
Eric Anholteb014592009-03-10 11:44:52 -0700463 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700464 * page_length = bytes to copy for this page
465 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100466 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700467 page_length = remain;
468 if ((shmem_page_offset + page_length) > PAGE_SIZE)
469 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700470
Daniel Vetter8461d222011-12-14 13:57:32 +0100471 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
472 (page_to_phys(page) & (1 << 17)) != 0;
473
Daniel Vetterd174bd62012-03-25 19:47:40 +0200474 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
475 user_data, page_do_bit17_swizzling,
476 needs_clflush);
477 if (ret == 0)
478 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700479
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200480 mutex_unlock(&dev->struct_mutex);
481
Xiong Zhang0b74b502013-07-19 13:51:24 +0800482 if (likely(!i915_prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200483 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200484 /* Userspace is tricking us, but we've already clobbered
485 * its pages with the prefault and promised to write the
486 * data up to the first fault. Hence ignore any errors
487 * and just continue. */
488 (void)ret;
489 prefaulted = 1;
490 }
491
Daniel Vetterd174bd62012-03-25 19:47:40 +0200492 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
493 user_data, page_do_bit17_swizzling,
494 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700495
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200496 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100497
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200498next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100499 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100500
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100501 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100502 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100503
Eric Anholteb014592009-03-10 11:44:52 -0700504 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100505 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700506 offset += page_length;
507 }
508
Chris Wilson4f27b752010-10-14 15:26:45 +0100509out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100510 i915_gem_object_unpin_pages(obj);
511
Eric Anholteb014592009-03-10 11:44:52 -0700512 return ret;
513}
514
Eric Anholt673a3942008-07-30 12:06:12 -0700515/**
516 * Reads data from the object referenced by handle.
517 *
518 * On error, the contents of *data are undefined.
519 */
520int
521i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000522 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700523{
524 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000525 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100526 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700527
Chris Wilson51311d02010-11-17 09:10:42 +0000528 if (args->size == 0)
529 return 0;
530
531 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200532 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000533 args->size))
534 return -EFAULT;
535
Chris Wilson4f27b752010-10-14 15:26:45 +0100536 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100537 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100538 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700539
Chris Wilson05394f32010-11-08 19:18:58 +0000540 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000541 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100542 ret = -ENOENT;
543 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100544 }
Eric Anholt673a3942008-07-30 12:06:12 -0700545
Chris Wilson7dcd2492010-09-26 20:21:44 +0100546 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000547 if (args->offset > obj->base.size ||
548 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100549 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100550 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100551 }
552
Daniel Vetter1286ff72012-05-10 15:25:09 +0200553 /* prime objects have no backing filp to GEM pread/pwrite
554 * pages from.
555 */
556 if (!obj->base.filp) {
557 ret = -EINVAL;
558 goto out;
559 }
560
Chris Wilsondb53a302011-02-03 11:57:46 +0000561 trace_i915_gem_object_pread(obj, args->offset, args->size);
562
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200563 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700564
Chris Wilson35b62a82010-09-26 20:23:38 +0100565out:
Chris Wilson05394f32010-11-08 19:18:58 +0000566 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100567unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100568 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700569 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700570}
571
Keith Packard0839ccb2008-10-30 19:38:48 -0700572/* This is the fast write path which cannot handle
573 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700574 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700575
Keith Packard0839ccb2008-10-30 19:38:48 -0700576static inline int
577fast_user_write(struct io_mapping *mapping,
578 loff_t page_base, int page_offset,
579 char __user *user_data,
580 int length)
581{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700582 void __iomem *vaddr_atomic;
583 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700584 unsigned long unwritten;
585
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700586 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700587 /* We can use the cpu mem copy function because this is X86. */
588 vaddr = (void __force*)vaddr_atomic + page_offset;
589 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700590 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700591 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100592 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700593}
594
Eric Anholt3de09aa2009-03-09 09:42:23 -0700595/**
596 * This is the fast pwrite path, where we copy the data directly from the
597 * user into the GTT, uncached.
598 */
Eric Anholt673a3942008-07-30 12:06:12 -0700599static int
Chris Wilson05394f32010-11-08 19:18:58 +0000600i915_gem_gtt_pwrite_fast(struct drm_device *dev,
601 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700602 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000603 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700604{
Keith Packard0839ccb2008-10-30 19:38:48 -0700605 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700606 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700607 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700608 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200609 int page_offset, page_length, ret;
610
Ben Widawskyc37e2202013-07-31 16:59:58 -0700611 ret = i915_gem_obj_ggtt_pin(obj, 0, true, true);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200612 if (ret)
613 goto out;
614
615 ret = i915_gem_object_set_to_gtt_domain(obj, true);
616 if (ret)
617 goto out_unpin;
618
619 ret = i915_gem_object_put_fence(obj);
620 if (ret)
621 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700622
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200623 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700624 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700625
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700626 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700627
628 while (remain > 0) {
629 /* Operation in this page
630 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700631 * page_base = page offset within aperture
632 * page_offset = offset within page
633 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700634 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100635 page_base = offset & PAGE_MASK;
636 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700637 page_length = remain;
638 if ((page_offset + remain) > PAGE_SIZE)
639 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700640
Keith Packard0839ccb2008-10-30 19:38:48 -0700641 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700642 * source page isn't available. Return the error and we'll
643 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700644 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800645 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200646 page_offset, user_data, page_length)) {
647 ret = -EFAULT;
648 goto out_unpin;
649 }
Eric Anholt673a3942008-07-30 12:06:12 -0700650
Keith Packard0839ccb2008-10-30 19:38:48 -0700651 remain -= page_length;
652 user_data += page_length;
653 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700654 }
Eric Anholt673a3942008-07-30 12:06:12 -0700655
Daniel Vetter935aaa62012-03-25 19:47:35 +0200656out_unpin:
657 i915_gem_object_unpin(obj);
658out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700659 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700660}
661
Daniel Vetterd174bd62012-03-25 19:47:40 +0200662/* Per-page copy function for the shmem pwrite fastpath.
663 * Flushes invalid cachelines before writing to the target if
664 * needs_clflush_before is set and flushes out any written cachelines after
665 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700666static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200667shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
668 char __user *user_data,
669 bool page_do_bit17_swizzling,
670 bool needs_clflush_before,
671 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700672{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200673 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700674 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700675
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200676 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200677 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700678
Daniel Vetterd174bd62012-03-25 19:47:40 +0200679 vaddr = kmap_atomic(page);
680 if (needs_clflush_before)
681 drm_clflush_virt_range(vaddr + shmem_page_offset,
682 page_length);
683 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
684 user_data,
685 page_length);
686 if (needs_clflush_after)
687 drm_clflush_virt_range(vaddr + shmem_page_offset,
688 page_length);
689 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700690
Chris Wilson755d2212012-09-04 21:02:55 +0100691 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700692}
693
Daniel Vetterd174bd62012-03-25 19:47:40 +0200694/* Only difference to the fast-path function is that this can handle bit17
695 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700696static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200697shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
698 char __user *user_data,
699 bool page_do_bit17_swizzling,
700 bool needs_clflush_before,
701 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700702{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200703 char *vaddr;
704 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700705
Daniel Vetterd174bd62012-03-25 19:47:40 +0200706 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200707 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200708 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
709 page_length,
710 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200711 if (page_do_bit17_swizzling)
712 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100713 user_data,
714 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200715 else
716 ret = __copy_from_user(vaddr + shmem_page_offset,
717 user_data,
718 page_length);
719 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200720 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
721 page_length,
722 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200723 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100724
Chris Wilson755d2212012-09-04 21:02:55 +0100725 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700726}
727
Eric Anholt40123c12009-03-09 13:42:30 -0700728static int
Daniel Vettere244a442012-03-25 19:47:28 +0200729i915_gem_shmem_pwrite(struct drm_device *dev,
730 struct drm_i915_gem_object *obj,
731 struct drm_i915_gem_pwrite *args,
732 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700733{
Eric Anholt40123c12009-03-09 13:42:30 -0700734 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100735 loff_t offset;
736 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100737 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100738 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200739 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200740 int needs_clflush_after = 0;
741 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200742 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700743
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200744 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700745 remain = args->size;
746
Daniel Vetter8c599672011-12-14 13:57:31 +0100747 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700748
Daniel Vetter58642882012-03-25 19:47:37 +0200749 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
750 /* If we're not in the cpu write domain, set ourself into the gtt
751 * write domain and manually flush cachelines (if required). This
752 * optimizes for the case when the gpu will use the data
753 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100754 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky98438772013-07-31 17:00:12 -0700755 if (i915_gem_obj_bound_any(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200756 ret = i915_gem_object_set_to_gtt_domain(obj, true);
757 if (ret)
758 return ret;
759 }
Daniel Vetter58642882012-03-25 19:47:37 +0200760 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100761 /* Same trick applies to invalidate partially written cachelines read
762 * before writing. */
763 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
764 needs_clflush_before =
765 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200766
Chris Wilson755d2212012-09-04 21:02:55 +0100767 ret = i915_gem_object_get_pages(obj);
768 if (ret)
769 return ret;
770
771 i915_gem_object_pin_pages(obj);
772
Eric Anholt40123c12009-03-09 13:42:30 -0700773 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000774 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700775
Imre Deak67d5a502013-02-18 19:28:02 +0200776 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
777 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200778 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200779 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100780
Chris Wilson9da3da62012-06-01 15:20:22 +0100781 if (remain <= 0)
782 break;
783
Eric Anholt40123c12009-03-09 13:42:30 -0700784 /* Operation in this page
785 *
Eric Anholt40123c12009-03-09 13:42:30 -0700786 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700787 * page_length = bytes to copy for this page
788 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100789 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700790
791 page_length = remain;
792 if ((shmem_page_offset + page_length) > PAGE_SIZE)
793 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700794
Daniel Vetter58642882012-03-25 19:47:37 +0200795 /* If we don't overwrite a cacheline completely we need to be
796 * careful to have up-to-date data by first clflushing. Don't
797 * overcomplicate things and flush the entire patch. */
798 partial_cacheline_write = needs_clflush_before &&
799 ((shmem_page_offset | page_length)
800 & (boot_cpu_data.x86_clflush_size - 1));
801
Daniel Vetter8c599672011-12-14 13:57:31 +0100802 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
803 (page_to_phys(page) & (1 << 17)) != 0;
804
Daniel Vetterd174bd62012-03-25 19:47:40 +0200805 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
806 user_data, page_do_bit17_swizzling,
807 partial_cacheline_write,
808 needs_clflush_after);
809 if (ret == 0)
810 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700811
Daniel Vettere244a442012-03-25 19:47:28 +0200812 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200813 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200814 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
815 user_data, page_do_bit17_swizzling,
816 partial_cacheline_write,
817 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700818
Daniel Vettere244a442012-03-25 19:47:28 +0200819 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +0100820
Daniel Vettere244a442012-03-25 19:47:28 +0200821next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100822 set_page_dirty(page);
823 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100824
Chris Wilson755d2212012-09-04 21:02:55 +0100825 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +0100826 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +0100827
Eric Anholt40123c12009-03-09 13:42:30 -0700828 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100829 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700830 offset += page_length;
831 }
832
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100833out:
Chris Wilson755d2212012-09-04 21:02:55 +0100834 i915_gem_object_unpin_pages(obj);
835
Daniel Vettere244a442012-03-25 19:47:28 +0200836 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +0100837 /*
838 * Fixup: Flush cpu caches in case we didn't flush the dirty
839 * cachelines in-line while writing and the object moved
840 * out of the cpu write domain while we've dropped the lock.
841 */
842 if (!needs_clflush_after &&
843 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +0100844 if (i915_gem_clflush_object(obj, obj->pin_display))
845 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +0200846 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100847 }
Eric Anholt40123c12009-03-09 13:42:30 -0700848
Daniel Vetter58642882012-03-25 19:47:37 +0200849 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800850 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +0200851
Eric Anholt40123c12009-03-09 13:42:30 -0700852 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700853}
854
855/**
856 * Writes data to the object referenced by handle.
857 *
858 * On error, the contents of the buffer that were to be modified are undefined.
859 */
860int
861i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100862 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700863{
864 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000865 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000866 int ret;
867
868 if (args->size == 0)
869 return 0;
870
871 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200872 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000873 args->size))
874 return -EFAULT;
875
Xiong Zhang0b74b502013-07-19 13:51:24 +0800876 if (likely(!i915_prefault_disable)) {
877 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
878 args->size);
879 if (ret)
880 return -EFAULT;
881 }
Eric Anholt673a3942008-07-30 12:06:12 -0700882
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100883 ret = i915_mutex_lock_interruptible(dev);
884 if (ret)
885 return ret;
886
Chris Wilson05394f32010-11-08 19:18:58 +0000887 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000888 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100889 ret = -ENOENT;
890 goto unlock;
891 }
Eric Anholt673a3942008-07-30 12:06:12 -0700892
Chris Wilson7dcd2492010-09-26 20:21:44 +0100893 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000894 if (args->offset > obj->base.size ||
895 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100896 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100897 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100898 }
899
Daniel Vetter1286ff72012-05-10 15:25:09 +0200900 /* prime objects have no backing filp to GEM pread/pwrite
901 * pages from.
902 */
903 if (!obj->base.filp) {
904 ret = -EINVAL;
905 goto out;
906 }
907
Chris Wilsondb53a302011-02-03 11:57:46 +0000908 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
909
Daniel Vetter935aaa62012-03-25 19:47:35 +0200910 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700911 /* We can only do the GTT pwrite on untiled buffers, as otherwise
912 * it would end up going through the fenced access, and we'll get
913 * different detiling behavior between reading and writing.
914 * pread/pwrite currently are reading and writing from the CPU
915 * perspective, requiring manual detiling by the client.
916 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100917 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100918 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100919 goto out;
920 }
921
Chris Wilson2c225692013-08-09 12:26:45 +0100922 if (obj->tiling_mode == I915_TILING_NONE &&
923 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
924 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100925 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200926 /* Note that the gtt paths might fail with non-page-backed user
927 * pointers (e.g. gtt mappings when moving data between
928 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700929 }
Eric Anholt673a3942008-07-30 12:06:12 -0700930
Chris Wilson86a1ee22012-08-11 15:41:04 +0100931 if (ret == -EFAULT || ret == -ENOSPC)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200932 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100933
Chris Wilson35b62a82010-09-26 20:23:38 +0100934out:
Chris Wilson05394f32010-11-08 19:18:58 +0000935 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100936unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100937 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700938 return ret;
939}
940
Chris Wilsonb3612372012-08-24 09:35:08 +0100941int
Daniel Vetter33196de2012-11-14 17:14:05 +0100942i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +0100943 bool interruptible)
944{
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100945 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +0100946 /* Non-interruptible callers can't handle -EAGAIN, hence return
947 * -EIO unconditionally for these. */
948 if (!interruptible)
949 return -EIO;
950
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100951 /* Recovery complete, but the reset failed ... */
952 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +0100953 return -EIO;
954
955 return -EAGAIN;
956 }
957
958 return 0;
959}
960
961/*
962 * Compare seqno against outstanding lazy request. Emit a request if they are
963 * equal.
964 */
965static int
966i915_gem_check_olr(struct intel_ring_buffer *ring, u32 seqno)
967{
968 int ret;
969
970 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
971
972 ret = 0;
973 if (seqno == ring->outstanding_lazy_request)
Mika Kuoppala0025c072013-06-12 12:35:30 +0300974 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +0100975
976 return ret;
977}
978
979/**
980 * __wait_seqno - wait until execution of seqno has finished
981 * @ring: the ring expected to report seqno
982 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +0100983 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +0100984 * @interruptible: do an interruptible wait (normally yes)
985 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
986 *
Daniel Vetterf69061b2012-12-06 09:01:42 +0100987 * Note: It is of utmost importance that the passed in seqno and reset_counter
988 * values have been read by the caller in an smp safe manner. Where read-side
989 * locks are involved, it is sufficient to read the reset_counter before
990 * unlocking the lock that protects the seqno. For lockless tricks, the
991 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
992 * inserted.
993 *
Chris Wilsonb3612372012-08-24 09:35:08 +0100994 * Returns 0 if the seqno was found within the alloted time. Else returns the
995 * errno with remaining time filled in timeout argument.
996 */
997static int __wait_seqno(struct intel_ring_buffer *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +0100998 unsigned reset_counter,
Chris Wilsonb3612372012-08-24 09:35:08 +0100999 bool interruptible, struct timespec *timeout)
1000{
1001 drm_i915_private_t *dev_priv = ring->dev->dev_private;
1002 struct timespec before, now, wait_time={1,0};
1003 unsigned long timeout_jiffies;
1004 long end;
1005 bool wait_forever = true;
1006 int ret;
1007
1008 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1009 return 0;
1010
1011 trace_i915_gem_request_wait_begin(ring, seqno);
1012
1013 if (timeout != NULL) {
1014 wait_time = *timeout;
1015 wait_forever = false;
1016 }
1017
Imre Deake054cc32013-05-21 20:03:19 +03001018 timeout_jiffies = timespec_to_jiffies_timeout(&wait_time);
Chris Wilsonb3612372012-08-24 09:35:08 +01001019
1020 if (WARN_ON(!ring->irq_get(ring)))
1021 return -ENODEV;
1022
1023 /* Record current time in case interrupted by signal, or wedged * */
1024 getrawmonotonic(&before);
1025
1026#define EXIT_COND \
1027 (i915_seqno_passed(ring->get_seqno(ring, false), seqno) || \
Daniel Vetterf69061b2012-12-06 09:01:42 +01001028 i915_reset_in_progress(&dev_priv->gpu_error) || \
1029 reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
Chris Wilsonb3612372012-08-24 09:35:08 +01001030 do {
1031 if (interruptible)
1032 end = wait_event_interruptible_timeout(ring->irq_queue,
1033 EXIT_COND,
1034 timeout_jiffies);
1035 else
1036 end = wait_event_timeout(ring->irq_queue, EXIT_COND,
1037 timeout_jiffies);
1038
Daniel Vetterf69061b2012-12-06 09:01:42 +01001039 /* We need to check whether any gpu reset happened in between
1040 * the caller grabbing the seqno and now ... */
1041 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
1042 end = -EAGAIN;
1043
1044 /* ... but upgrade the -EGAIN to an -EIO if the gpu is truely
1045 * gone. */
Daniel Vetter33196de2012-11-14 17:14:05 +01001046 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001047 if (ret)
1048 end = ret;
1049 } while (end == 0 && wait_forever);
1050
1051 getrawmonotonic(&now);
1052
1053 ring->irq_put(ring);
1054 trace_i915_gem_request_wait_end(ring, seqno);
1055#undef EXIT_COND
1056
1057 if (timeout) {
1058 struct timespec sleep_time = timespec_sub(now, before);
1059 *timeout = timespec_sub(*timeout, sleep_time);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03001060 if (!timespec_valid(timeout)) /* i.e. negative time remains */
1061 set_normalized_timespec(timeout, 0, 0);
Chris Wilsonb3612372012-08-24 09:35:08 +01001062 }
1063
1064 switch (end) {
1065 case -EIO:
1066 case -EAGAIN: /* Wedged */
1067 case -ERESTARTSYS: /* Signal */
1068 return (int)end;
1069 case 0: /* Timeout */
Chris Wilsonb3612372012-08-24 09:35:08 +01001070 return -ETIME;
1071 default: /* Completed */
1072 WARN_ON(end < 0); /* We're not aware of other errors */
1073 return 0;
1074 }
1075}
1076
1077/**
1078 * Waits for a sequence number to be signaled, and cleans up the
1079 * request and object lists appropriately for that event.
1080 */
1081int
1082i915_wait_seqno(struct intel_ring_buffer *ring, uint32_t seqno)
1083{
1084 struct drm_device *dev = ring->dev;
1085 struct drm_i915_private *dev_priv = dev->dev_private;
1086 bool interruptible = dev_priv->mm.interruptible;
1087 int ret;
1088
1089 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1090 BUG_ON(seqno == 0);
1091
Daniel Vetter33196de2012-11-14 17:14:05 +01001092 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001093 if (ret)
1094 return ret;
1095
1096 ret = i915_gem_check_olr(ring, seqno);
1097 if (ret)
1098 return ret;
1099
Daniel Vetterf69061b2012-12-06 09:01:42 +01001100 return __wait_seqno(ring, seqno,
1101 atomic_read(&dev_priv->gpu_error.reset_counter),
1102 interruptible, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001103}
1104
Chris Wilsond26e3af2013-06-29 22:05:26 +01001105static int
1106i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj,
1107 struct intel_ring_buffer *ring)
1108{
1109 i915_gem_retire_requests_ring(ring);
1110
1111 /* Manually manage the write flush as we may have not yet
1112 * retired the buffer.
1113 *
1114 * Note that the last_write_seqno is always the earlier of
1115 * the two (read/write) seqno, so if we haved successfully waited,
1116 * we know we have passed the last write.
1117 */
1118 obj->last_write_seqno = 0;
1119 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
1120
1121 return 0;
1122}
1123
Chris Wilsonb3612372012-08-24 09:35:08 +01001124/**
1125 * Ensures that all rendering to the object has completed and the object is
1126 * safe to unbind from the GTT or access from the CPU.
1127 */
1128static __must_check int
1129i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1130 bool readonly)
1131{
1132 struct intel_ring_buffer *ring = obj->ring;
1133 u32 seqno;
1134 int ret;
1135
1136 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1137 if (seqno == 0)
1138 return 0;
1139
1140 ret = i915_wait_seqno(ring, seqno);
1141 if (ret)
1142 return ret;
1143
Chris Wilsond26e3af2013-06-29 22:05:26 +01001144 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001145}
1146
Chris Wilson3236f572012-08-24 09:35:09 +01001147/* A nonblocking variant of the above wait. This is a highly dangerous routine
1148 * as the object state may change during this call.
1149 */
1150static __must_check int
1151i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
1152 bool readonly)
1153{
1154 struct drm_device *dev = obj->base.dev;
1155 struct drm_i915_private *dev_priv = dev->dev_private;
1156 struct intel_ring_buffer *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001157 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001158 u32 seqno;
1159 int ret;
1160
1161 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1162 BUG_ON(!dev_priv->mm.interruptible);
1163
1164 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1165 if (seqno == 0)
1166 return 0;
1167
Daniel Vetter33196de2012-11-14 17:14:05 +01001168 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001169 if (ret)
1170 return ret;
1171
1172 ret = i915_gem_check_olr(ring, seqno);
1173 if (ret)
1174 return ret;
1175
Daniel Vetterf69061b2012-12-06 09:01:42 +01001176 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001177 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf69061b2012-12-06 09:01:42 +01001178 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilson3236f572012-08-24 09:35:09 +01001179 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001180 if (ret)
1181 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001182
Chris Wilsond26e3af2013-06-29 22:05:26 +01001183 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilson3236f572012-08-24 09:35:09 +01001184}
1185
Eric Anholt673a3942008-07-30 12:06:12 -07001186/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001187 * Called when user space prepares to use an object with the CPU, either
1188 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001189 */
1190int
1191i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001192 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001193{
1194 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001195 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001196 uint32_t read_domains = args->read_domains;
1197 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001198 int ret;
1199
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001200 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001201 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001202 return -EINVAL;
1203
Chris Wilson21d509e2009-06-06 09:46:02 +01001204 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001205 return -EINVAL;
1206
1207 /* Having something in the write domain implies it's in the read
1208 * domain, and only that read domain. Enforce that in the request.
1209 */
1210 if (write_domain != 0 && read_domains != write_domain)
1211 return -EINVAL;
1212
Chris Wilson76c1dec2010-09-25 11:22:51 +01001213 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001214 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001215 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001216
Chris Wilson05394f32010-11-08 19:18:58 +00001217 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001218 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001219 ret = -ENOENT;
1220 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001221 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001222
Chris Wilson3236f572012-08-24 09:35:09 +01001223 /* Try to flush the object off the GPU without holding the lock.
1224 * We will repeat the flush holding the lock in the normal manner
1225 * to catch cases where we are gazumped.
1226 */
1227 ret = i915_gem_object_wait_rendering__nonblocking(obj, !write_domain);
1228 if (ret)
1229 goto unref;
1230
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001231 if (read_domains & I915_GEM_DOMAIN_GTT) {
1232 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001233
1234 /* Silently promote "you're not bound, there was nothing to do"
1235 * to success, since the client was just asking us to
1236 * make sure everything was done.
1237 */
1238 if (ret == -EINVAL)
1239 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001240 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001241 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001242 }
1243
Chris Wilson3236f572012-08-24 09:35:09 +01001244unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001245 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001246unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001247 mutex_unlock(&dev->struct_mutex);
1248 return ret;
1249}
1250
1251/**
1252 * Called when user space has done writes to this buffer
1253 */
1254int
1255i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001256 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001257{
1258 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001259 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001260 int ret = 0;
1261
Chris Wilson76c1dec2010-09-25 11:22:51 +01001262 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001263 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001264 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001265
Chris Wilson05394f32010-11-08 19:18:58 +00001266 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001267 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001268 ret = -ENOENT;
1269 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001270 }
1271
Eric Anholt673a3942008-07-30 12:06:12 -07001272 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001273 if (obj->pin_display)
1274 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001275
Chris Wilson05394f32010-11-08 19:18:58 +00001276 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001277unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001278 mutex_unlock(&dev->struct_mutex);
1279 return ret;
1280}
1281
1282/**
1283 * Maps the contents of an object, returning the address it is mapped
1284 * into.
1285 *
1286 * While the mapping holds a reference on the contents of the object, it doesn't
1287 * imply a ref on the object itself.
1288 */
1289int
1290i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001291 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001292{
1293 struct drm_i915_gem_mmap *args = data;
1294 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001295 unsigned long addr;
1296
Chris Wilson05394f32010-11-08 19:18:58 +00001297 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001298 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001299 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001300
Daniel Vetter1286ff72012-05-10 15:25:09 +02001301 /* prime objects have no backing filp to GEM mmap
1302 * pages from.
1303 */
1304 if (!obj->filp) {
1305 drm_gem_object_unreference_unlocked(obj);
1306 return -EINVAL;
1307 }
1308
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001309 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001310 PROT_READ | PROT_WRITE, MAP_SHARED,
1311 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001312 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001313 if (IS_ERR((void *)addr))
1314 return addr;
1315
1316 args->addr_ptr = (uint64_t) addr;
1317
1318 return 0;
1319}
1320
Jesse Barnesde151cf2008-11-12 10:03:55 -08001321/**
1322 * i915_gem_fault - fault a page into the GTT
1323 * vma: VMA in question
1324 * vmf: fault info
1325 *
1326 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1327 * from userspace. The fault handler takes care of binding the object to
1328 * the GTT (if needed), allocating and programming a fence register (again,
1329 * only if needed based on whether the old reg is still valid or the object
1330 * is tiled) and inserting a new PTE into the faulting process.
1331 *
1332 * Note that the faulting process may involve evicting existing objects
1333 * from the GTT and/or fence registers to make room. So performance may
1334 * suffer if the GTT working set is large or there are few fence registers
1335 * left.
1336 */
1337int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1338{
Chris Wilson05394f32010-11-08 19:18:58 +00001339 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1340 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001341 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001342 pgoff_t page_offset;
1343 unsigned long pfn;
1344 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001345 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001346
1347 /* We don't use vmf->pgoff since that has the fake offset */
1348 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1349 PAGE_SHIFT;
1350
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001351 ret = i915_mutex_lock_interruptible(dev);
1352 if (ret)
1353 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001354
Chris Wilsondb53a302011-02-03 11:57:46 +00001355 trace_i915_gem_object_fault(obj, page_offset, true, write);
1356
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001357 /* Access to snoopable pages through the GTT is incoherent. */
1358 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
1359 ret = -EINVAL;
1360 goto unlock;
1361 }
1362
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001363 /* Now bind it into the GTT if needed */
Ben Widawskyc37e2202013-07-31 16:59:58 -07001364 ret = i915_gem_obj_ggtt_pin(obj, 0, true, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001365 if (ret)
1366 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001367
Chris Wilsonc9839302012-11-20 10:45:17 +00001368 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1369 if (ret)
1370 goto unpin;
1371
1372 ret = i915_gem_object_get_fence(obj);
1373 if (ret)
1374 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001375
Chris Wilson6299f992010-11-24 12:23:44 +00001376 obj->fault_mappable = true;
1377
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001378 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1379 pfn >>= PAGE_SHIFT;
1380 pfn += page_offset;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001381
1382 /* Finally, remap it using the new GTT offset */
1383 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc9839302012-11-20 10:45:17 +00001384unpin:
1385 i915_gem_object_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001386unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001387 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001388out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001389 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001390 case -EIO:
Daniel Vettera9340cc2012-07-04 22:18:42 +02001391 /* If this -EIO is due to a gpu hang, give the reset code a
1392 * chance to clean up the mess. Otherwise return the proper
1393 * SIGBUS. */
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001394 if (i915_terminally_wedged(&dev_priv->gpu_error))
Daniel Vettera9340cc2012-07-04 22:18:42 +02001395 return VM_FAULT_SIGBUS;
Chris Wilson045e7692010-11-07 09:18:22 +00001396 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001397 /* Give the error handler a chance to run and move the
1398 * objects off the GPU active list. Next time we service the
1399 * fault, we should be able to transition the page into the
1400 * GTT without touching the GPU (and so avoid further
1401 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1402 * with coherency, just lost writes.
1403 */
Chris Wilson045e7692010-11-07 09:18:22 +00001404 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001405 case 0:
1406 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001407 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001408 case -EBUSY:
1409 /*
1410 * EBUSY is ok: this just means that another thread
1411 * already did the job.
1412 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001413 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001414 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001415 return VM_FAULT_OOM;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001416 case -ENOSPC:
1417 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001418 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001419 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Chris Wilsonc7150892009-09-23 00:43:56 +01001420 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001421 }
1422}
1423
1424/**
Chris Wilson901782b2009-07-10 08:18:50 +01001425 * i915_gem_release_mmap - remove physical page mappings
1426 * @obj: obj in question
1427 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001428 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001429 * relinquish ownership of the pages back to the system.
1430 *
1431 * It is vital that we remove the page mapping if we have mapped a tiled
1432 * object through the GTT and then lose the fence register due to
1433 * resource pressure. Similarly if the object has been moved out of the
1434 * aperture, than pages mapped into userspace must be revoked. Removing the
1435 * mapping will then trigger a page fault on the next user access, allowing
1436 * fixup by i915_gem_fault().
1437 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001438void
Chris Wilson05394f32010-11-08 19:18:58 +00001439i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001440{
Chris Wilson6299f992010-11-24 12:23:44 +00001441 if (!obj->fault_mappable)
1442 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001443
Chris Wilsonf6e47882011-03-20 21:09:12 +00001444 if (obj->base.dev->dev_mapping)
1445 unmap_mapping_range(obj->base.dev->dev_mapping,
1446 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1447 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001448
Chris Wilson6299f992010-11-24 12:23:44 +00001449 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001450}
1451
Imre Deak0fa87792013-01-07 21:47:35 +02001452uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001453i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001454{
Chris Wilsone28f8712011-07-18 13:11:49 -07001455 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001456
1457 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001458 tiling_mode == I915_TILING_NONE)
1459 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001460
1461 /* Previous chips need a power-of-two fence region when tiling */
1462 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001463 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001464 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001465 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001466
Chris Wilsone28f8712011-07-18 13:11:49 -07001467 while (gtt_size < size)
1468 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001469
Chris Wilsone28f8712011-07-18 13:11:49 -07001470 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001471}
1472
Jesse Barnesde151cf2008-11-12 10:03:55 -08001473/**
1474 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1475 * @obj: object to check
1476 *
1477 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001478 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001479 */
Imre Deakd8651102013-01-07 21:47:33 +02001480uint32_t
1481i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1482 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001483{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001484 /*
1485 * Minimum alignment is 4k (GTT page size), but might be greater
1486 * if a fence register is needed for the object.
1487 */
Imre Deakd8651102013-01-07 21:47:33 +02001488 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001489 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001490 return 4096;
1491
1492 /*
1493 * Previous chips need to be aligned to the size of the smallest
1494 * fence register that can contain the object.
1495 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001496 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001497}
1498
Chris Wilsond8cb5082012-08-11 15:41:03 +01001499static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1500{
1501 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1502 int ret;
1503
1504 if (obj->base.map_list.map)
1505 return 0;
1506
Daniel Vetterda494d72012-12-20 15:11:16 +01001507 dev_priv->mm.shrinker_no_lock_stealing = true;
1508
Chris Wilsond8cb5082012-08-11 15:41:03 +01001509 ret = drm_gem_create_mmap_offset(&obj->base);
1510 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001511 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001512
1513 /* Badly fragmented mmap space? The only way we can recover
1514 * space is by destroying unwanted objects. We can't randomly release
1515 * mmap_offsets as userspace expects them to be persistent for the
1516 * lifetime of the objects. The closest we can is to release the
1517 * offsets on purgeable objects by truncating it and marking it purged,
1518 * which prevents userspace from ever using that object again.
1519 */
1520 i915_gem_purge(dev_priv, obj->base.size >> PAGE_SHIFT);
1521 ret = drm_gem_create_mmap_offset(&obj->base);
1522 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001523 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001524
1525 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001526 ret = drm_gem_create_mmap_offset(&obj->base);
1527out:
1528 dev_priv->mm.shrinker_no_lock_stealing = false;
1529
1530 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001531}
1532
1533static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1534{
1535 if (!obj->base.map_list.map)
1536 return;
1537
1538 drm_gem_free_mmap_offset(&obj->base);
1539}
1540
Jesse Barnesde151cf2008-11-12 10:03:55 -08001541int
Dave Airlieff72145b2011-02-07 12:16:14 +10001542i915_gem_mmap_gtt(struct drm_file *file,
1543 struct drm_device *dev,
1544 uint32_t handle,
1545 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001546{
Chris Wilsonda761a62010-10-27 17:37:08 +01001547 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001548 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001549 int ret;
1550
Chris Wilson76c1dec2010-09-25 11:22:51 +01001551 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001552 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001553 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001554
Dave Airlieff72145b2011-02-07 12:16:14 +10001555 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001556 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001557 ret = -ENOENT;
1558 goto unlock;
1559 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001560
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001561 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001562 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001563 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001564 }
1565
Chris Wilson05394f32010-11-08 19:18:58 +00001566 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001567 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001568 ret = -EINVAL;
1569 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001570 }
1571
Chris Wilsond8cb5082012-08-11 15:41:03 +01001572 ret = i915_gem_object_create_mmap_offset(obj);
1573 if (ret)
1574 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001575
Dave Airlieff72145b2011-02-07 12:16:14 +10001576 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001577
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001578out:
Chris Wilson05394f32010-11-08 19:18:58 +00001579 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001580unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001581 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001582 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001583}
1584
Dave Airlieff72145b2011-02-07 12:16:14 +10001585/**
1586 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1587 * @dev: DRM device
1588 * @data: GTT mapping ioctl data
1589 * @file: GEM object info
1590 *
1591 * Simply returns the fake offset to userspace so it can mmap it.
1592 * The mmap call will end up in drm_gem_mmap(), which will set things
1593 * up so we can get faults in the handler above.
1594 *
1595 * The fault handler will take care of binding the object into the GTT
1596 * (since it may have been evicted to make room for something), allocating
1597 * a fence register, and mapping the appropriate aperture address into
1598 * userspace.
1599 */
1600int
1601i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1602 struct drm_file *file)
1603{
1604 struct drm_i915_gem_mmap_gtt *args = data;
1605
Dave Airlieff72145b2011-02-07 12:16:14 +10001606 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1607}
1608
Daniel Vetter225067e2012-08-20 10:23:20 +02001609/* Immediately discard the backing storage */
1610static void
1611i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001612{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001613 struct inode *inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001614
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001615 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001616
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001617 if (obj->base.filp == NULL)
1618 return;
1619
Daniel Vetter225067e2012-08-20 10:23:20 +02001620 /* Our goal here is to return as much of the memory as
1621 * is possible back to the system as we are called from OOM.
1622 * To do this we must instruct the shmfs to drop all of its
1623 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001624 */
Al Viro496ad9a2013-01-23 17:07:38 -05001625 inode = file_inode(obj->base.filp);
Daniel Vetter225067e2012-08-20 10:23:20 +02001626 shmem_truncate_range(inode, 0, (loff_t)-1);
Hugh Dickins5949eac2011-06-27 16:18:18 -07001627
Daniel Vetter225067e2012-08-20 10:23:20 +02001628 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001629}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001630
Daniel Vetter225067e2012-08-20 10:23:20 +02001631static inline int
1632i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1633{
1634 return obj->madv == I915_MADV_DONTNEED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001635}
1636
Chris Wilson5cdf5882010-09-27 15:51:07 +01001637static void
Chris Wilson05394f32010-11-08 19:18:58 +00001638i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001639{
Imre Deak90797e62013-02-18 19:28:03 +02001640 struct sg_page_iter sg_iter;
1641 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001642
Chris Wilson05394f32010-11-08 19:18:58 +00001643 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001644
Chris Wilson6c085a72012-08-20 11:40:46 +02001645 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1646 if (ret) {
1647 /* In the event of a disaster, abandon all caches and
1648 * hope for the best.
1649 */
1650 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001651 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001652 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1653 }
1654
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001655 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001656 i915_gem_object_save_bit_17_swizzle(obj);
1657
Chris Wilson05394f32010-11-08 19:18:58 +00001658 if (obj->madv == I915_MADV_DONTNEED)
1659 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001660
Imre Deak90797e62013-02-18 19:28:03 +02001661 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001662 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001663
Chris Wilson05394f32010-11-08 19:18:58 +00001664 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001665 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001666
Chris Wilson05394f32010-11-08 19:18:58 +00001667 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001668 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001669
Chris Wilson9da3da62012-06-01 15:20:22 +01001670 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001671 }
Chris Wilson05394f32010-11-08 19:18:58 +00001672 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001673
Chris Wilson9da3da62012-06-01 15:20:22 +01001674 sg_free_table(obj->pages);
1675 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001676}
1677
Chris Wilsondd624af2013-01-15 12:39:35 +00001678int
Chris Wilson37e680a2012-06-07 15:38:42 +01001679i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1680{
1681 const struct drm_i915_gem_object_ops *ops = obj->ops;
1682
Chris Wilson2f745ad2012-09-04 21:02:58 +01001683 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01001684 return 0;
1685
Chris Wilsona5570172012-09-04 21:02:54 +01001686 if (obj->pages_pin_count)
1687 return -EBUSY;
1688
Ben Widawsky98438772013-07-31 17:00:12 -07001689 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07001690
Chris Wilsona2165e32012-12-03 11:49:00 +00001691 /* ->put_pages might need to allocate memory for the bit17 swizzle
1692 * array, hence protect them from being reaped by removing them from gtt
1693 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07001694 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00001695
Chris Wilson37e680a2012-06-07 15:38:42 +01001696 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001697 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02001698
Chris Wilson6c085a72012-08-20 11:40:46 +02001699 if (i915_gem_object_is_purgeable(obj))
1700 i915_gem_object_truncate(obj);
1701
1702 return 0;
1703}
1704
1705static long
Daniel Vetter93927ca2013-01-10 18:03:00 +01001706__i915_gem_shrink(struct drm_i915_private *dev_priv, long target,
1707 bool purgeable_only)
Chris Wilson6c085a72012-08-20 11:40:46 +02001708{
1709 struct drm_i915_gem_object *obj, *next;
1710 long count = 0;
1711
1712 list_for_each_entry_safe(obj, next,
1713 &dev_priv->mm.unbound_list,
Ben Widawsky35c20a62013-05-31 11:28:48 -07001714 global_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001715 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001716 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001717 count += obj->base.size >> PAGE_SHIFT;
1718 if (count >= target)
1719 return count;
1720 }
1721 }
1722
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001723 list_for_each_entry_safe(obj, next, &dev_priv->mm.bound_list,
1724 global_list) {
1725 struct i915_vma *vma, *v;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001726
1727 if (!i915_gem_object_is_purgeable(obj) && purgeable_only)
1728 continue;
1729
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001730 list_for_each_entry_safe(vma, v, &obj->vma_list, vma_link)
1731 if (i915_vma_unbind(vma))
1732 break;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001733
1734 if (!i915_gem_object_put_pages(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001735 count += obj->base.size >> PAGE_SHIFT;
1736 if (count >= target)
1737 return count;
1738 }
1739 }
1740
1741 return count;
1742}
1743
Daniel Vetter93927ca2013-01-10 18:03:00 +01001744static long
1745i915_gem_purge(struct drm_i915_private *dev_priv, long target)
1746{
1747 return __i915_gem_shrink(dev_priv, target, true);
1748}
1749
Chris Wilson6c085a72012-08-20 11:40:46 +02001750static void
1751i915_gem_shrink_all(struct drm_i915_private *dev_priv)
1752{
1753 struct drm_i915_gem_object *obj, *next;
1754
1755 i915_gem_evict_everything(dev_priv->dev);
1756
Ben Widawsky35c20a62013-05-31 11:28:48 -07001757 list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
1758 global_list)
Chris Wilson37e680a2012-06-07 15:38:42 +01001759 i915_gem_object_put_pages(obj);
Daniel Vetter225067e2012-08-20 10:23:20 +02001760}
1761
Chris Wilson37e680a2012-06-07 15:38:42 +01001762static int
Chris Wilson6c085a72012-08-20 11:40:46 +02001763i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001764{
Chris Wilson6c085a72012-08-20 11:40:46 +02001765 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001766 int page_count, i;
1767 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01001768 struct sg_table *st;
1769 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02001770 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07001771 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02001772 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02001773 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07001774
Chris Wilson6c085a72012-08-20 11:40:46 +02001775 /* Assert that the object is not currently in any GPU domain. As it
1776 * wasn't in the GTT, there shouldn't be any way it could have been in
1777 * a GPU cache
1778 */
1779 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
1780 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
1781
Chris Wilson9da3da62012-06-01 15:20:22 +01001782 st = kmalloc(sizeof(*st), GFP_KERNEL);
1783 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001784 return -ENOMEM;
1785
Chris Wilson9da3da62012-06-01 15:20:22 +01001786 page_count = obj->base.size / PAGE_SIZE;
1787 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
1788 sg_free_table(st);
1789 kfree(st);
1790 return -ENOMEM;
1791 }
1792
1793 /* Get the list of pages out of our struct file. They'll be pinned
1794 * at this point until we release them.
1795 *
1796 * Fail silently without starting the shrinker
1797 */
Al Viro496ad9a2013-01-23 17:07:38 -05001798 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02001799 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08001800 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001801 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02001802 sg = st->sgl;
1803 st->nents = 0;
1804 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001805 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1806 if (IS_ERR(page)) {
1807 i915_gem_purge(dev_priv, page_count);
1808 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1809 }
1810 if (IS_ERR(page)) {
1811 /* We've tried hard to allocate the memory by reaping
1812 * our own buffer, now let the real VM do its job and
1813 * go down in flames if truly OOM.
1814 */
Linus Torvaldscaf49192012-12-10 10:51:16 -08001815 gfp &= ~(__GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD);
Chris Wilson6c085a72012-08-20 11:40:46 +02001816 gfp |= __GFP_IO | __GFP_WAIT;
1817
1818 i915_gem_shrink_all(dev_priv);
1819 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1820 if (IS_ERR(page))
1821 goto err_pages;
1822
Linus Torvaldscaf49192012-12-10 10:51:16 -08001823 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001824 gfp &= ~(__GFP_IO | __GFP_WAIT);
1825 }
Konrad Rzeszutek Wilk1625e7e2013-06-24 11:47:48 -04001826#ifdef CONFIG_SWIOTLB
1827 if (swiotlb_nr_tbl()) {
1828 st->nents++;
1829 sg_set_page(sg, page, PAGE_SIZE, 0);
1830 sg = sg_next(sg);
1831 continue;
1832 }
1833#endif
Imre Deak90797e62013-02-18 19:28:03 +02001834 if (!i || page_to_pfn(page) != last_pfn + 1) {
1835 if (i)
1836 sg = sg_next(sg);
1837 st->nents++;
1838 sg_set_page(sg, page, PAGE_SIZE, 0);
1839 } else {
1840 sg->length += PAGE_SIZE;
1841 }
1842 last_pfn = page_to_pfn(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001843 }
Konrad Rzeszutek Wilk1625e7e2013-06-24 11:47:48 -04001844#ifdef CONFIG_SWIOTLB
1845 if (!swiotlb_nr_tbl())
1846#endif
1847 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01001848 obj->pages = st;
1849
Eric Anholt673a3942008-07-30 12:06:12 -07001850 if (i915_gem_object_needs_bit17_swizzle(obj))
1851 i915_gem_object_do_bit_17_swizzle(obj);
1852
1853 return 0;
1854
1855err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02001856 sg_mark_end(sg);
1857 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02001858 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01001859 sg_free_table(st);
1860 kfree(st);
Eric Anholt673a3942008-07-30 12:06:12 -07001861 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001862}
1863
Chris Wilson37e680a2012-06-07 15:38:42 +01001864/* Ensure that the associated pages are gathered from the backing storage
1865 * and pinned into our object. i915_gem_object_get_pages() may be called
1866 * multiple times before they are released by a single call to
1867 * i915_gem_object_put_pages() - once the pages are no longer referenced
1868 * either as a result of memory pressure (reaping pages under the shrinker)
1869 * or as the object is itself released.
1870 */
1871int
1872i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
1873{
1874 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1875 const struct drm_i915_gem_object_ops *ops = obj->ops;
1876 int ret;
1877
Chris Wilson2f745ad2012-09-04 21:02:58 +01001878 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01001879 return 0;
1880
Chris Wilson43e28f02013-01-08 10:53:09 +00001881 if (obj->madv != I915_MADV_WILLNEED) {
1882 DRM_ERROR("Attempting to obtain a purgeable object\n");
1883 return -EINVAL;
1884 }
1885
Chris Wilsona5570172012-09-04 21:02:54 +01001886 BUG_ON(obj->pages_pin_count);
1887
Chris Wilson37e680a2012-06-07 15:38:42 +01001888 ret = ops->get_pages(obj);
1889 if (ret)
1890 return ret;
1891
Ben Widawsky35c20a62013-05-31 11:28:48 -07001892 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01001893 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001894}
1895
Chris Wilson54cf91d2010-11-25 18:00:26 +00001896void
Chris Wilson05394f32010-11-08 19:18:58 +00001897i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson9d7730912012-11-27 16:22:52 +00001898 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001899{
Chris Wilson05394f32010-11-08 19:18:58 +00001900 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001901 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9d7730912012-11-27 16:22:52 +00001902 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001903
Zou Nan hai852835f2010-05-21 09:08:56 +08001904 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01001905 if (obj->ring != ring && obj->last_write_seqno) {
1906 /* Keep the seqno relative to the current ring */
1907 obj->last_write_seqno = seqno;
1908 }
Chris Wilson05394f32010-11-08 19:18:58 +00001909 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001910
1911 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001912 if (!obj->active) {
1913 drm_gem_object_reference(&obj->base);
1914 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001915 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001916
Chris Wilson05394f32010-11-08 19:18:58 +00001917 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001918
Chris Wilson0201f1e2012-07-20 12:41:01 +01001919 obj->last_read_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001920
Chris Wilsoncaea7472010-11-12 13:53:37 +00001921 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001922 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001923
Chris Wilson7dd49062012-03-21 10:48:18 +00001924 /* Bump MRU to take account of the delayed flush */
1925 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1926 struct drm_i915_fence_reg *reg;
1927
1928 reg = &dev_priv->fence_regs[obj->fence_reg];
1929 list_move_tail(&reg->lru_list,
1930 &dev_priv->mm.fence_list);
1931 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001932 }
1933}
1934
1935static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00001936i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1937{
Ben Widawskyca191b12013-07-31 17:00:14 -07001938 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1939 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
1940 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001941
Chris Wilson65ce3022012-07-20 12:41:02 +01001942 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001943 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01001944
Ben Widawskyca191b12013-07-31 17:00:14 -07001945 list_move_tail(&vma->mm_list, &ggtt_vm->inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001946
Chris Wilson65ce3022012-07-20 12:41:02 +01001947 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001948 obj->ring = NULL;
1949
Chris Wilson65ce3022012-07-20 12:41:02 +01001950 obj->last_read_seqno = 0;
1951 obj->last_write_seqno = 0;
1952 obj->base.write_domain = 0;
1953
1954 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001955 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001956
1957 obj->active = 0;
1958 drm_gem_object_unreference(&obj->base);
1959
1960 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001961}
Eric Anholt673a3942008-07-30 12:06:12 -07001962
Chris Wilson9d7730912012-11-27 16:22:52 +00001963static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001964i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001965{
Chris Wilson9d7730912012-11-27 16:22:52 +00001966 struct drm_i915_private *dev_priv = dev->dev_private;
1967 struct intel_ring_buffer *ring;
1968 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001969
Chris Wilson107f27a52012-12-10 13:56:17 +02001970 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00001971 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02001972 ret = intel_ring_idle(ring);
1973 if (ret)
1974 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00001975 }
Chris Wilson9d7730912012-11-27 16:22:52 +00001976 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02001977
1978 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00001979 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001980 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001981
Chris Wilson9d7730912012-11-27 16:22:52 +00001982 for (j = 0; j < ARRAY_SIZE(ring->sync_seqno); j++)
1983 ring->sync_seqno[j] = 0;
1984 }
1985
1986 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001987}
1988
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001989int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
1990{
1991 struct drm_i915_private *dev_priv = dev->dev_private;
1992 int ret;
1993
1994 if (seqno == 0)
1995 return -EINVAL;
1996
1997 /* HWS page needs to be set less than what we
1998 * will inject to ring
1999 */
2000 ret = i915_gem_init_seqno(dev, seqno - 1);
2001 if (ret)
2002 return ret;
2003
2004 /* Carefully set the last_seqno value so that wrap
2005 * detection still works
2006 */
2007 dev_priv->next_seqno = seqno;
2008 dev_priv->last_seqno = seqno - 1;
2009 if (dev_priv->last_seqno == 0)
2010 dev_priv->last_seqno--;
2011
2012 return 0;
2013}
2014
Chris Wilson9d7730912012-11-27 16:22:52 +00002015int
2016i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002017{
Chris Wilson9d7730912012-11-27 16:22:52 +00002018 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002019
Chris Wilson9d7730912012-11-27 16:22:52 +00002020 /* reserve 0 for non-seqno */
2021 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002022 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002023 if (ret)
2024 return ret;
2025
2026 dev_priv->next_seqno = 1;
2027 }
2028
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002029 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002030 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002031}
2032
Mika Kuoppala0025c072013-06-12 12:35:30 +03002033int __i915_add_request(struct intel_ring_buffer *ring,
2034 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002035 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002036 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002037{
Chris Wilsondb53a302011-02-03 11:57:46 +00002038 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002039 struct drm_i915_gem_request *request;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002040 u32 request_ring_position, request_start;
Eric Anholt673a3942008-07-30 12:06:12 -07002041 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01002042 int ret;
2043
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002044 request_start = intel_ring_get_tail(ring);
Daniel Vettercc889e02012-06-13 20:45:19 +02002045 /*
2046 * Emit any outstanding flushes - execbuf can fail to emit the flush
2047 * after having emitted the batchbuffer command. Hence we need to fix
2048 * things up similar to emitting the lazy request. The difference here
2049 * is that the flush _must_ happen before the next request, no matter
2050 * what.
2051 */
Chris Wilsona7b97612012-07-20 12:41:08 +01002052 ret = intel_ring_flush_all_caches(ring);
2053 if (ret)
2054 return ret;
Daniel Vettercc889e02012-06-13 20:45:19 +02002055
Chris Wilsonacb868d2012-09-26 13:47:30 +01002056 request = kmalloc(sizeof(*request), GFP_KERNEL);
2057 if (request == NULL)
2058 return -ENOMEM;
Daniel Vettercc889e02012-06-13 20:45:19 +02002059
Eric Anholt673a3942008-07-30 12:06:12 -07002060
Chris Wilsona71d8d92012-02-15 11:25:36 +00002061 /* Record the position of the start of the request so that
2062 * should we detect the updated seqno part-way through the
2063 * GPU processing the request, we never over-estimate the
2064 * position of the head.
2065 */
2066 request_ring_position = intel_ring_get_tail(ring);
2067
Chris Wilson9d7730912012-11-27 16:22:52 +00002068 ret = ring->add_request(ring);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002069 if (ret) {
2070 kfree(request);
2071 return ret;
2072 }
Eric Anholt673a3942008-07-30 12:06:12 -07002073
Chris Wilson9d7730912012-11-27 16:22:52 +00002074 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002075 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002076 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002077 request->tail = request_ring_position;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002078 request->ctx = ring->last_context;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002079 request->batch_obj = obj;
2080
2081 /* Whilst this request exists, batch_obj will be on the
2082 * active_list, and so will hold the active reference. Only when this
2083 * request is retired will the the batch_obj be moved onto the
2084 * inactive_list and lose its active reference. Hence we do not need
2085 * to explicitly hold another reference here.
2086 */
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002087
2088 if (request->ctx)
2089 i915_gem_context_reference(request->ctx);
2090
Eric Anholt673a3942008-07-30 12:06:12 -07002091 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002092 was_empty = list_empty(&ring->request_list);
2093 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002094 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002095
Chris Wilsondb53a302011-02-03 11:57:46 +00002096 if (file) {
2097 struct drm_i915_file_private *file_priv = file->driver_priv;
2098
Chris Wilson1c255952010-09-26 11:03:27 +01002099 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002100 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002101 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002102 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002103 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002104 }
Eric Anholt673a3942008-07-30 12:06:12 -07002105
Chris Wilson9d7730912012-11-27 16:22:52 +00002106 trace_i915_gem_request_add(ring, request->seqno);
Daniel Vetter5391d0c2012-01-25 14:03:57 +01002107 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00002108
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002109 if (!dev_priv->ums.mm_suspended) {
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002110 i915_queue_hangcheck(ring->dev);
2111
Chris Wilsonf047e392012-07-21 12:31:41 +01002112 if (was_empty) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01002113 queue_delayed_work(dev_priv->wq,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002114 &dev_priv->mm.retire_work,
2115 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002116 intel_mark_busy(dev_priv->dev);
2117 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002118 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002119
Chris Wilsonacb868d2012-09-26 13:47:30 +01002120 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002121 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002122 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002123}
2124
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002125static inline void
2126i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002127{
Chris Wilson1c255952010-09-26 11:03:27 +01002128 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002129
Chris Wilson1c255952010-09-26 11:03:27 +01002130 if (!file_priv)
2131 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002132
Chris Wilson1c255952010-09-26 11:03:27 +01002133 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00002134 if (request->file_priv) {
2135 list_del(&request->client_list);
2136 request->file_priv = NULL;
2137 }
Chris Wilson1c255952010-09-26 11:03:27 +01002138 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002139}
2140
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002141static bool i915_head_inside_object(u32 acthd, struct drm_i915_gem_object *obj,
2142 struct i915_address_space *vm)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002143{
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002144 if (acthd >= i915_gem_obj_offset(obj, vm) &&
2145 acthd < i915_gem_obj_offset(obj, vm) + obj->base.size)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002146 return true;
2147
2148 return false;
2149}
2150
2151static bool i915_head_inside_request(const u32 acthd_unmasked,
2152 const u32 request_start,
2153 const u32 request_end)
2154{
2155 const u32 acthd = acthd_unmasked & HEAD_ADDR;
2156
2157 if (request_start < request_end) {
2158 if (acthd >= request_start && acthd < request_end)
2159 return true;
2160 } else if (request_start > request_end) {
2161 if (acthd >= request_start || acthd < request_end)
2162 return true;
2163 }
2164
2165 return false;
2166}
2167
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002168static struct i915_address_space *
2169request_to_vm(struct drm_i915_gem_request *request)
2170{
2171 struct drm_i915_private *dev_priv = request->ring->dev->dev_private;
2172 struct i915_address_space *vm;
2173
2174 vm = &dev_priv->gtt.base;
2175
2176 return vm;
2177}
2178
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002179static bool i915_request_guilty(struct drm_i915_gem_request *request,
2180 const u32 acthd, bool *inside)
2181{
2182 /* There is a possibility that unmasked head address
2183 * pointing inside the ring, matches the batch_obj address range.
2184 * However this is extremely unlikely.
2185 */
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002186 if (request->batch_obj) {
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002187 if (i915_head_inside_object(acthd, request->batch_obj,
2188 request_to_vm(request))) {
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002189 *inside = true;
2190 return true;
2191 }
2192 }
2193
2194 if (i915_head_inside_request(acthd, request->head, request->tail)) {
2195 *inside = false;
2196 return true;
2197 }
2198
2199 return false;
2200}
2201
2202static void i915_set_reset_status(struct intel_ring_buffer *ring,
2203 struct drm_i915_gem_request *request,
2204 u32 acthd)
2205{
2206 struct i915_ctx_hang_stats *hs = NULL;
2207 bool inside, guilty;
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002208 unsigned long offset = 0;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002209
2210 /* Innocent until proven guilty */
2211 guilty = false;
2212
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002213 if (request->batch_obj)
2214 offset = i915_gem_obj_offset(request->batch_obj,
2215 request_to_vm(request));
2216
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002217 if (ring->hangcheck.action != HANGCHECK_WAIT &&
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002218 i915_request_guilty(request, acthd, &inside)) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002219 DRM_ERROR("%s hung %s bo (0x%lx ctx %d) at 0x%x\n",
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002220 ring->name,
2221 inside ? "inside" : "flushing",
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002222 offset,
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002223 request->ctx ? request->ctx->id : 0,
2224 acthd);
2225
2226 guilty = true;
2227 }
2228
2229 /* If contexts are disabled or this is the default context, use
2230 * file_priv->reset_state
2231 */
2232 if (request->ctx && request->ctx->id != DEFAULT_CONTEXT_ID)
2233 hs = &request->ctx->hang_stats;
2234 else if (request->file_priv)
2235 hs = &request->file_priv->hang_stats;
2236
2237 if (hs) {
2238 if (guilty)
2239 hs->batch_active++;
2240 else
2241 hs->batch_pending++;
2242 }
2243}
2244
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002245static void i915_gem_free_request(struct drm_i915_gem_request *request)
2246{
2247 list_del(&request->list);
2248 i915_gem_request_remove_from_client(request);
2249
2250 if (request->ctx)
2251 i915_gem_context_unreference(request->ctx);
2252
2253 kfree(request);
2254}
2255
Chris Wilsondfaae392010-09-22 10:31:52 +01002256static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
2257 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002258{
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002259 u32 completed_seqno;
2260 u32 acthd;
2261
2262 acthd = intel_ring_get_active_head(ring);
2263 completed_seqno = ring->get_seqno(ring, false);
2264
Chris Wilsondfaae392010-09-22 10:31:52 +01002265 while (!list_empty(&ring->request_list)) {
2266 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01002267
Chris Wilsondfaae392010-09-22 10:31:52 +01002268 request = list_first_entry(&ring->request_list,
2269 struct drm_i915_gem_request,
2270 list);
2271
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002272 if (request->seqno > completed_seqno)
2273 i915_set_reset_status(ring, request, acthd);
2274
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002275 i915_gem_free_request(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01002276 }
2277
2278 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002279 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002280
Chris Wilson05394f32010-11-08 19:18:58 +00002281 obj = list_first_entry(&ring->active_list,
2282 struct drm_i915_gem_object,
2283 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002284
Chris Wilson05394f32010-11-08 19:18:58 +00002285 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002286 }
Eric Anholt673a3942008-07-30 12:06:12 -07002287}
2288
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002289void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002290{
2291 struct drm_i915_private *dev_priv = dev->dev_private;
2292 int i;
2293
Daniel Vetter4b9de732011-10-09 21:52:02 +02002294 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002295 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002296
Daniel Vetter94a335d2013-07-17 14:51:28 +02002297 /*
2298 * Commit delayed tiling changes if we have an object still
2299 * attached to the fence, otherwise just clear the fence.
2300 */
2301 if (reg->obj) {
2302 i915_gem_object_update_fence(reg->obj, reg,
2303 reg->obj->tiling_mode);
2304 } else {
2305 i915_gem_write_fence(dev, i, NULL);
2306 }
Chris Wilson312817a2010-11-22 11:50:11 +00002307 }
2308}
2309
Chris Wilson069efc12010-09-30 16:53:18 +01002310void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002311{
Chris Wilsondfaae392010-09-22 10:31:52 +01002312 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002313 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002314 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002315
Chris Wilsonb4519512012-05-11 14:29:30 +01002316 for_each_ring(ring, dev_priv, i)
2317 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002318
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002319 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002320}
2321
2322/**
2323 * This function clears the request list as sequence numbers are passed.
2324 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00002325void
Chris Wilsondb53a302011-02-03 11:57:46 +00002326i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002327{
Eric Anholt673a3942008-07-30 12:06:12 -07002328 uint32_t seqno;
2329
Chris Wilsondb53a302011-02-03 11:57:46 +00002330 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002331 return;
2332
Chris Wilsondb53a302011-02-03 11:57:46 +00002333 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002334
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002335 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002336
Zou Nan hai852835f2010-05-21 09:08:56 +08002337 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002338 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002339
Zou Nan hai852835f2010-05-21 09:08:56 +08002340 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002341 struct drm_i915_gem_request,
2342 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002343
Chris Wilsondfaae392010-09-22 10:31:52 +01002344 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002345 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002346
Chris Wilsondb53a302011-02-03 11:57:46 +00002347 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002348 /* We know the GPU must have read the request to have
2349 * sent us the seqno + interrupt, so use the position
2350 * of tail of the request to update the last known position
2351 * of the GPU head.
2352 */
2353 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002354
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002355 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002356 }
2357
2358 /* Move any buffers on the active list that are no longer referenced
2359 * by the ringbuffer to the flushing/inactive lists as appropriate.
2360 */
2361 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002362 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002363
Akshay Joshi0206e352011-08-16 15:34:10 -04002364 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002365 struct drm_i915_gem_object,
2366 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002367
Chris Wilson0201f1e2012-07-20 12:41:01 +01002368 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002369 break;
2370
Chris Wilson65ce3022012-07-20 12:41:02 +01002371 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002372 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002373
Chris Wilsondb53a302011-02-03 11:57:46 +00002374 if (unlikely(ring->trace_irq_seqno &&
2375 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002376 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002377 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002378 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002379
Chris Wilsondb53a302011-02-03 11:57:46 +00002380 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002381}
2382
2383void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002384i915_gem_retire_requests(struct drm_device *dev)
2385{
2386 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002387 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002388 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002389
Chris Wilsonb4519512012-05-11 14:29:30 +01002390 for_each_ring(ring, dev_priv, i)
2391 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002392}
2393
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002394static void
Eric Anholt673a3942008-07-30 12:06:12 -07002395i915_gem_retire_work_handler(struct work_struct *work)
2396{
2397 drm_i915_private_t *dev_priv;
2398 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01002399 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00002400 bool idle;
2401 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002402
2403 dev_priv = container_of(work, drm_i915_private_t,
2404 mm.retire_work.work);
2405 dev = dev_priv->dev;
2406
Chris Wilson891b48c2010-09-29 12:26:37 +01002407 /* Come back later if the device is busy... */
2408 if (!mutex_trylock(&dev->struct_mutex)) {
Chris Wilsonbcb45082012-10-05 17:02:57 +01002409 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2410 round_jiffies_up_relative(HZ));
Chris Wilson891b48c2010-09-29 12:26:37 +01002411 return;
2412 }
2413
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002414 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002415
Chris Wilson0a587052011-01-09 21:05:44 +00002416 /* Send a periodic flush down the ring so we don't hold onto GEM
2417 * objects indefinitely.
2418 */
2419 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002420 for_each_ring(ring, dev_priv, i) {
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002421 if (ring->gpu_caches_dirty)
Mika Kuoppala0025c072013-06-12 12:35:30 +03002422 i915_add_request(ring, NULL);
Chris Wilson0a587052011-01-09 21:05:44 +00002423
2424 idle &= list_empty(&ring->request_list);
2425 }
2426
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002427 if (!dev_priv->ums.mm_suspended && !idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002428 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2429 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002430 if (idle)
2431 intel_mark_idle(dev);
Chris Wilson0a587052011-01-09 21:05:44 +00002432
Eric Anholt673a3942008-07-30 12:06:12 -07002433 mutex_unlock(&dev->struct_mutex);
2434}
2435
Ben Widawsky5816d642012-04-11 11:18:19 -07002436/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002437 * Ensures that an object will eventually get non-busy by flushing any required
2438 * write domains, emitting any outstanding lazy request and retiring and
2439 * completed requests.
2440 */
2441static int
2442i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2443{
2444 int ret;
2445
2446 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002447 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002448 if (ret)
2449 return ret;
2450
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002451 i915_gem_retire_requests_ring(obj->ring);
2452 }
2453
2454 return 0;
2455}
2456
2457/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002458 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2459 * @DRM_IOCTL_ARGS: standard ioctl arguments
2460 *
2461 * Returns 0 if successful, else an error is returned with the remaining time in
2462 * the timeout parameter.
2463 * -ETIME: object is still busy after timeout
2464 * -ERESTARTSYS: signal interrupted the wait
2465 * -ENONENT: object doesn't exist
2466 * Also possible, but rare:
2467 * -EAGAIN: GPU wedged
2468 * -ENOMEM: damn
2469 * -ENODEV: Internal IRQ fail
2470 * -E?: The add request failed
2471 *
2472 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2473 * non-zero timeout parameter the wait ioctl will wait for the given number of
2474 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2475 * without holding struct_mutex the object may become re-busied before this
2476 * function completes. A similar but shorter * race condition exists in the busy
2477 * ioctl
2478 */
2479int
2480i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2481{
Daniel Vetterf69061b2012-12-06 09:01:42 +01002482 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002483 struct drm_i915_gem_wait *args = data;
2484 struct drm_i915_gem_object *obj;
2485 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002486 struct timespec timeout_stack, *timeout = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002487 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002488 u32 seqno = 0;
2489 int ret = 0;
2490
Ben Widawskyeac1f142012-06-05 15:24:24 -07002491 if (args->timeout_ns >= 0) {
2492 timeout_stack = ns_to_timespec(args->timeout_ns);
2493 timeout = &timeout_stack;
2494 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002495
2496 ret = i915_mutex_lock_interruptible(dev);
2497 if (ret)
2498 return ret;
2499
2500 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2501 if (&obj->base == NULL) {
2502 mutex_unlock(&dev->struct_mutex);
2503 return -ENOENT;
2504 }
2505
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002506 /* Need to make sure the object gets inactive eventually. */
2507 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002508 if (ret)
2509 goto out;
2510
2511 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002512 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002513 ring = obj->ring;
2514 }
2515
2516 if (seqno == 0)
2517 goto out;
2518
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002519 /* Do this after OLR check to make sure we make forward progress polling
2520 * on this IOCTL with a 0 timeout (like busy ioctl)
2521 */
2522 if (!args->timeout_ns) {
2523 ret = -ETIME;
2524 goto out;
2525 }
2526
2527 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002528 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002529 mutex_unlock(&dev->struct_mutex);
2530
Daniel Vetterf69061b2012-12-06 09:01:42 +01002531 ret = __wait_seqno(ring, seqno, reset_counter, true, timeout);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03002532 if (timeout)
Ben Widawskyeac1f142012-06-05 15:24:24 -07002533 args->timeout_ns = timespec_to_ns(timeout);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002534 return ret;
2535
2536out:
2537 drm_gem_object_unreference(&obj->base);
2538 mutex_unlock(&dev->struct_mutex);
2539 return ret;
2540}
2541
2542/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002543 * i915_gem_object_sync - sync an object to a ring.
2544 *
2545 * @obj: object which may be in use on another ring.
2546 * @to: ring we wish to use the object on. May be NULL.
2547 *
2548 * This code is meant to abstract object synchronization with the GPU.
2549 * Calling with NULL implies synchronizing the object with the CPU
2550 * rather than a particular GPU ring.
2551 *
2552 * Returns 0 if successful, else propagates up the lower layer error.
2553 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002554int
2555i915_gem_object_sync(struct drm_i915_gem_object *obj,
2556 struct intel_ring_buffer *to)
2557{
2558 struct intel_ring_buffer *from = obj->ring;
2559 u32 seqno;
2560 int ret, idx;
2561
2562 if (from == NULL || to == from)
2563 return 0;
2564
Ben Widawsky5816d642012-04-11 11:18:19 -07002565 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002566 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002567
2568 idx = intel_ring_sync_index(from, to);
2569
Chris Wilson0201f1e2012-07-20 12:41:01 +01002570 seqno = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002571 if (seqno <= from->sync_seqno[idx])
2572 return 0;
2573
Ben Widawskyb4aca012012-04-25 20:50:12 -07002574 ret = i915_gem_check_olr(obj->ring, seqno);
2575 if (ret)
2576 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002577
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002578 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002579 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002580 /* We use last_read_seqno because sync_to()
2581 * might have just caused seqno wrap under
2582 * the radar.
2583 */
2584 from->sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002585
Ben Widawskye3a5a222012-04-11 11:18:20 -07002586 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002587}
2588
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002589static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2590{
2591 u32 old_write_domain, old_read_domains;
2592
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002593 /* Force a pagefault for domain tracking on next user access */
2594 i915_gem_release_mmap(obj);
2595
Keith Packardb97c3d92011-06-24 21:02:59 -07002596 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2597 return;
2598
Chris Wilson97c809fd2012-10-09 19:24:38 +01002599 /* Wait for any direct GTT access to complete */
2600 mb();
2601
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002602 old_read_domains = obj->base.read_domains;
2603 old_write_domain = obj->base.write_domain;
2604
2605 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2606 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2607
2608 trace_i915_gem_object_change_domain(obj,
2609 old_read_domains,
2610 old_write_domain);
2611}
2612
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002613int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07002614{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002615 struct drm_i915_gem_object *obj = vma->obj;
Daniel Vetter7bddb012012-02-09 17:15:47 +01002616 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00002617 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002618
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002619 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07002620 return 0;
2621
Ben Widawsky433544b2013-08-13 18:09:06 -07002622 if (!drm_mm_node_allocated(&vma->node))
2623 goto destroy;
2624
Chris Wilson31d8d652012-05-24 19:11:20 +01002625 if (obj->pin_count)
2626 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002627
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002628 BUG_ON(obj->pages == NULL);
2629
Chris Wilsona8198ee2011-04-13 22:04:09 +01002630 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002631 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002632 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002633 /* Continue on if we fail due to EIO, the GPU is hung so we
2634 * should be safe and we need to cleanup or else we might
2635 * cause memory corruption through use-after-free.
2636 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002637
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002638 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002639
Daniel Vetter96b47b62009-12-15 17:50:00 +01002640 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002641 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002642 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002643 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002644
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002645 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00002646
Daniel Vetter74898d72012-02-15 23:50:22 +01002647 if (obj->has_global_gtt_mapping)
2648 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002649 if (obj->has_aliasing_ppgtt_mapping) {
2650 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2651 obj->has_aliasing_ppgtt_mapping = 0;
2652 }
Daniel Vetter74163902012-02-15 23:50:21 +01002653 i915_gem_gtt_finish_object(obj);
Ben Widawsky401c29f2013-05-31 11:28:47 -07002654 i915_gem_object_unpin_pages(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002655
Ben Widawskyca191b12013-07-31 17:00:14 -07002656 list_del(&vma->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002657 /* Avoid an unnecessary call to unbind on rebind. */
Ben Widawsky5cacaac2013-07-31 17:00:13 -07002658 if (i915_is_ggtt(vma->vm))
2659 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002660
Ben Widawsky2f633152013-07-17 12:19:03 -07002661 drm_mm_remove_node(&vma->node);
Ben Widawsky433544b2013-08-13 18:09:06 -07002662
2663destroy:
Ben Widawsky2f633152013-07-17 12:19:03 -07002664 i915_gem_vma_destroy(vma);
2665
2666 /* Since the unbound list is global, only move to that list if
2667 * no more VMAs exist.
2668 * NB: Until we have real VMAs there will only ever be one */
2669 WARN_ON(!list_empty(&obj->vma_list));
2670 if (list_empty(&obj->vma_list))
2671 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002672
Chris Wilson88241782011-01-07 17:09:48 +00002673 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002674}
2675
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002676/**
2677 * Unbinds an object from the global GTT aperture.
2678 */
2679int
2680i915_gem_object_ggtt_unbind(struct drm_i915_gem_object *obj)
2681{
2682 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2683 struct i915_address_space *ggtt = &dev_priv->gtt.base;
2684
Dan Carpenter58e73e12013-08-09 12:44:11 +03002685 if (!i915_gem_obj_ggtt_bound(obj))
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002686 return 0;
2687
2688 if (obj->pin_count)
2689 return -EBUSY;
2690
2691 BUG_ON(obj->pages == NULL);
2692
2693 return i915_vma_unbind(i915_gem_obj_to_vma(obj, ggtt));
2694}
2695
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002696int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002697{
2698 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002699 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002700 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002701
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002702 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002703 for_each_ring(ring, dev_priv, i) {
Ben Widawskyb6c74882012-08-14 14:35:14 -07002704 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2705 if (ret)
2706 return ret;
2707
Chris Wilson3e960502012-11-27 16:22:54 +00002708 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002709 if (ret)
2710 return ret;
2711 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002712
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002713 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002714}
2715
Chris Wilson9ce079e2012-04-17 15:31:30 +01002716static void i965_write_fence_reg(struct drm_device *dev, int reg,
2717 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002718{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002719 drm_i915_private_t *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02002720 int fence_reg;
2721 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002722
Imre Deak56c844e2013-01-07 21:47:34 +02002723 if (INTEL_INFO(dev)->gen >= 6) {
2724 fence_reg = FENCE_REG_SANDYBRIDGE_0;
2725 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
2726 } else {
2727 fence_reg = FENCE_REG_965_0;
2728 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
2729 }
2730
Chris Wilsond18b9612013-07-10 13:36:23 +01002731 fence_reg += reg * 8;
2732
2733 /* To w/a incoherency with non-atomic 64-bit register updates,
2734 * we split the 64-bit update into two 32-bit writes. In order
2735 * for a partial fence not to be evaluated between writes, we
2736 * precede the update with write to turn off the fence register,
2737 * and only enable the fence as the last step.
2738 *
2739 * For extra levels of paranoia, we make sure each step lands
2740 * before applying the next step.
2741 */
2742 I915_WRITE(fence_reg, 0);
2743 POSTING_READ(fence_reg);
2744
Chris Wilson9ce079e2012-04-17 15:31:30 +01002745 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002746 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01002747 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002748
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002749 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01002750 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002751 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02002752 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002753 if (obj->tiling_mode == I915_TILING_Y)
2754 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2755 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00002756
Chris Wilsond18b9612013-07-10 13:36:23 +01002757 I915_WRITE(fence_reg + 4, val >> 32);
2758 POSTING_READ(fence_reg + 4);
2759
2760 I915_WRITE(fence_reg + 0, val);
2761 POSTING_READ(fence_reg);
2762 } else {
2763 I915_WRITE(fence_reg + 4, 0);
2764 POSTING_READ(fence_reg + 4);
2765 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002766}
2767
Chris Wilson9ce079e2012-04-17 15:31:30 +01002768static void i915_write_fence_reg(struct drm_device *dev, int reg,
2769 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002770{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002771 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002772 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002773
Chris Wilson9ce079e2012-04-17 15:31:30 +01002774 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002775 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002776 int pitch_val;
2777 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002778
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002779 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002780 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002781 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2782 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2783 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002784
2785 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2786 tile_width = 128;
2787 else
2788 tile_width = 512;
2789
2790 /* Note: pitch better be a power of two tile widths */
2791 pitch_val = obj->stride / tile_width;
2792 pitch_val = ffs(pitch_val) - 1;
2793
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002794 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002795 if (obj->tiling_mode == I915_TILING_Y)
2796 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2797 val |= I915_FENCE_SIZE_BITS(size);
2798 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2799 val |= I830_FENCE_REG_VALID;
2800 } else
2801 val = 0;
2802
2803 if (reg < 8)
2804 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002805 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002806 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002807
Chris Wilson9ce079e2012-04-17 15:31:30 +01002808 I915_WRITE(reg, val);
2809 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002810}
2811
Chris Wilson9ce079e2012-04-17 15:31:30 +01002812static void i830_write_fence_reg(struct drm_device *dev, int reg,
2813 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002814{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002815 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002816 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002817
Chris Wilson9ce079e2012-04-17 15:31:30 +01002818 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002819 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002820 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002821
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002822 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002823 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002824 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2825 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
2826 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002827
Chris Wilson9ce079e2012-04-17 15:31:30 +01002828 pitch_val = obj->stride / 128;
2829 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002830
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002831 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002832 if (obj->tiling_mode == I915_TILING_Y)
2833 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2834 val |= I830_FENCE_SIZE_BITS(size);
2835 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2836 val |= I830_FENCE_REG_VALID;
2837 } else
2838 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002839
Chris Wilson9ce079e2012-04-17 15:31:30 +01002840 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2841 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2842}
2843
Chris Wilsond0a57782012-10-09 19:24:37 +01002844inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
2845{
2846 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
2847}
2848
Chris Wilson9ce079e2012-04-17 15:31:30 +01002849static void i915_gem_write_fence(struct drm_device *dev, int reg,
2850 struct drm_i915_gem_object *obj)
2851{
Chris Wilsond0a57782012-10-09 19:24:37 +01002852 struct drm_i915_private *dev_priv = dev->dev_private;
2853
2854 /* Ensure that all CPU reads are completed before installing a fence
2855 * and all writes before removing the fence.
2856 */
2857 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
2858 mb();
2859
Daniel Vetter94a335d2013-07-17 14:51:28 +02002860 WARN(obj && (!obj->stride || !obj->tiling_mode),
2861 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
2862 obj->stride, obj->tiling_mode);
2863
Chris Wilson9ce079e2012-04-17 15:31:30 +01002864 switch (INTEL_INFO(dev)->gen) {
2865 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02002866 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01002867 case 5:
2868 case 4: i965_write_fence_reg(dev, reg, obj); break;
2869 case 3: i915_write_fence_reg(dev, reg, obj); break;
2870 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08002871 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01002872 }
Chris Wilsond0a57782012-10-09 19:24:37 +01002873
2874 /* And similarly be paranoid that no direct access to this region
2875 * is reordered to before the fence is installed.
2876 */
2877 if (i915_gem_object_needs_mb(obj))
2878 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08002879}
2880
Chris Wilson61050802012-04-17 15:31:31 +01002881static inline int fence_number(struct drm_i915_private *dev_priv,
2882 struct drm_i915_fence_reg *fence)
2883{
2884 return fence - dev_priv->fence_regs;
2885}
2886
2887static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2888 struct drm_i915_fence_reg *fence,
2889 bool enable)
2890{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01002891 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01002892 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01002893
Chris Wilson46a0b632013-07-10 13:36:24 +01002894 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01002895
2896 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01002897 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01002898 fence->obj = obj;
2899 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2900 } else {
2901 obj->fence_reg = I915_FENCE_REG_NONE;
2902 fence->obj = NULL;
2903 list_del_init(&fence->lru_list);
2904 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02002905 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01002906}
2907
Chris Wilsond9e86c02010-11-10 16:40:20 +00002908static int
Chris Wilsond0a57782012-10-09 19:24:37 +01002909i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002910{
Chris Wilson1c293ea2012-04-17 15:31:27 +01002911 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01002912 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002913 if (ret)
2914 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002915
2916 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002917 }
2918
Chris Wilson86d5bc32012-07-20 12:41:04 +01002919 obj->fenced_gpu_access = false;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002920 return 0;
2921}
2922
2923int
2924i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2925{
Chris Wilson61050802012-04-17 15:31:31 +01002926 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002927 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002928 int ret;
2929
Chris Wilsond0a57782012-10-09 19:24:37 +01002930 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002931 if (ret)
2932 return ret;
2933
Chris Wilson61050802012-04-17 15:31:31 +01002934 if (obj->fence_reg == I915_FENCE_REG_NONE)
2935 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002936
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002937 fence = &dev_priv->fence_regs[obj->fence_reg];
2938
Chris Wilson61050802012-04-17 15:31:31 +01002939 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002940 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002941
2942 return 0;
2943}
2944
2945static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002946i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002947{
Daniel Vetterae3db242010-02-19 11:51:58 +01002948 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002949 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002950 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002951
2952 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002953 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002954 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2955 reg = &dev_priv->fence_regs[i];
2956 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002957 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002958
Chris Wilson1690e1e2011-12-14 13:57:08 +01002959 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002960 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002961 }
2962
Chris Wilsond9e86c02010-11-10 16:40:20 +00002963 if (avail == NULL)
2964 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002965
2966 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002967 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002968 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002969 continue;
2970
Chris Wilson8fe301a2012-04-17 15:31:28 +01002971 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002972 }
2973
Chris Wilson8fe301a2012-04-17 15:31:28 +01002974 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002975}
2976
Jesse Barnesde151cf2008-11-12 10:03:55 -08002977/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002978 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002979 * @obj: object to map through a fence reg
2980 *
2981 * When mapping objects through the GTT, userspace wants to be able to write
2982 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002983 * This function walks the fence regs looking for a free one for @obj,
2984 * stealing one if it can't find any.
2985 *
2986 * It then sets up the reg based on the object's properties: address, pitch
2987 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002988 *
2989 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002990 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002991int
Chris Wilson06d98132012-04-17 15:31:24 +01002992i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002993{
Chris Wilson05394f32010-11-08 19:18:58 +00002994 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002995 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002996 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002997 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002998 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002999
Chris Wilson14415742012-04-17 15:31:33 +01003000 /* Have we updated the tiling parameters upon the object and so
3001 * will need to serialise the write to the associated fence register?
3002 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003003 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003004 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003005 if (ret)
3006 return ret;
3007 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003008
Chris Wilsond9e86c02010-11-10 16:40:20 +00003009 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003010 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3011 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003012 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003013 list_move_tail(&reg->lru_list,
3014 &dev_priv->mm.fence_list);
3015 return 0;
3016 }
3017 } else if (enable) {
3018 reg = i915_find_fence_reg(dev);
3019 if (reg == NULL)
3020 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003021
Chris Wilson14415742012-04-17 15:31:33 +01003022 if (reg->obj) {
3023 struct drm_i915_gem_object *old = reg->obj;
3024
Chris Wilsond0a57782012-10-09 19:24:37 +01003025 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003026 if (ret)
3027 return ret;
3028
Chris Wilson14415742012-04-17 15:31:33 +01003029 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003030 }
Chris Wilson14415742012-04-17 15:31:33 +01003031 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003032 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003033
Chris Wilson14415742012-04-17 15:31:33 +01003034 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003035
Chris Wilson9ce079e2012-04-17 15:31:30 +01003036 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003037}
3038
Chris Wilson42d6ab42012-07-26 11:49:32 +01003039static bool i915_gem_valid_gtt_space(struct drm_device *dev,
3040 struct drm_mm_node *gtt_space,
3041 unsigned long cache_level)
3042{
3043 struct drm_mm_node *other;
3044
3045 /* On non-LLC machines we have to be careful when putting differing
3046 * types of snoopable memory together to avoid the prefetcher
Damien Lespiau4239ca72012-12-03 16:26:16 +00003047 * crossing memory domains and dying.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003048 */
3049 if (HAS_LLC(dev))
3050 return true;
3051
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003052 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003053 return true;
3054
3055 if (list_empty(&gtt_space->node_list))
3056 return true;
3057
3058 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3059 if (other->allocated && !other->hole_follows && other->color != cache_level)
3060 return false;
3061
3062 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3063 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3064 return false;
3065
3066 return true;
3067}
3068
3069static void i915_gem_verify_gtt(struct drm_device *dev)
3070{
3071#if WATCH_GTT
3072 struct drm_i915_private *dev_priv = dev->dev_private;
3073 struct drm_i915_gem_object *obj;
3074 int err = 0;
3075
Ben Widawsky35c20a62013-05-31 11:28:48 -07003076 list_for_each_entry(obj, &dev_priv->mm.gtt_list, global_list) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003077 if (obj->gtt_space == NULL) {
3078 printk(KERN_ERR "object found on GTT list with no space reserved\n");
3079 err++;
3080 continue;
3081 }
3082
3083 if (obj->cache_level != obj->gtt_space->color) {
3084 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003085 i915_gem_obj_ggtt_offset(obj),
3086 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003087 obj->cache_level,
3088 obj->gtt_space->color);
3089 err++;
3090 continue;
3091 }
3092
3093 if (!i915_gem_valid_gtt_space(dev,
3094 obj->gtt_space,
3095 obj->cache_level)) {
3096 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003097 i915_gem_obj_ggtt_offset(obj),
3098 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003099 obj->cache_level);
3100 err++;
3101 continue;
3102 }
3103 }
3104
3105 WARN_ON(err);
3106#endif
3107}
3108
Jesse Barnesde151cf2008-11-12 10:03:55 -08003109/**
Eric Anholt673a3942008-07-30 12:06:12 -07003110 * Finds free space in the GTT aperture and binds the object there.
3111 */
3112static int
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003113i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3114 struct i915_address_space *vm,
3115 unsigned alignment,
3116 bool map_and_fenceable,
3117 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003118{
Chris Wilson05394f32010-11-08 19:18:58 +00003119 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003120 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003121 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003122 bool mappable, fenceable;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003123 size_t gtt_max =
3124 map_and_fenceable ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003125 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003126 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003127
Ben Widawsky2f633152013-07-17 12:19:03 -07003128 if (WARN_ON(!list_empty(&obj->vma_list)))
3129 return -EBUSY;
3130
Chris Wilsone28f8712011-07-18 13:11:49 -07003131 fence_size = i915_gem_get_gtt_size(dev,
3132 obj->base.size,
3133 obj->tiling_mode);
3134 fence_alignment = i915_gem_get_gtt_alignment(dev,
3135 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003136 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003137 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003138 i915_gem_get_gtt_alignment(dev,
Chris Wilsone28f8712011-07-18 13:11:49 -07003139 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003140 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003141
Eric Anholt673a3942008-07-30 12:06:12 -07003142 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01003143 alignment = map_and_fenceable ? fence_alignment :
3144 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003145 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003146 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
3147 return -EINVAL;
3148 }
3149
Chris Wilson05394f32010-11-08 19:18:58 +00003150 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003151
Chris Wilson654fc602010-05-27 13:18:21 +01003152 /* If the object is bigger than the entire aperture, reject it early
3153 * before evicting everything in a vain attempt to find space.
3154 */
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003155 if (obj->base.size > gtt_max) {
Jani Nikula3765f302013-06-07 16:03:50 +03003156 DRM_ERROR("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%zu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003157 obj->base.size,
3158 map_and_fenceable ? "mappable" : "total",
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003159 gtt_max);
Chris Wilson654fc602010-05-27 13:18:21 +01003160 return -E2BIG;
3161 }
3162
Chris Wilson37e680a2012-06-07 15:38:42 +01003163 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003164 if (ret)
3165 return ret;
3166
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003167 i915_gem_object_pin_pages(obj);
3168
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003169 /* FIXME: For now we only ever use 1 VMA per object */
3170 BUG_ON(!i915_is_ggtt(vm));
3171 WARN_ON(!list_empty(&obj->vma_list));
3172
3173 vma = i915_gem_vma_create(obj, vm);
Dan Carpenterdb473b32013-07-19 08:45:46 +03003174 if (IS_ERR(vma)) {
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003175 ret = PTR_ERR(vma);
3176 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003177 }
3178
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003179search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003180 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003181 size, alignment,
3182 obj->cache_level, 0, gtt_max);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003183 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003184 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003185 obj->cache_level,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003186 map_and_fenceable,
3187 nonblocking);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003188 if (ret == 0)
3189 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003190
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003191 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003192 }
Ben Widawsky2f633152013-07-17 12:19:03 -07003193 if (WARN_ON(!i915_gem_valid_gtt_space(dev, &vma->node,
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003194 obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003195 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003196 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003197 }
3198
Daniel Vetter74163902012-02-15 23:50:21 +01003199 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003200 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003201 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003202
Ben Widawsky35c20a62013-05-31 11:28:48 -07003203 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003204 list_add_tail(&vma->mm_list, &vm->inactive_list);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003205
Daniel Vetter75e9e912010-11-04 17:11:09 +01003206 fenceable =
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003207 i915_is_ggtt(vm) &&
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003208 i915_gem_obj_ggtt_size(obj) == fence_size &&
3209 (i915_gem_obj_ggtt_offset(obj) & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003210
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003211 mappable =
3212 i915_is_ggtt(vm) &&
3213 vma->node.start + obj->base.size <= dev_priv->gtt.mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003214
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003215 /* Map and fenceable only changes if the VM is the global GGTT */
3216 if (i915_is_ggtt(vm))
3217 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003218
Ben Widawsky7ace7ef2013-08-09 22:12:12 -07003219 WARN_ON(map_and_fenceable && !obj->map_and_fenceable);
3220
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003221 trace_i915_vma_bind(vma, map_and_fenceable);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003222 i915_gem_verify_gtt(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003223 return 0;
Ben Widawsky2f633152013-07-17 12:19:03 -07003224
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003225err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003226 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003227err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003228 i915_gem_vma_destroy(vma);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003229err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003230 i915_gem_object_unpin_pages(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003231 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003232}
3233
Chris Wilson000433b2013-08-08 14:41:09 +01003234bool
Chris Wilson2c225692013-08-09 12:26:45 +01003235i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3236 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003237{
Eric Anholt673a3942008-07-30 12:06:12 -07003238 /* If we don't have a page list set up, then we're not pinned
3239 * to GPU, and we can ignore the cache flush because it'll happen
3240 * again at bind time.
3241 */
Chris Wilson05394f32010-11-08 19:18:58 +00003242 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003243 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003244
Imre Deak769ce462013-02-13 21:56:05 +02003245 /*
3246 * Stolen memory is always coherent with the GPU as it is explicitly
3247 * marked as wc by the system, or the system is cache-coherent.
3248 */
3249 if (obj->stolen)
Chris Wilson000433b2013-08-08 14:41:09 +01003250 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003251
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003252 /* If the GPU is snooping the contents of the CPU cache,
3253 * we do not need to manually clear the CPU cache lines. However,
3254 * the caches are only snooped when the render cache is
3255 * flushed/invalidated. As we always have to emit invalidations
3256 * and flushes when moving into and out of the RENDER domain, correct
3257 * snooping behaviour occurs naturally as the result of our domain
3258 * tracking.
3259 */
Chris Wilson2c225692013-08-09 12:26:45 +01003260 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003261 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003262
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003263 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003264 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003265
3266 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003267}
3268
3269/** Flushes the GTT write domain for the object if it's dirty. */
3270static void
Chris Wilson05394f32010-11-08 19:18:58 +00003271i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003272{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003273 uint32_t old_write_domain;
3274
Chris Wilson05394f32010-11-08 19:18:58 +00003275 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003276 return;
3277
Chris Wilson63256ec2011-01-04 18:42:07 +00003278 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003279 * to it immediately go to main memory as far as we know, so there's
3280 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003281 *
3282 * However, we do have to enforce the order so that all writes through
3283 * the GTT land before any writes to the device, such as updates to
3284 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003285 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003286 wmb();
3287
Chris Wilson05394f32010-11-08 19:18:58 +00003288 old_write_domain = obj->base.write_domain;
3289 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003290
3291 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003292 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003293 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003294}
3295
3296/** Flushes the CPU write domain for the object if it's dirty. */
3297static void
Chris Wilson2c225692013-08-09 12:26:45 +01003298i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3299 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003300{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003301 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003302
Chris Wilson05394f32010-11-08 19:18:58 +00003303 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003304 return;
3305
Chris Wilson000433b2013-08-08 14:41:09 +01003306 if (i915_gem_clflush_object(obj, force))
3307 i915_gem_chipset_flush(obj->base.dev);
3308
Chris Wilson05394f32010-11-08 19:18:58 +00003309 old_write_domain = obj->base.write_domain;
3310 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003311
3312 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003313 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003314 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003315}
3316
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003317/**
3318 * Moves a single object to the GTT read, and possibly write domain.
3319 *
3320 * This function returns when the move is complete, including waiting on
3321 * flushes to occur.
3322 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003323int
Chris Wilson20217462010-11-23 15:26:33 +00003324i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003325{
Chris Wilson8325a092012-04-24 15:52:35 +01003326 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003327 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003328 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003329
Eric Anholt02354392008-11-26 13:58:13 -08003330 /* Not valid to be called on unbound objects. */
Ben Widawsky98438772013-07-31 17:00:12 -07003331 if (!i915_gem_obj_bound_any(obj))
Eric Anholt02354392008-11-26 13:58:13 -08003332 return -EINVAL;
3333
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003334 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3335 return 0;
3336
Chris Wilson0201f1e2012-07-20 12:41:01 +01003337 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003338 if (ret)
3339 return ret;
3340
Chris Wilson2c225692013-08-09 12:26:45 +01003341 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003342
Chris Wilsond0a57782012-10-09 19:24:37 +01003343 /* Serialise direct access to this object with the barriers for
3344 * coherent writes from the GPU, by effectively invalidating the
3345 * GTT domain upon first access.
3346 */
3347 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3348 mb();
3349
Chris Wilson05394f32010-11-08 19:18:58 +00003350 old_write_domain = obj->base.write_domain;
3351 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003352
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003353 /* It should now be out of any other write domains, and we can update
3354 * the domain values for our changes.
3355 */
Chris Wilson05394f32010-11-08 19:18:58 +00003356 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3357 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003358 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003359 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3360 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3361 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003362 }
3363
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003364 trace_i915_gem_object_change_domain(obj,
3365 old_read_domains,
3366 old_write_domain);
3367
Chris Wilson8325a092012-04-24 15:52:35 +01003368 /* And bump the LRU for this access */
Ben Widawskyca191b12013-07-31 17:00:14 -07003369 if (i915_gem_object_is_inactive(obj)) {
3370 struct i915_vma *vma = i915_gem_obj_to_vma(obj,
3371 &dev_priv->gtt.base);
3372 if (vma)
3373 list_move_tail(&vma->mm_list,
3374 &dev_priv->gtt.base.inactive_list);
3375
3376 }
Chris Wilson8325a092012-04-24 15:52:35 +01003377
Eric Anholte47c68e2008-11-14 13:35:19 -08003378 return 0;
3379}
3380
Chris Wilsone4ffd172011-04-04 09:44:39 +01003381int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3382 enum i915_cache_level cache_level)
3383{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003384 struct drm_device *dev = obj->base.dev;
3385 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003386 struct i915_vma *vma;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003387 int ret;
3388
3389 if (obj->cache_level == cache_level)
3390 return 0;
3391
3392 if (obj->pin_count) {
3393 DRM_DEBUG("can not change the cache level of pinned objects\n");
3394 return -EBUSY;
3395 }
3396
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003397 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3398 if (!i915_gem_valid_gtt_space(dev, &vma->node, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003399 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003400 if (ret)
3401 return ret;
3402
3403 break;
3404 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003405 }
3406
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003407 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003408 ret = i915_gem_object_finish_gpu(obj);
3409 if (ret)
3410 return ret;
3411
3412 i915_gem_object_finish_gtt(obj);
3413
3414 /* Before SandyBridge, you could not use tiling or fence
3415 * registers with snooped memory, so relinquish any fences
3416 * currently pointing to our region in the aperture.
3417 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003418 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003419 ret = i915_gem_object_put_fence(obj);
3420 if (ret)
3421 return ret;
3422 }
3423
Daniel Vetter74898d72012-02-15 23:50:22 +01003424 if (obj->has_global_gtt_mapping)
3425 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003426 if (obj->has_aliasing_ppgtt_mapping)
3427 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3428 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003429 }
3430
Chris Wilson2c225692013-08-09 12:26:45 +01003431 list_for_each_entry(vma, &obj->vma_list, vma_link)
3432 vma->node.color = cache_level;
3433 obj->cache_level = cache_level;
3434
3435 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003436 u32 old_read_domains, old_write_domain;
3437
3438 /* If we're coming from LLC cached, then we haven't
3439 * actually been tracking whether the data is in the
3440 * CPU cache or not, since we only allow one bit set
3441 * in obj->write_domain and have been skipping the clflushes.
3442 * Just set it to the CPU cache for now.
3443 */
3444 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
3445 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
3446
3447 old_read_domains = obj->base.read_domains;
3448 old_write_domain = obj->base.write_domain;
3449
3450 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3451 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3452
3453 trace_i915_gem_object_change_domain(obj,
3454 old_read_domains,
3455 old_write_domain);
3456 }
3457
Chris Wilson42d6ab42012-07-26 11:49:32 +01003458 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003459 return 0;
3460}
3461
Ben Widawsky199adf42012-09-21 17:01:20 -07003462int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3463 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003464{
Ben Widawsky199adf42012-09-21 17:01:20 -07003465 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003466 struct drm_i915_gem_object *obj;
3467 int ret;
3468
3469 ret = i915_mutex_lock_interruptible(dev);
3470 if (ret)
3471 return ret;
3472
3473 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3474 if (&obj->base == NULL) {
3475 ret = -ENOENT;
3476 goto unlock;
3477 }
3478
Chris Wilson651d7942013-08-08 14:41:10 +01003479 switch (obj->cache_level) {
3480 case I915_CACHE_LLC:
3481 case I915_CACHE_L3_LLC:
3482 args->caching = I915_CACHING_CACHED;
3483 break;
3484
Chris Wilson4257d3b2013-08-08 14:41:11 +01003485 case I915_CACHE_WT:
3486 args->caching = I915_CACHING_DISPLAY;
3487 break;
3488
Chris Wilson651d7942013-08-08 14:41:10 +01003489 default:
3490 args->caching = I915_CACHING_NONE;
3491 break;
3492 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003493
3494 drm_gem_object_unreference(&obj->base);
3495unlock:
3496 mutex_unlock(&dev->struct_mutex);
3497 return ret;
3498}
3499
Ben Widawsky199adf42012-09-21 17:01:20 -07003500int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3501 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003502{
Ben Widawsky199adf42012-09-21 17:01:20 -07003503 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003504 struct drm_i915_gem_object *obj;
3505 enum i915_cache_level level;
3506 int ret;
3507
Ben Widawsky199adf42012-09-21 17:01:20 -07003508 switch (args->caching) {
3509 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003510 level = I915_CACHE_NONE;
3511 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003512 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003513 level = I915_CACHE_LLC;
3514 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003515 case I915_CACHING_DISPLAY:
3516 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3517 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003518 default:
3519 return -EINVAL;
3520 }
3521
Ben Widawsky3bc29132012-09-26 16:15:20 -07003522 ret = i915_mutex_lock_interruptible(dev);
3523 if (ret)
3524 return ret;
3525
Chris Wilsone6994ae2012-07-10 10:27:08 +01003526 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3527 if (&obj->base == NULL) {
3528 ret = -ENOENT;
3529 goto unlock;
3530 }
3531
3532 ret = i915_gem_object_set_cache_level(obj, level);
3533
3534 drm_gem_object_unreference(&obj->base);
3535unlock:
3536 mutex_unlock(&dev->struct_mutex);
3537 return ret;
3538}
3539
Chris Wilsoncc98b412013-08-09 12:25:09 +01003540static bool is_pin_display(struct drm_i915_gem_object *obj)
3541{
3542 /* There are 3 sources that pin objects:
3543 * 1. The display engine (scanouts, sprites, cursors);
3544 * 2. Reservations for execbuffer;
3545 * 3. The user.
3546 *
3547 * We can ignore reservations as we hold the struct_mutex and
3548 * are only called outside of the reservation path. The user
3549 * can only increment pin_count once, and so if after
3550 * subtracting the potential reference by the user, any pin_count
3551 * remains, it must be due to another use by the display engine.
3552 */
3553 return obj->pin_count - !!obj->user_pin_count;
3554}
3555
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003556/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003557 * Prepare buffer for display plane (scanout, cursors, etc).
3558 * Can be called from an uninterruptible phase (modesetting) and allows
3559 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003560 */
3561int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003562i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3563 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003564 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003565{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003566 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003567 int ret;
3568
Chris Wilson0be73282010-12-06 14:36:27 +00003569 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003570 ret = i915_gem_object_sync(obj, pipelined);
3571 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003572 return ret;
3573 }
3574
Chris Wilsoncc98b412013-08-09 12:25:09 +01003575 /* Mark the pin_display early so that we account for the
3576 * display coherency whilst setting up the cache domains.
3577 */
3578 obj->pin_display = true;
3579
Eric Anholta7ef0642011-03-29 16:59:54 -07003580 /* The display engine is not coherent with the LLC cache on gen6. As
3581 * a result, we make sure that the pinning that is about to occur is
3582 * done with uncached PTEs. This is lowest common denominator for all
3583 * chipsets.
3584 *
3585 * However for gen6+, we could do better by using the GFDT bit instead
3586 * of uncaching, which would allow us to flush all the LLC-cached data
3587 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3588 */
Chris Wilson651d7942013-08-08 14:41:10 +01003589 ret = i915_gem_object_set_cache_level(obj,
3590 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003591 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003592 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003593
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003594 /* As the user may map the buffer once pinned in the display plane
3595 * (e.g. libkms for the bootup splash), we have to ensure that we
3596 * always use map_and_fenceable for all scanout buffers.
3597 */
Ben Widawskyc37e2202013-07-31 16:59:58 -07003598 ret = i915_gem_obj_ggtt_pin(obj, alignment, true, false);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003599 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003600 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003601
Chris Wilson2c225692013-08-09 12:26:45 +01003602 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003603
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003604 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003605 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003606
3607 /* It should now be out of any other write domains, and we can update
3608 * the domain values for our changes.
3609 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003610 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003611 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003612
3613 trace_i915_gem_object_change_domain(obj,
3614 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003615 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003616
3617 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003618
3619err_unpin_display:
3620 obj->pin_display = is_pin_display(obj);
3621 return ret;
3622}
3623
3624void
3625i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3626{
3627 i915_gem_object_unpin(obj);
3628 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003629}
3630
Chris Wilson85345512010-11-13 09:49:11 +00003631int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003632i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003633{
Chris Wilson88241782011-01-07 17:09:48 +00003634 int ret;
3635
Chris Wilsona8198ee2011-04-13 22:04:09 +01003636 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003637 return 0;
3638
Chris Wilson0201f1e2012-07-20 12:41:01 +01003639 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003640 if (ret)
3641 return ret;
3642
Chris Wilsona8198ee2011-04-13 22:04:09 +01003643 /* Ensure that we invalidate the GPU's caches and TLBs. */
3644 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003645 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003646}
3647
Eric Anholte47c68e2008-11-14 13:35:19 -08003648/**
3649 * Moves a single object to the CPU read, and possibly write domain.
3650 *
3651 * This function returns when the move is complete, including waiting on
3652 * flushes to occur.
3653 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003654int
Chris Wilson919926a2010-11-12 13:42:53 +00003655i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003656{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003657 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003658 int ret;
3659
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003660 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3661 return 0;
3662
Chris Wilson0201f1e2012-07-20 12:41:01 +01003663 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003664 if (ret)
3665 return ret;
3666
Eric Anholte47c68e2008-11-14 13:35:19 -08003667 i915_gem_object_flush_gtt_write_domain(obj);
3668
Chris Wilson05394f32010-11-08 19:18:58 +00003669 old_write_domain = obj->base.write_domain;
3670 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003671
Eric Anholte47c68e2008-11-14 13:35:19 -08003672 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003673 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003674 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003675
Chris Wilson05394f32010-11-08 19:18:58 +00003676 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003677 }
3678
3679 /* It should now be out of any other write domains, and we can update
3680 * the domain values for our changes.
3681 */
Chris Wilson05394f32010-11-08 19:18:58 +00003682 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003683
3684 /* If we're writing through the CPU, then the GPU read domains will
3685 * need to be invalidated at next use.
3686 */
3687 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003688 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3689 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003690 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003691
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003692 trace_i915_gem_object_change_domain(obj,
3693 old_read_domains,
3694 old_write_domain);
3695
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003696 return 0;
3697}
3698
Eric Anholt673a3942008-07-30 12:06:12 -07003699/* Throttle our rendering by waiting until the ring has completed our requests
3700 * emitted over 20 msec ago.
3701 *
Eric Anholtb9624422009-06-03 07:27:35 +00003702 * Note that if we were to use the current jiffies each time around the loop,
3703 * we wouldn't escape the function with any frames outstanding if the time to
3704 * render a frame was over 20ms.
3705 *
Eric Anholt673a3942008-07-30 12:06:12 -07003706 * This should get us reasonable parallelism between CPU and GPU but also
3707 * relatively low latency when blocking on a particular request to finish.
3708 */
3709static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003710i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003711{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003712 struct drm_i915_private *dev_priv = dev->dev_private;
3713 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003714 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003715 struct drm_i915_gem_request *request;
3716 struct intel_ring_buffer *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01003717 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003718 u32 seqno = 0;
3719 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003720
Daniel Vetter308887a2012-11-14 17:14:06 +01003721 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
3722 if (ret)
3723 return ret;
3724
3725 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
3726 if (ret)
3727 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003728
Chris Wilson1c255952010-09-26 11:03:27 +01003729 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003730 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003731 if (time_after_eq(request->emitted_jiffies, recent_enough))
3732 break;
3733
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003734 ring = request->ring;
3735 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003736 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01003737 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01003738 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003739
3740 if (seqno == 0)
3741 return 0;
3742
Daniel Vetterf69061b2012-12-06 09:01:42 +01003743 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003744 if (ret == 0)
3745 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003746
Eric Anholt673a3942008-07-30 12:06:12 -07003747 return ret;
3748}
3749
Eric Anholt673a3942008-07-30 12:06:12 -07003750int
Chris Wilson05394f32010-11-08 19:18:58 +00003751i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07003752 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00003753 uint32_t alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003754 bool map_and_fenceable,
3755 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003756{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003757 struct i915_vma *vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003758 int ret;
3759
Chris Wilson7e81a422012-09-15 09:41:57 +01003760 if (WARN_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
3761 return -EBUSY;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003762
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003763 WARN_ON(map_and_fenceable && !i915_is_ggtt(vm));
3764
3765 vma = i915_gem_obj_to_vma(obj, vm);
3766
3767 if (vma) {
3768 if ((alignment &&
3769 vma->node.start & (alignment - 1)) ||
Chris Wilson05394f32010-11-08 19:18:58 +00003770 (map_and_fenceable && !obj->map_and_fenceable)) {
3771 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003772 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003773 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003774 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003775 i915_gem_obj_offset(obj, vm), alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003776 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003777 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003778 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003779 if (ret)
3780 return ret;
3781 }
3782 }
3783
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003784 if (!i915_gem_obj_bound(obj, vm)) {
Chris Wilson87422672012-11-21 13:04:03 +00003785 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3786
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003787 ret = i915_gem_object_bind_to_vm(obj, vm, alignment,
3788 map_and_fenceable,
3789 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01003790 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003791 return ret;
Chris Wilson87422672012-11-21 13:04:03 +00003792
3793 if (!dev_priv->mm.aliasing_ppgtt)
3794 i915_gem_gtt_bind_object(obj, obj->cache_level);
Chris Wilson22c344e2009-02-11 14:26:45 +00003795 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003796
Daniel Vetter74898d72012-02-15 23:50:22 +01003797 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3798 i915_gem_gtt_bind_object(obj, obj->cache_level);
3799
Chris Wilson1b502472012-04-24 15:47:30 +01003800 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003801 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003802
3803 return 0;
3804}
3805
3806void
Chris Wilson05394f32010-11-08 19:18:58 +00003807i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003808{
Chris Wilson05394f32010-11-08 19:18:58 +00003809 BUG_ON(obj->pin_count == 0);
Ben Widawsky98438772013-07-31 17:00:12 -07003810 BUG_ON(!i915_gem_obj_bound_any(obj));
Eric Anholt673a3942008-07-30 12:06:12 -07003811
Chris Wilson1b502472012-04-24 15:47:30 +01003812 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003813 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003814}
3815
3816int
3817i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003818 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003819{
3820 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003821 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003822 int ret;
3823
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003824 ret = i915_mutex_lock_interruptible(dev);
3825 if (ret)
3826 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003827
Chris Wilson05394f32010-11-08 19:18:58 +00003828 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003829 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003830 ret = -ENOENT;
3831 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003832 }
Eric Anholt673a3942008-07-30 12:06:12 -07003833
Chris Wilson05394f32010-11-08 19:18:58 +00003834 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003835 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003836 ret = -EINVAL;
3837 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003838 }
3839
Chris Wilson05394f32010-11-08 19:18:58 +00003840 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003841 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3842 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003843 ret = -EINVAL;
3844 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003845 }
3846
Chris Wilson93be8782013-01-02 10:31:22 +00003847 if (obj->user_pin_count == 0) {
Ben Widawskyc37e2202013-07-31 16:59:58 -07003848 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, true, false);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003849 if (ret)
3850 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003851 }
3852
Chris Wilson93be8782013-01-02 10:31:22 +00003853 obj->user_pin_count++;
3854 obj->pin_filp = file;
3855
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003856 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003857out:
Chris Wilson05394f32010-11-08 19:18:58 +00003858 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003859unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003860 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003861 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003862}
3863
3864int
3865i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003866 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003867{
3868 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003869 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003870 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003871
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003872 ret = i915_mutex_lock_interruptible(dev);
3873 if (ret)
3874 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003875
Chris Wilson05394f32010-11-08 19:18:58 +00003876 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003877 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003878 ret = -ENOENT;
3879 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003880 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003881
Chris Wilson05394f32010-11-08 19:18:58 +00003882 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003883 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3884 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003885 ret = -EINVAL;
3886 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003887 }
Chris Wilson05394f32010-11-08 19:18:58 +00003888 obj->user_pin_count--;
3889 if (obj->user_pin_count == 0) {
3890 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003891 i915_gem_object_unpin(obj);
3892 }
Eric Anholt673a3942008-07-30 12:06:12 -07003893
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003894out:
Chris Wilson05394f32010-11-08 19:18:58 +00003895 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003896unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003897 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003898 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003899}
3900
3901int
3902i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003903 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003904{
3905 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003906 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003907 int ret;
3908
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003909 ret = i915_mutex_lock_interruptible(dev);
3910 if (ret)
3911 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003912
Chris Wilson05394f32010-11-08 19:18:58 +00003913 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003914 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003915 ret = -ENOENT;
3916 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003917 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003918
Chris Wilson0be555b2010-08-04 15:36:30 +01003919 /* Count all active objects as busy, even if they are currently not used
3920 * by the gpu. Users of this interface expect objects to eventually
3921 * become non-busy without any further actions, therefore emit any
3922 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003923 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003924 ret = i915_gem_object_flush_active(obj);
3925
Chris Wilson05394f32010-11-08 19:18:58 +00003926 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01003927 if (obj->ring) {
3928 BUILD_BUG_ON(I915_NUM_RINGS > 16);
3929 args->busy |= intel_ring_flag(obj->ring) << 16;
3930 }
Eric Anholt673a3942008-07-30 12:06:12 -07003931
Chris Wilson05394f32010-11-08 19:18:58 +00003932 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003933unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003934 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003935 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003936}
3937
3938int
3939i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3940 struct drm_file *file_priv)
3941{
Akshay Joshi0206e352011-08-16 15:34:10 -04003942 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003943}
3944
Chris Wilson3ef94da2009-09-14 16:50:29 +01003945int
3946i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3947 struct drm_file *file_priv)
3948{
3949 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003950 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003951 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003952
3953 switch (args->madv) {
3954 case I915_MADV_DONTNEED:
3955 case I915_MADV_WILLNEED:
3956 break;
3957 default:
3958 return -EINVAL;
3959 }
3960
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003961 ret = i915_mutex_lock_interruptible(dev);
3962 if (ret)
3963 return ret;
3964
Chris Wilson05394f32010-11-08 19:18:58 +00003965 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003966 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003967 ret = -ENOENT;
3968 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003969 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003970
Chris Wilson05394f32010-11-08 19:18:58 +00003971 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003972 ret = -EINVAL;
3973 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003974 }
3975
Chris Wilson05394f32010-11-08 19:18:58 +00003976 if (obj->madv != __I915_MADV_PURGED)
3977 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003978
Chris Wilson6c085a72012-08-20 11:40:46 +02003979 /* if the object is no longer attached, discard its backing storage */
3980 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003981 i915_gem_object_truncate(obj);
3982
Chris Wilson05394f32010-11-08 19:18:58 +00003983 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003984
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003985out:
Chris Wilson05394f32010-11-08 19:18:58 +00003986 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003987unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003988 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003989 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003990}
3991
Chris Wilson37e680a2012-06-07 15:38:42 +01003992void i915_gem_object_init(struct drm_i915_gem_object *obj,
3993 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003994{
Ben Widawsky35c20a62013-05-31 11:28:48 -07003995 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003996 INIT_LIST_HEAD(&obj->ring_list);
3997 INIT_LIST_HEAD(&obj->exec_list);
Ben Widawsky2f633152013-07-17 12:19:03 -07003998 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003999
Chris Wilson37e680a2012-06-07 15:38:42 +01004000 obj->ops = ops;
4001
Chris Wilson0327d6b2012-08-11 15:41:06 +01004002 obj->fence_reg = I915_FENCE_REG_NONE;
4003 obj->madv = I915_MADV_WILLNEED;
4004 /* Avoid an unnecessary call to unbind on the first bind. */
4005 obj->map_and_fenceable = true;
4006
4007 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4008}
4009
Chris Wilson37e680a2012-06-07 15:38:42 +01004010static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4011 .get_pages = i915_gem_object_get_pages_gtt,
4012 .put_pages = i915_gem_object_put_pages_gtt,
4013};
4014
Chris Wilson05394f32010-11-08 19:18:58 +00004015struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4016 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004017{
Daniel Vetterc397b902010-04-09 19:05:07 +00004018 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004019 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004020 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004021
Chris Wilson42dcedd2012-11-15 11:32:30 +00004022 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004023 if (obj == NULL)
4024 return NULL;
4025
4026 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004027 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004028 return NULL;
4029 }
4030
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004031 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4032 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4033 /* 965gm cannot relocate objects above 4GiB. */
4034 mask &= ~__GFP_HIGHMEM;
4035 mask |= __GFP_DMA32;
4036 }
4037
Al Viro496ad9a2013-01-23 17:07:38 -05004038 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004039 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004040
Chris Wilson37e680a2012-06-07 15:38:42 +01004041 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004042
Daniel Vetterc397b902010-04-09 19:05:07 +00004043 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4044 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4045
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004046 if (HAS_LLC(dev)) {
4047 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004048 * cache) for about a 10% performance improvement
4049 * compared to uncached. Graphics requests other than
4050 * display scanout are coherent with the CPU in
4051 * accessing this cache. This means in this mode we
4052 * don't need to clflush on the CPU side, and on the
4053 * GPU side we only need to flush internal caches to
4054 * get data visible to the CPU.
4055 *
4056 * However, we maintain the display planes as UC, and so
4057 * need to rebind when first used as such.
4058 */
4059 obj->cache_level = I915_CACHE_LLC;
4060 } else
4061 obj->cache_level = I915_CACHE_NONE;
4062
Daniel Vetterd861e332013-07-24 23:25:03 +02004063 trace_i915_gem_object_create(obj);
4064
Chris Wilson05394f32010-11-08 19:18:58 +00004065 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004066}
4067
Eric Anholt673a3942008-07-30 12:06:12 -07004068int i915_gem_init_object(struct drm_gem_object *obj)
4069{
Daniel Vetterc397b902010-04-09 19:05:07 +00004070 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004071
Eric Anholt673a3942008-07-30 12:06:12 -07004072 return 0;
4073}
4074
Chris Wilson1488fc02012-04-24 15:47:31 +01004075void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004076{
Chris Wilson1488fc02012-04-24 15:47:31 +01004077 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004078 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01004079 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004080 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004081
Chris Wilson26e12f892011-03-20 11:20:19 +00004082 trace_i915_gem_object_destroy(obj);
4083
Chris Wilson1488fc02012-04-24 15:47:31 +01004084 if (obj->phys_obj)
4085 i915_gem_detach_phys_object(dev, obj);
4086
4087 obj->pin_count = 0;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004088 /* NB: 0 or 1 elements */
4089 WARN_ON(!list_empty(&obj->vma_list) &&
4090 !list_is_singular(&obj->vma_list));
4091 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
4092 int ret = i915_vma_unbind(vma);
4093 if (WARN_ON(ret == -ERESTARTSYS)) {
4094 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004095
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004096 was_interruptible = dev_priv->mm.interruptible;
4097 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004098
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004099 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004100
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004101 dev_priv->mm.interruptible = was_interruptible;
4102 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004103 }
4104
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004105 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4106 * before progressing. */
4107 if (obj->stolen)
4108 i915_gem_object_unpin_pages(obj);
4109
Ben Widawsky401c29f2013-05-31 11:28:47 -07004110 if (WARN_ON(obj->pages_pin_count))
4111 obj->pages_pin_count = 0;
Chris Wilson37e680a2012-06-07 15:38:42 +01004112 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004113 i915_gem_object_free_mmap_offset(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +00004114 i915_gem_object_release_stolen(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004115
Chris Wilson9da3da62012-06-01 15:20:22 +01004116 BUG_ON(obj->pages);
4117
Chris Wilson2f745ad2012-09-04 21:02:58 +01004118 if (obj->base.import_attach)
4119 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004120
Chris Wilson05394f32010-11-08 19:18:58 +00004121 drm_gem_object_release(&obj->base);
4122 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004123
Chris Wilson05394f32010-11-08 19:18:58 +00004124 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004125 i915_gem_object_free(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004126}
4127
Ben Widawsky2f633152013-07-17 12:19:03 -07004128struct i915_vma *i915_gem_vma_create(struct drm_i915_gem_object *obj,
4129 struct i915_address_space *vm)
4130{
4131 struct i915_vma *vma = kzalloc(sizeof(*vma), GFP_KERNEL);
4132 if (vma == NULL)
4133 return ERR_PTR(-ENOMEM);
4134
4135 INIT_LIST_HEAD(&vma->vma_link);
Ben Widawskyca191b12013-07-31 17:00:14 -07004136 INIT_LIST_HEAD(&vma->mm_list);
Ben Widawsky2f633152013-07-17 12:19:03 -07004137 vma->vm = vm;
4138 vma->obj = obj;
4139
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004140 /* Keep GGTT vmas first to make debug easier */
4141 if (i915_is_ggtt(vm))
4142 list_add(&vma->vma_link, &obj->vma_list);
4143 else
4144 list_add_tail(&vma->vma_link, &obj->vma_list);
4145
Ben Widawsky2f633152013-07-17 12:19:03 -07004146 return vma;
4147}
4148
4149void i915_gem_vma_destroy(struct i915_vma *vma)
4150{
4151 WARN_ON(vma->node.allocated);
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004152 list_del(&vma->vma_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004153 kfree(vma);
4154}
4155
Jesse Barnes5669fca2009-02-17 15:13:31 -08004156int
Eric Anholt673a3942008-07-30 12:06:12 -07004157i915_gem_idle(struct drm_device *dev)
4158{
4159 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004160 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004161
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004162 if (dev_priv->ums.mm_suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004163 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004164 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004165 }
Eric Anholt673a3942008-07-30 12:06:12 -07004166
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004167 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004168 if (ret) {
4169 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004170 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004171 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004172 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004173
Chris Wilson29105cc2010-01-07 10:39:13 +00004174 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004175 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004176 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004177
Daniel Vetter99584db2012-11-14 17:14:04 +01004178 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004179
4180 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004181 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004182
Chris Wilson29105cc2010-01-07 10:39:13 +00004183 /* Cancel the retire work handler, which should be idle now. */
4184 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4185
Eric Anholt673a3942008-07-30 12:06:12 -07004186 return 0;
4187}
4188
Ben Widawskyb9524a12012-05-25 16:56:24 -07004189void i915_gem_l3_remap(struct drm_device *dev)
4190{
4191 drm_i915_private_t *dev_priv = dev->dev_private;
4192 u32 misccpctl;
4193 int i;
4194
Daniel Vettereb32e452013-02-14 19:46:07 +01004195 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskyb9524a12012-05-25 16:56:24 -07004196 return;
4197
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004198 if (!dev_priv->l3_parity.remap_info)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004199 return;
4200
4201 misccpctl = I915_READ(GEN7_MISCCPCTL);
4202 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
4203 POSTING_READ(GEN7_MISCCPCTL);
4204
4205 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
4206 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004207 if (remap && remap != dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004208 DRM_DEBUG("0x%x was already programmed to %x\n",
4209 GEN7_L3LOG_BASE + i, remap);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004210 if (remap && !dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004211 DRM_DEBUG_DRIVER("Clearing remapped register\n");
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004212 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->l3_parity.remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004213 }
4214
4215 /* Make sure all the writes land before disabling dop clock gating */
4216 POSTING_READ(GEN7_L3LOG_BASE);
4217
4218 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
4219}
4220
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004221void i915_gem_init_swizzling(struct drm_device *dev)
4222{
4223 drm_i915_private_t *dev_priv = dev->dev_private;
4224
Daniel Vetter11782b02012-01-31 16:47:55 +01004225 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004226 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4227 return;
4228
4229 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4230 DISP_TILE_SURFACE_SWIZZLING);
4231
Daniel Vetter11782b02012-01-31 16:47:55 +01004232 if (IS_GEN5(dev))
4233 return;
4234
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004235 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4236 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004237 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004238 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004239 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004240 else
4241 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004242}
Daniel Vettere21af882012-02-09 20:53:27 +01004243
Chris Wilson67b1b572012-07-05 23:49:40 +01004244static bool
4245intel_enable_blt(struct drm_device *dev)
4246{
4247 if (!HAS_BLT(dev))
4248 return false;
4249
4250 /* The blitter was dysfunctional on early prototypes */
4251 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4252 DRM_INFO("BLT not supported on this pre-production hardware;"
4253 " graphics performance will be degraded.\n");
4254 return false;
4255 }
4256
4257 return true;
4258}
4259
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004260static int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004261{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004262 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004263 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004264
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004265 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004266 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004267 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004268
4269 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004270 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004271 if (ret)
4272 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004273 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004274
Chris Wilson67b1b572012-07-05 23:49:40 +01004275 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004276 ret = intel_init_blt_ring_buffer(dev);
4277 if (ret)
4278 goto cleanup_bsd_ring;
4279 }
4280
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004281 if (HAS_VEBOX(dev)) {
4282 ret = intel_init_vebox_ring_buffer(dev);
4283 if (ret)
4284 goto cleanup_blt_ring;
4285 }
4286
4287
Mika Kuoppala99433932013-01-22 14:12:17 +02004288 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4289 if (ret)
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004290 goto cleanup_vebox_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004291
4292 return 0;
4293
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004294cleanup_vebox_ring:
4295 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004296cleanup_blt_ring:
4297 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4298cleanup_bsd_ring:
4299 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4300cleanup_render_ring:
4301 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4302
4303 return ret;
4304}
4305
4306int
4307i915_gem_init_hw(struct drm_device *dev)
4308{
4309 drm_i915_private_t *dev_priv = dev->dev_private;
4310 int ret;
4311
4312 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4313 return -EIO;
4314
Ben Widawsky59124502013-07-04 11:02:05 -07004315 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004316 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004317
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004318 if (HAS_PCH_NOP(dev)) {
4319 u32 temp = I915_READ(GEN7_MSG_CTL);
4320 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4321 I915_WRITE(GEN7_MSG_CTL, temp);
4322 }
4323
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004324 i915_gem_l3_remap(dev);
4325
4326 i915_gem_init_swizzling(dev);
4327
4328 ret = i915_gem_init_rings(dev);
4329 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004330 return ret;
4331
Ben Widawsky254f9652012-06-04 14:42:42 -07004332 /*
4333 * XXX: There was some w/a described somewhere suggesting loading
4334 * contexts before PPGTT.
4335 */
4336 i915_gem_context_init(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004337 if (dev_priv->mm.aliasing_ppgtt) {
4338 ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
4339 if (ret) {
4340 i915_gem_cleanup_aliasing_ppgtt(dev);
4341 DRM_INFO("PPGTT enable failed. This is not fatal, but unexpected\n");
4342 }
4343 }
Daniel Vettere21af882012-02-09 20:53:27 +01004344
Chris Wilson68f95ba2010-05-27 13:18:22 +01004345 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004346}
4347
Chris Wilson1070a422012-04-24 15:47:41 +01004348int i915_gem_init(struct drm_device *dev)
4349{
4350 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004351 int ret;
4352
Chris Wilson1070a422012-04-24 15:47:41 +01004353 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004354
4355 if (IS_VALLEYVIEW(dev)) {
4356 /* VLVA0 (potential hack), BIOS isn't actually waking us */
4357 I915_WRITE(VLV_GTLC_WAKE_CTRL, 1);
4358 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) & 1) == 1, 10))
4359 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4360 }
4361
Ben Widawskyd7e50082012-12-18 10:31:25 -08004362 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004363
Chris Wilson1070a422012-04-24 15:47:41 +01004364 ret = i915_gem_init_hw(dev);
4365 mutex_unlock(&dev->struct_mutex);
4366 if (ret) {
4367 i915_gem_cleanup_aliasing_ppgtt(dev);
4368 return ret;
4369 }
4370
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004371 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4372 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4373 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01004374 return 0;
4375}
4376
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004377void
4378i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4379{
4380 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004381 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004382 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004383
Chris Wilsonb4519512012-05-11 14:29:30 +01004384 for_each_ring(ring, dev_priv, i)
4385 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004386}
4387
4388int
Eric Anholt673a3942008-07-30 12:06:12 -07004389i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4390 struct drm_file *file_priv)
4391{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004392 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004393 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004394
Jesse Barnes79e53942008-11-07 14:24:08 -08004395 if (drm_core_check_feature(dev, DRIVER_MODESET))
4396 return 0;
4397
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004398 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004399 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004400 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004401 }
4402
Eric Anholt673a3942008-07-30 12:06:12 -07004403 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004404 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004405
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004406 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004407 if (ret != 0) {
4408 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004409 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004410 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004411
Ben Widawsky5cef07e2013-07-16 16:50:08 -07004412 BUG_ON(!list_empty(&dev_priv->gtt.base.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004413 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004414
Chris Wilson5f353082010-06-07 14:03:03 +01004415 ret = drm_irq_install(dev);
4416 if (ret)
4417 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004418
Eric Anholt673a3942008-07-30 12:06:12 -07004419 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004420
4421cleanup_ringbuffer:
4422 mutex_lock(&dev->struct_mutex);
4423 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004424 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01004425 mutex_unlock(&dev->struct_mutex);
4426
4427 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004428}
4429
4430int
4431i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4432 struct drm_file *file_priv)
4433{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004434 struct drm_i915_private *dev_priv = dev->dev_private;
4435 int ret;
4436
Jesse Barnes79e53942008-11-07 14:24:08 -08004437 if (drm_core_check_feature(dev, DRIVER_MODESET))
4438 return 0;
4439
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004440 drm_irq_uninstall(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004441
4442 mutex_lock(&dev->struct_mutex);
4443 ret = i915_gem_idle(dev);
4444
4445 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4446 * We need to replace this with a semaphore, or something.
4447 * And not confound ums.mm_suspended!
4448 */
4449 if (ret != 0)
4450 dev_priv->ums.mm_suspended = 1;
4451 mutex_unlock(&dev->struct_mutex);
4452
4453 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004454}
4455
4456void
4457i915_gem_lastclose(struct drm_device *dev)
4458{
4459 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004460
Eric Anholte806b492009-01-22 09:56:58 -08004461 if (drm_core_check_feature(dev, DRIVER_MODESET))
4462 return;
4463
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004464 mutex_lock(&dev->struct_mutex);
Keith Packard6dbe2772008-10-14 21:41:13 -07004465 ret = i915_gem_idle(dev);
4466 if (ret)
4467 DRM_ERROR("failed to idle hardware: %d\n", ret);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004468 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004469}
4470
Chris Wilson64193402010-10-24 12:38:05 +01004471static void
4472init_ring_lists(struct intel_ring_buffer *ring)
4473{
4474 INIT_LIST_HEAD(&ring->active_list);
4475 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004476}
4477
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004478static void i915_init_vm(struct drm_i915_private *dev_priv,
4479 struct i915_address_space *vm)
4480{
4481 vm->dev = dev_priv->dev;
4482 INIT_LIST_HEAD(&vm->active_list);
4483 INIT_LIST_HEAD(&vm->inactive_list);
4484 INIT_LIST_HEAD(&vm->global_link);
4485 list_add(&vm->global_link, &dev_priv->vm_list);
4486}
4487
Eric Anholt673a3942008-07-30 12:06:12 -07004488void
4489i915_gem_load(struct drm_device *dev)
4490{
4491 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004492 int i;
4493
4494 dev_priv->slab =
4495 kmem_cache_create("i915_gem_object",
4496 sizeof(struct drm_i915_gem_object), 0,
4497 SLAB_HWCACHE_ALIGN,
4498 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004499
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004500 INIT_LIST_HEAD(&dev_priv->vm_list);
4501 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4502
Chris Wilson6c085a72012-08-20 11:40:46 +02004503 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4504 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004505 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004506 for (i = 0; i < I915_NUM_RINGS; i++)
4507 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004508 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004509 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004510 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4511 i915_gem_retire_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004512 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004513
Dave Airlie94400122010-07-20 13:15:31 +10004514 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4515 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004516 I915_WRITE(MI_ARB_STATE,
4517 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004518 }
4519
Chris Wilson72bfa192010-12-19 11:42:05 +00004520 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4521
Jesse Barnesde151cf2008-11-12 10:03:55 -08004522 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004523 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4524 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004525
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004526 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4527 dev_priv->num_fence_regs = 32;
4528 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004529 dev_priv->num_fence_regs = 16;
4530 else
4531 dev_priv->num_fence_regs = 8;
4532
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004533 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004534 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4535 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004536
Eric Anholt673a3942008-07-30 12:06:12 -07004537 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004538 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004539
Chris Wilsonce453d82011-02-21 14:43:56 +00004540 dev_priv->mm.interruptible = true;
4541
Chris Wilson17250b72010-10-28 12:51:39 +01004542 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4543 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4544 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004545}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004546
4547/*
4548 * Create a physically contiguous memory object for this object
4549 * e.g. for cursor + overlay regs
4550 */
Chris Wilson995b6762010-08-20 13:23:26 +01004551static int i915_gem_init_phys_object(struct drm_device *dev,
4552 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004553{
4554 drm_i915_private_t *dev_priv = dev->dev_private;
4555 struct drm_i915_gem_phys_object *phys_obj;
4556 int ret;
4557
4558 if (dev_priv->mm.phys_objs[id - 1] || !size)
4559 return 0;
4560
Eric Anholt9a298b22009-03-24 12:23:04 -07004561 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004562 if (!phys_obj)
4563 return -ENOMEM;
4564
4565 phys_obj->id = id;
4566
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004567 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004568 if (!phys_obj->handle) {
4569 ret = -ENOMEM;
4570 goto kfree_obj;
4571 }
4572#ifdef CONFIG_X86
4573 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4574#endif
4575
4576 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4577
4578 return 0;
4579kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004580 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004581 return ret;
4582}
4583
Chris Wilson995b6762010-08-20 13:23:26 +01004584static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004585{
4586 drm_i915_private_t *dev_priv = dev->dev_private;
4587 struct drm_i915_gem_phys_object *phys_obj;
4588
4589 if (!dev_priv->mm.phys_objs[id - 1])
4590 return;
4591
4592 phys_obj = dev_priv->mm.phys_objs[id - 1];
4593 if (phys_obj->cur_obj) {
4594 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4595 }
4596
4597#ifdef CONFIG_X86
4598 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4599#endif
4600 drm_pci_free(dev, phys_obj->handle);
4601 kfree(phys_obj);
4602 dev_priv->mm.phys_objs[id - 1] = NULL;
4603}
4604
4605void i915_gem_free_all_phys_object(struct drm_device *dev)
4606{
4607 int i;
4608
Dave Airlie260883c2009-01-22 17:58:49 +10004609 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004610 i915_gem_free_phys_object(dev, i);
4611}
4612
4613void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004614 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004615{
Al Viro496ad9a2013-01-23 17:07:38 -05004616 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004617 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004618 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004619 int page_count;
4620
Chris Wilson05394f32010-11-08 19:18:58 +00004621 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004622 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004623 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004624
Chris Wilson05394f32010-11-08 19:18:58 +00004625 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004626 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004627 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004628 if (!IS_ERR(page)) {
4629 char *dst = kmap_atomic(page);
4630 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4631 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004632
Chris Wilsone5281cc2010-10-28 13:45:36 +01004633 drm_clflush_pages(&page, 1);
4634
4635 set_page_dirty(page);
4636 mark_page_accessed(page);
4637 page_cache_release(page);
4638 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004639 }
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004640 i915_gem_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004641
Chris Wilson05394f32010-11-08 19:18:58 +00004642 obj->phys_obj->cur_obj = NULL;
4643 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004644}
4645
4646int
4647i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004648 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004649 int id,
4650 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004651{
Al Viro496ad9a2013-01-23 17:07:38 -05004652 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004653 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004654 int ret = 0;
4655 int page_count;
4656 int i;
4657
4658 if (id > I915_MAX_PHYS_OBJECT)
4659 return -EINVAL;
4660
Chris Wilson05394f32010-11-08 19:18:58 +00004661 if (obj->phys_obj) {
4662 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004663 return 0;
4664 i915_gem_detach_phys_object(dev, obj);
4665 }
4666
Dave Airlie71acb5e2008-12-30 20:31:46 +10004667 /* create a new object */
4668 if (!dev_priv->mm.phys_objs[id - 1]) {
4669 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004670 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004671 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004672 DRM_ERROR("failed to init phys object %d size: %zu\n",
4673 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004674 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004675 }
4676 }
4677
4678 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004679 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4680 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004681
Chris Wilson05394f32010-11-08 19:18:58 +00004682 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004683
4684 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004685 struct page *page;
4686 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004687
Hugh Dickins5949eac2011-06-27 16:18:18 -07004688 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004689 if (IS_ERR(page))
4690 return PTR_ERR(page);
4691
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004692 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004693 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004694 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004695 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004696
4697 mark_page_accessed(page);
4698 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004699 }
4700
4701 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004702}
4703
4704static int
Chris Wilson05394f32010-11-08 19:18:58 +00004705i915_gem_phys_pwrite(struct drm_device *dev,
4706 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004707 struct drm_i915_gem_pwrite *args,
4708 struct drm_file *file_priv)
4709{
Chris Wilson05394f32010-11-08 19:18:58 +00004710 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Ville Syrjälä2bb46292013-02-22 16:12:51 +02004711 char __user *user_data = to_user_ptr(args->data_ptr);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004712
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004713 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4714 unsigned long unwritten;
4715
4716 /* The physical object once assigned is fixed for the lifetime
4717 * of the obj, so we can safely drop the lock and continue
4718 * to access vaddr.
4719 */
4720 mutex_unlock(&dev->struct_mutex);
4721 unwritten = copy_from_user(vaddr, user_data, args->size);
4722 mutex_lock(&dev->struct_mutex);
4723 if (unwritten)
4724 return -EFAULT;
4725 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004726
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004727 i915_gem_chipset_flush(dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004728 return 0;
4729}
Eric Anholtb9624422009-06-03 07:27:35 +00004730
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004731void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004732{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004733 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004734
4735 /* Clean up our request list when the client is going away, so that
4736 * later retire_requests won't dereference our soon-to-be-gone
4737 * file_priv.
4738 */
Chris Wilson1c255952010-09-26 11:03:27 +01004739 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004740 while (!list_empty(&file_priv->mm.request_list)) {
4741 struct drm_i915_gem_request *request;
4742
4743 request = list_first_entry(&file_priv->mm.request_list,
4744 struct drm_i915_gem_request,
4745 client_list);
4746 list_del(&request->client_list);
4747 request->file_priv = NULL;
4748 }
Chris Wilson1c255952010-09-26 11:03:27 +01004749 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004750}
Chris Wilson31169712009-09-14 16:50:28 +01004751
Chris Wilson57745062012-11-21 13:04:04 +00004752static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
4753{
4754 if (!mutex_is_locked(mutex))
4755 return false;
4756
4757#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
4758 return mutex->owner == task;
4759#else
4760 /* Since UP may be pre-empted, we cannot assume that we own the lock */
4761 return false;
4762#endif
4763}
4764
Chris Wilson31169712009-09-14 16:50:28 +01004765static int
Ying Han1495f232011-05-24 17:12:27 -07004766i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004767{
Chris Wilson17250b72010-10-28 12:51:39 +01004768 struct drm_i915_private *dev_priv =
4769 container_of(shrinker,
4770 struct drm_i915_private,
4771 mm.inactive_shrinker);
4772 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02004773 struct drm_i915_gem_object *obj;
Ying Han1495f232011-05-24 17:12:27 -07004774 int nr_to_scan = sc->nr_to_scan;
Chris Wilson57745062012-11-21 13:04:04 +00004775 bool unlock = true;
Chris Wilson17250b72010-10-28 12:51:39 +01004776 int cnt;
4777
Chris Wilson57745062012-11-21 13:04:04 +00004778 if (!mutex_trylock(&dev->struct_mutex)) {
4779 if (!mutex_is_locked_by(&dev->struct_mutex, current))
4780 return 0;
4781
Daniel Vetter677feac2012-12-19 14:33:45 +01004782 if (dev_priv->mm.shrinker_no_lock_stealing)
4783 return 0;
4784
Chris Wilson57745062012-11-21 13:04:04 +00004785 unlock = false;
4786 }
Chris Wilson31169712009-09-14 16:50:28 +01004787
Chris Wilson6c085a72012-08-20 11:40:46 +02004788 if (nr_to_scan) {
4789 nr_to_scan -= i915_gem_purge(dev_priv, nr_to_scan);
4790 if (nr_to_scan > 0)
Daniel Vetter93927ca2013-01-10 18:03:00 +01004791 nr_to_scan -= __i915_gem_shrink(dev_priv, nr_to_scan,
4792 false);
4793 if (nr_to_scan > 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004794 i915_gem_shrink_all(dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +01004795 }
4796
Chris Wilson17250b72010-10-28 12:51:39 +01004797 cnt = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07004798 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004799 if (obj->pages_pin_count == 0)
4800 cnt += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004801
4802 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
4803 if (obj->active)
4804 continue;
4805
Chris Wilsona5570172012-09-04 21:02:54 +01004806 if (obj->pin_count == 0 && obj->pages_pin_count == 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004807 cnt += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004808 }
Chris Wilson31169712009-09-14 16:50:28 +01004809
Chris Wilson57745062012-11-21 13:04:04 +00004810 if (unlock)
4811 mutex_unlock(&dev->struct_mutex);
Chris Wilson6c085a72012-08-20 11:40:46 +02004812 return cnt;
Chris Wilson31169712009-09-14 16:50:28 +01004813}
Ben Widawskya70a3142013-07-31 16:59:56 -07004814
4815/* All the new VM stuff */
4816unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
4817 struct i915_address_space *vm)
4818{
4819 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4820 struct i915_vma *vma;
4821
4822 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4823 vm = &dev_priv->gtt.base;
4824
4825 BUG_ON(list_empty(&o->vma_list));
4826 list_for_each_entry(vma, &o->vma_list, vma_link) {
4827 if (vma->vm == vm)
4828 return vma->node.start;
4829
4830 }
4831 return -1;
4832}
4833
4834bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
4835 struct i915_address_space *vm)
4836{
4837 struct i915_vma *vma;
4838
4839 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004840 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07004841 return true;
4842
4843 return false;
4844}
4845
4846bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
4847{
4848 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4849 struct i915_address_space *vm;
4850
4851 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
4852 if (i915_gem_obj_bound(o, vm))
4853 return true;
4854
4855 return false;
4856}
4857
4858unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
4859 struct i915_address_space *vm)
4860{
4861 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4862 struct i915_vma *vma;
4863
4864 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4865 vm = &dev_priv->gtt.base;
4866
4867 BUG_ON(list_empty(&o->vma_list));
4868
4869 list_for_each_entry(vma, &o->vma_list, vma_link)
4870 if (vma->vm == vm)
4871 return vma->node.size;
4872
4873 return 0;
4874}
4875
4876struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
4877 struct i915_address_space *vm)
4878{
4879 struct i915_vma *vma;
4880 list_for_each_entry(vma, &obj->vma_list, vma_link)
4881 if (vma->vm == vm)
4882 return vma;
4883
4884 return NULL;
4885}