blob: 2a1c87141693b68bf49df36e71b711d352d23115 [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);
40static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070041static __must_check int
42i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
43 struct i915_address_space *vm,
44 unsigned alignment,
45 bool map_and_fenceable,
46 bool nonblocking);
Chris Wilson05394f32010-11-08 19:18:58 +000047static int i915_gem_phys_pwrite(struct drm_device *dev,
48 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100049 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000050 struct drm_file *file);
Eric Anholt673a3942008-07-30 12:06:12 -070051
Chris Wilson61050802012-04-17 15:31:31 +010052static void i915_gem_write_fence(struct drm_device *dev, int reg,
53 struct drm_i915_gem_object *obj);
54static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
55 struct drm_i915_fence_reg *fence,
56 bool enable);
57
Chris Wilson17250b72010-10-28 12:51:39 +010058static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070059 struct shrink_control *sc);
Chris Wilson6c085a72012-08-20 11:40:46 +020060static long i915_gem_purge(struct drm_i915_private *dev_priv, long target);
61static void i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Daniel Vetter8c599672011-12-14 13:57:31 +010062static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010063
Chris Wilsonc76ce032013-08-08 14:41:03 +010064static bool cpu_cache_is_coherent(struct drm_device *dev,
65 enum i915_cache_level level)
66{
67 return HAS_LLC(dev) || level != I915_CACHE_NONE;
68}
69
Chris Wilson61050802012-04-17 15:31:31 +010070static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
71{
72 if (obj->tiling_mode)
73 i915_gem_release_mmap(obj);
74
75 /* As we do not have an associated fence register, we will force
76 * a tiling change if we ever need to acquire one.
77 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010078 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010079 obj->fence_reg = I915_FENCE_REG_NONE;
80}
81
Chris Wilson73aa8082010-09-30 11:46:12 +010082/* some bookkeeping */
83static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
84 size_t size)
85{
Daniel Vetterc20e8352013-07-24 22:40:23 +020086 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010087 dev_priv->mm.object_count++;
88 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020089 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010090}
91
92static void i915_gem_info_remove_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
Chris Wilson21dd3732011-01-26 15:55:56 +0000101static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100102i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100103{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100104 int ret;
105
Daniel Vetter7abb6902013-05-24 21:29:32 +0200106#define EXIT_COND (!i915_reset_in_progress(error) || \
107 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100108 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100109 return 0;
110
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200111 /*
112 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
113 * userspace. If it takes that long something really bad is going on and
114 * we should simply try to bail out and fail as gracefully as possible.
115 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100116 ret = wait_event_interruptible_timeout(error->reset_queue,
117 EXIT_COND,
118 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200119 if (ret == 0) {
120 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
121 return -EIO;
122 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100123 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200124 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100125#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100126
Chris Wilson21dd3732011-01-26 15:55:56 +0000127 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100128}
129
Chris Wilson54cf91d2010-11-25 18:00:26 +0000130int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100131{
Daniel Vetter33196de2012-11-14 17:14:05 +0100132 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100133 int ret;
134
Daniel Vetter33196de2012-11-14 17:14:05 +0100135 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100136 if (ret)
137 return ret;
138
139 ret = mutex_lock_interruptible(&dev->struct_mutex);
140 if (ret)
141 return ret;
142
Chris Wilson23bc5982010-09-29 16:10:57 +0100143 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100144 return 0;
145}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100146
Chris Wilson7d1c4802010-08-07 21:45:03 +0100147static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000148i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100149{
Ben Widawsky98438772013-07-31 17:00:12 -0700150 return i915_gem_obj_bound_any(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100151}
152
Eric Anholt673a3942008-07-30 12:06:12 -0700153int
154i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000155 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700156{
Ben Widawsky93d18792013-01-17 12:45:17 -0800157 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700158 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000159
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200160 if (drm_core_check_feature(dev, DRIVER_MODESET))
161 return -ENODEV;
162
Chris Wilson20217462010-11-23 15:26:33 +0000163 if (args->gtt_start >= args->gtt_end ||
164 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
165 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700166
Daniel Vetterf534bc02012-03-26 22:37:04 +0200167 /* GEM with user mode setting was never supported on ilk and later. */
168 if (INTEL_INFO(dev)->gen >= 5)
169 return -ENODEV;
170
Eric Anholt673a3942008-07-30 12:06:12 -0700171 mutex_lock(&dev->struct_mutex);
Ben Widawskyd7e50082012-12-18 10:31:25 -0800172 i915_gem_setup_global_gtt(dev, args->gtt_start, args->gtt_end,
173 args->gtt_end);
Ben Widawsky93d18792013-01-17 12:45:17 -0800174 dev_priv->gtt.mappable_end = args->gtt_end;
Eric Anholt673a3942008-07-30 12:06:12 -0700175 mutex_unlock(&dev->struct_mutex);
176
Chris Wilson20217462010-11-23 15:26:33 +0000177 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700178}
179
Eric Anholt5a125c32008-10-22 21:40:13 -0700180int
181i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000182 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700183{
Chris Wilson73aa8082010-09-30 11:46:12 +0100184 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700185 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000186 struct drm_i915_gem_object *obj;
187 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700188
Chris Wilson6299f992010-11-24 12:23:44 +0000189 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100190 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700191 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Chris Wilson1b502472012-04-24 15:47:30 +0100192 if (obj->pin_count)
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700193 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100194 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700195
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700196 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400197 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000198
Eric Anholt5a125c32008-10-22 21:40:13 -0700199 return 0;
200}
201
Chris Wilson42dcedd2012-11-15 11:32:30 +0000202void *i915_gem_object_alloc(struct drm_device *dev)
203{
204 struct drm_i915_private *dev_priv = dev->dev_private;
205 return kmem_cache_alloc(dev_priv->slab, GFP_KERNEL | __GFP_ZERO);
206}
207
208void i915_gem_object_free(struct drm_i915_gem_object *obj)
209{
210 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
211 kmem_cache_free(dev_priv->slab, obj);
212}
213
Dave Airlieff72145b2011-02-07 12:16:14 +1000214static int
215i915_gem_create(struct drm_file *file,
216 struct drm_device *dev,
217 uint64_t size,
218 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700219{
Chris Wilson05394f32010-11-08 19:18:58 +0000220 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300221 int ret;
222 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700223
Dave Airlieff72145b2011-02-07 12:16:14 +1000224 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200225 if (size == 0)
226 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700227
228 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000229 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700230 if (obj == NULL)
231 return -ENOMEM;
232
Chris Wilson05394f32010-11-08 19:18:58 +0000233 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100234 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200235 drm_gem_object_unreference_unlocked(&obj->base);
236 if (ret)
237 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100238
Dave Airlieff72145b2011-02-07 12:16:14 +1000239 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700240 return 0;
241}
242
Dave Airlieff72145b2011-02-07 12:16:14 +1000243int
244i915_gem_dumb_create(struct drm_file *file,
245 struct drm_device *dev,
246 struct drm_mode_create_dumb *args)
247{
248 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000249 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000250 args->size = args->pitch * args->height;
251 return i915_gem_create(file, dev,
252 args->size, &args->handle);
253}
254
255int i915_gem_dumb_destroy(struct drm_file *file,
256 struct drm_device *dev,
257 uint32_t handle)
258{
259 return drm_gem_handle_delete(file, handle);
260}
261
262/**
263 * Creates a new mm object and returns a handle to it.
264 */
265int
266i915_gem_create_ioctl(struct drm_device *dev, void *data,
267 struct drm_file *file)
268{
269 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200270
Dave Airlieff72145b2011-02-07 12:16:14 +1000271 return i915_gem_create(file, dev,
272 args->size, &args->handle);
273}
274
Daniel Vetter8c599672011-12-14 13:57:31 +0100275static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100276__copy_to_user_swizzled(char __user *cpu_vaddr,
277 const char *gpu_vaddr, int gpu_offset,
278 int length)
279{
280 int ret, cpu_offset = 0;
281
282 while (length > 0) {
283 int cacheline_end = ALIGN(gpu_offset + 1, 64);
284 int this_length = min(cacheline_end - gpu_offset, length);
285 int swizzled_gpu_offset = gpu_offset ^ 64;
286
287 ret = __copy_to_user(cpu_vaddr + cpu_offset,
288 gpu_vaddr + swizzled_gpu_offset,
289 this_length);
290 if (ret)
291 return ret + length;
292
293 cpu_offset += this_length;
294 gpu_offset += this_length;
295 length -= this_length;
296 }
297
298 return 0;
299}
300
301static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700302__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
303 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100304 int length)
305{
306 int ret, cpu_offset = 0;
307
308 while (length > 0) {
309 int cacheline_end = ALIGN(gpu_offset + 1, 64);
310 int this_length = min(cacheline_end - gpu_offset, length);
311 int swizzled_gpu_offset = gpu_offset ^ 64;
312
313 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
314 cpu_vaddr + cpu_offset,
315 this_length);
316 if (ret)
317 return ret + length;
318
319 cpu_offset += this_length;
320 gpu_offset += this_length;
321 length -= this_length;
322 }
323
324 return 0;
325}
326
Daniel Vetterd174bd62012-03-25 19:47:40 +0200327/* Per-page copy function for the shmem pread fastpath.
328 * Flushes invalid cachelines before reading the target if
329 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700330static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200331shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
332 char __user *user_data,
333 bool page_do_bit17_swizzling, bool needs_clflush)
334{
335 char *vaddr;
336 int ret;
337
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200338 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200339 return -EINVAL;
340
341 vaddr = kmap_atomic(page);
342 if (needs_clflush)
343 drm_clflush_virt_range(vaddr + shmem_page_offset,
344 page_length);
345 ret = __copy_to_user_inatomic(user_data,
346 vaddr + shmem_page_offset,
347 page_length);
348 kunmap_atomic(vaddr);
349
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100350 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200351}
352
Daniel Vetter23c18c72012-03-25 19:47:42 +0200353static void
354shmem_clflush_swizzled_range(char *addr, unsigned long length,
355 bool swizzled)
356{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200357 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200358 unsigned long start = (unsigned long) addr;
359 unsigned long end = (unsigned long) addr + length;
360
361 /* For swizzling simply ensure that we always flush both
362 * channels. Lame, but simple and it works. Swizzled
363 * pwrite/pread is far from a hotpath - current userspace
364 * doesn't use it at all. */
365 start = round_down(start, 128);
366 end = round_up(end, 128);
367
368 drm_clflush_virt_range((void *)start, end - start);
369 } else {
370 drm_clflush_virt_range(addr, length);
371 }
372
373}
374
Daniel Vetterd174bd62012-03-25 19:47:40 +0200375/* Only difference to the fast-path function is that this can handle bit17
376 * and uses non-atomic copy and kmap functions. */
377static int
378shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
379 char __user *user_data,
380 bool page_do_bit17_swizzling, bool needs_clflush)
381{
382 char *vaddr;
383 int ret;
384
385 vaddr = kmap(page);
386 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200387 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
388 page_length,
389 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200390
391 if (page_do_bit17_swizzling)
392 ret = __copy_to_user_swizzled(user_data,
393 vaddr, shmem_page_offset,
394 page_length);
395 else
396 ret = __copy_to_user(user_data,
397 vaddr + shmem_page_offset,
398 page_length);
399 kunmap(page);
400
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100401 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200402}
403
Eric Anholteb014592009-03-10 11:44:52 -0700404static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200405i915_gem_shmem_pread(struct drm_device *dev,
406 struct drm_i915_gem_object *obj,
407 struct drm_i915_gem_pread *args,
408 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700409{
Daniel Vetter8461d222011-12-14 13:57:32 +0100410 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700411 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100412 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100413 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100414 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200415 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200416 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200417 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700418
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200419 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700420 remain = args->size;
421
Daniel Vetter8461d222011-12-14 13:57:32 +0100422 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700423
Daniel Vetter84897312012-03-25 19:47:31 +0200424 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
425 /* If we're not in the cpu read domain, set ourself into the gtt
426 * read domain and manually flush cachelines (if required). This
427 * optimizes for the case when the gpu will dirty the data
428 * anyway again before the next pread happens. */
Chris Wilsonc76ce032013-08-08 14:41:03 +0100429 needs_clflush = !cpu_cache_is_coherent(dev, obj->cache_level);
Ben Widawsky98438772013-07-31 17:00:12 -0700430 if (i915_gem_obj_bound_any(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200431 ret = i915_gem_object_set_to_gtt_domain(obj, false);
432 if (ret)
433 return ret;
434 }
Daniel Vetter84897312012-03-25 19:47:31 +0200435 }
Eric Anholteb014592009-03-10 11:44:52 -0700436
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100437 ret = i915_gem_object_get_pages(obj);
438 if (ret)
439 return ret;
440
441 i915_gem_object_pin_pages(obj);
442
Eric Anholteb014592009-03-10 11:44:52 -0700443 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100444
Imre Deak67d5a502013-02-18 19:28:02 +0200445 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
446 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200447 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100448
449 if (remain <= 0)
450 break;
451
Eric Anholteb014592009-03-10 11:44:52 -0700452 /* Operation in this page
453 *
Eric Anholteb014592009-03-10 11:44:52 -0700454 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700455 * page_length = bytes to copy for this page
456 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100457 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700458 page_length = remain;
459 if ((shmem_page_offset + page_length) > PAGE_SIZE)
460 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700461
Daniel Vetter8461d222011-12-14 13:57:32 +0100462 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
463 (page_to_phys(page) & (1 << 17)) != 0;
464
Daniel Vetterd174bd62012-03-25 19:47:40 +0200465 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
466 user_data, page_do_bit17_swizzling,
467 needs_clflush);
468 if (ret == 0)
469 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700470
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200471 mutex_unlock(&dev->struct_mutex);
472
Xiong Zhang0b74b502013-07-19 13:51:24 +0800473 if (likely(!i915_prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200474 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200475 /* Userspace is tricking us, but we've already clobbered
476 * its pages with the prefault and promised to write the
477 * data up to the first fault. Hence ignore any errors
478 * and just continue. */
479 (void)ret;
480 prefaulted = 1;
481 }
482
Daniel Vetterd174bd62012-03-25 19:47:40 +0200483 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
484 user_data, page_do_bit17_swizzling,
485 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700486
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200487 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100488
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200489next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100490 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100491
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100492 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100493 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100494
Eric Anholteb014592009-03-10 11:44:52 -0700495 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100496 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700497 offset += page_length;
498 }
499
Chris Wilson4f27b752010-10-14 15:26:45 +0100500out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100501 i915_gem_object_unpin_pages(obj);
502
Eric Anholteb014592009-03-10 11:44:52 -0700503 return ret;
504}
505
Eric Anholt673a3942008-07-30 12:06:12 -0700506/**
507 * Reads data from the object referenced by handle.
508 *
509 * On error, the contents of *data are undefined.
510 */
511int
512i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000513 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700514{
515 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000516 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100517 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700518
Chris Wilson51311d02010-11-17 09:10:42 +0000519 if (args->size == 0)
520 return 0;
521
522 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200523 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000524 args->size))
525 return -EFAULT;
526
Chris Wilson4f27b752010-10-14 15:26:45 +0100527 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100528 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100529 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700530
Chris Wilson05394f32010-11-08 19:18:58 +0000531 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000532 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100533 ret = -ENOENT;
534 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100535 }
Eric Anholt673a3942008-07-30 12:06:12 -0700536
Chris Wilson7dcd2492010-09-26 20:21:44 +0100537 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000538 if (args->offset > obj->base.size ||
539 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100540 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100541 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100542 }
543
Daniel Vetter1286ff72012-05-10 15:25:09 +0200544 /* prime objects have no backing filp to GEM pread/pwrite
545 * pages from.
546 */
547 if (!obj->base.filp) {
548 ret = -EINVAL;
549 goto out;
550 }
551
Chris Wilsondb53a302011-02-03 11:57:46 +0000552 trace_i915_gem_object_pread(obj, args->offset, args->size);
553
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200554 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700555
Chris Wilson35b62a82010-09-26 20:23:38 +0100556out:
Chris Wilson05394f32010-11-08 19:18:58 +0000557 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100558unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100559 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700560 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700561}
562
Keith Packard0839ccb2008-10-30 19:38:48 -0700563/* This is the fast write path which cannot handle
564 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700565 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700566
Keith Packard0839ccb2008-10-30 19:38:48 -0700567static inline int
568fast_user_write(struct io_mapping *mapping,
569 loff_t page_base, int page_offset,
570 char __user *user_data,
571 int length)
572{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700573 void __iomem *vaddr_atomic;
574 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700575 unsigned long unwritten;
576
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700577 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700578 /* We can use the cpu mem copy function because this is X86. */
579 vaddr = (void __force*)vaddr_atomic + page_offset;
580 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700581 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700582 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100583 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700584}
585
Eric Anholt3de09aa2009-03-09 09:42:23 -0700586/**
587 * This is the fast pwrite path, where we copy the data directly from the
588 * user into the GTT, uncached.
589 */
Eric Anholt673a3942008-07-30 12:06:12 -0700590static int
Chris Wilson05394f32010-11-08 19:18:58 +0000591i915_gem_gtt_pwrite_fast(struct drm_device *dev,
592 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700593 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000594 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700595{
Keith Packard0839ccb2008-10-30 19:38:48 -0700596 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700597 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700598 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700599 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200600 int page_offset, page_length, ret;
601
Ben Widawskyc37e2202013-07-31 16:59:58 -0700602 ret = i915_gem_obj_ggtt_pin(obj, 0, true, true);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200603 if (ret)
604 goto out;
605
606 ret = i915_gem_object_set_to_gtt_domain(obj, true);
607 if (ret)
608 goto out_unpin;
609
610 ret = i915_gem_object_put_fence(obj);
611 if (ret)
612 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700613
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200614 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700615 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700616
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700617 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700618
619 while (remain > 0) {
620 /* Operation in this page
621 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700622 * page_base = page offset within aperture
623 * page_offset = offset within page
624 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700625 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100626 page_base = offset & PAGE_MASK;
627 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700628 page_length = remain;
629 if ((page_offset + remain) > PAGE_SIZE)
630 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700631
Keith Packard0839ccb2008-10-30 19:38:48 -0700632 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700633 * source page isn't available. Return the error and we'll
634 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700635 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800636 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200637 page_offset, user_data, page_length)) {
638 ret = -EFAULT;
639 goto out_unpin;
640 }
Eric Anholt673a3942008-07-30 12:06:12 -0700641
Keith Packard0839ccb2008-10-30 19:38:48 -0700642 remain -= page_length;
643 user_data += page_length;
644 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700645 }
Eric Anholt673a3942008-07-30 12:06:12 -0700646
Daniel Vetter935aaa62012-03-25 19:47:35 +0200647out_unpin:
648 i915_gem_object_unpin(obj);
649out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700650 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700651}
652
Daniel Vetterd174bd62012-03-25 19:47:40 +0200653/* Per-page copy function for the shmem pwrite fastpath.
654 * Flushes invalid cachelines before writing to the target if
655 * needs_clflush_before is set and flushes out any written cachelines after
656 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700657static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200658shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
659 char __user *user_data,
660 bool page_do_bit17_swizzling,
661 bool needs_clflush_before,
662 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700663{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200664 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700665 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700666
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200667 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200668 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700669
Daniel Vetterd174bd62012-03-25 19:47:40 +0200670 vaddr = kmap_atomic(page);
671 if (needs_clflush_before)
672 drm_clflush_virt_range(vaddr + shmem_page_offset,
673 page_length);
674 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
675 user_data,
676 page_length);
677 if (needs_clflush_after)
678 drm_clflush_virt_range(vaddr + shmem_page_offset,
679 page_length);
680 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700681
Chris Wilson755d2212012-09-04 21:02:55 +0100682 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700683}
684
Daniel Vetterd174bd62012-03-25 19:47:40 +0200685/* Only difference to the fast-path function is that this can handle bit17
686 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700687static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200688shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
689 char __user *user_data,
690 bool page_do_bit17_swizzling,
691 bool needs_clflush_before,
692 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700693{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200694 char *vaddr;
695 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700696
Daniel Vetterd174bd62012-03-25 19:47:40 +0200697 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200698 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200699 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
700 page_length,
701 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200702 if (page_do_bit17_swizzling)
703 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100704 user_data,
705 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200706 else
707 ret = __copy_from_user(vaddr + shmem_page_offset,
708 user_data,
709 page_length);
710 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200711 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
712 page_length,
713 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200714 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100715
Chris Wilson755d2212012-09-04 21:02:55 +0100716 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700717}
718
Eric Anholt40123c12009-03-09 13:42:30 -0700719static int
Daniel Vettere244a442012-03-25 19:47:28 +0200720i915_gem_shmem_pwrite(struct drm_device *dev,
721 struct drm_i915_gem_object *obj,
722 struct drm_i915_gem_pwrite *args,
723 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700724{
Eric Anholt40123c12009-03-09 13:42:30 -0700725 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100726 loff_t offset;
727 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100728 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100729 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200730 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200731 int needs_clflush_after = 0;
732 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200733 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700734
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200735 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700736 remain = args->size;
737
Daniel Vetter8c599672011-12-14 13:57:31 +0100738 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700739
Daniel Vetter58642882012-03-25 19:47:37 +0200740 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
741 /* If we're not in the cpu write domain, set ourself into the gtt
742 * write domain and manually flush cachelines (if required). This
743 * optimizes for the case when the gpu will use the data
744 * right away and we therefore have to clflush anyway. */
745 if (obj->cache_level == I915_CACHE_NONE)
746 needs_clflush_after = 1;
Ben Widawsky98438772013-07-31 17:00:12 -0700747 if (i915_gem_obj_bound_any(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200748 ret = i915_gem_object_set_to_gtt_domain(obj, true);
749 if (ret)
750 return ret;
751 }
Daniel Vetter58642882012-03-25 19:47:37 +0200752 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100753 /* Same trick applies to invalidate partially written cachelines read
754 * before writing. */
755 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
756 needs_clflush_before =
757 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200758
Chris Wilson755d2212012-09-04 21:02:55 +0100759 ret = i915_gem_object_get_pages(obj);
760 if (ret)
761 return ret;
762
763 i915_gem_object_pin_pages(obj);
764
Eric Anholt40123c12009-03-09 13:42:30 -0700765 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000766 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700767
Imre Deak67d5a502013-02-18 19:28:02 +0200768 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
769 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200770 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200771 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100772
Chris Wilson9da3da62012-06-01 15:20:22 +0100773 if (remain <= 0)
774 break;
775
Eric Anholt40123c12009-03-09 13:42:30 -0700776 /* Operation in this page
777 *
Eric Anholt40123c12009-03-09 13:42:30 -0700778 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700779 * page_length = bytes to copy for this page
780 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100781 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700782
783 page_length = remain;
784 if ((shmem_page_offset + page_length) > PAGE_SIZE)
785 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700786
Daniel Vetter58642882012-03-25 19:47:37 +0200787 /* If we don't overwrite a cacheline completely we need to be
788 * careful to have up-to-date data by first clflushing. Don't
789 * overcomplicate things and flush the entire patch. */
790 partial_cacheline_write = needs_clflush_before &&
791 ((shmem_page_offset | page_length)
792 & (boot_cpu_data.x86_clflush_size - 1));
793
Daniel Vetter8c599672011-12-14 13:57:31 +0100794 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
795 (page_to_phys(page) & (1 << 17)) != 0;
796
Daniel Vetterd174bd62012-03-25 19:47:40 +0200797 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
798 user_data, page_do_bit17_swizzling,
799 partial_cacheline_write,
800 needs_clflush_after);
801 if (ret == 0)
802 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700803
Daniel Vettere244a442012-03-25 19:47:28 +0200804 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200805 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200806 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
807 user_data, page_do_bit17_swizzling,
808 partial_cacheline_write,
809 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700810
Daniel Vettere244a442012-03-25 19:47:28 +0200811 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +0100812
Daniel Vettere244a442012-03-25 19:47:28 +0200813next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100814 set_page_dirty(page);
815 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100816
Chris Wilson755d2212012-09-04 21:02:55 +0100817 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +0100818 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +0100819
Eric Anholt40123c12009-03-09 13:42:30 -0700820 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100821 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700822 offset += page_length;
823 }
824
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100825out:
Chris Wilson755d2212012-09-04 21:02:55 +0100826 i915_gem_object_unpin_pages(obj);
827
Daniel Vettere244a442012-03-25 19:47:28 +0200828 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +0100829 /*
830 * Fixup: Flush cpu caches in case we didn't flush the dirty
831 * cachelines in-line while writing and the object moved
832 * out of the cpu write domain while we've dropped the lock.
833 */
834 if (!needs_clflush_after &&
835 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vettere244a442012-03-25 19:47:28 +0200836 i915_gem_clflush_object(obj);
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800837 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +0200838 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100839 }
Eric Anholt40123c12009-03-09 13:42:30 -0700840
Daniel Vetter58642882012-03-25 19:47:37 +0200841 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800842 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +0200843
Eric Anholt40123c12009-03-09 13:42:30 -0700844 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700845}
846
847/**
848 * Writes data to the object referenced by handle.
849 *
850 * On error, the contents of the buffer that were to be modified are undefined.
851 */
852int
853i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100854 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700855{
856 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000857 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000858 int ret;
859
860 if (args->size == 0)
861 return 0;
862
863 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200864 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000865 args->size))
866 return -EFAULT;
867
Xiong Zhang0b74b502013-07-19 13:51:24 +0800868 if (likely(!i915_prefault_disable)) {
869 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
870 args->size);
871 if (ret)
872 return -EFAULT;
873 }
Eric Anholt673a3942008-07-30 12:06:12 -0700874
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100875 ret = i915_mutex_lock_interruptible(dev);
876 if (ret)
877 return ret;
878
Chris Wilson05394f32010-11-08 19:18:58 +0000879 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000880 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100881 ret = -ENOENT;
882 goto unlock;
883 }
Eric Anholt673a3942008-07-30 12:06:12 -0700884
Chris Wilson7dcd2492010-09-26 20:21:44 +0100885 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000886 if (args->offset > obj->base.size ||
887 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100888 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100889 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100890 }
891
Daniel Vetter1286ff72012-05-10 15:25:09 +0200892 /* prime objects have no backing filp to GEM pread/pwrite
893 * pages from.
894 */
895 if (!obj->base.filp) {
896 ret = -EINVAL;
897 goto out;
898 }
899
Chris Wilsondb53a302011-02-03 11:57:46 +0000900 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
901
Daniel Vetter935aaa62012-03-25 19:47:35 +0200902 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700903 /* We can only do the GTT pwrite on untiled buffers, as otherwise
904 * it would end up going through the fenced access, and we'll get
905 * different detiling behavior between reading and writing.
906 * pread/pwrite currently are reading and writing from the CPU
907 * perspective, requiring manual detiling by the client.
908 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100909 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100910 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100911 goto out;
912 }
913
Chris Wilson86a1ee22012-08-11 15:41:04 +0100914 if (obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200915 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100916 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100917 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200918 /* Note that the gtt paths might fail with non-page-backed user
919 * pointers (e.g. gtt mappings when moving data between
920 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700921 }
Eric Anholt673a3942008-07-30 12:06:12 -0700922
Chris Wilson86a1ee22012-08-11 15:41:04 +0100923 if (ret == -EFAULT || ret == -ENOSPC)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200924 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100925
Chris Wilson35b62a82010-09-26 20:23:38 +0100926out:
Chris Wilson05394f32010-11-08 19:18:58 +0000927 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100928unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100929 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700930 return ret;
931}
932
Chris Wilsonb3612372012-08-24 09:35:08 +0100933int
Daniel Vetter33196de2012-11-14 17:14:05 +0100934i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +0100935 bool interruptible)
936{
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100937 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +0100938 /* Non-interruptible callers can't handle -EAGAIN, hence return
939 * -EIO unconditionally for these. */
940 if (!interruptible)
941 return -EIO;
942
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100943 /* Recovery complete, but the reset failed ... */
944 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +0100945 return -EIO;
946
947 return -EAGAIN;
948 }
949
950 return 0;
951}
952
953/*
954 * Compare seqno against outstanding lazy request. Emit a request if they are
955 * equal.
956 */
957static int
958i915_gem_check_olr(struct intel_ring_buffer *ring, u32 seqno)
959{
960 int ret;
961
962 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
963
964 ret = 0;
965 if (seqno == ring->outstanding_lazy_request)
Mika Kuoppala0025c072013-06-12 12:35:30 +0300966 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +0100967
968 return ret;
969}
970
971/**
972 * __wait_seqno - wait until execution of seqno has finished
973 * @ring: the ring expected to report seqno
974 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +0100975 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +0100976 * @interruptible: do an interruptible wait (normally yes)
977 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
978 *
Daniel Vetterf69061b2012-12-06 09:01:42 +0100979 * Note: It is of utmost importance that the passed in seqno and reset_counter
980 * values have been read by the caller in an smp safe manner. Where read-side
981 * locks are involved, it is sufficient to read the reset_counter before
982 * unlocking the lock that protects the seqno. For lockless tricks, the
983 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
984 * inserted.
985 *
Chris Wilsonb3612372012-08-24 09:35:08 +0100986 * Returns 0 if the seqno was found within the alloted time. Else returns the
987 * errno with remaining time filled in timeout argument.
988 */
989static int __wait_seqno(struct intel_ring_buffer *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +0100990 unsigned reset_counter,
Chris Wilsonb3612372012-08-24 09:35:08 +0100991 bool interruptible, struct timespec *timeout)
992{
993 drm_i915_private_t *dev_priv = ring->dev->dev_private;
994 struct timespec before, now, wait_time={1,0};
995 unsigned long timeout_jiffies;
996 long end;
997 bool wait_forever = true;
998 int ret;
999
1000 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1001 return 0;
1002
1003 trace_i915_gem_request_wait_begin(ring, seqno);
1004
1005 if (timeout != NULL) {
1006 wait_time = *timeout;
1007 wait_forever = false;
1008 }
1009
Imre Deake054cc32013-05-21 20:03:19 +03001010 timeout_jiffies = timespec_to_jiffies_timeout(&wait_time);
Chris Wilsonb3612372012-08-24 09:35:08 +01001011
1012 if (WARN_ON(!ring->irq_get(ring)))
1013 return -ENODEV;
1014
1015 /* Record current time in case interrupted by signal, or wedged * */
1016 getrawmonotonic(&before);
1017
1018#define EXIT_COND \
1019 (i915_seqno_passed(ring->get_seqno(ring, false), seqno) || \
Daniel Vetterf69061b2012-12-06 09:01:42 +01001020 i915_reset_in_progress(&dev_priv->gpu_error) || \
1021 reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
Chris Wilsonb3612372012-08-24 09:35:08 +01001022 do {
1023 if (interruptible)
1024 end = wait_event_interruptible_timeout(ring->irq_queue,
1025 EXIT_COND,
1026 timeout_jiffies);
1027 else
1028 end = wait_event_timeout(ring->irq_queue, EXIT_COND,
1029 timeout_jiffies);
1030
Daniel Vetterf69061b2012-12-06 09:01:42 +01001031 /* We need to check whether any gpu reset happened in between
1032 * the caller grabbing the seqno and now ... */
1033 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
1034 end = -EAGAIN;
1035
1036 /* ... but upgrade the -EGAIN to an -EIO if the gpu is truely
1037 * gone. */
Daniel Vetter33196de2012-11-14 17:14:05 +01001038 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001039 if (ret)
1040 end = ret;
1041 } while (end == 0 && wait_forever);
1042
1043 getrawmonotonic(&now);
1044
1045 ring->irq_put(ring);
1046 trace_i915_gem_request_wait_end(ring, seqno);
1047#undef EXIT_COND
1048
1049 if (timeout) {
1050 struct timespec sleep_time = timespec_sub(now, before);
1051 *timeout = timespec_sub(*timeout, sleep_time);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03001052 if (!timespec_valid(timeout)) /* i.e. negative time remains */
1053 set_normalized_timespec(timeout, 0, 0);
Chris Wilsonb3612372012-08-24 09:35:08 +01001054 }
1055
1056 switch (end) {
1057 case -EIO:
1058 case -EAGAIN: /* Wedged */
1059 case -ERESTARTSYS: /* Signal */
1060 return (int)end;
1061 case 0: /* Timeout */
Chris Wilsonb3612372012-08-24 09:35:08 +01001062 return -ETIME;
1063 default: /* Completed */
1064 WARN_ON(end < 0); /* We're not aware of other errors */
1065 return 0;
1066 }
1067}
1068
1069/**
1070 * Waits for a sequence number to be signaled, and cleans up the
1071 * request and object lists appropriately for that event.
1072 */
1073int
1074i915_wait_seqno(struct intel_ring_buffer *ring, uint32_t seqno)
1075{
1076 struct drm_device *dev = ring->dev;
1077 struct drm_i915_private *dev_priv = dev->dev_private;
1078 bool interruptible = dev_priv->mm.interruptible;
1079 int ret;
1080
1081 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1082 BUG_ON(seqno == 0);
1083
Daniel Vetter33196de2012-11-14 17:14:05 +01001084 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001085 if (ret)
1086 return ret;
1087
1088 ret = i915_gem_check_olr(ring, seqno);
1089 if (ret)
1090 return ret;
1091
Daniel Vetterf69061b2012-12-06 09:01:42 +01001092 return __wait_seqno(ring, seqno,
1093 atomic_read(&dev_priv->gpu_error.reset_counter),
1094 interruptible, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001095}
1096
Chris Wilsond26e3af2013-06-29 22:05:26 +01001097static int
1098i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj,
1099 struct intel_ring_buffer *ring)
1100{
1101 i915_gem_retire_requests_ring(ring);
1102
1103 /* Manually manage the write flush as we may have not yet
1104 * retired the buffer.
1105 *
1106 * Note that the last_write_seqno is always the earlier of
1107 * the two (read/write) seqno, so if we haved successfully waited,
1108 * we know we have passed the last write.
1109 */
1110 obj->last_write_seqno = 0;
1111 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
1112
1113 return 0;
1114}
1115
Chris Wilsonb3612372012-08-24 09:35:08 +01001116/**
1117 * Ensures that all rendering to the object has completed and the object is
1118 * safe to unbind from the GTT or access from the CPU.
1119 */
1120static __must_check int
1121i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1122 bool readonly)
1123{
1124 struct intel_ring_buffer *ring = obj->ring;
1125 u32 seqno;
1126 int ret;
1127
1128 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1129 if (seqno == 0)
1130 return 0;
1131
1132 ret = i915_wait_seqno(ring, seqno);
1133 if (ret)
1134 return ret;
1135
Chris Wilsond26e3af2013-06-29 22:05:26 +01001136 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001137}
1138
Chris Wilson3236f572012-08-24 09:35:09 +01001139/* A nonblocking variant of the above wait. This is a highly dangerous routine
1140 * as the object state may change during this call.
1141 */
1142static __must_check int
1143i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
1144 bool readonly)
1145{
1146 struct drm_device *dev = obj->base.dev;
1147 struct drm_i915_private *dev_priv = dev->dev_private;
1148 struct intel_ring_buffer *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001149 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001150 u32 seqno;
1151 int ret;
1152
1153 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1154 BUG_ON(!dev_priv->mm.interruptible);
1155
1156 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1157 if (seqno == 0)
1158 return 0;
1159
Daniel Vetter33196de2012-11-14 17:14:05 +01001160 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001161 if (ret)
1162 return ret;
1163
1164 ret = i915_gem_check_olr(ring, seqno);
1165 if (ret)
1166 return ret;
1167
Daniel Vetterf69061b2012-12-06 09:01:42 +01001168 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001169 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf69061b2012-12-06 09:01:42 +01001170 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilson3236f572012-08-24 09:35:09 +01001171 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001172 if (ret)
1173 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001174
Chris Wilsond26e3af2013-06-29 22:05:26 +01001175 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilson3236f572012-08-24 09:35:09 +01001176}
1177
Eric Anholt673a3942008-07-30 12:06:12 -07001178/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001179 * Called when user space prepares to use an object with the CPU, either
1180 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001181 */
1182int
1183i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001184 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001185{
1186 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001187 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001188 uint32_t read_domains = args->read_domains;
1189 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001190 int ret;
1191
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001192 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001193 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001194 return -EINVAL;
1195
Chris Wilson21d509e2009-06-06 09:46:02 +01001196 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001197 return -EINVAL;
1198
1199 /* Having something in the write domain implies it's in the read
1200 * domain, and only that read domain. Enforce that in the request.
1201 */
1202 if (write_domain != 0 && read_domains != write_domain)
1203 return -EINVAL;
1204
Chris Wilson76c1dec2010-09-25 11:22:51 +01001205 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001206 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001207 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001208
Chris Wilson05394f32010-11-08 19:18:58 +00001209 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001210 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001211 ret = -ENOENT;
1212 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001213 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001214
Chris Wilson3236f572012-08-24 09:35:09 +01001215 /* Try to flush the object off the GPU without holding the lock.
1216 * We will repeat the flush holding the lock in the normal manner
1217 * to catch cases where we are gazumped.
1218 */
1219 ret = i915_gem_object_wait_rendering__nonblocking(obj, !write_domain);
1220 if (ret)
1221 goto unref;
1222
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001223 if (read_domains & I915_GEM_DOMAIN_GTT) {
1224 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001225
1226 /* Silently promote "you're not bound, there was nothing to do"
1227 * to success, since the client was just asking us to
1228 * make sure everything was done.
1229 */
1230 if (ret == -EINVAL)
1231 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001232 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001233 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001234 }
1235
Chris Wilson3236f572012-08-24 09:35:09 +01001236unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001237 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001238unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001239 mutex_unlock(&dev->struct_mutex);
1240 return ret;
1241}
1242
1243/**
1244 * Called when user space has done writes to this buffer
1245 */
1246int
1247i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001248 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001249{
1250 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001251 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001252 int ret = 0;
1253
Chris Wilson76c1dec2010-09-25 11:22:51 +01001254 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001255 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001256 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001257
Chris Wilson05394f32010-11-08 19:18:58 +00001258 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001259 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001260 ret = -ENOENT;
1261 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001262 }
1263
Eric Anholt673a3942008-07-30 12:06:12 -07001264 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001265 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001266 i915_gem_object_flush_cpu_write_domain(obj);
1267
Chris Wilson05394f32010-11-08 19:18:58 +00001268 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001269unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001270 mutex_unlock(&dev->struct_mutex);
1271 return ret;
1272}
1273
1274/**
1275 * Maps the contents of an object, returning the address it is mapped
1276 * into.
1277 *
1278 * While the mapping holds a reference on the contents of the object, it doesn't
1279 * imply a ref on the object itself.
1280 */
1281int
1282i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001283 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001284{
1285 struct drm_i915_gem_mmap *args = data;
1286 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001287 unsigned long addr;
1288
Chris Wilson05394f32010-11-08 19:18:58 +00001289 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001290 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001291 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001292
Daniel Vetter1286ff72012-05-10 15:25:09 +02001293 /* prime objects have no backing filp to GEM mmap
1294 * pages from.
1295 */
1296 if (!obj->filp) {
1297 drm_gem_object_unreference_unlocked(obj);
1298 return -EINVAL;
1299 }
1300
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001301 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001302 PROT_READ | PROT_WRITE, MAP_SHARED,
1303 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001304 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001305 if (IS_ERR((void *)addr))
1306 return addr;
1307
1308 args->addr_ptr = (uint64_t) addr;
1309
1310 return 0;
1311}
1312
Jesse Barnesde151cf2008-11-12 10:03:55 -08001313/**
1314 * i915_gem_fault - fault a page into the GTT
1315 * vma: VMA in question
1316 * vmf: fault info
1317 *
1318 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1319 * from userspace. The fault handler takes care of binding the object to
1320 * the GTT (if needed), allocating and programming a fence register (again,
1321 * only if needed based on whether the old reg is still valid or the object
1322 * is tiled) and inserting a new PTE into the faulting process.
1323 *
1324 * Note that the faulting process may involve evicting existing objects
1325 * from the GTT and/or fence registers to make room. So performance may
1326 * suffer if the GTT working set is large or there are few fence registers
1327 * left.
1328 */
1329int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1330{
Chris Wilson05394f32010-11-08 19:18:58 +00001331 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1332 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001333 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001334 pgoff_t page_offset;
1335 unsigned long pfn;
1336 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001337 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001338
1339 /* We don't use vmf->pgoff since that has the fake offset */
1340 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1341 PAGE_SHIFT;
1342
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001343 ret = i915_mutex_lock_interruptible(dev);
1344 if (ret)
1345 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001346
Chris Wilsondb53a302011-02-03 11:57:46 +00001347 trace_i915_gem_object_fault(obj, page_offset, true, write);
1348
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001349 /* Access to snoopable pages through the GTT is incoherent. */
1350 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
1351 ret = -EINVAL;
1352 goto unlock;
1353 }
1354
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001355 /* Now bind it into the GTT if needed */
Ben Widawskyc37e2202013-07-31 16:59:58 -07001356 ret = i915_gem_obj_ggtt_pin(obj, 0, true, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001357 if (ret)
1358 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001359
Chris Wilsonc9839302012-11-20 10:45:17 +00001360 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1361 if (ret)
1362 goto unpin;
1363
1364 ret = i915_gem_object_get_fence(obj);
1365 if (ret)
1366 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001367
Chris Wilson6299f992010-11-24 12:23:44 +00001368 obj->fault_mappable = true;
1369
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001370 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1371 pfn >>= PAGE_SHIFT;
1372 pfn += page_offset;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001373
1374 /* Finally, remap it using the new GTT offset */
1375 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc9839302012-11-20 10:45:17 +00001376unpin:
1377 i915_gem_object_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001378unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001379 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001380out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001381 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001382 case -EIO:
Daniel Vettera9340cc2012-07-04 22:18:42 +02001383 /* If this -EIO is due to a gpu hang, give the reset code a
1384 * chance to clean up the mess. Otherwise return the proper
1385 * SIGBUS. */
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001386 if (i915_terminally_wedged(&dev_priv->gpu_error))
Daniel Vettera9340cc2012-07-04 22:18:42 +02001387 return VM_FAULT_SIGBUS;
Chris Wilson045e7692010-11-07 09:18:22 +00001388 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001389 /* Give the error handler a chance to run and move the
1390 * objects off the GPU active list. Next time we service the
1391 * fault, we should be able to transition the page into the
1392 * GTT without touching the GPU (and so avoid further
1393 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1394 * with coherency, just lost writes.
1395 */
Chris Wilson045e7692010-11-07 09:18:22 +00001396 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001397 case 0:
1398 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001399 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001400 case -EBUSY:
1401 /*
1402 * EBUSY is ok: this just means that another thread
1403 * already did the job.
1404 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001405 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001406 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001407 return VM_FAULT_OOM;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001408 case -ENOSPC:
1409 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001410 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001411 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Chris Wilsonc7150892009-09-23 00:43:56 +01001412 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001413 }
1414}
1415
1416/**
Chris Wilson901782b2009-07-10 08:18:50 +01001417 * i915_gem_release_mmap - remove physical page mappings
1418 * @obj: obj in question
1419 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001420 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001421 * relinquish ownership of the pages back to the system.
1422 *
1423 * It is vital that we remove the page mapping if we have mapped a tiled
1424 * object through the GTT and then lose the fence register due to
1425 * resource pressure. Similarly if the object has been moved out of the
1426 * aperture, than pages mapped into userspace must be revoked. Removing the
1427 * mapping will then trigger a page fault on the next user access, allowing
1428 * fixup by i915_gem_fault().
1429 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001430void
Chris Wilson05394f32010-11-08 19:18:58 +00001431i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001432{
Chris Wilson6299f992010-11-24 12:23:44 +00001433 if (!obj->fault_mappable)
1434 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001435
Chris Wilsonf6e47882011-03-20 21:09:12 +00001436 if (obj->base.dev->dev_mapping)
1437 unmap_mapping_range(obj->base.dev->dev_mapping,
1438 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1439 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001440
Chris Wilson6299f992010-11-24 12:23:44 +00001441 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001442}
1443
Imre Deak0fa87792013-01-07 21:47:35 +02001444uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001445i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001446{
Chris Wilsone28f8712011-07-18 13:11:49 -07001447 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001448
1449 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001450 tiling_mode == I915_TILING_NONE)
1451 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001452
1453 /* Previous chips need a power-of-two fence region when tiling */
1454 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001455 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001456 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001457 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001458
Chris Wilsone28f8712011-07-18 13:11:49 -07001459 while (gtt_size < size)
1460 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001461
Chris Wilsone28f8712011-07-18 13:11:49 -07001462 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001463}
1464
Jesse Barnesde151cf2008-11-12 10:03:55 -08001465/**
1466 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1467 * @obj: object to check
1468 *
1469 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001470 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001471 */
Imre Deakd8651102013-01-07 21:47:33 +02001472uint32_t
1473i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1474 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001475{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001476 /*
1477 * Minimum alignment is 4k (GTT page size), but might be greater
1478 * if a fence register is needed for the object.
1479 */
Imre Deakd8651102013-01-07 21:47:33 +02001480 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001481 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001482 return 4096;
1483
1484 /*
1485 * Previous chips need to be aligned to the size of the smallest
1486 * fence register that can contain the object.
1487 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001488 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001489}
1490
Chris Wilsond8cb5082012-08-11 15:41:03 +01001491static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1492{
1493 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1494 int ret;
1495
1496 if (obj->base.map_list.map)
1497 return 0;
1498
Daniel Vetterda494d72012-12-20 15:11:16 +01001499 dev_priv->mm.shrinker_no_lock_stealing = true;
1500
Chris Wilsond8cb5082012-08-11 15:41:03 +01001501 ret = drm_gem_create_mmap_offset(&obj->base);
1502 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001503 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001504
1505 /* Badly fragmented mmap space? The only way we can recover
1506 * space is by destroying unwanted objects. We can't randomly release
1507 * mmap_offsets as userspace expects them to be persistent for the
1508 * lifetime of the objects. The closest we can is to release the
1509 * offsets on purgeable objects by truncating it and marking it purged,
1510 * which prevents userspace from ever using that object again.
1511 */
1512 i915_gem_purge(dev_priv, obj->base.size >> PAGE_SHIFT);
1513 ret = drm_gem_create_mmap_offset(&obj->base);
1514 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001515 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001516
1517 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001518 ret = drm_gem_create_mmap_offset(&obj->base);
1519out:
1520 dev_priv->mm.shrinker_no_lock_stealing = false;
1521
1522 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001523}
1524
1525static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1526{
1527 if (!obj->base.map_list.map)
1528 return;
1529
1530 drm_gem_free_mmap_offset(&obj->base);
1531}
1532
Jesse Barnesde151cf2008-11-12 10:03:55 -08001533int
Dave Airlieff72145b2011-02-07 12:16:14 +10001534i915_gem_mmap_gtt(struct drm_file *file,
1535 struct drm_device *dev,
1536 uint32_t handle,
1537 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001538{
Chris Wilsonda761a62010-10-27 17:37:08 +01001539 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001540 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001541 int ret;
1542
Chris Wilson76c1dec2010-09-25 11:22:51 +01001543 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001544 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001545 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001546
Dave Airlieff72145b2011-02-07 12:16:14 +10001547 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001548 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001549 ret = -ENOENT;
1550 goto unlock;
1551 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001552
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001553 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001554 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001555 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001556 }
1557
Chris Wilson05394f32010-11-08 19:18:58 +00001558 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001559 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001560 ret = -EINVAL;
1561 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001562 }
1563
Chris Wilsond8cb5082012-08-11 15:41:03 +01001564 ret = i915_gem_object_create_mmap_offset(obj);
1565 if (ret)
1566 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001567
Dave Airlieff72145b2011-02-07 12:16:14 +10001568 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001569
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001570out:
Chris Wilson05394f32010-11-08 19:18:58 +00001571 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001572unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001573 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001574 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001575}
1576
Dave Airlieff72145b2011-02-07 12:16:14 +10001577/**
1578 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1579 * @dev: DRM device
1580 * @data: GTT mapping ioctl data
1581 * @file: GEM object info
1582 *
1583 * Simply returns the fake offset to userspace so it can mmap it.
1584 * The mmap call will end up in drm_gem_mmap(), which will set things
1585 * up so we can get faults in the handler above.
1586 *
1587 * The fault handler will take care of binding the object into the GTT
1588 * (since it may have been evicted to make room for something), allocating
1589 * a fence register, and mapping the appropriate aperture address into
1590 * userspace.
1591 */
1592int
1593i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1594 struct drm_file *file)
1595{
1596 struct drm_i915_gem_mmap_gtt *args = data;
1597
Dave Airlieff72145b2011-02-07 12:16:14 +10001598 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1599}
1600
Daniel Vetter225067e2012-08-20 10:23:20 +02001601/* Immediately discard the backing storage */
1602static void
1603i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001604{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001605 struct inode *inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001606
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001607 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001608
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001609 if (obj->base.filp == NULL)
1610 return;
1611
Daniel Vetter225067e2012-08-20 10:23:20 +02001612 /* Our goal here is to return as much of the memory as
1613 * is possible back to the system as we are called from OOM.
1614 * To do this we must instruct the shmfs to drop all of its
1615 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001616 */
Al Viro496ad9a2013-01-23 17:07:38 -05001617 inode = file_inode(obj->base.filp);
Daniel Vetter225067e2012-08-20 10:23:20 +02001618 shmem_truncate_range(inode, 0, (loff_t)-1);
Hugh Dickins5949eac2011-06-27 16:18:18 -07001619
Daniel Vetter225067e2012-08-20 10:23:20 +02001620 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001621}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001622
Daniel Vetter225067e2012-08-20 10:23:20 +02001623static inline int
1624i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1625{
1626 return obj->madv == I915_MADV_DONTNEED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001627}
1628
Chris Wilson5cdf5882010-09-27 15:51:07 +01001629static void
Chris Wilson05394f32010-11-08 19:18:58 +00001630i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001631{
Imre Deak90797e62013-02-18 19:28:03 +02001632 struct sg_page_iter sg_iter;
1633 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001634
Chris Wilson05394f32010-11-08 19:18:58 +00001635 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001636
Chris Wilson6c085a72012-08-20 11:40:46 +02001637 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1638 if (ret) {
1639 /* In the event of a disaster, abandon all caches and
1640 * hope for the best.
1641 */
1642 WARN_ON(ret != -EIO);
1643 i915_gem_clflush_object(obj);
1644 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1645 }
1646
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001647 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001648 i915_gem_object_save_bit_17_swizzle(obj);
1649
Chris Wilson05394f32010-11-08 19:18:58 +00001650 if (obj->madv == I915_MADV_DONTNEED)
1651 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001652
Imre Deak90797e62013-02-18 19:28:03 +02001653 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001654 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001655
Chris Wilson05394f32010-11-08 19:18:58 +00001656 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001657 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001658
Chris Wilson05394f32010-11-08 19:18:58 +00001659 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001660 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001661
Chris Wilson9da3da62012-06-01 15:20:22 +01001662 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001663 }
Chris Wilson05394f32010-11-08 19:18:58 +00001664 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001665
Chris Wilson9da3da62012-06-01 15:20:22 +01001666 sg_free_table(obj->pages);
1667 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001668}
1669
Chris Wilsondd624af2013-01-15 12:39:35 +00001670int
Chris Wilson37e680a2012-06-07 15:38:42 +01001671i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1672{
1673 const struct drm_i915_gem_object_ops *ops = obj->ops;
1674
Chris Wilson2f745ad2012-09-04 21:02:58 +01001675 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01001676 return 0;
1677
Chris Wilsona5570172012-09-04 21:02:54 +01001678 if (obj->pages_pin_count)
1679 return -EBUSY;
1680
Ben Widawsky98438772013-07-31 17:00:12 -07001681 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07001682
Chris Wilsona2165e32012-12-03 11:49:00 +00001683 /* ->put_pages might need to allocate memory for the bit17 swizzle
1684 * array, hence protect them from being reaped by removing them from gtt
1685 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07001686 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00001687
Chris Wilson37e680a2012-06-07 15:38:42 +01001688 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001689 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02001690
Chris Wilson6c085a72012-08-20 11:40:46 +02001691 if (i915_gem_object_is_purgeable(obj))
1692 i915_gem_object_truncate(obj);
1693
1694 return 0;
1695}
1696
1697static long
Daniel Vetter93927ca2013-01-10 18:03:00 +01001698__i915_gem_shrink(struct drm_i915_private *dev_priv, long target,
1699 bool purgeable_only)
Chris Wilson6c085a72012-08-20 11:40:46 +02001700{
1701 struct drm_i915_gem_object *obj, *next;
1702 long count = 0;
1703
1704 list_for_each_entry_safe(obj, next,
1705 &dev_priv->mm.unbound_list,
Ben Widawsky35c20a62013-05-31 11:28:48 -07001706 global_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001707 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001708 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001709 count += obj->base.size >> PAGE_SHIFT;
1710 if (count >= target)
1711 return count;
1712 }
1713 }
1714
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001715 list_for_each_entry_safe(obj, next, &dev_priv->mm.bound_list,
1716 global_list) {
1717 struct i915_vma *vma, *v;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001718
1719 if (!i915_gem_object_is_purgeable(obj) && purgeable_only)
1720 continue;
1721
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001722 list_for_each_entry_safe(vma, v, &obj->vma_list, vma_link)
1723 if (i915_vma_unbind(vma))
1724 break;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001725
1726 if (!i915_gem_object_put_pages(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001727 count += obj->base.size >> PAGE_SHIFT;
1728 if (count >= target)
1729 return count;
1730 }
1731 }
1732
1733 return count;
1734}
1735
Daniel Vetter93927ca2013-01-10 18:03:00 +01001736static long
1737i915_gem_purge(struct drm_i915_private *dev_priv, long target)
1738{
1739 return __i915_gem_shrink(dev_priv, target, true);
1740}
1741
Chris Wilson6c085a72012-08-20 11:40:46 +02001742static void
1743i915_gem_shrink_all(struct drm_i915_private *dev_priv)
1744{
1745 struct drm_i915_gem_object *obj, *next;
1746
1747 i915_gem_evict_everything(dev_priv->dev);
1748
Ben Widawsky35c20a62013-05-31 11:28:48 -07001749 list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
1750 global_list)
Chris Wilson37e680a2012-06-07 15:38:42 +01001751 i915_gem_object_put_pages(obj);
Daniel Vetter225067e2012-08-20 10:23:20 +02001752}
1753
Chris Wilson37e680a2012-06-07 15:38:42 +01001754static int
Chris Wilson6c085a72012-08-20 11:40:46 +02001755i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001756{
Chris Wilson6c085a72012-08-20 11:40:46 +02001757 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001758 int page_count, i;
1759 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01001760 struct sg_table *st;
1761 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02001762 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07001763 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02001764 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02001765 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07001766
Chris Wilson6c085a72012-08-20 11:40:46 +02001767 /* Assert that the object is not currently in any GPU domain. As it
1768 * wasn't in the GTT, there shouldn't be any way it could have been in
1769 * a GPU cache
1770 */
1771 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
1772 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
1773
Chris Wilson9da3da62012-06-01 15:20:22 +01001774 st = kmalloc(sizeof(*st), GFP_KERNEL);
1775 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001776 return -ENOMEM;
1777
Chris Wilson9da3da62012-06-01 15:20:22 +01001778 page_count = obj->base.size / PAGE_SIZE;
1779 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
1780 sg_free_table(st);
1781 kfree(st);
1782 return -ENOMEM;
1783 }
1784
1785 /* Get the list of pages out of our struct file. They'll be pinned
1786 * at this point until we release them.
1787 *
1788 * Fail silently without starting the shrinker
1789 */
Al Viro496ad9a2013-01-23 17:07:38 -05001790 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02001791 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08001792 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001793 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02001794 sg = st->sgl;
1795 st->nents = 0;
1796 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001797 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1798 if (IS_ERR(page)) {
1799 i915_gem_purge(dev_priv, page_count);
1800 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1801 }
1802 if (IS_ERR(page)) {
1803 /* We've tried hard to allocate the memory by reaping
1804 * our own buffer, now let the real VM do its job and
1805 * go down in flames if truly OOM.
1806 */
Linus Torvaldscaf49192012-12-10 10:51:16 -08001807 gfp &= ~(__GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD);
Chris Wilson6c085a72012-08-20 11:40:46 +02001808 gfp |= __GFP_IO | __GFP_WAIT;
1809
1810 i915_gem_shrink_all(dev_priv);
1811 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1812 if (IS_ERR(page))
1813 goto err_pages;
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 }
Konrad Rzeszutek Wilk1625e7e2013-06-24 11:47:48 -04001818#ifdef CONFIG_SWIOTLB
1819 if (swiotlb_nr_tbl()) {
1820 st->nents++;
1821 sg_set_page(sg, page, PAGE_SIZE, 0);
1822 sg = sg_next(sg);
1823 continue;
1824 }
1825#endif
Imre Deak90797e62013-02-18 19:28:03 +02001826 if (!i || page_to_pfn(page) != last_pfn + 1) {
1827 if (i)
1828 sg = sg_next(sg);
1829 st->nents++;
1830 sg_set_page(sg, page, PAGE_SIZE, 0);
1831 } else {
1832 sg->length += PAGE_SIZE;
1833 }
1834 last_pfn = page_to_pfn(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001835 }
Konrad Rzeszutek Wilk1625e7e2013-06-24 11:47:48 -04001836#ifdef CONFIG_SWIOTLB
1837 if (!swiotlb_nr_tbl())
1838#endif
1839 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01001840 obj->pages = st;
1841
Eric Anholt673a3942008-07-30 12:06:12 -07001842 if (i915_gem_object_needs_bit17_swizzle(obj))
1843 i915_gem_object_do_bit_17_swizzle(obj);
1844
1845 return 0;
1846
1847err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02001848 sg_mark_end(sg);
1849 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02001850 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01001851 sg_free_table(st);
1852 kfree(st);
Eric Anholt673a3942008-07-30 12:06:12 -07001853 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001854}
1855
Chris Wilson37e680a2012-06-07 15:38:42 +01001856/* Ensure that the associated pages are gathered from the backing storage
1857 * and pinned into our object. i915_gem_object_get_pages() may be called
1858 * multiple times before they are released by a single call to
1859 * i915_gem_object_put_pages() - once the pages are no longer referenced
1860 * either as a result of memory pressure (reaping pages under the shrinker)
1861 * or as the object is itself released.
1862 */
1863int
1864i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
1865{
1866 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1867 const struct drm_i915_gem_object_ops *ops = obj->ops;
1868 int ret;
1869
Chris Wilson2f745ad2012-09-04 21:02:58 +01001870 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01001871 return 0;
1872
Chris Wilson43e28f02013-01-08 10:53:09 +00001873 if (obj->madv != I915_MADV_WILLNEED) {
1874 DRM_ERROR("Attempting to obtain a purgeable object\n");
1875 return -EINVAL;
1876 }
1877
Chris Wilsona5570172012-09-04 21:02:54 +01001878 BUG_ON(obj->pages_pin_count);
1879
Chris Wilson37e680a2012-06-07 15:38:42 +01001880 ret = ops->get_pages(obj);
1881 if (ret)
1882 return ret;
1883
Ben Widawsky35c20a62013-05-31 11:28:48 -07001884 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01001885 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001886}
1887
Chris Wilson54cf91d2010-11-25 18:00:26 +00001888void
Chris Wilson05394f32010-11-08 19:18:58 +00001889i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson9d7730912012-11-27 16:22:52 +00001890 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001891{
Chris Wilson05394f32010-11-08 19:18:58 +00001892 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001893 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9d7730912012-11-27 16:22:52 +00001894 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001895
Zou Nan hai852835f2010-05-21 09:08:56 +08001896 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01001897 if (obj->ring != ring && obj->last_write_seqno) {
1898 /* Keep the seqno relative to the current ring */
1899 obj->last_write_seqno = seqno;
1900 }
Chris Wilson05394f32010-11-08 19:18:58 +00001901 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001902
1903 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001904 if (!obj->active) {
1905 drm_gem_object_reference(&obj->base);
1906 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001907 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001908
Chris Wilson05394f32010-11-08 19:18:58 +00001909 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001910
Chris Wilson0201f1e2012-07-20 12:41:01 +01001911 obj->last_read_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001912
Chris Wilsoncaea7472010-11-12 13:53:37 +00001913 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001914 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001915
Chris Wilson7dd49062012-03-21 10:48:18 +00001916 /* Bump MRU to take account of the delayed flush */
1917 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1918 struct drm_i915_fence_reg *reg;
1919
1920 reg = &dev_priv->fence_regs[obj->fence_reg];
1921 list_move_tail(&reg->lru_list,
1922 &dev_priv->mm.fence_list);
1923 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001924 }
1925}
1926
1927static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00001928i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1929{
Ben Widawskyca191b12013-07-31 17:00:14 -07001930 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1931 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
1932 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001933
Chris Wilson65ce3022012-07-20 12:41:02 +01001934 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001935 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01001936
Ben Widawskyca191b12013-07-31 17:00:14 -07001937 list_move_tail(&vma->mm_list, &ggtt_vm->inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001938
Chris Wilson65ce3022012-07-20 12:41:02 +01001939 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001940 obj->ring = NULL;
1941
Chris Wilson65ce3022012-07-20 12:41:02 +01001942 obj->last_read_seqno = 0;
1943 obj->last_write_seqno = 0;
1944 obj->base.write_domain = 0;
1945
1946 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001947 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001948
1949 obj->active = 0;
1950 drm_gem_object_unreference(&obj->base);
1951
1952 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001953}
Eric Anholt673a3942008-07-30 12:06:12 -07001954
Chris Wilson9d7730912012-11-27 16:22:52 +00001955static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001956i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001957{
Chris Wilson9d7730912012-11-27 16:22:52 +00001958 struct drm_i915_private *dev_priv = dev->dev_private;
1959 struct intel_ring_buffer *ring;
1960 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001961
Chris Wilson107f27a52012-12-10 13:56:17 +02001962 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00001963 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02001964 ret = intel_ring_idle(ring);
1965 if (ret)
1966 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00001967 }
Chris Wilson9d7730912012-11-27 16:22:52 +00001968 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02001969
1970 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00001971 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001972 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001973
Chris Wilson9d7730912012-11-27 16:22:52 +00001974 for (j = 0; j < ARRAY_SIZE(ring->sync_seqno); j++)
1975 ring->sync_seqno[j] = 0;
1976 }
1977
1978 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001979}
1980
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001981int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
1982{
1983 struct drm_i915_private *dev_priv = dev->dev_private;
1984 int ret;
1985
1986 if (seqno == 0)
1987 return -EINVAL;
1988
1989 /* HWS page needs to be set less than what we
1990 * will inject to ring
1991 */
1992 ret = i915_gem_init_seqno(dev, seqno - 1);
1993 if (ret)
1994 return ret;
1995
1996 /* Carefully set the last_seqno value so that wrap
1997 * detection still works
1998 */
1999 dev_priv->next_seqno = seqno;
2000 dev_priv->last_seqno = seqno - 1;
2001 if (dev_priv->last_seqno == 0)
2002 dev_priv->last_seqno--;
2003
2004 return 0;
2005}
2006
Chris Wilson9d7730912012-11-27 16:22:52 +00002007int
2008i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002009{
Chris Wilson9d7730912012-11-27 16:22:52 +00002010 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002011
Chris Wilson9d7730912012-11-27 16:22:52 +00002012 /* reserve 0 for non-seqno */
2013 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002014 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002015 if (ret)
2016 return ret;
2017
2018 dev_priv->next_seqno = 1;
2019 }
2020
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002021 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002022 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002023}
2024
Mika Kuoppala0025c072013-06-12 12:35:30 +03002025int __i915_add_request(struct intel_ring_buffer *ring,
2026 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002027 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002028 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002029{
Chris Wilsondb53a302011-02-03 11:57:46 +00002030 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002031 struct drm_i915_gem_request *request;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002032 u32 request_ring_position, request_start;
Eric Anholt673a3942008-07-30 12:06:12 -07002033 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01002034 int ret;
2035
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002036 request_start = intel_ring_get_tail(ring);
Daniel Vettercc889e02012-06-13 20:45:19 +02002037 /*
2038 * Emit any outstanding flushes - execbuf can fail to emit the flush
2039 * after having emitted the batchbuffer command. Hence we need to fix
2040 * things up similar to emitting the lazy request. The difference here
2041 * is that the flush _must_ happen before the next request, no matter
2042 * what.
2043 */
Chris Wilsona7b97612012-07-20 12:41:08 +01002044 ret = intel_ring_flush_all_caches(ring);
2045 if (ret)
2046 return ret;
Daniel Vettercc889e02012-06-13 20:45:19 +02002047
Chris Wilsonacb868d2012-09-26 13:47:30 +01002048 request = kmalloc(sizeof(*request), GFP_KERNEL);
2049 if (request == NULL)
2050 return -ENOMEM;
Daniel Vettercc889e02012-06-13 20:45:19 +02002051
Eric Anholt673a3942008-07-30 12:06:12 -07002052
Chris Wilsona71d8d92012-02-15 11:25:36 +00002053 /* Record the position of the start of the request so that
2054 * should we detect the updated seqno part-way through the
2055 * GPU processing the request, we never over-estimate the
2056 * position of the head.
2057 */
2058 request_ring_position = intel_ring_get_tail(ring);
2059
Chris Wilson9d7730912012-11-27 16:22:52 +00002060 ret = ring->add_request(ring);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002061 if (ret) {
2062 kfree(request);
2063 return ret;
2064 }
Eric Anholt673a3942008-07-30 12:06:12 -07002065
Chris Wilson9d7730912012-11-27 16:22:52 +00002066 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002067 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002068 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002069 request->tail = request_ring_position;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002070 request->ctx = ring->last_context;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002071 request->batch_obj = obj;
2072
2073 /* Whilst this request exists, batch_obj will be on the
2074 * active_list, and so will hold the active reference. Only when this
2075 * request is retired will the the batch_obj be moved onto the
2076 * inactive_list and lose its active reference. Hence we do not need
2077 * to explicitly hold another reference here.
2078 */
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002079
2080 if (request->ctx)
2081 i915_gem_context_reference(request->ctx);
2082
Eric Anholt673a3942008-07-30 12:06:12 -07002083 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002084 was_empty = list_empty(&ring->request_list);
2085 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002086 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002087
Chris Wilsondb53a302011-02-03 11:57:46 +00002088 if (file) {
2089 struct drm_i915_file_private *file_priv = file->driver_priv;
2090
Chris Wilson1c255952010-09-26 11:03:27 +01002091 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002092 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002093 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002094 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002095 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002096 }
Eric Anholt673a3942008-07-30 12:06:12 -07002097
Chris Wilson9d7730912012-11-27 16:22:52 +00002098 trace_i915_gem_request_add(ring, request->seqno);
Daniel Vetter5391d0c2012-01-25 14:03:57 +01002099 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00002100
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002101 if (!dev_priv->ums.mm_suspended) {
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002102 i915_queue_hangcheck(ring->dev);
2103
Chris Wilsonf047e392012-07-21 12:31:41 +01002104 if (was_empty) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01002105 queue_delayed_work(dev_priv->wq,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002106 &dev_priv->mm.retire_work,
2107 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002108 intel_mark_busy(dev_priv->dev);
2109 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002110 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002111
Chris Wilsonacb868d2012-09-26 13:47:30 +01002112 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002113 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002114 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002115}
2116
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002117static inline void
2118i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002119{
Chris Wilson1c255952010-09-26 11:03:27 +01002120 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002121
Chris Wilson1c255952010-09-26 11:03:27 +01002122 if (!file_priv)
2123 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002124
Chris Wilson1c255952010-09-26 11:03:27 +01002125 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00002126 if (request->file_priv) {
2127 list_del(&request->client_list);
2128 request->file_priv = NULL;
2129 }
Chris Wilson1c255952010-09-26 11:03:27 +01002130 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002131}
2132
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002133static bool i915_head_inside_object(u32 acthd, struct drm_i915_gem_object *obj,
2134 struct i915_address_space *vm)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002135{
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002136 if (acthd >= i915_gem_obj_offset(obj, vm) &&
2137 acthd < i915_gem_obj_offset(obj, vm) + obj->base.size)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002138 return true;
2139
2140 return false;
2141}
2142
2143static bool i915_head_inside_request(const u32 acthd_unmasked,
2144 const u32 request_start,
2145 const u32 request_end)
2146{
2147 const u32 acthd = acthd_unmasked & HEAD_ADDR;
2148
2149 if (request_start < request_end) {
2150 if (acthd >= request_start && acthd < request_end)
2151 return true;
2152 } else if (request_start > request_end) {
2153 if (acthd >= request_start || acthd < request_end)
2154 return true;
2155 }
2156
2157 return false;
2158}
2159
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002160static struct i915_address_space *
2161request_to_vm(struct drm_i915_gem_request *request)
2162{
2163 struct drm_i915_private *dev_priv = request->ring->dev->dev_private;
2164 struct i915_address_space *vm;
2165
2166 vm = &dev_priv->gtt.base;
2167
2168 return vm;
2169}
2170
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002171static bool i915_request_guilty(struct drm_i915_gem_request *request,
2172 const u32 acthd, bool *inside)
2173{
2174 /* There is a possibility that unmasked head address
2175 * pointing inside the ring, matches the batch_obj address range.
2176 * However this is extremely unlikely.
2177 */
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002178 if (request->batch_obj) {
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002179 if (i915_head_inside_object(acthd, request->batch_obj,
2180 request_to_vm(request))) {
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002181 *inside = true;
2182 return true;
2183 }
2184 }
2185
2186 if (i915_head_inside_request(acthd, request->head, request->tail)) {
2187 *inside = false;
2188 return true;
2189 }
2190
2191 return false;
2192}
2193
2194static void i915_set_reset_status(struct intel_ring_buffer *ring,
2195 struct drm_i915_gem_request *request,
2196 u32 acthd)
2197{
2198 struct i915_ctx_hang_stats *hs = NULL;
2199 bool inside, guilty;
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002200 unsigned long offset = 0;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002201
2202 /* Innocent until proven guilty */
2203 guilty = false;
2204
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002205 if (request->batch_obj)
2206 offset = i915_gem_obj_offset(request->batch_obj,
2207 request_to_vm(request));
2208
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002209 if (ring->hangcheck.action != wait &&
2210 i915_request_guilty(request, acthd, &inside)) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002211 DRM_ERROR("%s hung %s bo (0x%lx ctx %d) at 0x%x\n",
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002212 ring->name,
2213 inside ? "inside" : "flushing",
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002214 offset,
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002215 request->ctx ? request->ctx->id : 0,
2216 acthd);
2217
2218 guilty = true;
2219 }
2220
2221 /* If contexts are disabled or this is the default context, use
2222 * file_priv->reset_state
2223 */
2224 if (request->ctx && request->ctx->id != DEFAULT_CONTEXT_ID)
2225 hs = &request->ctx->hang_stats;
2226 else if (request->file_priv)
2227 hs = &request->file_priv->hang_stats;
2228
2229 if (hs) {
2230 if (guilty)
2231 hs->batch_active++;
2232 else
2233 hs->batch_pending++;
2234 }
2235}
2236
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002237static void i915_gem_free_request(struct drm_i915_gem_request *request)
2238{
2239 list_del(&request->list);
2240 i915_gem_request_remove_from_client(request);
2241
2242 if (request->ctx)
2243 i915_gem_context_unreference(request->ctx);
2244
2245 kfree(request);
2246}
2247
Chris Wilsondfaae392010-09-22 10:31:52 +01002248static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
2249 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002250{
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002251 u32 completed_seqno;
2252 u32 acthd;
2253
2254 acthd = intel_ring_get_active_head(ring);
2255 completed_seqno = ring->get_seqno(ring, false);
2256
Chris Wilsondfaae392010-09-22 10:31:52 +01002257 while (!list_empty(&ring->request_list)) {
2258 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01002259
Chris Wilsondfaae392010-09-22 10:31:52 +01002260 request = list_first_entry(&ring->request_list,
2261 struct drm_i915_gem_request,
2262 list);
2263
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002264 if (request->seqno > completed_seqno)
2265 i915_set_reset_status(ring, request, acthd);
2266
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002267 i915_gem_free_request(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01002268 }
2269
2270 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002271 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002272
Chris Wilson05394f32010-11-08 19:18:58 +00002273 obj = list_first_entry(&ring->active_list,
2274 struct drm_i915_gem_object,
2275 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002276
Chris Wilson05394f32010-11-08 19:18:58 +00002277 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002278 }
Eric Anholt673a3942008-07-30 12:06:12 -07002279}
2280
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002281void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002282{
2283 struct drm_i915_private *dev_priv = dev->dev_private;
2284 int i;
2285
Daniel Vetter4b9de732011-10-09 21:52:02 +02002286 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002287 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002288
Daniel Vetter94a335d2013-07-17 14:51:28 +02002289 /*
2290 * Commit delayed tiling changes if we have an object still
2291 * attached to the fence, otherwise just clear the fence.
2292 */
2293 if (reg->obj) {
2294 i915_gem_object_update_fence(reg->obj, reg,
2295 reg->obj->tiling_mode);
2296 } else {
2297 i915_gem_write_fence(dev, i, NULL);
2298 }
Chris Wilson312817a2010-11-22 11:50:11 +00002299 }
2300}
2301
Chris Wilson069efc12010-09-30 16:53:18 +01002302void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002303{
Chris Wilsondfaae392010-09-22 10:31:52 +01002304 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002305 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002306 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002307
Chris Wilsonb4519512012-05-11 14:29:30 +01002308 for_each_ring(ring, dev_priv, i)
2309 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002310
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002311 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002312}
2313
2314/**
2315 * This function clears the request list as sequence numbers are passed.
2316 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00002317void
Chris Wilsondb53a302011-02-03 11:57:46 +00002318i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002319{
Eric Anholt673a3942008-07-30 12:06:12 -07002320 uint32_t seqno;
2321
Chris Wilsondb53a302011-02-03 11:57:46 +00002322 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002323 return;
2324
Chris Wilsondb53a302011-02-03 11:57:46 +00002325 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002326
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002327 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002328
Zou Nan hai852835f2010-05-21 09:08:56 +08002329 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002330 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002331
Zou Nan hai852835f2010-05-21 09:08:56 +08002332 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002333 struct drm_i915_gem_request,
2334 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002335
Chris Wilsondfaae392010-09-22 10:31:52 +01002336 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002337 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002338
Chris Wilsondb53a302011-02-03 11:57:46 +00002339 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002340 /* We know the GPU must have read the request to have
2341 * sent us the seqno + interrupt, so use the position
2342 * of tail of the request to update the last known position
2343 * of the GPU head.
2344 */
2345 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002346
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002347 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002348 }
2349
2350 /* Move any buffers on the active list that are no longer referenced
2351 * by the ringbuffer to the flushing/inactive lists as appropriate.
2352 */
2353 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002354 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002355
Akshay Joshi0206e352011-08-16 15:34:10 -04002356 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002357 struct drm_i915_gem_object,
2358 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002359
Chris Wilson0201f1e2012-07-20 12:41:01 +01002360 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002361 break;
2362
Chris Wilson65ce3022012-07-20 12:41:02 +01002363 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002364 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002365
Chris Wilsondb53a302011-02-03 11:57:46 +00002366 if (unlikely(ring->trace_irq_seqno &&
2367 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002368 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002369 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002370 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002371
Chris Wilsondb53a302011-02-03 11:57:46 +00002372 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002373}
2374
2375void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002376i915_gem_retire_requests(struct drm_device *dev)
2377{
2378 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002379 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002380 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002381
Chris Wilsonb4519512012-05-11 14:29:30 +01002382 for_each_ring(ring, dev_priv, i)
2383 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002384}
2385
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002386static void
Eric Anholt673a3942008-07-30 12:06:12 -07002387i915_gem_retire_work_handler(struct work_struct *work)
2388{
2389 drm_i915_private_t *dev_priv;
2390 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01002391 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00002392 bool idle;
2393 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002394
2395 dev_priv = container_of(work, drm_i915_private_t,
2396 mm.retire_work.work);
2397 dev = dev_priv->dev;
2398
Chris Wilson891b48c2010-09-29 12:26:37 +01002399 /* Come back later if the device is busy... */
2400 if (!mutex_trylock(&dev->struct_mutex)) {
Chris Wilsonbcb45082012-10-05 17:02:57 +01002401 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2402 round_jiffies_up_relative(HZ));
Chris Wilson891b48c2010-09-29 12:26:37 +01002403 return;
2404 }
2405
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002406 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002407
Chris Wilson0a587052011-01-09 21:05:44 +00002408 /* Send a periodic flush down the ring so we don't hold onto GEM
2409 * objects indefinitely.
2410 */
2411 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002412 for_each_ring(ring, dev_priv, i) {
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002413 if (ring->gpu_caches_dirty)
Mika Kuoppala0025c072013-06-12 12:35:30 +03002414 i915_add_request(ring, NULL);
Chris Wilson0a587052011-01-09 21:05:44 +00002415
2416 idle &= list_empty(&ring->request_list);
2417 }
2418
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002419 if (!dev_priv->ums.mm_suspended && !idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002420 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2421 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002422 if (idle)
2423 intel_mark_idle(dev);
Chris Wilson0a587052011-01-09 21:05:44 +00002424
Eric Anholt673a3942008-07-30 12:06:12 -07002425 mutex_unlock(&dev->struct_mutex);
2426}
2427
Ben Widawsky5816d642012-04-11 11:18:19 -07002428/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002429 * Ensures that an object will eventually get non-busy by flushing any required
2430 * write domains, emitting any outstanding lazy request and retiring and
2431 * completed requests.
2432 */
2433static int
2434i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2435{
2436 int ret;
2437
2438 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002439 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002440 if (ret)
2441 return ret;
2442
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002443 i915_gem_retire_requests_ring(obj->ring);
2444 }
2445
2446 return 0;
2447}
2448
2449/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002450 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2451 * @DRM_IOCTL_ARGS: standard ioctl arguments
2452 *
2453 * Returns 0 if successful, else an error is returned with the remaining time in
2454 * the timeout parameter.
2455 * -ETIME: object is still busy after timeout
2456 * -ERESTARTSYS: signal interrupted the wait
2457 * -ENONENT: object doesn't exist
2458 * Also possible, but rare:
2459 * -EAGAIN: GPU wedged
2460 * -ENOMEM: damn
2461 * -ENODEV: Internal IRQ fail
2462 * -E?: The add request failed
2463 *
2464 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2465 * non-zero timeout parameter the wait ioctl will wait for the given number of
2466 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2467 * without holding struct_mutex the object may become re-busied before this
2468 * function completes. A similar but shorter * race condition exists in the busy
2469 * ioctl
2470 */
2471int
2472i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2473{
Daniel Vetterf69061b2012-12-06 09:01:42 +01002474 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002475 struct drm_i915_gem_wait *args = data;
2476 struct drm_i915_gem_object *obj;
2477 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002478 struct timespec timeout_stack, *timeout = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002479 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002480 u32 seqno = 0;
2481 int ret = 0;
2482
Ben Widawskyeac1f142012-06-05 15:24:24 -07002483 if (args->timeout_ns >= 0) {
2484 timeout_stack = ns_to_timespec(args->timeout_ns);
2485 timeout = &timeout_stack;
2486 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002487
2488 ret = i915_mutex_lock_interruptible(dev);
2489 if (ret)
2490 return ret;
2491
2492 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2493 if (&obj->base == NULL) {
2494 mutex_unlock(&dev->struct_mutex);
2495 return -ENOENT;
2496 }
2497
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002498 /* Need to make sure the object gets inactive eventually. */
2499 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002500 if (ret)
2501 goto out;
2502
2503 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002504 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002505 ring = obj->ring;
2506 }
2507
2508 if (seqno == 0)
2509 goto out;
2510
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002511 /* Do this after OLR check to make sure we make forward progress polling
2512 * on this IOCTL with a 0 timeout (like busy ioctl)
2513 */
2514 if (!args->timeout_ns) {
2515 ret = -ETIME;
2516 goto out;
2517 }
2518
2519 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002520 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002521 mutex_unlock(&dev->struct_mutex);
2522
Daniel Vetterf69061b2012-12-06 09:01:42 +01002523 ret = __wait_seqno(ring, seqno, reset_counter, true, timeout);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03002524 if (timeout)
Ben Widawskyeac1f142012-06-05 15:24:24 -07002525 args->timeout_ns = timespec_to_ns(timeout);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002526 return ret;
2527
2528out:
2529 drm_gem_object_unreference(&obj->base);
2530 mutex_unlock(&dev->struct_mutex);
2531 return ret;
2532}
2533
2534/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002535 * i915_gem_object_sync - sync an object to a ring.
2536 *
2537 * @obj: object which may be in use on another ring.
2538 * @to: ring we wish to use the object on. May be NULL.
2539 *
2540 * This code is meant to abstract object synchronization with the GPU.
2541 * Calling with NULL implies synchronizing the object with the CPU
2542 * rather than a particular GPU ring.
2543 *
2544 * Returns 0 if successful, else propagates up the lower layer error.
2545 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002546int
2547i915_gem_object_sync(struct drm_i915_gem_object *obj,
2548 struct intel_ring_buffer *to)
2549{
2550 struct intel_ring_buffer *from = obj->ring;
2551 u32 seqno;
2552 int ret, idx;
2553
2554 if (from == NULL || to == from)
2555 return 0;
2556
Ben Widawsky5816d642012-04-11 11:18:19 -07002557 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002558 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002559
2560 idx = intel_ring_sync_index(from, to);
2561
Chris Wilson0201f1e2012-07-20 12:41:01 +01002562 seqno = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002563 if (seqno <= from->sync_seqno[idx])
2564 return 0;
2565
Ben Widawskyb4aca012012-04-25 20:50:12 -07002566 ret = i915_gem_check_olr(obj->ring, seqno);
2567 if (ret)
2568 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002569
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002570 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002571 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002572 /* We use last_read_seqno because sync_to()
2573 * might have just caused seqno wrap under
2574 * the radar.
2575 */
2576 from->sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002577
Ben Widawskye3a5a222012-04-11 11:18:20 -07002578 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002579}
2580
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002581static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2582{
2583 u32 old_write_domain, old_read_domains;
2584
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002585 /* Force a pagefault for domain tracking on next user access */
2586 i915_gem_release_mmap(obj);
2587
Keith Packardb97c3d92011-06-24 21:02:59 -07002588 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2589 return;
2590
Chris Wilson97c809fd2012-10-09 19:24:38 +01002591 /* Wait for any direct GTT access to complete */
2592 mb();
2593
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002594 old_read_domains = obj->base.read_domains;
2595 old_write_domain = obj->base.write_domain;
2596
2597 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2598 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2599
2600 trace_i915_gem_object_change_domain(obj,
2601 old_read_domains,
2602 old_write_domain);
2603}
2604
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002605int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07002606{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002607 struct drm_i915_gem_object *obj = vma->obj;
Daniel Vetter7bddb012012-02-09 17:15:47 +01002608 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00002609 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002610
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002611 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07002612 return 0;
2613
Chris Wilson31d8d652012-05-24 19:11:20 +01002614 if (obj->pin_count)
2615 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002616
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002617 BUG_ON(obj->pages == NULL);
2618
Chris Wilsona8198ee2011-04-13 22:04:09 +01002619 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002620 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002621 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002622 /* Continue on if we fail due to EIO, the GPU is hung so we
2623 * should be safe and we need to cleanup or else we might
2624 * cause memory corruption through use-after-free.
2625 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002626
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002627 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002628
Daniel Vetter96b47b62009-12-15 17:50:00 +01002629 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002630 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002631 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002632 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002633
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002634 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00002635
Daniel Vetter74898d72012-02-15 23:50:22 +01002636 if (obj->has_global_gtt_mapping)
2637 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002638 if (obj->has_aliasing_ppgtt_mapping) {
2639 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2640 obj->has_aliasing_ppgtt_mapping = 0;
2641 }
Daniel Vetter74163902012-02-15 23:50:21 +01002642 i915_gem_gtt_finish_object(obj);
Ben Widawsky401c29f2013-05-31 11:28:47 -07002643 i915_gem_object_unpin_pages(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002644
Ben Widawskyca191b12013-07-31 17:00:14 -07002645 list_del(&vma->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002646 /* Avoid an unnecessary call to unbind on rebind. */
Ben Widawsky5cacaac2013-07-31 17:00:13 -07002647 if (i915_is_ggtt(vma->vm))
2648 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002649
Ben Widawsky2f633152013-07-17 12:19:03 -07002650 drm_mm_remove_node(&vma->node);
2651 i915_gem_vma_destroy(vma);
2652
2653 /* Since the unbound list is global, only move to that list if
2654 * no more VMAs exist.
2655 * NB: Until we have real VMAs there will only ever be one */
2656 WARN_ON(!list_empty(&obj->vma_list));
2657 if (list_empty(&obj->vma_list))
2658 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002659
Chris Wilson88241782011-01-07 17:09:48 +00002660 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002661}
2662
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002663/**
2664 * Unbinds an object from the global GTT aperture.
2665 */
2666int
2667i915_gem_object_ggtt_unbind(struct drm_i915_gem_object *obj)
2668{
2669 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2670 struct i915_address_space *ggtt = &dev_priv->gtt.base;
2671
Dan Carpenter58e73e12013-08-09 12:44:11 +03002672 if (!i915_gem_obj_ggtt_bound(obj))
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002673 return 0;
2674
2675 if (obj->pin_count)
2676 return -EBUSY;
2677
2678 BUG_ON(obj->pages == NULL);
2679
2680 return i915_vma_unbind(i915_gem_obj_to_vma(obj, ggtt));
2681}
2682
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002683int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002684{
2685 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002686 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002687 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002688
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002689 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002690 for_each_ring(ring, dev_priv, i) {
Ben Widawskyb6c74882012-08-14 14:35:14 -07002691 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2692 if (ret)
2693 return ret;
2694
Chris Wilson3e960502012-11-27 16:22:54 +00002695 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002696 if (ret)
2697 return ret;
2698 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002699
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002700 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002701}
2702
Chris Wilson9ce079e2012-04-17 15:31:30 +01002703static void i965_write_fence_reg(struct drm_device *dev, int reg,
2704 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002705{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002706 drm_i915_private_t *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02002707 int fence_reg;
2708 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002709
Imre Deak56c844e2013-01-07 21:47:34 +02002710 if (INTEL_INFO(dev)->gen >= 6) {
2711 fence_reg = FENCE_REG_SANDYBRIDGE_0;
2712 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
2713 } else {
2714 fence_reg = FENCE_REG_965_0;
2715 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
2716 }
2717
Chris Wilsond18b9612013-07-10 13:36:23 +01002718 fence_reg += reg * 8;
2719
2720 /* To w/a incoherency with non-atomic 64-bit register updates,
2721 * we split the 64-bit update into two 32-bit writes. In order
2722 * for a partial fence not to be evaluated between writes, we
2723 * precede the update with write to turn off the fence register,
2724 * and only enable the fence as the last step.
2725 *
2726 * For extra levels of paranoia, we make sure each step lands
2727 * before applying the next step.
2728 */
2729 I915_WRITE(fence_reg, 0);
2730 POSTING_READ(fence_reg);
2731
Chris Wilson9ce079e2012-04-17 15:31:30 +01002732 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002733 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01002734 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002735
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002736 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01002737 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002738 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02002739 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002740 if (obj->tiling_mode == I915_TILING_Y)
2741 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2742 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00002743
Chris Wilsond18b9612013-07-10 13:36:23 +01002744 I915_WRITE(fence_reg + 4, val >> 32);
2745 POSTING_READ(fence_reg + 4);
2746
2747 I915_WRITE(fence_reg + 0, val);
2748 POSTING_READ(fence_reg);
2749 } else {
2750 I915_WRITE(fence_reg + 4, 0);
2751 POSTING_READ(fence_reg + 4);
2752 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002753}
2754
Chris Wilson9ce079e2012-04-17 15:31:30 +01002755static void i915_write_fence_reg(struct drm_device *dev, int reg,
2756 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002757{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002758 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002759 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002760
Chris Wilson9ce079e2012-04-17 15:31:30 +01002761 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002762 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002763 int pitch_val;
2764 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002765
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002766 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002767 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002768 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2769 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2770 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002771
2772 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2773 tile_width = 128;
2774 else
2775 tile_width = 512;
2776
2777 /* Note: pitch better be a power of two tile widths */
2778 pitch_val = obj->stride / tile_width;
2779 pitch_val = ffs(pitch_val) - 1;
2780
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002781 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002782 if (obj->tiling_mode == I915_TILING_Y)
2783 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2784 val |= I915_FENCE_SIZE_BITS(size);
2785 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2786 val |= I830_FENCE_REG_VALID;
2787 } else
2788 val = 0;
2789
2790 if (reg < 8)
2791 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002792 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002793 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002794
Chris Wilson9ce079e2012-04-17 15:31:30 +01002795 I915_WRITE(reg, val);
2796 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002797}
2798
Chris Wilson9ce079e2012-04-17 15:31:30 +01002799static void i830_write_fence_reg(struct drm_device *dev, int reg,
2800 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002801{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002802 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002803 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002804
Chris Wilson9ce079e2012-04-17 15:31:30 +01002805 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002806 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002807 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002808
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002809 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002810 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002811 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2812 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
2813 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002814
Chris Wilson9ce079e2012-04-17 15:31:30 +01002815 pitch_val = obj->stride / 128;
2816 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002817
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002818 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002819 if (obj->tiling_mode == I915_TILING_Y)
2820 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2821 val |= I830_FENCE_SIZE_BITS(size);
2822 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2823 val |= I830_FENCE_REG_VALID;
2824 } else
2825 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002826
Chris Wilson9ce079e2012-04-17 15:31:30 +01002827 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2828 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2829}
2830
Chris Wilsond0a57782012-10-09 19:24:37 +01002831inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
2832{
2833 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
2834}
2835
Chris Wilson9ce079e2012-04-17 15:31:30 +01002836static void i915_gem_write_fence(struct drm_device *dev, int reg,
2837 struct drm_i915_gem_object *obj)
2838{
Chris Wilsond0a57782012-10-09 19:24:37 +01002839 struct drm_i915_private *dev_priv = dev->dev_private;
2840
2841 /* Ensure that all CPU reads are completed before installing a fence
2842 * and all writes before removing the fence.
2843 */
2844 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
2845 mb();
2846
Daniel Vetter94a335d2013-07-17 14:51:28 +02002847 WARN(obj && (!obj->stride || !obj->tiling_mode),
2848 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
2849 obj->stride, obj->tiling_mode);
2850
Chris Wilson9ce079e2012-04-17 15:31:30 +01002851 switch (INTEL_INFO(dev)->gen) {
2852 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02002853 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01002854 case 5:
2855 case 4: i965_write_fence_reg(dev, reg, obj); break;
2856 case 3: i915_write_fence_reg(dev, reg, obj); break;
2857 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08002858 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01002859 }
Chris Wilsond0a57782012-10-09 19:24:37 +01002860
2861 /* And similarly be paranoid that no direct access to this region
2862 * is reordered to before the fence is installed.
2863 */
2864 if (i915_gem_object_needs_mb(obj))
2865 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08002866}
2867
Chris Wilson61050802012-04-17 15:31:31 +01002868static inline int fence_number(struct drm_i915_private *dev_priv,
2869 struct drm_i915_fence_reg *fence)
2870{
2871 return fence - dev_priv->fence_regs;
2872}
2873
2874static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2875 struct drm_i915_fence_reg *fence,
2876 bool enable)
2877{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01002878 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01002879 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01002880
Chris Wilson46a0b632013-07-10 13:36:24 +01002881 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01002882
2883 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01002884 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01002885 fence->obj = obj;
2886 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2887 } else {
2888 obj->fence_reg = I915_FENCE_REG_NONE;
2889 fence->obj = NULL;
2890 list_del_init(&fence->lru_list);
2891 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02002892 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01002893}
2894
Chris Wilsond9e86c02010-11-10 16:40:20 +00002895static int
Chris Wilsond0a57782012-10-09 19:24:37 +01002896i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002897{
Chris Wilson1c293ea2012-04-17 15:31:27 +01002898 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01002899 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002900 if (ret)
2901 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002902
2903 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002904 }
2905
Chris Wilson86d5bc32012-07-20 12:41:04 +01002906 obj->fenced_gpu_access = false;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002907 return 0;
2908}
2909
2910int
2911i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2912{
Chris Wilson61050802012-04-17 15:31:31 +01002913 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002914 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002915 int ret;
2916
Chris Wilsond0a57782012-10-09 19:24:37 +01002917 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002918 if (ret)
2919 return ret;
2920
Chris Wilson61050802012-04-17 15:31:31 +01002921 if (obj->fence_reg == I915_FENCE_REG_NONE)
2922 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002923
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002924 fence = &dev_priv->fence_regs[obj->fence_reg];
2925
Chris Wilson61050802012-04-17 15:31:31 +01002926 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002927 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002928
2929 return 0;
2930}
2931
2932static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002933i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002934{
Daniel Vetterae3db242010-02-19 11:51:58 +01002935 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002936 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002937 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002938
2939 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002940 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002941 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2942 reg = &dev_priv->fence_regs[i];
2943 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002944 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002945
Chris Wilson1690e1e2011-12-14 13:57:08 +01002946 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002947 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002948 }
2949
Chris Wilsond9e86c02010-11-10 16:40:20 +00002950 if (avail == NULL)
2951 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002952
2953 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002954 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002955 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002956 continue;
2957
Chris Wilson8fe301a2012-04-17 15:31:28 +01002958 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002959 }
2960
Chris Wilson8fe301a2012-04-17 15:31:28 +01002961 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002962}
2963
Jesse Barnesde151cf2008-11-12 10:03:55 -08002964/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002965 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002966 * @obj: object to map through a fence reg
2967 *
2968 * When mapping objects through the GTT, userspace wants to be able to write
2969 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002970 * This function walks the fence regs looking for a free one for @obj,
2971 * stealing one if it can't find any.
2972 *
2973 * It then sets up the reg based on the object's properties: address, pitch
2974 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002975 *
2976 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002977 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002978int
Chris Wilson06d98132012-04-17 15:31:24 +01002979i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002980{
Chris Wilson05394f32010-11-08 19:18:58 +00002981 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002982 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002983 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002984 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002985 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002986
Chris Wilson14415742012-04-17 15:31:33 +01002987 /* Have we updated the tiling parameters upon the object and so
2988 * will need to serialise the write to the associated fence register?
2989 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002990 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01002991 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01002992 if (ret)
2993 return ret;
2994 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002995
Chris Wilsond9e86c02010-11-10 16:40:20 +00002996 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002997 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2998 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002999 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003000 list_move_tail(&reg->lru_list,
3001 &dev_priv->mm.fence_list);
3002 return 0;
3003 }
3004 } else if (enable) {
3005 reg = i915_find_fence_reg(dev);
3006 if (reg == NULL)
3007 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003008
Chris Wilson14415742012-04-17 15:31:33 +01003009 if (reg->obj) {
3010 struct drm_i915_gem_object *old = reg->obj;
3011
Chris Wilsond0a57782012-10-09 19:24:37 +01003012 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003013 if (ret)
3014 return ret;
3015
Chris Wilson14415742012-04-17 15:31:33 +01003016 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003017 }
Chris Wilson14415742012-04-17 15:31:33 +01003018 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003019 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003020
Chris Wilson14415742012-04-17 15:31:33 +01003021 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003022
Chris Wilson9ce079e2012-04-17 15:31:30 +01003023 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003024}
3025
Chris Wilson42d6ab42012-07-26 11:49:32 +01003026static bool i915_gem_valid_gtt_space(struct drm_device *dev,
3027 struct drm_mm_node *gtt_space,
3028 unsigned long cache_level)
3029{
3030 struct drm_mm_node *other;
3031
3032 /* On non-LLC machines we have to be careful when putting differing
3033 * types of snoopable memory together to avoid the prefetcher
Damien Lespiau4239ca72012-12-03 16:26:16 +00003034 * crossing memory domains and dying.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003035 */
3036 if (HAS_LLC(dev))
3037 return true;
3038
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003039 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003040 return true;
3041
3042 if (list_empty(&gtt_space->node_list))
3043 return true;
3044
3045 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3046 if (other->allocated && !other->hole_follows && other->color != cache_level)
3047 return false;
3048
3049 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3050 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3051 return false;
3052
3053 return true;
3054}
3055
3056static void i915_gem_verify_gtt(struct drm_device *dev)
3057{
3058#if WATCH_GTT
3059 struct drm_i915_private *dev_priv = dev->dev_private;
3060 struct drm_i915_gem_object *obj;
3061 int err = 0;
3062
Ben Widawsky35c20a62013-05-31 11:28:48 -07003063 list_for_each_entry(obj, &dev_priv->mm.gtt_list, global_list) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003064 if (obj->gtt_space == NULL) {
3065 printk(KERN_ERR "object found on GTT list with no space reserved\n");
3066 err++;
3067 continue;
3068 }
3069
3070 if (obj->cache_level != obj->gtt_space->color) {
3071 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003072 i915_gem_obj_ggtt_offset(obj),
3073 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003074 obj->cache_level,
3075 obj->gtt_space->color);
3076 err++;
3077 continue;
3078 }
3079
3080 if (!i915_gem_valid_gtt_space(dev,
3081 obj->gtt_space,
3082 obj->cache_level)) {
3083 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003084 i915_gem_obj_ggtt_offset(obj),
3085 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003086 obj->cache_level);
3087 err++;
3088 continue;
3089 }
3090 }
3091
3092 WARN_ON(err);
3093#endif
3094}
3095
Jesse Barnesde151cf2008-11-12 10:03:55 -08003096/**
Eric Anholt673a3942008-07-30 12:06:12 -07003097 * Finds free space in the GTT aperture and binds the object there.
3098 */
3099static int
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003100i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3101 struct i915_address_space *vm,
3102 unsigned alignment,
3103 bool map_and_fenceable,
3104 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003105{
Chris Wilson05394f32010-11-08 19:18:58 +00003106 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003107 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003108 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003109 bool mappable, fenceable;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003110 size_t gtt_max =
3111 map_and_fenceable ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003112 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003113 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003114
Ben Widawsky2f633152013-07-17 12:19:03 -07003115 if (WARN_ON(!list_empty(&obj->vma_list)))
3116 return -EBUSY;
3117
Chris Wilsone28f8712011-07-18 13:11:49 -07003118 fence_size = i915_gem_get_gtt_size(dev,
3119 obj->base.size,
3120 obj->tiling_mode);
3121 fence_alignment = i915_gem_get_gtt_alignment(dev,
3122 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003123 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003124 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003125 i915_gem_get_gtt_alignment(dev,
Chris Wilsone28f8712011-07-18 13:11:49 -07003126 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003127 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003128
Eric Anholt673a3942008-07-30 12:06:12 -07003129 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01003130 alignment = map_and_fenceable ? fence_alignment :
3131 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003132 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003133 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
3134 return -EINVAL;
3135 }
3136
Chris Wilson05394f32010-11-08 19:18:58 +00003137 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003138
Chris Wilson654fc602010-05-27 13:18:21 +01003139 /* If the object is bigger than the entire aperture, reject it early
3140 * before evicting everything in a vain attempt to find space.
3141 */
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003142 if (obj->base.size > gtt_max) {
Jani Nikula3765f302013-06-07 16:03:50 +03003143 DRM_ERROR("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%zu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003144 obj->base.size,
3145 map_and_fenceable ? "mappable" : "total",
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003146 gtt_max);
Chris Wilson654fc602010-05-27 13:18:21 +01003147 return -E2BIG;
3148 }
3149
Chris Wilson37e680a2012-06-07 15:38:42 +01003150 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003151 if (ret)
3152 return ret;
3153
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003154 i915_gem_object_pin_pages(obj);
3155
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003156 /* FIXME: For now we only ever use 1 VMA per object */
3157 BUG_ON(!i915_is_ggtt(vm));
3158 WARN_ON(!list_empty(&obj->vma_list));
3159
3160 vma = i915_gem_vma_create(obj, vm);
Dan Carpenterdb473b32013-07-19 08:45:46 +03003161 if (IS_ERR(vma)) {
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003162 ret = PTR_ERR(vma);
3163 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003164 }
3165
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003166search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003167 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003168 size, alignment,
3169 obj->cache_level, 0, gtt_max);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003170 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003171 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003172 obj->cache_level,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003173 map_and_fenceable,
3174 nonblocking);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003175 if (ret == 0)
3176 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003177
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003178 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003179 }
Ben Widawsky2f633152013-07-17 12:19:03 -07003180 if (WARN_ON(!i915_gem_valid_gtt_space(dev, &vma->node,
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003181 obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003182 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003183 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003184 }
3185
Daniel Vetter74163902012-02-15 23:50:21 +01003186 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003187 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003188 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003189
Ben Widawsky35c20a62013-05-31 11:28:48 -07003190 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003191 list_add_tail(&vma->mm_list, &vm->inactive_list);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003192
Daniel Vetter75e9e912010-11-04 17:11:09 +01003193 fenceable =
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003194 i915_is_ggtt(vm) &&
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003195 i915_gem_obj_ggtt_size(obj) == fence_size &&
3196 (i915_gem_obj_ggtt_offset(obj) & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003197
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003198 mappable =
3199 i915_is_ggtt(vm) &&
3200 vma->node.start + obj->base.size <= dev_priv->gtt.mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003201
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003202 /* Map and fenceable only changes if the VM is the global GGTT */
3203 if (i915_is_ggtt(vm))
3204 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003205
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003206 trace_i915_vma_bind(vma, map_and_fenceable);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003207 i915_gem_verify_gtt(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003208 return 0;
Ben Widawsky2f633152013-07-17 12:19:03 -07003209
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003210err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003211 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003212err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003213 i915_gem_vma_destroy(vma);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003214err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003215 i915_gem_object_unpin_pages(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003216 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003217}
3218
3219void
Chris Wilson05394f32010-11-08 19:18:58 +00003220i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003221{
Eric Anholt673a3942008-07-30 12:06:12 -07003222 /* If we don't have a page list set up, then we're not pinned
3223 * to GPU, and we can ignore the cache flush because it'll happen
3224 * again at bind time.
3225 */
Chris Wilson05394f32010-11-08 19:18:58 +00003226 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07003227 return;
3228
Imre Deak769ce462013-02-13 21:56:05 +02003229 /*
3230 * Stolen memory is always coherent with the GPU as it is explicitly
3231 * marked as wc by the system, or the system is cache-coherent.
3232 */
3233 if (obj->stolen)
3234 return;
3235
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003236 /* If the GPU is snooping the contents of the CPU cache,
3237 * we do not need to manually clear the CPU cache lines. However,
3238 * the caches are only snooped when the render cache is
3239 * flushed/invalidated. As we always have to emit invalidations
3240 * and flushes when moving into and out of the RENDER domain, correct
3241 * snooping behaviour occurs naturally as the result of our domain
3242 * tracking.
3243 */
3244 if (obj->cache_level != I915_CACHE_NONE)
3245 return;
3246
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003247 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07003248
Chris Wilson9da3da62012-06-01 15:20:22 +01003249 drm_clflush_sg(obj->pages);
Eric Anholte47c68e2008-11-14 13:35:19 -08003250}
3251
3252/** Flushes the GTT write domain for the object if it's dirty. */
3253static void
Chris Wilson05394f32010-11-08 19:18:58 +00003254i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003255{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003256 uint32_t old_write_domain;
3257
Chris Wilson05394f32010-11-08 19:18:58 +00003258 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003259 return;
3260
Chris Wilson63256ec2011-01-04 18:42:07 +00003261 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003262 * to it immediately go to main memory as far as we know, so there's
3263 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003264 *
3265 * However, we do have to enforce the order so that all writes through
3266 * the GTT land before any writes to the device, such as updates to
3267 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003268 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003269 wmb();
3270
Chris Wilson05394f32010-11-08 19:18:58 +00003271 old_write_domain = obj->base.write_domain;
3272 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003273
3274 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003275 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003276 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003277}
3278
3279/** Flushes the CPU write domain for the object if it's dirty. */
3280static void
Chris Wilson05394f32010-11-08 19:18:58 +00003281i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003282{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003283 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003284
Chris Wilson05394f32010-11-08 19:18:58 +00003285 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003286 return;
3287
3288 i915_gem_clflush_object(obj);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003289 i915_gem_chipset_flush(obj->base.dev);
Chris Wilson05394f32010-11-08 19:18:58 +00003290 old_write_domain = obj->base.write_domain;
3291 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003292
3293 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003294 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003295 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003296}
3297
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003298/**
3299 * Moves a single object to the GTT read, and possibly write domain.
3300 *
3301 * This function returns when the move is complete, including waiting on
3302 * flushes to occur.
3303 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003304int
Chris Wilson20217462010-11-23 15:26:33 +00003305i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003306{
Chris Wilson8325a092012-04-24 15:52:35 +01003307 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003308 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003309 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003310
Eric Anholt02354392008-11-26 13:58:13 -08003311 /* Not valid to be called on unbound objects. */
Ben Widawsky98438772013-07-31 17:00:12 -07003312 if (!i915_gem_obj_bound_any(obj))
Eric Anholt02354392008-11-26 13:58:13 -08003313 return -EINVAL;
3314
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003315 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3316 return 0;
3317
Chris Wilson0201f1e2012-07-20 12:41:01 +01003318 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003319 if (ret)
3320 return ret;
3321
Chris Wilson72133422010-09-13 23:56:38 +01003322 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003323
Chris Wilsond0a57782012-10-09 19:24:37 +01003324 /* Serialise direct access to this object with the barriers for
3325 * coherent writes from the GPU, by effectively invalidating the
3326 * GTT domain upon first access.
3327 */
3328 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3329 mb();
3330
Chris Wilson05394f32010-11-08 19:18:58 +00003331 old_write_domain = obj->base.write_domain;
3332 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003333
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003334 /* It should now be out of any other write domains, and we can update
3335 * the domain values for our changes.
3336 */
Chris Wilson05394f32010-11-08 19:18:58 +00003337 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3338 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003339 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003340 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3341 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3342 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003343 }
3344
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003345 trace_i915_gem_object_change_domain(obj,
3346 old_read_domains,
3347 old_write_domain);
3348
Chris Wilson8325a092012-04-24 15:52:35 +01003349 /* And bump the LRU for this access */
Ben Widawskyca191b12013-07-31 17:00:14 -07003350 if (i915_gem_object_is_inactive(obj)) {
3351 struct i915_vma *vma = i915_gem_obj_to_vma(obj,
3352 &dev_priv->gtt.base);
3353 if (vma)
3354 list_move_tail(&vma->mm_list,
3355 &dev_priv->gtt.base.inactive_list);
3356
3357 }
Chris Wilson8325a092012-04-24 15:52:35 +01003358
Eric Anholte47c68e2008-11-14 13:35:19 -08003359 return 0;
3360}
3361
Chris Wilsone4ffd172011-04-04 09:44:39 +01003362int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3363 enum i915_cache_level cache_level)
3364{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003365 struct drm_device *dev = obj->base.dev;
3366 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003367 struct i915_vma *vma;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003368 int ret;
3369
3370 if (obj->cache_level == cache_level)
3371 return 0;
3372
3373 if (obj->pin_count) {
3374 DRM_DEBUG("can not change the cache level of pinned objects\n");
3375 return -EBUSY;
3376 }
3377
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003378 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3379 if (!i915_gem_valid_gtt_space(dev, &vma->node, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003380 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003381 if (ret)
3382 return ret;
3383
3384 break;
3385 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003386 }
3387
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003388 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003389 ret = i915_gem_object_finish_gpu(obj);
3390 if (ret)
3391 return ret;
3392
3393 i915_gem_object_finish_gtt(obj);
3394
3395 /* Before SandyBridge, you could not use tiling or fence
3396 * registers with snooped memory, so relinquish any fences
3397 * currently pointing to our region in the aperture.
3398 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003399 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003400 ret = i915_gem_object_put_fence(obj);
3401 if (ret)
3402 return ret;
3403 }
3404
Daniel Vetter74898d72012-02-15 23:50:22 +01003405 if (obj->has_global_gtt_mapping)
3406 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003407 if (obj->has_aliasing_ppgtt_mapping)
3408 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3409 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003410 }
3411
3412 if (cache_level == I915_CACHE_NONE) {
3413 u32 old_read_domains, old_write_domain;
3414
3415 /* If we're coming from LLC cached, then we haven't
3416 * actually been tracking whether the data is in the
3417 * CPU cache or not, since we only allow one bit set
3418 * in obj->write_domain and have been skipping the clflushes.
3419 * Just set it to the CPU cache for now.
3420 */
3421 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
3422 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
3423
3424 old_read_domains = obj->base.read_domains;
3425 old_write_domain = obj->base.write_domain;
3426
3427 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3428 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3429
3430 trace_i915_gem_object_change_domain(obj,
3431 old_read_domains,
3432 old_write_domain);
3433 }
3434
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003435 list_for_each_entry(vma, &obj->vma_list, vma_link)
3436 vma->node.color = cache_level;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003437 obj->cache_level = cache_level;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003438 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003439 return 0;
3440}
3441
Ben Widawsky199adf42012-09-21 17:01:20 -07003442int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3443 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003444{
Ben Widawsky199adf42012-09-21 17:01:20 -07003445 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003446 struct drm_i915_gem_object *obj;
3447 int ret;
3448
3449 ret = i915_mutex_lock_interruptible(dev);
3450 if (ret)
3451 return ret;
3452
3453 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3454 if (&obj->base == NULL) {
3455 ret = -ENOENT;
3456 goto unlock;
3457 }
3458
Ben Widawsky199adf42012-09-21 17:01:20 -07003459 args->caching = obj->cache_level != I915_CACHE_NONE;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003460
3461 drm_gem_object_unreference(&obj->base);
3462unlock:
3463 mutex_unlock(&dev->struct_mutex);
3464 return ret;
3465}
3466
Ben Widawsky199adf42012-09-21 17:01:20 -07003467int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3468 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003469{
Ben Widawsky199adf42012-09-21 17:01:20 -07003470 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003471 struct drm_i915_gem_object *obj;
3472 enum i915_cache_level level;
3473 int ret;
3474
Ben Widawsky199adf42012-09-21 17:01:20 -07003475 switch (args->caching) {
3476 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003477 level = I915_CACHE_NONE;
3478 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003479 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003480 level = I915_CACHE_LLC;
3481 break;
3482 default:
3483 return -EINVAL;
3484 }
3485
Ben Widawsky3bc29132012-09-26 16:15:20 -07003486 ret = i915_mutex_lock_interruptible(dev);
3487 if (ret)
3488 return ret;
3489
Chris Wilsone6994ae2012-07-10 10:27:08 +01003490 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3491 if (&obj->base == NULL) {
3492 ret = -ENOENT;
3493 goto unlock;
3494 }
3495
3496 ret = i915_gem_object_set_cache_level(obj, level);
3497
3498 drm_gem_object_unreference(&obj->base);
3499unlock:
3500 mutex_unlock(&dev->struct_mutex);
3501 return ret;
3502}
3503
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003504/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003505 * Prepare buffer for display plane (scanout, cursors, etc).
3506 * Can be called from an uninterruptible phase (modesetting) and allows
3507 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003508 */
3509int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003510i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3511 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003512 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003513{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003514 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003515 int ret;
3516
Chris Wilson0be73282010-12-06 14:36:27 +00003517 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003518 ret = i915_gem_object_sync(obj, pipelined);
3519 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003520 return ret;
3521 }
3522
Eric Anholta7ef0642011-03-29 16:59:54 -07003523 /* The display engine is not coherent with the LLC cache on gen6. As
3524 * a result, we make sure that the pinning that is about to occur is
3525 * done with uncached PTEs. This is lowest common denominator for all
3526 * chipsets.
3527 *
3528 * However for gen6+, we could do better by using the GFDT bit instead
3529 * of uncaching, which would allow us to flush all the LLC-cached data
3530 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3531 */
3532 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3533 if (ret)
3534 return ret;
3535
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003536 /* As the user may map the buffer once pinned in the display plane
3537 * (e.g. libkms for the bootup splash), we have to ensure that we
3538 * always use map_and_fenceable for all scanout buffers.
3539 */
Ben Widawskyc37e2202013-07-31 16:59:58 -07003540 ret = i915_gem_obj_ggtt_pin(obj, alignment, true, false);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003541 if (ret)
3542 return ret;
3543
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003544 i915_gem_object_flush_cpu_write_domain(obj);
3545
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003546 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003547 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003548
3549 /* It should now be out of any other write domains, and we can update
3550 * the domain values for our changes.
3551 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003552 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003553 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003554
3555 trace_i915_gem_object_change_domain(obj,
3556 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003557 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003558
3559 return 0;
3560}
3561
Chris Wilson85345512010-11-13 09:49:11 +00003562int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003563i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003564{
Chris Wilson88241782011-01-07 17:09:48 +00003565 int ret;
3566
Chris Wilsona8198ee2011-04-13 22:04:09 +01003567 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003568 return 0;
3569
Chris Wilson0201f1e2012-07-20 12:41:01 +01003570 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003571 if (ret)
3572 return ret;
3573
Chris Wilsona8198ee2011-04-13 22:04:09 +01003574 /* Ensure that we invalidate the GPU's caches and TLBs. */
3575 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003576 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003577}
3578
Eric Anholte47c68e2008-11-14 13:35:19 -08003579/**
3580 * Moves a single object to the CPU read, and possibly write domain.
3581 *
3582 * This function returns when the move is complete, including waiting on
3583 * flushes to occur.
3584 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003585int
Chris Wilson919926a2010-11-12 13:42:53 +00003586i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003587{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003588 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003589 int ret;
3590
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003591 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3592 return 0;
3593
Chris Wilson0201f1e2012-07-20 12:41:01 +01003594 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003595 if (ret)
3596 return ret;
3597
Eric Anholte47c68e2008-11-14 13:35:19 -08003598 i915_gem_object_flush_gtt_write_domain(obj);
3599
Chris Wilson05394f32010-11-08 19:18:58 +00003600 old_write_domain = obj->base.write_domain;
3601 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003602
Eric Anholte47c68e2008-11-14 13:35:19 -08003603 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003604 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilsonc76ce032013-08-08 14:41:03 +01003605 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
3606 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003607
Chris Wilson05394f32010-11-08 19:18:58 +00003608 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003609 }
3610
3611 /* It should now be out of any other write domains, and we can update
3612 * the domain values for our changes.
3613 */
Chris Wilson05394f32010-11-08 19:18:58 +00003614 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003615
3616 /* If we're writing through the CPU, then the GPU read domains will
3617 * need to be invalidated at next use.
3618 */
3619 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003620 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3621 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003622 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003623
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003624 trace_i915_gem_object_change_domain(obj,
3625 old_read_domains,
3626 old_write_domain);
3627
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003628 return 0;
3629}
3630
Eric Anholt673a3942008-07-30 12:06:12 -07003631/* Throttle our rendering by waiting until the ring has completed our requests
3632 * emitted over 20 msec ago.
3633 *
Eric Anholtb9624422009-06-03 07:27:35 +00003634 * Note that if we were to use the current jiffies each time around the loop,
3635 * we wouldn't escape the function with any frames outstanding if the time to
3636 * render a frame was over 20ms.
3637 *
Eric Anholt673a3942008-07-30 12:06:12 -07003638 * This should get us reasonable parallelism between CPU and GPU but also
3639 * relatively low latency when blocking on a particular request to finish.
3640 */
3641static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003642i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003643{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003644 struct drm_i915_private *dev_priv = dev->dev_private;
3645 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003646 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003647 struct drm_i915_gem_request *request;
3648 struct intel_ring_buffer *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01003649 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003650 u32 seqno = 0;
3651 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003652
Daniel Vetter308887a2012-11-14 17:14:06 +01003653 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
3654 if (ret)
3655 return ret;
3656
3657 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
3658 if (ret)
3659 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003660
Chris Wilson1c255952010-09-26 11:03:27 +01003661 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003662 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003663 if (time_after_eq(request->emitted_jiffies, recent_enough))
3664 break;
3665
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003666 ring = request->ring;
3667 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003668 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01003669 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01003670 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003671
3672 if (seqno == 0)
3673 return 0;
3674
Daniel Vetterf69061b2012-12-06 09:01:42 +01003675 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003676 if (ret == 0)
3677 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003678
Eric Anholt673a3942008-07-30 12:06:12 -07003679 return ret;
3680}
3681
Eric Anholt673a3942008-07-30 12:06:12 -07003682int
Chris Wilson05394f32010-11-08 19:18:58 +00003683i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07003684 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00003685 uint32_t alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003686 bool map_and_fenceable,
3687 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003688{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003689 struct i915_vma *vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003690 int ret;
3691
Chris Wilson7e81a422012-09-15 09:41:57 +01003692 if (WARN_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
3693 return -EBUSY;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003694
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003695 WARN_ON(map_and_fenceable && !i915_is_ggtt(vm));
3696
3697 vma = i915_gem_obj_to_vma(obj, vm);
3698
3699 if (vma) {
3700 if ((alignment &&
3701 vma->node.start & (alignment - 1)) ||
Chris Wilson05394f32010-11-08 19:18:58 +00003702 (map_and_fenceable && !obj->map_and_fenceable)) {
3703 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003704 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003705 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003706 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003707 i915_gem_obj_offset(obj, vm), alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003708 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003709 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003710 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003711 if (ret)
3712 return ret;
3713 }
3714 }
3715
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003716 if (!i915_gem_obj_bound(obj, vm)) {
Chris Wilson87422672012-11-21 13:04:03 +00003717 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3718
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003719 ret = i915_gem_object_bind_to_vm(obj, vm, alignment,
3720 map_and_fenceable,
3721 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01003722 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003723 return ret;
Chris Wilson87422672012-11-21 13:04:03 +00003724
3725 if (!dev_priv->mm.aliasing_ppgtt)
3726 i915_gem_gtt_bind_object(obj, obj->cache_level);
Chris Wilson22c344e2009-02-11 14:26:45 +00003727 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003728
Daniel Vetter74898d72012-02-15 23:50:22 +01003729 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3730 i915_gem_gtt_bind_object(obj, obj->cache_level);
3731
Chris Wilson1b502472012-04-24 15:47:30 +01003732 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003733 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003734
3735 return 0;
3736}
3737
3738void
Chris Wilson05394f32010-11-08 19:18:58 +00003739i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003740{
Chris Wilson05394f32010-11-08 19:18:58 +00003741 BUG_ON(obj->pin_count == 0);
Ben Widawsky98438772013-07-31 17:00:12 -07003742 BUG_ON(!i915_gem_obj_bound_any(obj));
Eric Anholt673a3942008-07-30 12:06:12 -07003743
Chris Wilson1b502472012-04-24 15:47:30 +01003744 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003745 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003746}
3747
3748int
3749i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003750 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003751{
3752 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003753 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003754 int ret;
3755
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003756 ret = i915_mutex_lock_interruptible(dev);
3757 if (ret)
3758 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003759
Chris Wilson05394f32010-11-08 19:18:58 +00003760 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003761 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003762 ret = -ENOENT;
3763 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003764 }
Eric Anholt673a3942008-07-30 12:06:12 -07003765
Chris Wilson05394f32010-11-08 19:18:58 +00003766 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003767 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003768 ret = -EINVAL;
3769 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003770 }
3771
Chris Wilson05394f32010-11-08 19:18:58 +00003772 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003773 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3774 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003775 ret = -EINVAL;
3776 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003777 }
3778
Chris Wilson93be8782013-01-02 10:31:22 +00003779 if (obj->user_pin_count == 0) {
Ben Widawskyc37e2202013-07-31 16:59:58 -07003780 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, true, false);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003781 if (ret)
3782 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003783 }
3784
Chris Wilson93be8782013-01-02 10:31:22 +00003785 obj->user_pin_count++;
3786 obj->pin_filp = file;
3787
Eric Anholt673a3942008-07-30 12:06:12 -07003788 /* XXX - flush the CPU caches for pinned objects
3789 * as the X server doesn't manage domains yet
3790 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003791 i915_gem_object_flush_cpu_write_domain(obj);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003792 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003793out:
Chris Wilson05394f32010-11-08 19:18:58 +00003794 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003795unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003796 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003797 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003798}
3799
3800int
3801i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003802 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003803{
3804 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003805 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003806 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003807
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003808 ret = i915_mutex_lock_interruptible(dev);
3809 if (ret)
3810 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003811
Chris Wilson05394f32010-11-08 19:18:58 +00003812 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003813 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003814 ret = -ENOENT;
3815 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003816 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003817
Chris Wilson05394f32010-11-08 19:18:58 +00003818 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003819 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3820 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003821 ret = -EINVAL;
3822 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003823 }
Chris Wilson05394f32010-11-08 19:18:58 +00003824 obj->user_pin_count--;
3825 if (obj->user_pin_count == 0) {
3826 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003827 i915_gem_object_unpin(obj);
3828 }
Eric Anholt673a3942008-07-30 12:06:12 -07003829
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003830out:
Chris Wilson05394f32010-11-08 19:18:58 +00003831 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003832unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003833 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003834 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003835}
3836
3837int
3838i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003839 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003840{
3841 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003842 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003843 int ret;
3844
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003845 ret = i915_mutex_lock_interruptible(dev);
3846 if (ret)
3847 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003848
Chris Wilson05394f32010-11-08 19:18:58 +00003849 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003850 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003851 ret = -ENOENT;
3852 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003853 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003854
Chris Wilson0be555b2010-08-04 15:36:30 +01003855 /* Count all active objects as busy, even if they are currently not used
3856 * by the gpu. Users of this interface expect objects to eventually
3857 * become non-busy without any further actions, therefore emit any
3858 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003859 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003860 ret = i915_gem_object_flush_active(obj);
3861
Chris Wilson05394f32010-11-08 19:18:58 +00003862 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01003863 if (obj->ring) {
3864 BUILD_BUG_ON(I915_NUM_RINGS > 16);
3865 args->busy |= intel_ring_flag(obj->ring) << 16;
3866 }
Eric Anholt673a3942008-07-30 12:06:12 -07003867
Chris Wilson05394f32010-11-08 19:18:58 +00003868 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003869unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003870 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003871 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003872}
3873
3874int
3875i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3876 struct drm_file *file_priv)
3877{
Akshay Joshi0206e352011-08-16 15:34:10 -04003878 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003879}
3880
Chris Wilson3ef94da2009-09-14 16:50:29 +01003881int
3882i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3883 struct drm_file *file_priv)
3884{
3885 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003886 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003887 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003888
3889 switch (args->madv) {
3890 case I915_MADV_DONTNEED:
3891 case I915_MADV_WILLNEED:
3892 break;
3893 default:
3894 return -EINVAL;
3895 }
3896
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003897 ret = i915_mutex_lock_interruptible(dev);
3898 if (ret)
3899 return ret;
3900
Chris Wilson05394f32010-11-08 19:18:58 +00003901 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003902 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003903 ret = -ENOENT;
3904 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003905 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003906
Chris Wilson05394f32010-11-08 19:18:58 +00003907 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003908 ret = -EINVAL;
3909 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003910 }
3911
Chris Wilson05394f32010-11-08 19:18:58 +00003912 if (obj->madv != __I915_MADV_PURGED)
3913 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003914
Chris Wilson6c085a72012-08-20 11:40:46 +02003915 /* if the object is no longer attached, discard its backing storage */
3916 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003917 i915_gem_object_truncate(obj);
3918
Chris Wilson05394f32010-11-08 19:18:58 +00003919 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003920
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003921out:
Chris Wilson05394f32010-11-08 19:18:58 +00003922 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003923unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003924 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003925 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003926}
3927
Chris Wilson37e680a2012-06-07 15:38:42 +01003928void i915_gem_object_init(struct drm_i915_gem_object *obj,
3929 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003930{
Ben Widawsky35c20a62013-05-31 11:28:48 -07003931 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003932 INIT_LIST_HEAD(&obj->ring_list);
3933 INIT_LIST_HEAD(&obj->exec_list);
Ben Widawsky2f633152013-07-17 12:19:03 -07003934 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003935
Chris Wilson37e680a2012-06-07 15:38:42 +01003936 obj->ops = ops;
3937
Chris Wilson0327d6b2012-08-11 15:41:06 +01003938 obj->fence_reg = I915_FENCE_REG_NONE;
3939 obj->madv = I915_MADV_WILLNEED;
3940 /* Avoid an unnecessary call to unbind on the first bind. */
3941 obj->map_and_fenceable = true;
3942
3943 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
3944}
3945
Chris Wilson37e680a2012-06-07 15:38:42 +01003946static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
3947 .get_pages = i915_gem_object_get_pages_gtt,
3948 .put_pages = i915_gem_object_put_pages_gtt,
3949};
3950
Chris Wilson05394f32010-11-08 19:18:58 +00003951struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3952 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003953{
Daniel Vetterc397b902010-04-09 19:05:07 +00003954 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003955 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01003956 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00003957
Chris Wilson42dcedd2012-11-15 11:32:30 +00003958 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00003959 if (obj == NULL)
3960 return NULL;
3961
3962 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00003963 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00003964 return NULL;
3965 }
3966
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003967 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
3968 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
3969 /* 965gm cannot relocate objects above 4GiB. */
3970 mask &= ~__GFP_HIGHMEM;
3971 mask |= __GFP_DMA32;
3972 }
3973
Al Viro496ad9a2013-01-23 17:07:38 -05003974 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003975 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07003976
Chris Wilson37e680a2012-06-07 15:38:42 +01003977 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01003978
Daniel Vetterc397b902010-04-09 19:05:07 +00003979 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3980 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3981
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003982 if (HAS_LLC(dev)) {
3983 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003984 * cache) for about a 10% performance improvement
3985 * compared to uncached. Graphics requests other than
3986 * display scanout are coherent with the CPU in
3987 * accessing this cache. This means in this mode we
3988 * don't need to clflush on the CPU side, and on the
3989 * GPU side we only need to flush internal caches to
3990 * get data visible to the CPU.
3991 *
3992 * However, we maintain the display planes as UC, and so
3993 * need to rebind when first used as such.
3994 */
3995 obj->cache_level = I915_CACHE_LLC;
3996 } else
3997 obj->cache_level = I915_CACHE_NONE;
3998
Daniel Vetterd861e332013-07-24 23:25:03 +02003999 trace_i915_gem_object_create(obj);
4000
Chris Wilson05394f32010-11-08 19:18:58 +00004001 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004002}
4003
Eric Anholt673a3942008-07-30 12:06:12 -07004004int i915_gem_init_object(struct drm_gem_object *obj)
4005{
Daniel Vetterc397b902010-04-09 19:05:07 +00004006 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004007
Eric Anholt673a3942008-07-30 12:06:12 -07004008 return 0;
4009}
4010
Chris Wilson1488fc02012-04-24 15:47:31 +01004011void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004012{
Chris Wilson1488fc02012-04-24 15:47:31 +01004013 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004014 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01004015 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004016 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004017
Chris Wilson26e12f892011-03-20 11:20:19 +00004018 trace_i915_gem_object_destroy(obj);
4019
Chris Wilson1488fc02012-04-24 15:47:31 +01004020 if (obj->phys_obj)
4021 i915_gem_detach_phys_object(dev, obj);
4022
4023 obj->pin_count = 0;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004024 /* NB: 0 or 1 elements */
4025 WARN_ON(!list_empty(&obj->vma_list) &&
4026 !list_is_singular(&obj->vma_list));
4027 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
4028 int ret = i915_vma_unbind(vma);
4029 if (WARN_ON(ret == -ERESTARTSYS)) {
4030 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004031
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004032 was_interruptible = dev_priv->mm.interruptible;
4033 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004034
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004035 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004036
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004037 dev_priv->mm.interruptible = was_interruptible;
4038 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004039 }
4040
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004041 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4042 * before progressing. */
4043 if (obj->stolen)
4044 i915_gem_object_unpin_pages(obj);
4045
Ben Widawsky401c29f2013-05-31 11:28:47 -07004046 if (WARN_ON(obj->pages_pin_count))
4047 obj->pages_pin_count = 0;
Chris Wilson37e680a2012-06-07 15:38:42 +01004048 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004049 i915_gem_object_free_mmap_offset(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +00004050 i915_gem_object_release_stolen(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004051
Chris Wilson9da3da62012-06-01 15:20:22 +01004052 BUG_ON(obj->pages);
4053
Chris Wilson2f745ad2012-09-04 21:02:58 +01004054 if (obj->base.import_attach)
4055 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004056
Chris Wilson05394f32010-11-08 19:18:58 +00004057 drm_gem_object_release(&obj->base);
4058 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004059
Chris Wilson05394f32010-11-08 19:18:58 +00004060 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004061 i915_gem_object_free(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004062}
4063
Ben Widawsky2f633152013-07-17 12:19:03 -07004064struct i915_vma *i915_gem_vma_create(struct drm_i915_gem_object *obj,
4065 struct i915_address_space *vm)
4066{
4067 struct i915_vma *vma = kzalloc(sizeof(*vma), GFP_KERNEL);
4068 if (vma == NULL)
4069 return ERR_PTR(-ENOMEM);
4070
4071 INIT_LIST_HEAD(&vma->vma_link);
Ben Widawskyca191b12013-07-31 17:00:14 -07004072 INIT_LIST_HEAD(&vma->mm_list);
Ben Widawsky2f633152013-07-17 12:19:03 -07004073 vma->vm = vm;
4074 vma->obj = obj;
4075
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004076 /* Keep GGTT vmas first to make debug easier */
4077 if (i915_is_ggtt(vm))
4078 list_add(&vma->vma_link, &obj->vma_list);
4079 else
4080 list_add_tail(&vma->vma_link, &obj->vma_list);
4081
Ben Widawsky2f633152013-07-17 12:19:03 -07004082 return vma;
4083}
4084
4085void i915_gem_vma_destroy(struct i915_vma *vma)
4086{
4087 WARN_ON(vma->node.allocated);
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004088 list_del(&vma->vma_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004089 kfree(vma);
4090}
4091
Jesse Barnes5669fca2009-02-17 15:13:31 -08004092int
Eric Anholt673a3942008-07-30 12:06:12 -07004093i915_gem_idle(struct drm_device *dev)
4094{
4095 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004096 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004097
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004098 if (dev_priv->ums.mm_suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004099 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004100 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004101 }
Eric Anholt673a3942008-07-30 12:06:12 -07004102
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004103 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004104 if (ret) {
4105 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004106 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004107 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004108 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004109
Chris Wilson29105cc2010-01-07 10:39:13 +00004110 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004111 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004112 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004113
Daniel Vetter99584db2012-11-14 17:14:04 +01004114 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004115
4116 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004117 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004118
Chris Wilson29105cc2010-01-07 10:39:13 +00004119 /* Cancel the retire work handler, which should be idle now. */
4120 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4121
Eric Anholt673a3942008-07-30 12:06:12 -07004122 return 0;
4123}
4124
Ben Widawskyb9524a12012-05-25 16:56:24 -07004125void i915_gem_l3_remap(struct drm_device *dev)
4126{
4127 drm_i915_private_t *dev_priv = dev->dev_private;
4128 u32 misccpctl;
4129 int i;
4130
Daniel Vettereb32e452013-02-14 19:46:07 +01004131 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskyb9524a12012-05-25 16:56:24 -07004132 return;
4133
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004134 if (!dev_priv->l3_parity.remap_info)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004135 return;
4136
4137 misccpctl = I915_READ(GEN7_MISCCPCTL);
4138 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
4139 POSTING_READ(GEN7_MISCCPCTL);
4140
4141 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
4142 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004143 if (remap && remap != dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004144 DRM_DEBUG("0x%x was already programmed to %x\n",
4145 GEN7_L3LOG_BASE + i, remap);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004146 if (remap && !dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004147 DRM_DEBUG_DRIVER("Clearing remapped register\n");
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004148 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->l3_parity.remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004149 }
4150
4151 /* Make sure all the writes land before disabling dop clock gating */
4152 POSTING_READ(GEN7_L3LOG_BASE);
4153
4154 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
4155}
4156
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004157void i915_gem_init_swizzling(struct drm_device *dev)
4158{
4159 drm_i915_private_t *dev_priv = dev->dev_private;
4160
Daniel Vetter11782b02012-01-31 16:47:55 +01004161 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004162 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4163 return;
4164
4165 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4166 DISP_TILE_SURFACE_SWIZZLING);
4167
Daniel Vetter11782b02012-01-31 16:47:55 +01004168 if (IS_GEN5(dev))
4169 return;
4170
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004171 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4172 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004173 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004174 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004175 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004176 else
4177 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004178}
Daniel Vettere21af882012-02-09 20:53:27 +01004179
Chris Wilson67b1b572012-07-05 23:49:40 +01004180static bool
4181intel_enable_blt(struct drm_device *dev)
4182{
4183 if (!HAS_BLT(dev))
4184 return false;
4185
4186 /* The blitter was dysfunctional on early prototypes */
4187 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4188 DRM_INFO("BLT not supported on this pre-production hardware;"
4189 " graphics performance will be degraded.\n");
4190 return false;
4191 }
4192
4193 return true;
4194}
4195
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004196static int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004197{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004198 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004199 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004200
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004201 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004202 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004203 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004204
4205 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004206 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004207 if (ret)
4208 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004209 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004210
Chris Wilson67b1b572012-07-05 23:49:40 +01004211 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004212 ret = intel_init_blt_ring_buffer(dev);
4213 if (ret)
4214 goto cleanup_bsd_ring;
4215 }
4216
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004217 if (HAS_VEBOX(dev)) {
4218 ret = intel_init_vebox_ring_buffer(dev);
4219 if (ret)
4220 goto cleanup_blt_ring;
4221 }
4222
4223
Mika Kuoppala99433932013-01-22 14:12:17 +02004224 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4225 if (ret)
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004226 goto cleanup_vebox_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004227
4228 return 0;
4229
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004230cleanup_vebox_ring:
4231 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004232cleanup_blt_ring:
4233 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4234cleanup_bsd_ring:
4235 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4236cleanup_render_ring:
4237 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4238
4239 return ret;
4240}
4241
4242int
4243i915_gem_init_hw(struct drm_device *dev)
4244{
4245 drm_i915_private_t *dev_priv = dev->dev_private;
4246 int ret;
4247
4248 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4249 return -EIO;
4250
Ben Widawsky59124502013-07-04 11:02:05 -07004251 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004252 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004253
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004254 if (HAS_PCH_NOP(dev)) {
4255 u32 temp = I915_READ(GEN7_MSG_CTL);
4256 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4257 I915_WRITE(GEN7_MSG_CTL, temp);
4258 }
4259
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004260 i915_gem_l3_remap(dev);
4261
4262 i915_gem_init_swizzling(dev);
4263
4264 ret = i915_gem_init_rings(dev);
4265 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004266 return ret;
4267
Ben Widawsky254f9652012-06-04 14:42:42 -07004268 /*
4269 * XXX: There was some w/a described somewhere suggesting loading
4270 * contexts before PPGTT.
4271 */
4272 i915_gem_context_init(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004273 if (dev_priv->mm.aliasing_ppgtt) {
4274 ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
4275 if (ret) {
4276 i915_gem_cleanup_aliasing_ppgtt(dev);
4277 DRM_INFO("PPGTT enable failed. This is not fatal, but unexpected\n");
4278 }
4279 }
Daniel Vettere21af882012-02-09 20:53:27 +01004280
Chris Wilson68f95ba2010-05-27 13:18:22 +01004281 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004282}
4283
Chris Wilson1070a422012-04-24 15:47:41 +01004284int i915_gem_init(struct drm_device *dev)
4285{
4286 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004287 int ret;
4288
Chris Wilson1070a422012-04-24 15:47:41 +01004289 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004290
4291 if (IS_VALLEYVIEW(dev)) {
4292 /* VLVA0 (potential hack), BIOS isn't actually waking us */
4293 I915_WRITE(VLV_GTLC_WAKE_CTRL, 1);
4294 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) & 1) == 1, 10))
4295 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4296 }
4297
Ben Widawskyd7e50082012-12-18 10:31:25 -08004298 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004299
Chris Wilson1070a422012-04-24 15:47:41 +01004300 ret = i915_gem_init_hw(dev);
4301 mutex_unlock(&dev->struct_mutex);
4302 if (ret) {
4303 i915_gem_cleanup_aliasing_ppgtt(dev);
4304 return ret;
4305 }
4306
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004307 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4308 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4309 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01004310 return 0;
4311}
4312
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004313void
4314i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4315{
4316 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004317 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004318 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004319
Chris Wilsonb4519512012-05-11 14:29:30 +01004320 for_each_ring(ring, dev_priv, i)
4321 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004322}
4323
4324int
Eric Anholt673a3942008-07-30 12:06:12 -07004325i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4326 struct drm_file *file_priv)
4327{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004328 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004329 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004330
Jesse Barnes79e53942008-11-07 14:24:08 -08004331 if (drm_core_check_feature(dev, DRIVER_MODESET))
4332 return 0;
4333
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004334 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004335 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004336 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004337 }
4338
Eric Anholt673a3942008-07-30 12:06:12 -07004339 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004340 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004341
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004342 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004343 if (ret != 0) {
4344 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004345 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004346 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004347
Ben Widawsky5cef07e2013-07-16 16:50:08 -07004348 BUG_ON(!list_empty(&dev_priv->gtt.base.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004349 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004350
Chris Wilson5f353082010-06-07 14:03:03 +01004351 ret = drm_irq_install(dev);
4352 if (ret)
4353 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004354
Eric Anholt673a3942008-07-30 12:06:12 -07004355 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004356
4357cleanup_ringbuffer:
4358 mutex_lock(&dev->struct_mutex);
4359 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004360 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01004361 mutex_unlock(&dev->struct_mutex);
4362
4363 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004364}
4365
4366int
4367i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4368 struct drm_file *file_priv)
4369{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004370 struct drm_i915_private *dev_priv = dev->dev_private;
4371 int ret;
4372
Jesse Barnes79e53942008-11-07 14:24:08 -08004373 if (drm_core_check_feature(dev, DRIVER_MODESET))
4374 return 0;
4375
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004376 drm_irq_uninstall(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004377
4378 mutex_lock(&dev->struct_mutex);
4379 ret = i915_gem_idle(dev);
4380
4381 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4382 * We need to replace this with a semaphore, or something.
4383 * And not confound ums.mm_suspended!
4384 */
4385 if (ret != 0)
4386 dev_priv->ums.mm_suspended = 1;
4387 mutex_unlock(&dev->struct_mutex);
4388
4389 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004390}
4391
4392void
4393i915_gem_lastclose(struct drm_device *dev)
4394{
4395 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004396
Eric Anholte806b492009-01-22 09:56:58 -08004397 if (drm_core_check_feature(dev, DRIVER_MODESET))
4398 return;
4399
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004400 mutex_lock(&dev->struct_mutex);
Keith Packard6dbe2772008-10-14 21:41:13 -07004401 ret = i915_gem_idle(dev);
4402 if (ret)
4403 DRM_ERROR("failed to idle hardware: %d\n", ret);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004404 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004405}
4406
Chris Wilson64193402010-10-24 12:38:05 +01004407static void
4408init_ring_lists(struct intel_ring_buffer *ring)
4409{
4410 INIT_LIST_HEAD(&ring->active_list);
4411 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004412}
4413
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004414static void i915_init_vm(struct drm_i915_private *dev_priv,
4415 struct i915_address_space *vm)
4416{
4417 vm->dev = dev_priv->dev;
4418 INIT_LIST_HEAD(&vm->active_list);
4419 INIT_LIST_HEAD(&vm->inactive_list);
4420 INIT_LIST_HEAD(&vm->global_link);
4421 list_add(&vm->global_link, &dev_priv->vm_list);
4422}
4423
Eric Anholt673a3942008-07-30 12:06:12 -07004424void
4425i915_gem_load(struct drm_device *dev)
4426{
4427 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004428 int i;
4429
4430 dev_priv->slab =
4431 kmem_cache_create("i915_gem_object",
4432 sizeof(struct drm_i915_gem_object), 0,
4433 SLAB_HWCACHE_ALIGN,
4434 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004435
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004436 INIT_LIST_HEAD(&dev_priv->vm_list);
4437 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4438
Chris Wilson6c085a72012-08-20 11:40:46 +02004439 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4440 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004441 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004442 for (i = 0; i < I915_NUM_RINGS; i++)
4443 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004444 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004445 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004446 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4447 i915_gem_retire_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004448 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004449
Dave Airlie94400122010-07-20 13:15:31 +10004450 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4451 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004452 I915_WRITE(MI_ARB_STATE,
4453 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004454 }
4455
Chris Wilson72bfa192010-12-19 11:42:05 +00004456 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4457
Jesse Barnesde151cf2008-11-12 10:03:55 -08004458 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004459 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4460 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004461
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004462 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4463 dev_priv->num_fence_regs = 32;
4464 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004465 dev_priv->num_fence_regs = 16;
4466 else
4467 dev_priv->num_fence_regs = 8;
4468
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004469 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004470 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4471 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004472
Eric Anholt673a3942008-07-30 12:06:12 -07004473 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004474 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004475
Chris Wilsonce453d82011-02-21 14:43:56 +00004476 dev_priv->mm.interruptible = true;
4477
Chris Wilson17250b72010-10-28 12:51:39 +01004478 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4479 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4480 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004481}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004482
4483/*
4484 * Create a physically contiguous memory object for this object
4485 * e.g. for cursor + overlay regs
4486 */
Chris Wilson995b6762010-08-20 13:23:26 +01004487static int i915_gem_init_phys_object(struct drm_device *dev,
4488 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004489{
4490 drm_i915_private_t *dev_priv = dev->dev_private;
4491 struct drm_i915_gem_phys_object *phys_obj;
4492 int ret;
4493
4494 if (dev_priv->mm.phys_objs[id - 1] || !size)
4495 return 0;
4496
Eric Anholt9a298b22009-03-24 12:23:04 -07004497 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004498 if (!phys_obj)
4499 return -ENOMEM;
4500
4501 phys_obj->id = id;
4502
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004503 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004504 if (!phys_obj->handle) {
4505 ret = -ENOMEM;
4506 goto kfree_obj;
4507 }
4508#ifdef CONFIG_X86
4509 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4510#endif
4511
4512 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4513
4514 return 0;
4515kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004516 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004517 return ret;
4518}
4519
Chris Wilson995b6762010-08-20 13:23:26 +01004520static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004521{
4522 drm_i915_private_t *dev_priv = dev->dev_private;
4523 struct drm_i915_gem_phys_object *phys_obj;
4524
4525 if (!dev_priv->mm.phys_objs[id - 1])
4526 return;
4527
4528 phys_obj = dev_priv->mm.phys_objs[id - 1];
4529 if (phys_obj->cur_obj) {
4530 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4531 }
4532
4533#ifdef CONFIG_X86
4534 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4535#endif
4536 drm_pci_free(dev, phys_obj->handle);
4537 kfree(phys_obj);
4538 dev_priv->mm.phys_objs[id - 1] = NULL;
4539}
4540
4541void i915_gem_free_all_phys_object(struct drm_device *dev)
4542{
4543 int i;
4544
Dave Airlie260883c2009-01-22 17:58:49 +10004545 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004546 i915_gem_free_phys_object(dev, i);
4547}
4548
4549void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004550 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004551{
Al Viro496ad9a2013-01-23 17:07:38 -05004552 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004553 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004554 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004555 int page_count;
4556
Chris Wilson05394f32010-11-08 19:18:58 +00004557 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004558 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004559 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004560
Chris Wilson05394f32010-11-08 19:18:58 +00004561 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004562 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004563 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004564 if (!IS_ERR(page)) {
4565 char *dst = kmap_atomic(page);
4566 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4567 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004568
Chris Wilsone5281cc2010-10-28 13:45:36 +01004569 drm_clflush_pages(&page, 1);
4570
4571 set_page_dirty(page);
4572 mark_page_accessed(page);
4573 page_cache_release(page);
4574 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004575 }
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004576 i915_gem_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004577
Chris Wilson05394f32010-11-08 19:18:58 +00004578 obj->phys_obj->cur_obj = NULL;
4579 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004580}
4581
4582int
4583i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004584 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004585 int id,
4586 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004587{
Al Viro496ad9a2013-01-23 17:07:38 -05004588 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004589 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004590 int ret = 0;
4591 int page_count;
4592 int i;
4593
4594 if (id > I915_MAX_PHYS_OBJECT)
4595 return -EINVAL;
4596
Chris Wilson05394f32010-11-08 19:18:58 +00004597 if (obj->phys_obj) {
4598 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004599 return 0;
4600 i915_gem_detach_phys_object(dev, obj);
4601 }
4602
Dave Airlie71acb5e2008-12-30 20:31:46 +10004603 /* create a new object */
4604 if (!dev_priv->mm.phys_objs[id - 1]) {
4605 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004606 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004607 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004608 DRM_ERROR("failed to init phys object %d size: %zu\n",
4609 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004610 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004611 }
4612 }
4613
4614 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004615 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4616 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004617
Chris Wilson05394f32010-11-08 19:18:58 +00004618 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004619
4620 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004621 struct page *page;
4622 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004623
Hugh Dickins5949eac2011-06-27 16:18:18 -07004624 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004625 if (IS_ERR(page))
4626 return PTR_ERR(page);
4627
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004628 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004629 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004630 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004631 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004632
4633 mark_page_accessed(page);
4634 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004635 }
4636
4637 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004638}
4639
4640static int
Chris Wilson05394f32010-11-08 19:18:58 +00004641i915_gem_phys_pwrite(struct drm_device *dev,
4642 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004643 struct drm_i915_gem_pwrite *args,
4644 struct drm_file *file_priv)
4645{
Chris Wilson05394f32010-11-08 19:18:58 +00004646 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Ville Syrjälä2bb46292013-02-22 16:12:51 +02004647 char __user *user_data = to_user_ptr(args->data_ptr);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004648
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004649 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4650 unsigned long unwritten;
4651
4652 /* The physical object once assigned is fixed for the lifetime
4653 * of the obj, so we can safely drop the lock and continue
4654 * to access vaddr.
4655 */
4656 mutex_unlock(&dev->struct_mutex);
4657 unwritten = copy_from_user(vaddr, user_data, args->size);
4658 mutex_lock(&dev->struct_mutex);
4659 if (unwritten)
4660 return -EFAULT;
4661 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004662
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004663 i915_gem_chipset_flush(dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004664 return 0;
4665}
Eric Anholtb9624422009-06-03 07:27:35 +00004666
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004667void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004668{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004669 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004670
4671 /* Clean up our request list when the client is going away, so that
4672 * later retire_requests won't dereference our soon-to-be-gone
4673 * file_priv.
4674 */
Chris Wilson1c255952010-09-26 11:03:27 +01004675 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004676 while (!list_empty(&file_priv->mm.request_list)) {
4677 struct drm_i915_gem_request *request;
4678
4679 request = list_first_entry(&file_priv->mm.request_list,
4680 struct drm_i915_gem_request,
4681 client_list);
4682 list_del(&request->client_list);
4683 request->file_priv = NULL;
4684 }
Chris Wilson1c255952010-09-26 11:03:27 +01004685 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004686}
Chris Wilson31169712009-09-14 16:50:28 +01004687
Chris Wilson57745062012-11-21 13:04:04 +00004688static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
4689{
4690 if (!mutex_is_locked(mutex))
4691 return false;
4692
4693#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
4694 return mutex->owner == task;
4695#else
4696 /* Since UP may be pre-empted, we cannot assume that we own the lock */
4697 return false;
4698#endif
4699}
4700
Chris Wilson31169712009-09-14 16:50:28 +01004701static int
Ying Han1495f232011-05-24 17:12:27 -07004702i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004703{
Chris Wilson17250b72010-10-28 12:51:39 +01004704 struct drm_i915_private *dev_priv =
4705 container_of(shrinker,
4706 struct drm_i915_private,
4707 mm.inactive_shrinker);
4708 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02004709 struct drm_i915_gem_object *obj;
Ying Han1495f232011-05-24 17:12:27 -07004710 int nr_to_scan = sc->nr_to_scan;
Chris Wilson57745062012-11-21 13:04:04 +00004711 bool unlock = true;
Chris Wilson17250b72010-10-28 12:51:39 +01004712 int cnt;
4713
Chris Wilson57745062012-11-21 13:04:04 +00004714 if (!mutex_trylock(&dev->struct_mutex)) {
4715 if (!mutex_is_locked_by(&dev->struct_mutex, current))
4716 return 0;
4717
Daniel Vetter677feac2012-12-19 14:33:45 +01004718 if (dev_priv->mm.shrinker_no_lock_stealing)
4719 return 0;
4720
Chris Wilson57745062012-11-21 13:04:04 +00004721 unlock = false;
4722 }
Chris Wilson31169712009-09-14 16:50:28 +01004723
Chris Wilson6c085a72012-08-20 11:40:46 +02004724 if (nr_to_scan) {
4725 nr_to_scan -= i915_gem_purge(dev_priv, nr_to_scan);
4726 if (nr_to_scan > 0)
Daniel Vetter93927ca2013-01-10 18:03:00 +01004727 nr_to_scan -= __i915_gem_shrink(dev_priv, nr_to_scan,
4728 false);
4729 if (nr_to_scan > 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004730 i915_gem_shrink_all(dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +01004731 }
4732
Chris Wilson17250b72010-10-28 12:51:39 +01004733 cnt = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07004734 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004735 if (obj->pages_pin_count == 0)
4736 cnt += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004737
4738 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
4739 if (obj->active)
4740 continue;
4741
Chris Wilsona5570172012-09-04 21:02:54 +01004742 if (obj->pin_count == 0 && obj->pages_pin_count == 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004743 cnt += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004744 }
Chris Wilson31169712009-09-14 16:50:28 +01004745
Chris Wilson57745062012-11-21 13:04:04 +00004746 if (unlock)
4747 mutex_unlock(&dev->struct_mutex);
Chris Wilson6c085a72012-08-20 11:40:46 +02004748 return cnt;
Chris Wilson31169712009-09-14 16:50:28 +01004749}
Ben Widawskya70a3142013-07-31 16:59:56 -07004750
4751/* All the new VM stuff */
4752unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
4753 struct i915_address_space *vm)
4754{
4755 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4756 struct i915_vma *vma;
4757
4758 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4759 vm = &dev_priv->gtt.base;
4760
4761 BUG_ON(list_empty(&o->vma_list));
4762 list_for_each_entry(vma, &o->vma_list, vma_link) {
4763 if (vma->vm == vm)
4764 return vma->node.start;
4765
4766 }
4767 return -1;
4768}
4769
4770bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
4771 struct i915_address_space *vm)
4772{
4773 struct i915_vma *vma;
4774
4775 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004776 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07004777 return true;
4778
4779 return false;
4780}
4781
4782bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
4783{
4784 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4785 struct i915_address_space *vm;
4786
4787 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
4788 if (i915_gem_obj_bound(o, vm))
4789 return true;
4790
4791 return false;
4792}
4793
4794unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
4795 struct i915_address_space *vm)
4796{
4797 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4798 struct i915_vma *vma;
4799
4800 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4801 vm = &dev_priv->gtt.base;
4802
4803 BUG_ON(list_empty(&o->vma_list));
4804
4805 list_for_each_entry(vma, &o->vma_list, vma_link)
4806 if (vma->vm == vm)
4807 return vma->node.size;
4808
4809 return 0;
4810}
4811
4812struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
4813 struct i915_address_space *vm)
4814{
4815 struct i915_vma *vma;
4816 list_for_each_entry(vma, &obj->vma_list, vma_link)
4817 if (vma->vm == vm)
4818 return vma;
4819
4820 return NULL;
4821}