blob: 75e3b841fffbe25d33430b58b7a68a78206b04e2 [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
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070036#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson88241782011-01-07 17:09:48 +000039static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000040static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
41static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000042static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
43 unsigned alignment,
44 bool map_and_fenceable);
Chris Wilsond9e86c02010-11-10 16:40:20 +000045static void i915_gem_clear_fence_reg(struct drm_device *dev,
46 struct drm_i915_fence_reg *reg);
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);
51static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070052
Chris Wilson17250b72010-10-28 12:51:39 +010053static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070054 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010055static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010056
Chris Wilson73aa8082010-09-30 11:46:12 +010057/* some bookkeeping */
58static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
59 size_t size)
60{
61 dev_priv->mm.object_count++;
62 dev_priv->mm.object_memory += size;
63}
64
65static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
66 size_t size)
67{
68 dev_priv->mm.object_count--;
69 dev_priv->mm.object_memory -= size;
70}
71
Chris Wilson21dd3732011-01-26 15:55:56 +000072static int
73i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010074{
75 struct drm_i915_private *dev_priv = dev->dev_private;
76 struct completion *x = &dev_priv->error_completion;
77 unsigned long flags;
78 int ret;
79
80 if (!atomic_read(&dev_priv->mm.wedged))
81 return 0;
82
83 ret = wait_for_completion_interruptible(x);
84 if (ret)
85 return ret;
86
Chris Wilson21dd3732011-01-26 15:55:56 +000087 if (atomic_read(&dev_priv->mm.wedged)) {
88 /* GPU is hung, bump the completion count to account for
89 * the token we just consumed so that we never hit zero and
90 * end up waiting upon a subsequent completion event that
91 * will never happen.
92 */
93 spin_lock_irqsave(&x->wait.lock, flags);
94 x->done++;
95 spin_unlock_irqrestore(&x->wait.lock, flags);
96 }
97 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +010098}
99
Chris Wilson54cf91d2010-11-25 18:00:26 +0000100int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100101{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100102 int ret;
103
Chris Wilson21dd3732011-01-26 15:55:56 +0000104 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100105 if (ret)
106 return ret;
107
108 ret = mutex_lock_interruptible(&dev->struct_mutex);
109 if (ret)
110 return ret;
111
Chris Wilson23bc5982010-09-29 16:10:57 +0100112 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100113 return 0;
114}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100115
Chris Wilson7d1c4802010-08-07 21:45:03 +0100116static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000117i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100118{
Chris Wilson05394f32010-11-08 19:18:58 +0000119 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100120}
121
Eric Anholt673a3942008-07-30 12:06:12 -0700122int
123i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000124 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700125{
Eric Anholt673a3942008-07-30 12:06:12 -0700126 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000127
128 if (args->gtt_start >= args->gtt_end ||
129 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
130 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700131
132 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200133 i915_gem_init_global_gtt(dev, args->gtt_start,
134 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700135 mutex_unlock(&dev->struct_mutex);
136
Chris Wilson20217462010-11-23 15:26:33 +0000137 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700138}
139
Eric Anholt5a125c32008-10-22 21:40:13 -0700140int
141i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000142 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700143{
Chris Wilson73aa8082010-09-30 11:46:12 +0100144 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700145 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000146 struct drm_i915_gem_object *obj;
147 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700148
149 if (!(dev->driver->driver_features & DRIVER_GEM))
150 return -ENODEV;
151
Chris Wilson6299f992010-11-24 12:23:44 +0000152 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100153 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000154 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
155 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100156 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700157
Chris Wilson6299f992010-11-24 12:23:44 +0000158 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400159 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000160
Eric Anholt5a125c32008-10-22 21:40:13 -0700161 return 0;
162}
163
Dave Airlieff72145b2011-02-07 12:16:14 +1000164static int
165i915_gem_create(struct drm_file *file,
166 struct drm_device *dev,
167 uint64_t size,
168 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700169{
Chris Wilson05394f32010-11-08 19:18:58 +0000170 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300171 int ret;
172 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700173
Dave Airlieff72145b2011-02-07 12:16:14 +1000174 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200175 if (size == 0)
176 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700177
178 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000179 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700180 if (obj == NULL)
181 return -ENOMEM;
182
Chris Wilson05394f32010-11-08 19:18:58 +0000183 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100184 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000185 drm_gem_object_release(&obj->base);
186 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100187 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700188 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100189 }
190
Chris Wilson202f2fe2010-10-14 13:20:40 +0100191 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000192 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100193 trace_i915_gem_object_create(obj);
194
Dave Airlieff72145b2011-02-07 12:16:14 +1000195 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700196 return 0;
197}
198
Dave Airlieff72145b2011-02-07 12:16:14 +1000199int
200i915_gem_dumb_create(struct drm_file *file,
201 struct drm_device *dev,
202 struct drm_mode_create_dumb *args)
203{
204 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000205 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000206 args->size = args->pitch * args->height;
207 return i915_gem_create(file, dev,
208 args->size, &args->handle);
209}
210
211int i915_gem_dumb_destroy(struct drm_file *file,
212 struct drm_device *dev,
213 uint32_t handle)
214{
215 return drm_gem_handle_delete(file, handle);
216}
217
218/**
219 * Creates a new mm object and returns a handle to it.
220 */
221int
222i915_gem_create_ioctl(struct drm_device *dev, void *data,
223 struct drm_file *file)
224{
225 struct drm_i915_gem_create *args = data;
226 return i915_gem_create(file, dev,
227 args->size, &args->handle);
228}
229
Chris Wilson05394f32010-11-08 19:18:58 +0000230static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700231{
Chris Wilson05394f32010-11-08 19:18:58 +0000232 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700233
234 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000235 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700236}
237
Daniel Vetter8c599672011-12-14 13:57:31 +0100238static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100239__copy_to_user_swizzled(char __user *cpu_vaddr,
240 const char *gpu_vaddr, int gpu_offset,
241 int length)
242{
243 int ret, cpu_offset = 0;
244
245 while (length > 0) {
246 int cacheline_end = ALIGN(gpu_offset + 1, 64);
247 int this_length = min(cacheline_end - gpu_offset, length);
248 int swizzled_gpu_offset = gpu_offset ^ 64;
249
250 ret = __copy_to_user(cpu_vaddr + cpu_offset,
251 gpu_vaddr + swizzled_gpu_offset,
252 this_length);
253 if (ret)
254 return ret + length;
255
256 cpu_offset += this_length;
257 gpu_offset += this_length;
258 length -= this_length;
259 }
260
261 return 0;
262}
263
264static inline int
Daniel Vetter8c599672011-12-14 13:57:31 +0100265__copy_from_user_swizzled(char __user *gpu_vaddr, int gpu_offset,
266 const char *cpu_vaddr,
267 int length)
268{
269 int ret, cpu_offset = 0;
270
271 while (length > 0) {
272 int cacheline_end = ALIGN(gpu_offset + 1, 64);
273 int this_length = min(cacheline_end - gpu_offset, length);
274 int swizzled_gpu_offset = gpu_offset ^ 64;
275
276 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
277 cpu_vaddr + cpu_offset,
278 this_length);
279 if (ret)
280 return ret + length;
281
282 cpu_offset += this_length;
283 gpu_offset += this_length;
284 length -= this_length;
285 }
286
287 return 0;
288}
289
Eric Anholteb014592009-03-10 11:44:52 -0700290static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200291i915_gem_shmem_pread(struct drm_device *dev,
292 struct drm_i915_gem_object *obj,
293 struct drm_i915_gem_pread *args,
294 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700295{
Chris Wilson05394f32010-11-08 19:18:58 +0000296 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100297 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700298 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100299 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100300 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100301 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200302 int hit_slowpath = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200303 int needs_clflush = 0;
Eric Anholteb014592009-03-10 11:44:52 -0700304
Daniel Vetter8461d222011-12-14 13:57:32 +0100305 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700306 remain = args->size;
307
Daniel Vetter8461d222011-12-14 13:57:32 +0100308 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700309
Daniel Vetter84897312012-03-25 19:47:31 +0200310 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
311 /* If we're not in the cpu read domain, set ourself into the gtt
312 * read domain and manually flush cachelines (if required). This
313 * optimizes for the case when the gpu will dirty the data
314 * anyway again before the next pread happens. */
315 if (obj->cache_level == I915_CACHE_NONE)
316 needs_clflush = 1;
317 ret = i915_gem_object_set_to_gtt_domain(obj, false);
318 if (ret)
319 return ret;
320 }
321
Eric Anholteb014592009-03-10 11:44:52 -0700322 offset = args->offset;
323
324 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100325 struct page *page;
Daniel Vetter8461d222011-12-14 13:57:32 +0100326 char *vaddr;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100327
Eric Anholteb014592009-03-10 11:44:52 -0700328 /* Operation in this page
329 *
Eric Anholteb014592009-03-10 11:44:52 -0700330 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700331 * page_length = bytes to copy for this page
332 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100333 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700334 page_length = remain;
335 if ((shmem_page_offset + page_length) > PAGE_SIZE)
336 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700337
Hugh Dickins5949eac2011-06-27 16:18:18 -0700338 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Jesper Juhlb65552f2011-06-12 20:53:44 +0000339 if (IS_ERR(page)) {
340 ret = PTR_ERR(page);
341 goto out;
342 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100343
Daniel Vetter8461d222011-12-14 13:57:32 +0100344 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
345 (page_to_phys(page) & (1 << 17)) != 0;
346
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200347 if (!page_do_bit17_swizzling) {
348 vaddr = kmap_atomic(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200349 if (needs_clflush)
350 drm_clflush_virt_range(vaddr + shmem_page_offset,
351 page_length);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200352 ret = __copy_to_user_inatomic(user_data,
353 vaddr + shmem_page_offset,
354 page_length);
355 kunmap_atomic(vaddr);
356 if (ret == 0)
357 goto next_page;
358 }
359
360 hit_slowpath = 1;
361
362 mutex_unlock(&dev->struct_mutex);
363
Daniel Vetter8461d222011-12-14 13:57:32 +0100364 vaddr = kmap(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200365 if (needs_clflush)
366 drm_clflush_virt_range(vaddr + shmem_page_offset,
367 page_length);
368
Daniel Vetter8461d222011-12-14 13:57:32 +0100369 if (page_do_bit17_swizzling)
370 ret = __copy_to_user_swizzled(user_data,
371 vaddr, shmem_page_offset,
372 page_length);
373 else
374 ret = __copy_to_user(user_data,
375 vaddr + shmem_page_offset,
376 page_length);
377 kunmap(page);
Eric Anholteb014592009-03-10 11:44:52 -0700378
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200379 mutex_lock(&dev->struct_mutex);
380next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100381 mark_page_accessed(page);
382 page_cache_release(page);
383
Daniel Vetter8461d222011-12-14 13:57:32 +0100384 if (ret) {
385 ret = -EFAULT;
386 goto out;
387 }
388
Eric Anholteb014592009-03-10 11:44:52 -0700389 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100390 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700391 offset += page_length;
392 }
393
Chris Wilson4f27b752010-10-14 15:26:45 +0100394out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200395 if (hit_slowpath) {
396 /* Fixup: Kill any reinstated backing storage pages */
397 if (obj->madv == __I915_MADV_PURGED)
398 i915_gem_object_truncate(obj);
399 }
Eric Anholteb014592009-03-10 11:44:52 -0700400
401 return ret;
402}
403
Eric Anholt673a3942008-07-30 12:06:12 -0700404/**
405 * Reads data from the object referenced by handle.
406 *
407 * On error, the contents of *data are undefined.
408 */
409int
410i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000411 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700412{
413 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000414 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100415 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700416
Chris Wilson51311d02010-11-17 09:10:42 +0000417 if (args->size == 0)
418 return 0;
419
420 if (!access_ok(VERIFY_WRITE,
421 (char __user *)(uintptr_t)args->data_ptr,
422 args->size))
423 return -EFAULT;
424
425 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
426 args->size);
427 if (ret)
428 return -EFAULT;
429
Chris Wilson4f27b752010-10-14 15:26:45 +0100430 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100431 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100432 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700433
Chris Wilson05394f32010-11-08 19:18:58 +0000434 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000435 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100436 ret = -ENOENT;
437 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100438 }
Eric Anholt673a3942008-07-30 12:06:12 -0700439
Chris Wilson7dcd2492010-09-26 20:21:44 +0100440 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000441 if (args->offset > obj->base.size ||
442 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100443 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100444 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100445 }
446
Chris Wilsondb53a302011-02-03 11:57:46 +0000447 trace_i915_gem_object_pread(obj, args->offset, args->size);
448
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200449 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700450
Chris Wilson35b62a82010-09-26 20:23:38 +0100451out:
Chris Wilson05394f32010-11-08 19:18:58 +0000452 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100453unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100454 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700455 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700456}
457
Keith Packard0839ccb2008-10-30 19:38:48 -0700458/* This is the fast write path which cannot handle
459 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700460 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700461
Keith Packard0839ccb2008-10-30 19:38:48 -0700462static inline int
463fast_user_write(struct io_mapping *mapping,
464 loff_t page_base, int page_offset,
465 char __user *user_data,
466 int length)
467{
468 char *vaddr_atomic;
469 unsigned long unwritten;
470
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700471 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700472 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
473 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700474 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100475 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700476}
477
478/* Here's the write path which can sleep for
479 * page faults
480 */
481
Chris Wilsonab34c222010-05-27 14:15:35 +0100482static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700483slow_kernel_write(struct io_mapping *mapping,
484 loff_t gtt_base, int gtt_offset,
485 struct page *user_page, int user_offset,
486 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700487{
Chris Wilsonab34c222010-05-27 14:15:35 +0100488 char __iomem *dst_vaddr;
489 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700490
Chris Wilsonab34c222010-05-27 14:15:35 +0100491 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
492 src_vaddr = kmap(user_page);
493
494 memcpy_toio(dst_vaddr + gtt_offset,
495 src_vaddr + user_offset,
496 length);
497
498 kunmap(user_page);
499 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700500}
501
Eric Anholt3de09aa2009-03-09 09:42:23 -0700502/**
503 * This is the fast pwrite path, where we copy the data directly from the
504 * user into the GTT, uncached.
505 */
Eric Anholt673a3942008-07-30 12:06:12 -0700506static int
Chris Wilson05394f32010-11-08 19:18:58 +0000507i915_gem_gtt_pwrite_fast(struct drm_device *dev,
508 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700509 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000510 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700511{
Keith Packard0839ccb2008-10-30 19:38:48 -0700512 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700513 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700514 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700515 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700516 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700517
518 user_data = (char __user *) (uintptr_t) args->data_ptr;
519 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700520
Chris Wilson05394f32010-11-08 19:18:58 +0000521 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700522
523 while (remain > 0) {
524 /* Operation in this page
525 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700526 * page_base = page offset within aperture
527 * page_offset = offset within page
528 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700529 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100530 page_base = offset & PAGE_MASK;
531 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700532 page_length = remain;
533 if ((page_offset + remain) > PAGE_SIZE)
534 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700535
Keith Packard0839ccb2008-10-30 19:38:48 -0700536 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700537 * source page isn't available. Return the error and we'll
538 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700539 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100540 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
541 page_offset, user_data, page_length))
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100542 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700543
Keith Packard0839ccb2008-10-30 19:38:48 -0700544 remain -= page_length;
545 user_data += page_length;
546 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700547 }
Eric Anholt673a3942008-07-30 12:06:12 -0700548
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100549 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700550}
551
Eric Anholt3de09aa2009-03-09 09:42:23 -0700552/**
553 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
554 * the memory and maps it using kmap_atomic for copying.
555 *
556 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
557 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
558 */
Eric Anholt3043c602008-10-02 12:24:47 -0700559static int
Chris Wilson05394f32010-11-08 19:18:58 +0000560i915_gem_gtt_pwrite_slow(struct drm_device *dev,
561 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700562 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000563 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700564{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700565 drm_i915_private_t *dev_priv = dev->dev_private;
566 ssize_t remain;
567 loff_t gtt_page_base, offset;
568 loff_t first_data_page, last_data_page, num_pages;
569 loff_t pinned_pages, i;
570 struct page **user_pages;
571 struct mm_struct *mm = current->mm;
572 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700573 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700574 uint64_t data_ptr = args->data_ptr;
575
576 remain = args->size;
577
578 /* Pin the user pages containing the data. We can't fault while
579 * holding the struct mutex, and all of the pwrite implementations
580 * want to hold it while dereferencing the user data.
581 */
582 first_data_page = data_ptr / PAGE_SIZE;
583 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
584 num_pages = last_data_page - first_data_page + 1;
585
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100586 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700587 if (user_pages == NULL)
588 return -ENOMEM;
589
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100590 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700591 down_read(&mm->mmap_sem);
592 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
593 num_pages, 0, 0, user_pages, NULL);
594 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100595 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700596 if (pinned_pages < num_pages) {
597 ret = -EFAULT;
598 goto out_unpin_pages;
599 }
600
Chris Wilsond9e86c02010-11-10 16:40:20 +0000601 ret = i915_gem_object_set_to_gtt_domain(obj, true);
602 if (ret)
603 goto out_unpin_pages;
604
605 ret = i915_gem_object_put_fence(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700606 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100607 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700608
Chris Wilson05394f32010-11-08 19:18:58 +0000609 offset = obj->gtt_offset + args->offset;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700610
611 while (remain > 0) {
612 /* Operation in this page
613 *
614 * gtt_page_base = page offset within aperture
615 * gtt_page_offset = offset within page in aperture
616 * data_page_index = page number in get_user_pages return
617 * data_page_offset = offset with data_page_index page.
618 * page_length = bytes to copy for this page
619 */
620 gtt_page_base = offset & PAGE_MASK;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100621 gtt_page_offset = offset_in_page(offset);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700622 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100623 data_page_offset = offset_in_page(data_ptr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700624
625 page_length = remain;
626 if ((gtt_page_offset + page_length) > PAGE_SIZE)
627 page_length = PAGE_SIZE - gtt_page_offset;
628 if ((data_page_offset + page_length) > PAGE_SIZE)
629 page_length = PAGE_SIZE - data_page_offset;
630
Chris Wilsonab34c222010-05-27 14:15:35 +0100631 slow_kernel_write(dev_priv->mm.gtt_mapping,
632 gtt_page_base, gtt_page_offset,
633 user_pages[data_page_index],
634 data_page_offset,
635 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700636
637 remain -= page_length;
638 offset += page_length;
639 data_ptr += page_length;
640 }
641
Eric Anholt3de09aa2009-03-09 09:42:23 -0700642out_unpin_pages:
643 for (i = 0; i < pinned_pages; i++)
644 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700645 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700646
647 return ret;
648}
649
Eric Anholt673a3942008-07-30 12:06:12 -0700650static int
Daniel Vettere244a442012-03-25 19:47:28 +0200651i915_gem_shmem_pwrite(struct drm_device *dev,
652 struct drm_i915_gem_object *obj,
653 struct drm_i915_gem_pwrite *args,
654 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700655{
Chris Wilson05394f32010-11-08 19:18:58 +0000656 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700657 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100658 loff_t offset;
659 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100660 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100661 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200662 int hit_slowpath = 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700663
Daniel Vetter8c599672011-12-14 13:57:31 +0100664 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700665 remain = args->size;
666
Daniel Vetter8c599672011-12-14 13:57:31 +0100667 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700668
Eric Anholt40123c12009-03-09 13:42:30 -0700669 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000670 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700671
672 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100673 struct page *page;
Daniel Vetter8c599672011-12-14 13:57:31 +0100674 char *vaddr;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100675
Eric Anholt40123c12009-03-09 13:42:30 -0700676 /* Operation in this page
677 *
Eric Anholt40123c12009-03-09 13:42:30 -0700678 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700679 * page_length = bytes to copy for this page
680 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100681 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700682
683 page_length = remain;
684 if ((shmem_page_offset + page_length) > PAGE_SIZE)
685 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700686
Hugh Dickins5949eac2011-06-27 16:18:18 -0700687 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100688 if (IS_ERR(page)) {
689 ret = PTR_ERR(page);
690 goto out;
691 }
692
Daniel Vetter8c599672011-12-14 13:57:31 +0100693 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
694 (page_to_phys(page) & (1 << 17)) != 0;
695
Daniel Vettere244a442012-03-25 19:47:28 +0200696 if (!page_do_bit17_swizzling) {
697 vaddr = kmap_atomic(page);
698 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
699 user_data,
700 page_length);
701 kunmap_atomic(vaddr);
702
703 if (ret == 0)
704 goto next_page;
705 }
706
707 hit_slowpath = 1;
708
709 mutex_unlock(&dev->struct_mutex);
710
Daniel Vetter8c599672011-12-14 13:57:31 +0100711 vaddr = kmap(page);
712 if (page_do_bit17_swizzling)
713 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
714 user_data,
715 page_length);
716 else
717 ret = __copy_from_user(vaddr + shmem_page_offset,
718 user_data,
719 page_length);
720 kunmap(page);
Eric Anholt40123c12009-03-09 13:42:30 -0700721
Daniel Vettere244a442012-03-25 19:47:28 +0200722 mutex_lock(&dev->struct_mutex);
723next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100724 set_page_dirty(page);
725 mark_page_accessed(page);
726 page_cache_release(page);
727
Daniel Vetter8c599672011-12-14 13:57:31 +0100728 if (ret) {
729 ret = -EFAULT;
730 goto out;
731 }
732
Eric Anholt40123c12009-03-09 13:42:30 -0700733 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100734 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700735 offset += page_length;
736 }
737
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100738out:
Daniel Vettere244a442012-03-25 19:47:28 +0200739 if (hit_slowpath) {
740 /* Fixup: Kill any reinstated backing storage pages */
741 if (obj->madv == __I915_MADV_PURGED)
742 i915_gem_object_truncate(obj);
743 /* and flush dirty cachelines in case the object isn't in the cpu write
744 * domain anymore. */
745 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
746 i915_gem_clflush_object(obj);
747 intel_gtt_chipset_flush();
748 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100749 }
Eric Anholt40123c12009-03-09 13:42:30 -0700750
751 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700752}
753
754/**
755 * Writes data to the object referenced by handle.
756 *
757 * On error, the contents of the buffer that were to be modified are undefined.
758 */
759int
760i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100761 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700762{
763 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000764 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000765 int ret;
766
767 if (args->size == 0)
768 return 0;
769
770 if (!access_ok(VERIFY_READ,
771 (char __user *)(uintptr_t)args->data_ptr,
772 args->size))
773 return -EFAULT;
774
775 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
776 args->size);
777 if (ret)
778 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700779
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100780 ret = i915_mutex_lock_interruptible(dev);
781 if (ret)
782 return ret;
783
Chris Wilson05394f32010-11-08 19:18:58 +0000784 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000785 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100786 ret = -ENOENT;
787 goto unlock;
788 }
Eric Anholt673a3942008-07-30 12:06:12 -0700789
Chris Wilson7dcd2492010-09-26 20:21:44 +0100790 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000791 if (args->offset > obj->base.size ||
792 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100793 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100794 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100795 }
796
Chris Wilsondb53a302011-02-03 11:57:46 +0000797 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
798
Eric Anholt673a3942008-07-30 12:06:12 -0700799 /* We can only do the GTT pwrite on untiled buffers, as otherwise
800 * it would end up going through the fenced access, and we'll get
801 * different detiling behavior between reading and writing.
802 * pread/pwrite currently are reading and writing from the CPU
803 * perspective, requiring manual detiling by the client.
804 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100805 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100806 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100807 goto out;
808 }
809
810 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200811 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100812 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +0100813 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100814 if (ret)
815 goto out;
816
Chris Wilsond9e86c02010-11-10 16:40:20 +0000817 ret = i915_gem_object_set_to_gtt_domain(obj, true);
818 if (ret)
819 goto out_unpin;
820
821 ret = i915_gem_object_put_fence(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100822 if (ret)
823 goto out_unpin;
824
825 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
826 if (ret == -EFAULT)
827 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
828
829out_unpin:
830 i915_gem_object_unpin(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100831
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100832 if (ret != -EFAULT)
833 goto out;
834 /* Fall through to the shmfs paths because the gtt paths might
835 * fail with non-page-backed user pointers (e.g. gtt mappings
836 * when moving data between textures). */
Eric Anholt40123c12009-03-09 13:42:30 -0700837 }
Eric Anholt673a3942008-07-30 12:06:12 -0700838
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100839 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
840 if (ret)
841 goto out;
842
Daniel Vettere244a442012-03-25 19:47:28 +0200843 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100844
Chris Wilson35b62a82010-09-26 20:23:38 +0100845out:
Chris Wilson05394f32010-11-08 19:18:58 +0000846 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100847unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100848 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700849 return ret;
850}
851
852/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800853 * Called when user space prepares to use an object with the CPU, either
854 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700855 */
856int
857i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000858 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700859{
860 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000861 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800862 uint32_t read_domains = args->read_domains;
863 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700864 int ret;
865
866 if (!(dev->driver->driver_features & DRIVER_GEM))
867 return -ENODEV;
868
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800869 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100870 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800871 return -EINVAL;
872
Chris Wilson21d509e2009-06-06 09:46:02 +0100873 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800874 return -EINVAL;
875
876 /* Having something in the write domain implies it's in the read
877 * domain, and only that read domain. Enforce that in the request.
878 */
879 if (write_domain != 0 && read_domains != write_domain)
880 return -EINVAL;
881
Chris Wilson76c1dec2010-09-25 11:22:51 +0100882 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100883 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100884 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700885
Chris Wilson05394f32010-11-08 19:18:58 +0000886 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000887 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100888 ret = -ENOENT;
889 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100890 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700891
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800892 if (read_domains & I915_GEM_DOMAIN_GTT) {
893 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800894
895 /* Silently promote "you're not bound, there was nothing to do"
896 * to success, since the client was just asking us to
897 * make sure everything was done.
898 */
899 if (ret == -EINVAL)
900 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800901 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800902 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800903 }
904
Chris Wilson05394f32010-11-08 19:18:58 +0000905 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100906unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700907 mutex_unlock(&dev->struct_mutex);
908 return ret;
909}
910
911/**
912 * Called when user space has done writes to this buffer
913 */
914int
915i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000916 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700917{
918 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000919 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700920 int ret = 0;
921
922 if (!(dev->driver->driver_features & DRIVER_GEM))
923 return -ENODEV;
924
Chris Wilson76c1dec2010-09-25 11:22:51 +0100925 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100926 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100927 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100928
Chris Wilson05394f32010-11-08 19:18:58 +0000929 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000930 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100931 ret = -ENOENT;
932 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700933 }
934
Eric Anholt673a3942008-07-30 12:06:12 -0700935 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000936 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800937 i915_gem_object_flush_cpu_write_domain(obj);
938
Chris Wilson05394f32010-11-08 19:18:58 +0000939 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100940unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700941 mutex_unlock(&dev->struct_mutex);
942 return ret;
943}
944
945/**
946 * Maps the contents of an object, returning the address it is mapped
947 * into.
948 *
949 * While the mapping holds a reference on the contents of the object, it doesn't
950 * imply a ref on the object itself.
951 */
952int
953i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000954 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700955{
956 struct drm_i915_gem_mmap *args = data;
957 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700958 unsigned long addr;
959
960 if (!(dev->driver->driver_features & DRIVER_GEM))
961 return -ENODEV;
962
Chris Wilson05394f32010-11-08 19:18:58 +0000963 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -0700964 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100965 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -0700966
Eric Anholt673a3942008-07-30 12:06:12 -0700967 down_write(&current->mm->mmap_sem);
968 addr = do_mmap(obj->filp, 0, args->size,
969 PROT_READ | PROT_WRITE, MAP_SHARED,
970 args->offset);
971 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000972 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700973 if (IS_ERR((void *)addr))
974 return addr;
975
976 args->addr_ptr = (uint64_t) addr;
977
978 return 0;
979}
980
Jesse Barnesde151cf2008-11-12 10:03:55 -0800981/**
982 * i915_gem_fault - fault a page into the GTT
983 * vma: VMA in question
984 * vmf: fault info
985 *
986 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
987 * from userspace. The fault handler takes care of binding the object to
988 * the GTT (if needed), allocating and programming a fence register (again,
989 * only if needed based on whether the old reg is still valid or the object
990 * is tiled) and inserting a new PTE into the faulting process.
991 *
992 * Note that the faulting process may involve evicting existing objects
993 * from the GTT and/or fence registers to make room. So performance may
994 * suffer if the GTT working set is large or there are few fence registers
995 * left.
996 */
997int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
998{
Chris Wilson05394f32010-11-08 19:18:58 +0000999 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1000 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001001 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001002 pgoff_t page_offset;
1003 unsigned long pfn;
1004 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001005 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001006
1007 /* We don't use vmf->pgoff since that has the fake offset */
1008 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1009 PAGE_SHIFT;
1010
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001011 ret = i915_mutex_lock_interruptible(dev);
1012 if (ret)
1013 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001014
Chris Wilsondb53a302011-02-03 11:57:46 +00001015 trace_i915_gem_object_fault(obj, page_offset, true, write);
1016
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001017 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001018 if (!obj->map_and_fenceable) {
1019 ret = i915_gem_object_unbind(obj);
1020 if (ret)
1021 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001022 }
Chris Wilson05394f32010-11-08 19:18:58 +00001023 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001024 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001025 if (ret)
1026 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001027
Eric Anholte92d03b2011-06-14 16:43:09 -07001028 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1029 if (ret)
1030 goto unlock;
1031 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001032
Daniel Vetter74898d72012-02-15 23:50:22 +01001033 if (!obj->has_global_gtt_mapping)
1034 i915_gem_gtt_bind_object(obj, obj->cache_level);
1035
Chris Wilsond9e86c02010-11-10 16:40:20 +00001036 if (obj->tiling_mode == I915_TILING_NONE)
1037 ret = i915_gem_object_put_fence(obj);
1038 else
Chris Wilsonce453d82011-02-21 14:43:56 +00001039 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001040 if (ret)
1041 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001042
Chris Wilson05394f32010-11-08 19:18:58 +00001043 if (i915_gem_object_is_inactive(obj))
1044 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001045
Chris Wilson6299f992010-11-24 12:23:44 +00001046 obj->fault_mappable = true;
1047
Chris Wilson05394f32010-11-08 19:18:58 +00001048 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001049 page_offset;
1050
1051 /* Finally, remap it using the new GTT offset */
1052 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001053unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001054 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001055out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001056 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001057 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001058 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001059 /* Give the error handler a chance to run and move the
1060 * objects off the GPU active list. Next time we service the
1061 * fault, we should be able to transition the page into the
1062 * GTT without touching the GPU (and so avoid further
1063 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1064 * with coherency, just lost writes.
1065 */
Chris Wilson045e7692010-11-07 09:18:22 +00001066 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001067 case 0:
1068 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001069 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001070 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001071 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001072 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001073 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001074 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001075 }
1076}
1077
1078/**
Chris Wilson901782b2009-07-10 08:18:50 +01001079 * i915_gem_release_mmap - remove physical page mappings
1080 * @obj: obj in question
1081 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001082 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001083 * relinquish ownership of the pages back to the system.
1084 *
1085 * It is vital that we remove the page mapping if we have mapped a tiled
1086 * object through the GTT and then lose the fence register due to
1087 * resource pressure. Similarly if the object has been moved out of the
1088 * aperture, than pages mapped into userspace must be revoked. Removing the
1089 * mapping will then trigger a page fault on the next user access, allowing
1090 * fixup by i915_gem_fault().
1091 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001092void
Chris Wilson05394f32010-11-08 19:18:58 +00001093i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001094{
Chris Wilson6299f992010-11-24 12:23:44 +00001095 if (!obj->fault_mappable)
1096 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001097
Chris Wilsonf6e47882011-03-20 21:09:12 +00001098 if (obj->base.dev->dev_mapping)
1099 unmap_mapping_range(obj->base.dev->dev_mapping,
1100 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1101 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001102
Chris Wilson6299f992010-11-24 12:23:44 +00001103 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001104}
1105
Chris Wilson92b88ae2010-11-09 11:47:32 +00001106static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001107i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001108{
Chris Wilsone28f8712011-07-18 13:11:49 -07001109 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001110
1111 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001112 tiling_mode == I915_TILING_NONE)
1113 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001114
1115 /* Previous chips need a power-of-two fence region when tiling */
1116 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001117 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001118 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001119 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001120
Chris Wilsone28f8712011-07-18 13:11:49 -07001121 while (gtt_size < size)
1122 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001123
Chris Wilsone28f8712011-07-18 13:11:49 -07001124 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001125}
1126
Jesse Barnesde151cf2008-11-12 10:03:55 -08001127/**
1128 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1129 * @obj: object to check
1130 *
1131 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001132 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001133 */
1134static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001135i915_gem_get_gtt_alignment(struct drm_device *dev,
1136 uint32_t size,
1137 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001138{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001139 /*
1140 * Minimum alignment is 4k (GTT page size), but might be greater
1141 * if a fence register is needed for the object.
1142 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001143 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001144 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001145 return 4096;
1146
1147 /*
1148 * Previous chips need to be aligned to the size of the smallest
1149 * fence register that can contain the object.
1150 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001151 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001152}
1153
Daniel Vetter5e783302010-11-14 22:32:36 +01001154/**
1155 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1156 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001157 * @dev: the device
1158 * @size: size of the object
1159 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001160 *
1161 * Return the required GTT alignment for an object, only taking into account
1162 * unfenced tiled surface requirements.
1163 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001164uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001165i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1166 uint32_t size,
1167 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001168{
Daniel Vetter5e783302010-11-14 22:32:36 +01001169 /*
1170 * Minimum alignment is 4k (GTT page size) for sane hw.
1171 */
1172 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001173 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001174 return 4096;
1175
Chris Wilsone28f8712011-07-18 13:11:49 -07001176 /* Previous hardware however needs to be aligned to a power-of-two
1177 * tile height. The simplest method for determining this is to reuse
1178 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001179 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001180 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001181}
1182
Jesse Barnesde151cf2008-11-12 10:03:55 -08001183int
Dave Airlieff72145b2011-02-07 12:16:14 +10001184i915_gem_mmap_gtt(struct drm_file *file,
1185 struct drm_device *dev,
1186 uint32_t handle,
1187 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001188{
Chris Wilsonda761a62010-10-27 17:37:08 +01001189 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001190 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001191 int ret;
1192
1193 if (!(dev->driver->driver_features & DRIVER_GEM))
1194 return -ENODEV;
1195
Chris Wilson76c1dec2010-09-25 11:22:51 +01001196 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001197 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001198 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001199
Dave Airlieff72145b2011-02-07 12:16:14 +10001200 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001201 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001202 ret = -ENOENT;
1203 goto unlock;
1204 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001205
Chris Wilson05394f32010-11-08 19:18:58 +00001206 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001207 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001208 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001209 }
1210
Chris Wilson05394f32010-11-08 19:18:58 +00001211 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001212 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001213 ret = -EINVAL;
1214 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001215 }
1216
Chris Wilson05394f32010-11-08 19:18:58 +00001217 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001218 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001219 if (ret)
1220 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001221 }
1222
Dave Airlieff72145b2011-02-07 12:16:14 +10001223 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001224
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001225out:
Chris Wilson05394f32010-11-08 19:18:58 +00001226 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001227unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001228 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001229 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001230}
1231
Dave Airlieff72145b2011-02-07 12:16:14 +10001232/**
1233 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1234 * @dev: DRM device
1235 * @data: GTT mapping ioctl data
1236 * @file: GEM object info
1237 *
1238 * Simply returns the fake offset to userspace so it can mmap it.
1239 * The mmap call will end up in drm_gem_mmap(), which will set things
1240 * up so we can get faults in the handler above.
1241 *
1242 * The fault handler will take care of binding the object into the GTT
1243 * (since it may have been evicted to make room for something), allocating
1244 * a fence register, and mapping the appropriate aperture address into
1245 * userspace.
1246 */
1247int
1248i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1249 struct drm_file *file)
1250{
1251 struct drm_i915_gem_mmap_gtt *args = data;
1252
1253 if (!(dev->driver->driver_features & DRIVER_GEM))
1254 return -ENODEV;
1255
1256 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1257}
1258
1259
Chris Wilsone5281cc2010-10-28 13:45:36 +01001260static int
Chris Wilson05394f32010-11-08 19:18:58 +00001261i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001262 gfp_t gfpmask)
1263{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001264 int page_count, i;
1265 struct address_space *mapping;
1266 struct inode *inode;
1267 struct page *page;
1268
1269 /* Get the list of pages out of our struct file. They'll be pinned
1270 * at this point until we release them.
1271 */
Chris Wilson05394f32010-11-08 19:18:58 +00001272 page_count = obj->base.size / PAGE_SIZE;
1273 BUG_ON(obj->pages != NULL);
1274 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1275 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001276 return -ENOMEM;
1277
Chris Wilson05394f32010-11-08 19:18:58 +00001278 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001279 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001280 gfpmask |= mapping_gfp_mask(mapping);
1281
Chris Wilsone5281cc2010-10-28 13:45:36 +01001282 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001283 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001284 if (IS_ERR(page))
1285 goto err_pages;
1286
Chris Wilson05394f32010-11-08 19:18:58 +00001287 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001288 }
1289
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001290 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001291 i915_gem_object_do_bit_17_swizzle(obj);
1292
1293 return 0;
1294
1295err_pages:
1296 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001297 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001298
Chris Wilson05394f32010-11-08 19:18:58 +00001299 drm_free_large(obj->pages);
1300 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001301 return PTR_ERR(page);
1302}
1303
Chris Wilson5cdf5882010-09-27 15:51:07 +01001304static void
Chris Wilson05394f32010-11-08 19:18:58 +00001305i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001306{
Chris Wilson05394f32010-11-08 19:18:58 +00001307 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001308 int i;
1309
Chris Wilson05394f32010-11-08 19:18:58 +00001310 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001311
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001312 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001313 i915_gem_object_save_bit_17_swizzle(obj);
1314
Chris Wilson05394f32010-11-08 19:18:58 +00001315 if (obj->madv == I915_MADV_DONTNEED)
1316 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001317
1318 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001319 if (obj->dirty)
1320 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001321
Chris Wilson05394f32010-11-08 19:18:58 +00001322 if (obj->madv == I915_MADV_WILLNEED)
1323 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001324
Chris Wilson05394f32010-11-08 19:18:58 +00001325 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001326 }
Chris Wilson05394f32010-11-08 19:18:58 +00001327 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001328
Chris Wilson05394f32010-11-08 19:18:58 +00001329 drm_free_large(obj->pages);
1330 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001331}
1332
Chris Wilson54cf91d2010-11-25 18:00:26 +00001333void
Chris Wilson05394f32010-11-08 19:18:58 +00001334i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001335 struct intel_ring_buffer *ring,
1336 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001337{
Chris Wilson05394f32010-11-08 19:18:58 +00001338 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001339 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001340
Zou Nan hai852835f2010-05-21 09:08:56 +08001341 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001342 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001343
1344 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001345 if (!obj->active) {
1346 drm_gem_object_reference(&obj->base);
1347 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001348 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001349
Eric Anholt673a3942008-07-30 12:06:12 -07001350 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001351 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1352 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001353
Chris Wilson05394f32010-11-08 19:18:58 +00001354 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001355 if (obj->fenced_gpu_access) {
1356 struct drm_i915_fence_reg *reg;
1357
1358 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1359
1360 obj->last_fenced_seqno = seqno;
1361 obj->last_fenced_ring = ring;
1362
1363 reg = &dev_priv->fence_regs[obj->fence_reg];
1364 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1365 }
1366}
1367
1368static void
1369i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1370{
1371 list_del_init(&obj->ring_list);
1372 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001373}
1374
Eric Anholtce44b0e2008-11-06 16:00:31 -08001375static void
Chris Wilson05394f32010-11-08 19:18:58 +00001376i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001377{
Chris Wilson05394f32010-11-08 19:18:58 +00001378 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001379 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001380
Chris Wilson05394f32010-11-08 19:18:58 +00001381 BUG_ON(!obj->active);
1382 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001383
1384 i915_gem_object_move_off_active(obj);
1385}
1386
1387static void
1388i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1389{
1390 struct drm_device *dev = obj->base.dev;
1391 struct drm_i915_private *dev_priv = dev->dev_private;
1392
1393 if (obj->pin_count != 0)
1394 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1395 else
1396 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1397
1398 BUG_ON(!list_empty(&obj->gpu_write_list));
1399 BUG_ON(!obj->active);
1400 obj->ring = NULL;
1401
1402 i915_gem_object_move_off_active(obj);
1403 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001404
1405 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001406 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001407 drm_gem_object_unreference(&obj->base);
1408
1409 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001410}
Eric Anholt673a3942008-07-30 12:06:12 -07001411
Chris Wilson963b4832009-09-20 23:03:54 +01001412/* Immediately discard the backing storage */
1413static void
Chris Wilson05394f32010-11-08 19:18:58 +00001414i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001415{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001416 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001417
Chris Wilsonae9fed62010-08-07 11:01:30 +01001418 /* Our goal here is to return as much of the memory as
1419 * is possible back to the system as we are called from OOM.
1420 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001421 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001422 */
Chris Wilson05394f32010-11-08 19:18:58 +00001423 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001424 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001425
Chris Wilsona14917e2012-02-24 21:13:38 +00001426 if (obj->base.map_list.map)
1427 drm_gem_free_mmap_offset(&obj->base);
1428
Chris Wilson05394f32010-11-08 19:18:58 +00001429 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001430}
1431
1432static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001433i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001434{
Chris Wilson05394f32010-11-08 19:18:58 +00001435 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001436}
1437
Eric Anholt673a3942008-07-30 12:06:12 -07001438static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001439i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1440 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001441{
Chris Wilson05394f32010-11-08 19:18:58 +00001442 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001443
Chris Wilson05394f32010-11-08 19:18:58 +00001444 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001445 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001446 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001447 if (obj->base.write_domain & flush_domains) {
1448 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001449
Chris Wilson05394f32010-11-08 19:18:58 +00001450 obj->base.write_domain = 0;
1451 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001452 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001453 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001454
Daniel Vetter63560392010-02-19 11:51:59 +01001455 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001456 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001457 old_write_domain);
1458 }
1459 }
1460}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001461
Daniel Vetter53d227f2012-01-25 16:32:49 +01001462static u32
1463i915_gem_get_seqno(struct drm_device *dev)
1464{
1465 drm_i915_private_t *dev_priv = dev->dev_private;
1466 u32 seqno = dev_priv->next_seqno;
1467
1468 /* reserve 0 for non-seqno */
1469 if (++dev_priv->next_seqno == 0)
1470 dev_priv->next_seqno = 1;
1471
1472 return seqno;
1473}
1474
1475u32
1476i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1477{
1478 if (ring->outstanding_lazy_request == 0)
1479 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1480
1481 return ring->outstanding_lazy_request;
1482}
1483
Chris Wilson3cce4692010-10-27 16:11:02 +01001484int
Chris Wilsondb53a302011-02-03 11:57:46 +00001485i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001486 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001487 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001488{
Chris Wilsondb53a302011-02-03 11:57:46 +00001489 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001490 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001491 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001492 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001493 int ret;
1494
1495 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001496 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001497
Chris Wilsona71d8d92012-02-15 11:25:36 +00001498 /* Record the position of the start of the request so that
1499 * should we detect the updated seqno part-way through the
1500 * GPU processing the request, we never over-estimate the
1501 * position of the head.
1502 */
1503 request_ring_position = intel_ring_get_tail(ring);
1504
Chris Wilson3cce4692010-10-27 16:11:02 +01001505 ret = ring->add_request(ring, &seqno);
1506 if (ret)
1507 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001508
Chris Wilsondb53a302011-02-03 11:57:46 +00001509 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001510
1511 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001512 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001513 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001514 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001515 was_empty = list_empty(&ring->request_list);
1516 list_add_tail(&request->list, &ring->request_list);
1517
Chris Wilsondb53a302011-02-03 11:57:46 +00001518 if (file) {
1519 struct drm_i915_file_private *file_priv = file->driver_priv;
1520
Chris Wilson1c255952010-09-26 11:03:27 +01001521 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001522 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001523 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001524 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001525 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001526 }
Eric Anholt673a3942008-07-30 12:06:12 -07001527
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001528 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001529
Ben Gamarif65d9422009-09-14 17:48:44 -04001530 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001531 if (i915_enable_hangcheck) {
1532 mod_timer(&dev_priv->hangcheck_timer,
1533 jiffies +
1534 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1535 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001536 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001537 queue_delayed_work(dev_priv->wq,
1538 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001539 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001540 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001541}
1542
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001543static inline void
1544i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001545{
Chris Wilson1c255952010-09-26 11:03:27 +01001546 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001547
Chris Wilson1c255952010-09-26 11:03:27 +01001548 if (!file_priv)
1549 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001550
Chris Wilson1c255952010-09-26 11:03:27 +01001551 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001552 if (request->file_priv) {
1553 list_del(&request->client_list);
1554 request->file_priv = NULL;
1555 }
Chris Wilson1c255952010-09-26 11:03:27 +01001556 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001557}
1558
Chris Wilsondfaae392010-09-22 10:31:52 +01001559static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1560 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001561{
Chris Wilsondfaae392010-09-22 10:31:52 +01001562 while (!list_empty(&ring->request_list)) {
1563 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001564
Chris Wilsondfaae392010-09-22 10:31:52 +01001565 request = list_first_entry(&ring->request_list,
1566 struct drm_i915_gem_request,
1567 list);
1568
1569 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001570 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001571 kfree(request);
1572 }
1573
1574 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001575 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001576
Chris Wilson05394f32010-11-08 19:18:58 +00001577 obj = list_first_entry(&ring->active_list,
1578 struct drm_i915_gem_object,
1579 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001580
Chris Wilson05394f32010-11-08 19:18:58 +00001581 obj->base.write_domain = 0;
1582 list_del_init(&obj->gpu_write_list);
1583 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001584 }
Eric Anholt673a3942008-07-30 12:06:12 -07001585}
1586
Chris Wilson312817a2010-11-22 11:50:11 +00001587static void i915_gem_reset_fences(struct drm_device *dev)
1588{
1589 struct drm_i915_private *dev_priv = dev->dev_private;
1590 int i;
1591
Daniel Vetter4b9de732011-10-09 21:52:02 +02001592 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001593 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001594 struct drm_i915_gem_object *obj = reg->obj;
1595
1596 if (!obj)
1597 continue;
1598
1599 if (obj->tiling_mode)
1600 i915_gem_release_mmap(obj);
1601
Chris Wilsond9e86c02010-11-10 16:40:20 +00001602 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1603 reg->obj->fenced_gpu_access = false;
1604 reg->obj->last_fenced_seqno = 0;
1605 reg->obj->last_fenced_ring = NULL;
1606 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001607 }
1608}
1609
Chris Wilson069efc12010-09-30 16:53:18 +01001610void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001611{
Chris Wilsondfaae392010-09-22 10:31:52 +01001612 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001613 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001614 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001615
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001616 for (i = 0; i < I915_NUM_RINGS; i++)
1617 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001618
1619 /* Remove anything from the flushing lists. The GPU cache is likely
1620 * to be lost on reset along with the data, so simply move the
1621 * lost bo to the inactive list.
1622 */
1623 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001624 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001625 struct drm_i915_gem_object,
1626 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001627
Chris Wilson05394f32010-11-08 19:18:58 +00001628 obj->base.write_domain = 0;
1629 list_del_init(&obj->gpu_write_list);
1630 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001631 }
Chris Wilson9375e442010-09-19 12:21:28 +01001632
Chris Wilsondfaae392010-09-22 10:31:52 +01001633 /* Move everything out of the GPU domains to ensure we do any
1634 * necessary invalidation upon reuse.
1635 */
Chris Wilson05394f32010-11-08 19:18:58 +00001636 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001637 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001638 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001639 {
Chris Wilson05394f32010-11-08 19:18:58 +00001640 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001641 }
Chris Wilson069efc12010-09-30 16:53:18 +01001642
1643 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001644 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001645}
1646
1647/**
1648 * This function clears the request list as sequence numbers are passed.
1649 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001650void
Chris Wilsondb53a302011-02-03 11:57:46 +00001651i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001652{
Eric Anholt673a3942008-07-30 12:06:12 -07001653 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001654 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001655
Chris Wilsondb53a302011-02-03 11:57:46 +00001656 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001657 return;
1658
Chris Wilsondb53a302011-02-03 11:57:46 +00001659 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001660
Chris Wilson78501ea2010-10-27 12:18:21 +01001661 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001662
Chris Wilson076e2c02011-01-21 10:07:18 +00001663 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001664 if (seqno >= ring->sync_seqno[i])
1665 ring->sync_seqno[i] = 0;
1666
Zou Nan hai852835f2010-05-21 09:08:56 +08001667 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001668 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001669
Zou Nan hai852835f2010-05-21 09:08:56 +08001670 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001671 struct drm_i915_gem_request,
1672 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001673
Chris Wilsondfaae392010-09-22 10:31:52 +01001674 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001675 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001676
Chris Wilsondb53a302011-02-03 11:57:46 +00001677 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001678 /* We know the GPU must have read the request to have
1679 * sent us the seqno + interrupt, so use the position
1680 * of tail of the request to update the last known position
1681 * of the GPU head.
1682 */
1683 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001684
1685 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001686 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001687 kfree(request);
1688 }
1689
1690 /* Move any buffers on the active list that are no longer referenced
1691 * by the ringbuffer to the flushing/inactive lists as appropriate.
1692 */
1693 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001694 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001695
Akshay Joshi0206e352011-08-16 15:34:10 -04001696 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001697 struct drm_i915_gem_object,
1698 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001699
Chris Wilson05394f32010-11-08 19:18:58 +00001700 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001701 break;
1702
Chris Wilson05394f32010-11-08 19:18:58 +00001703 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001704 i915_gem_object_move_to_flushing(obj);
1705 else
1706 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001707 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001708
Chris Wilsondb53a302011-02-03 11:57:46 +00001709 if (unlikely(ring->trace_irq_seqno &&
1710 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001711 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001712 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001713 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001714
Chris Wilsondb53a302011-02-03 11:57:46 +00001715 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001716}
1717
1718void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001719i915_gem_retire_requests(struct drm_device *dev)
1720{
1721 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001722 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001723
Chris Wilsonbe726152010-07-23 23:18:50 +01001724 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001725 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001726
1727 /* We must be careful that during unbind() we do not
1728 * accidentally infinitely recurse into retire requests.
1729 * Currently:
1730 * retire -> free -> unbind -> wait -> retire_ring
1731 */
Chris Wilson05394f32010-11-08 19:18:58 +00001732 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001733 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001734 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001735 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001736 }
1737
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001738 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001739 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001740}
1741
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001742static void
Eric Anholt673a3942008-07-30 12:06:12 -07001743i915_gem_retire_work_handler(struct work_struct *work)
1744{
1745 drm_i915_private_t *dev_priv;
1746 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001747 bool idle;
1748 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001749
1750 dev_priv = container_of(work, drm_i915_private_t,
1751 mm.retire_work.work);
1752 dev = dev_priv->dev;
1753
Chris Wilson891b48c2010-09-29 12:26:37 +01001754 /* Come back later if the device is busy... */
1755 if (!mutex_trylock(&dev->struct_mutex)) {
1756 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1757 return;
1758 }
1759
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001760 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001761
Chris Wilson0a587052011-01-09 21:05:44 +00001762 /* Send a periodic flush down the ring so we don't hold onto GEM
1763 * objects indefinitely.
1764 */
1765 idle = true;
1766 for (i = 0; i < I915_NUM_RINGS; i++) {
1767 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1768
1769 if (!list_empty(&ring->gpu_write_list)) {
1770 struct drm_i915_gem_request *request;
1771 int ret;
1772
Chris Wilsondb53a302011-02-03 11:57:46 +00001773 ret = i915_gem_flush_ring(ring,
1774 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001775 request = kzalloc(sizeof(*request), GFP_KERNEL);
1776 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001777 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001778 kfree(request);
1779 }
1780
1781 idle &= list_empty(&ring->request_list);
1782 }
1783
1784 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001785 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001786
Eric Anholt673a3942008-07-30 12:06:12 -07001787 mutex_unlock(&dev->struct_mutex);
1788}
1789
Chris Wilsondb53a302011-02-03 11:57:46 +00001790/**
1791 * Waits for a sequence number to be signaled, and cleans up the
1792 * request and object lists appropriately for that event.
1793 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001794int
Chris Wilsondb53a302011-02-03 11:57:46 +00001795i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001796 uint32_t seqno,
1797 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001798{
Chris Wilsondb53a302011-02-03 11:57:46 +00001799 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001800 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001801 int ret = 0;
1802
1803 BUG_ON(seqno == 0);
1804
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001805 if (atomic_read(&dev_priv->mm.wedged)) {
1806 struct completion *x = &dev_priv->error_completion;
1807 bool recovery_complete;
1808 unsigned long flags;
1809
1810 /* Give the error handler a chance to run. */
1811 spin_lock_irqsave(&x->wait.lock, flags);
1812 recovery_complete = x->done > 0;
1813 spin_unlock_irqrestore(&x->wait.lock, flags);
1814
1815 return recovery_complete ? -EIO : -EAGAIN;
1816 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001817
Chris Wilson5d97eb62010-11-10 20:40:02 +00001818 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001819 struct drm_i915_gem_request *request;
1820
1821 request = kzalloc(sizeof(*request), GFP_KERNEL);
1822 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001823 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001824
Chris Wilsondb53a302011-02-03 11:57:46 +00001825 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001826 if (ret) {
1827 kfree(request);
1828 return ret;
1829 }
1830
1831 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001832 }
1833
Chris Wilson78501ea2010-10-27 12:18:21 +01001834 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001835 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001836 ier = I915_READ(DEIER) | I915_READ(GTIER);
1837 else
1838 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001839 if (!ier) {
1840 DRM_ERROR("something (likely vbetool) disabled "
1841 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001842 ring->dev->driver->irq_preinstall(ring->dev);
1843 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001844 }
1845
Chris Wilsondb53a302011-02-03 11:57:46 +00001846 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001847
Chris Wilsonb2223492010-10-27 15:27:33 +01001848 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001849 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001850 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001851 ret = wait_event_interruptible(ring->irq_queue,
1852 i915_seqno_passed(ring->get_seqno(ring), seqno)
1853 || atomic_read(&dev_priv->mm.wedged));
1854 else
1855 wait_event(ring->irq_queue,
1856 i915_seqno_passed(ring->get_seqno(ring), seqno)
1857 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001858
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001859 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001860 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1861 seqno) ||
1862 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001863 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001864 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001865
Chris Wilsondb53a302011-02-03 11:57:46 +00001866 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001867 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001868 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001869 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001870
Eric Anholt673a3942008-07-30 12:06:12 -07001871 /* Directly dispatch request retiring. While we have the work queue
1872 * to handle this, the waiter on a request often wants an associated
1873 * buffer to have made it to the inactive list, and we would need
1874 * a separate wait queue to handle that.
1875 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001876 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001877 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001878
1879 return ret;
1880}
1881
Daniel Vetter48764bf2009-09-15 22:57:32 +02001882/**
Eric Anholt673a3942008-07-30 12:06:12 -07001883 * Ensures that all rendering to the object has completed and the object is
1884 * safe to unbind from the GTT or access from the CPU.
1885 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001886int
Chris Wilsonce453d82011-02-21 14:43:56 +00001887i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001888{
Eric Anholt673a3942008-07-30 12:06:12 -07001889 int ret;
1890
Eric Anholte47c68e2008-11-14 13:35:19 -08001891 /* This function only exists to support waiting for existing rendering,
1892 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001893 */
Chris Wilson05394f32010-11-08 19:18:58 +00001894 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001895
1896 /* If there is rendering queued on the buffer being evicted, wait for
1897 * it.
1898 */
Chris Wilson05394f32010-11-08 19:18:58 +00001899 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001900 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1901 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001902 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001903 return ret;
1904 }
1905
1906 return 0;
1907}
1908
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001909static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
1910{
1911 u32 old_write_domain, old_read_domains;
1912
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001913 /* Act a barrier for all accesses through the GTT */
1914 mb();
1915
1916 /* Force a pagefault for domain tracking on next user access */
1917 i915_gem_release_mmap(obj);
1918
Keith Packardb97c3d92011-06-24 21:02:59 -07001919 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
1920 return;
1921
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001922 old_read_domains = obj->base.read_domains;
1923 old_write_domain = obj->base.write_domain;
1924
1925 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
1926 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
1927
1928 trace_i915_gem_object_change_domain(obj,
1929 old_read_domains,
1930 old_write_domain);
1931}
1932
Eric Anholt673a3942008-07-30 12:06:12 -07001933/**
1934 * Unbinds an object from the GTT aperture.
1935 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001936int
Chris Wilson05394f32010-11-08 19:18:58 +00001937i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001938{
Daniel Vetter7bddb012012-02-09 17:15:47 +01001939 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001940 int ret = 0;
1941
Chris Wilson05394f32010-11-08 19:18:58 +00001942 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001943 return 0;
1944
Chris Wilson05394f32010-11-08 19:18:58 +00001945 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07001946 DRM_ERROR("Attempting to unbind pinned buffer\n");
1947 return -EINVAL;
1948 }
1949
Chris Wilsona8198ee2011-04-13 22:04:09 +01001950 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01001951 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07001952 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01001953 /* Continue on if we fail due to EIO, the GPU is hung so we
1954 * should be safe and we need to cleanup or else we might
1955 * cause memory corruption through use-after-free.
1956 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01001957
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001958 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01001959
1960 /* Move the object to the CPU domain to ensure that
1961 * any possible CPU writes while it's not in the GTT
1962 * are flushed when we go to remap it.
1963 */
1964 if (ret == 0)
1965 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1966 if (ret == -ERESTARTSYS)
1967 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01001968 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01001969 /* In the event of a disaster, abandon all caches and
1970 * hope for the best.
1971 */
Chris Wilson812ed4922010-09-30 15:08:57 +01001972 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001973 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01001974 }
Eric Anholt673a3942008-07-30 12:06:12 -07001975
Daniel Vetter96b47b62009-12-15 17:50:00 +01001976 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00001977 ret = i915_gem_object_put_fence(obj);
1978 if (ret == -ERESTARTSYS)
1979 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01001980
Chris Wilsondb53a302011-02-03 11:57:46 +00001981 trace_i915_gem_object_unbind(obj);
1982
Daniel Vetter74898d72012-02-15 23:50:22 +01001983 if (obj->has_global_gtt_mapping)
1984 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001985 if (obj->has_aliasing_ppgtt_mapping) {
1986 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
1987 obj->has_aliasing_ppgtt_mapping = 0;
1988 }
Daniel Vetter74163902012-02-15 23:50:21 +01001989 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001990
Chris Wilsone5281cc2010-10-28 13:45:36 +01001991 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001992
Chris Wilson6299f992010-11-24 12:23:44 +00001993 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00001994 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01001995 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00001996 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07001997
Chris Wilson05394f32010-11-08 19:18:58 +00001998 drm_mm_put_block(obj->gtt_space);
1999 obj->gtt_space = NULL;
2000 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002001
Chris Wilson05394f32010-11-08 19:18:58 +00002002 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002003 i915_gem_object_truncate(obj);
2004
Chris Wilson8dc17752010-07-23 23:18:51 +01002005 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002006}
2007
Chris Wilson88241782011-01-07 17:09:48 +00002008int
Chris Wilsondb53a302011-02-03 11:57:46 +00002009i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002010 uint32_t invalidate_domains,
2011 uint32_t flush_domains)
2012{
Chris Wilson88241782011-01-07 17:09:48 +00002013 int ret;
2014
Chris Wilson36d527d2011-03-19 22:26:49 +00002015 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2016 return 0;
2017
Chris Wilsondb53a302011-02-03 11:57:46 +00002018 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2019
Chris Wilson88241782011-01-07 17:09:48 +00002020 ret = ring->flush(ring, invalidate_domains, flush_domains);
2021 if (ret)
2022 return ret;
2023
Chris Wilson36d527d2011-03-19 22:26:49 +00002024 if (flush_domains & I915_GEM_GPU_DOMAINS)
2025 i915_gem_process_flushing_list(ring, flush_domains);
2026
Chris Wilson88241782011-01-07 17:09:48 +00002027 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002028}
2029
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002030static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002031{
Chris Wilson88241782011-01-07 17:09:48 +00002032 int ret;
2033
Chris Wilson395b70b2010-10-28 21:28:46 +01002034 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002035 return 0;
2036
Chris Wilson88241782011-01-07 17:09:48 +00002037 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002038 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002039 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002040 if (ret)
2041 return ret;
2042 }
2043
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002044 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2045 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002046}
2047
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002048int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002049{
2050 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002051 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002052
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002053 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002054 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002055 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002056 if (ret)
2057 return ret;
2058 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002059
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002060 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002061}
2062
Daniel Vetterc6642782010-11-12 13:46:18 +00002063static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2064 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002065{
Chris Wilson05394f32010-11-08 19:18:58 +00002066 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002067 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002068 u32 size = obj->gtt_space->size;
2069 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002070 uint64_t val;
2071
Chris Wilson05394f32010-11-08 19:18:58 +00002072 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002073 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002074 val |= obj->gtt_offset & 0xfffff000;
2075 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002076 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2077
Chris Wilson05394f32010-11-08 19:18:58 +00002078 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002079 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2080 val |= I965_FENCE_REG_VALID;
2081
Daniel Vetterc6642782010-11-12 13:46:18 +00002082 if (pipelined) {
2083 int ret = intel_ring_begin(pipelined, 6);
2084 if (ret)
2085 return ret;
2086
2087 intel_ring_emit(pipelined, MI_NOOP);
2088 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2089 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2090 intel_ring_emit(pipelined, (u32)val);
2091 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2092 intel_ring_emit(pipelined, (u32)(val >> 32));
2093 intel_ring_advance(pipelined);
2094 } else
2095 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2096
2097 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002098}
2099
Daniel Vetterc6642782010-11-12 13:46:18 +00002100static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2101 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002102{
Chris Wilson05394f32010-11-08 19:18:58 +00002103 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002104 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002105 u32 size = obj->gtt_space->size;
2106 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002107 uint64_t val;
2108
Chris Wilson05394f32010-11-08 19:18:58 +00002109 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002110 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002111 val |= obj->gtt_offset & 0xfffff000;
2112 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2113 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002114 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2115 val |= I965_FENCE_REG_VALID;
2116
Daniel Vetterc6642782010-11-12 13:46:18 +00002117 if (pipelined) {
2118 int ret = intel_ring_begin(pipelined, 6);
2119 if (ret)
2120 return ret;
2121
2122 intel_ring_emit(pipelined, MI_NOOP);
2123 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2124 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2125 intel_ring_emit(pipelined, (u32)val);
2126 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2127 intel_ring_emit(pipelined, (u32)(val >> 32));
2128 intel_ring_advance(pipelined);
2129 } else
2130 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2131
2132 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002133}
2134
Daniel Vetterc6642782010-11-12 13:46:18 +00002135static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2136 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002137{
Chris Wilson05394f32010-11-08 19:18:58 +00002138 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002139 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002140 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002141 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002142 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002143
Daniel Vetterc6642782010-11-12 13:46:18 +00002144 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2145 (size & -size) != size ||
2146 (obj->gtt_offset & (size - 1)),
2147 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2148 obj->gtt_offset, obj->map_and_fenceable, size))
2149 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002150
Daniel Vetterc6642782010-11-12 13:46:18 +00002151 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002152 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002153 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002154 tile_width = 512;
2155
2156 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002157 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002158 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002159
Chris Wilson05394f32010-11-08 19:18:58 +00002160 val = obj->gtt_offset;
2161 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002162 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002163 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002164 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2165 val |= I830_FENCE_REG_VALID;
2166
Chris Wilson05394f32010-11-08 19:18:58 +00002167 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002168 if (fence_reg < 8)
2169 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002170 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002171 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002172
2173 if (pipelined) {
2174 int ret = intel_ring_begin(pipelined, 4);
2175 if (ret)
2176 return ret;
2177
2178 intel_ring_emit(pipelined, MI_NOOP);
2179 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2180 intel_ring_emit(pipelined, fence_reg);
2181 intel_ring_emit(pipelined, val);
2182 intel_ring_advance(pipelined);
2183 } else
2184 I915_WRITE(fence_reg, val);
2185
2186 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002187}
2188
Daniel Vetterc6642782010-11-12 13:46:18 +00002189static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2190 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002191{
Chris Wilson05394f32010-11-08 19:18:58 +00002192 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002193 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002194 u32 size = obj->gtt_space->size;
2195 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002196 uint32_t val;
2197 uint32_t pitch_val;
2198
Daniel Vetterc6642782010-11-12 13:46:18 +00002199 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2200 (size & -size) != size ||
2201 (obj->gtt_offset & (size - 1)),
2202 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2203 obj->gtt_offset, size))
2204 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002205
Chris Wilson05394f32010-11-08 19:18:58 +00002206 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002207 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002208
Chris Wilson05394f32010-11-08 19:18:58 +00002209 val = obj->gtt_offset;
2210 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002211 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002212 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002213 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2214 val |= I830_FENCE_REG_VALID;
2215
Daniel Vetterc6642782010-11-12 13:46:18 +00002216 if (pipelined) {
2217 int ret = intel_ring_begin(pipelined, 4);
2218 if (ret)
2219 return ret;
2220
2221 intel_ring_emit(pipelined, MI_NOOP);
2222 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2223 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2224 intel_ring_emit(pipelined, val);
2225 intel_ring_advance(pipelined);
2226 } else
2227 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2228
2229 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002230}
2231
Chris Wilsond9e86c02010-11-10 16:40:20 +00002232static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2233{
2234 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2235}
2236
2237static int
2238i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002239 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002240{
2241 int ret;
2242
2243 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002244 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002245 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002246 0, obj->base.write_domain);
2247 if (ret)
2248 return ret;
2249 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002250
2251 obj->fenced_gpu_access = false;
2252 }
2253
2254 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2255 if (!ring_passed_seqno(obj->last_fenced_ring,
2256 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002257 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002258 obj->last_fenced_seqno,
2259 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002260 if (ret)
2261 return ret;
2262 }
2263
2264 obj->last_fenced_seqno = 0;
2265 obj->last_fenced_ring = NULL;
2266 }
2267
Chris Wilson63256ec2011-01-04 18:42:07 +00002268 /* Ensure that all CPU reads are completed before installing a fence
2269 * and all writes before removing the fence.
2270 */
2271 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2272 mb();
2273
Chris Wilsond9e86c02010-11-10 16:40:20 +00002274 return 0;
2275}
2276
2277int
2278i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2279{
2280 int ret;
2281
2282 if (obj->tiling_mode)
2283 i915_gem_release_mmap(obj);
2284
Chris Wilsonce453d82011-02-21 14:43:56 +00002285 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002286 if (ret)
2287 return ret;
2288
2289 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2290 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002291
2292 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002293 i915_gem_clear_fence_reg(obj->base.dev,
2294 &dev_priv->fence_regs[obj->fence_reg]);
2295
2296 obj->fence_reg = I915_FENCE_REG_NONE;
2297 }
2298
2299 return 0;
2300}
2301
2302static struct drm_i915_fence_reg *
2303i915_find_fence_reg(struct drm_device *dev,
2304 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002305{
Daniel Vetterae3db242010-02-19 11:51:58 +01002306 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002307 struct drm_i915_fence_reg *reg, *first, *avail;
2308 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002309
2310 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002311 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002312 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2313 reg = &dev_priv->fence_regs[i];
2314 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002315 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002316
Chris Wilson1690e1e2011-12-14 13:57:08 +01002317 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002318 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002319 }
2320
Chris Wilsond9e86c02010-11-10 16:40:20 +00002321 if (avail == NULL)
2322 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002323
2324 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002325 avail = first = NULL;
2326 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002327 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002328 continue;
2329
Chris Wilsond9e86c02010-11-10 16:40:20 +00002330 if (first == NULL)
2331 first = reg;
2332
2333 if (!pipelined ||
2334 !reg->obj->last_fenced_ring ||
2335 reg->obj->last_fenced_ring == pipelined) {
2336 avail = reg;
2337 break;
2338 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002339 }
2340
Chris Wilsond9e86c02010-11-10 16:40:20 +00002341 if (avail == NULL)
2342 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002343
Chris Wilsona00b10c2010-09-24 21:15:47 +01002344 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002345}
2346
Jesse Barnesde151cf2008-11-12 10:03:55 -08002347/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002348 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002349 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002350 * @pipelined: ring on which to queue the change, or NULL for CPU access
2351 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002352 *
2353 * When mapping objects through the GTT, userspace wants to be able to write
2354 * to them without having to worry about swizzling if the object is tiled.
2355 *
2356 * This function walks the fence regs looking for a free one for @obj,
2357 * stealing one if it can't find any.
2358 *
2359 * It then sets up the reg based on the object's properties: address, pitch
2360 * and tiling format.
2361 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002362int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002363i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002364 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002365{
Chris Wilson05394f32010-11-08 19:18:58 +00002366 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002367 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002368 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002369 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002370
Chris Wilson6bda10d2010-12-05 21:04:18 +00002371 /* XXX disable pipelining. There are bugs. Shocking. */
2372 pipelined = NULL;
2373
Chris Wilsond9e86c02010-11-10 16:40:20 +00002374 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002375 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2376 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002377 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002378
Chris Wilson29c5a582011-03-17 15:23:22 +00002379 if (obj->tiling_changed) {
2380 ret = i915_gem_object_flush_fence(obj, pipelined);
2381 if (ret)
2382 return ret;
2383
2384 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2385 pipelined = NULL;
2386
2387 if (pipelined) {
2388 reg->setup_seqno =
2389 i915_gem_next_request_seqno(pipelined);
2390 obj->last_fenced_seqno = reg->setup_seqno;
2391 obj->last_fenced_ring = pipelined;
2392 }
2393
2394 goto update;
2395 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002396
2397 if (!pipelined) {
2398 if (reg->setup_seqno) {
2399 if (!ring_passed_seqno(obj->last_fenced_ring,
2400 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002401 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002402 reg->setup_seqno,
2403 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002404 if (ret)
2405 return ret;
2406 }
2407
2408 reg->setup_seqno = 0;
2409 }
2410 } else if (obj->last_fenced_ring &&
2411 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002412 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002413 if (ret)
2414 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002415 }
2416
Eric Anholta09ba7f2009-08-29 12:49:51 -07002417 return 0;
2418 }
2419
Chris Wilsond9e86c02010-11-10 16:40:20 +00002420 reg = i915_find_fence_reg(dev, pipelined);
2421 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002422 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002423
Chris Wilsonce453d82011-02-21 14:43:56 +00002424 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002425 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002426 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002427
Chris Wilsond9e86c02010-11-10 16:40:20 +00002428 if (reg->obj) {
2429 struct drm_i915_gem_object *old = reg->obj;
2430
2431 drm_gem_object_reference(&old->base);
2432
2433 if (old->tiling_mode)
2434 i915_gem_release_mmap(old);
2435
Chris Wilsonce453d82011-02-21 14:43:56 +00002436 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002437 if (ret) {
2438 drm_gem_object_unreference(&old->base);
2439 return ret;
2440 }
2441
2442 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2443 pipelined = NULL;
2444
2445 old->fence_reg = I915_FENCE_REG_NONE;
2446 old->last_fenced_ring = pipelined;
2447 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002448 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002449
2450 drm_gem_object_unreference(&old->base);
2451 } else if (obj->last_fenced_seqno == 0)
2452 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002453
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002455 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2456 obj->fence_reg = reg - dev_priv->fence_regs;
2457 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002458
Chris Wilsond9e86c02010-11-10 16:40:20 +00002459 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002460 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002461 obj->last_fenced_seqno = reg->setup_seqno;
2462
2463update:
2464 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002465 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002466 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002467 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002468 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002469 break;
2470 case 5:
2471 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002472 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002473 break;
2474 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002475 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002476 break;
2477 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002478 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002479 break;
2480 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002481
Daniel Vetterc6642782010-11-12 13:46:18 +00002482 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002483}
2484
2485/**
2486 * i915_gem_clear_fence_reg - clear out fence register info
2487 * @obj: object to clear
2488 *
2489 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002490 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002491 */
2492static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002493i915_gem_clear_fence_reg(struct drm_device *dev,
2494 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002495{
Jesse Barnes79e53942008-11-07 14:24:08 -08002496 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002497 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002498
Chris Wilsone259bef2010-09-17 00:32:02 +01002499 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002500 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002501 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002502 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002503 break;
2504 case 5:
2505 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002506 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002507 break;
2508 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002509 if (fence_reg >= 8)
2510 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002511 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002512 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002513 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002514
2515 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002516 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002517 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002518
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002519 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002520 reg->obj = NULL;
2521 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002522 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002523}
2524
2525/**
Eric Anholt673a3942008-07-30 12:06:12 -07002526 * Finds free space in the GTT aperture and binds the object there.
2527 */
2528static int
Chris Wilson05394f32010-11-08 19:18:58 +00002529i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002530 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002531 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002532{
Chris Wilson05394f32010-11-08 19:18:58 +00002533 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002534 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002535 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002536 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002537 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002538 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002539 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002540
Chris Wilson05394f32010-11-08 19:18:58 +00002541 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002542 DRM_ERROR("Attempting to bind a purgeable object\n");
2543 return -EINVAL;
2544 }
2545
Chris Wilsone28f8712011-07-18 13:11:49 -07002546 fence_size = i915_gem_get_gtt_size(dev,
2547 obj->base.size,
2548 obj->tiling_mode);
2549 fence_alignment = i915_gem_get_gtt_alignment(dev,
2550 obj->base.size,
2551 obj->tiling_mode);
2552 unfenced_alignment =
2553 i915_gem_get_unfenced_gtt_alignment(dev,
2554 obj->base.size,
2555 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002556
Eric Anholt673a3942008-07-30 12:06:12 -07002557 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002558 alignment = map_and_fenceable ? fence_alignment :
2559 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002560 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002561 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2562 return -EINVAL;
2563 }
2564
Chris Wilson05394f32010-11-08 19:18:58 +00002565 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002566
Chris Wilson654fc602010-05-27 13:18:21 +01002567 /* If the object is bigger than the entire aperture, reject it early
2568 * before evicting everything in a vain attempt to find space.
2569 */
Chris Wilson05394f32010-11-08 19:18:58 +00002570 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002571 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002572 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2573 return -E2BIG;
2574 }
2575
Eric Anholt673a3942008-07-30 12:06:12 -07002576 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002577 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002578 free_space =
2579 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002580 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002581 dev_priv->mm.gtt_mappable_end,
2582 0);
2583 else
2584 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002585 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002586
2587 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002588 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002589 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002590 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002591 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002592 dev_priv->mm.gtt_mappable_end,
2593 0);
2594 else
Chris Wilson05394f32010-11-08 19:18:58 +00002595 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002596 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002597 }
Chris Wilson05394f32010-11-08 19:18:58 +00002598 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002599 /* If the gtt is empty and we're still having trouble
2600 * fitting our object in, we're out of memory.
2601 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002602 ret = i915_gem_evict_something(dev, size, alignment,
2603 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002604 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002605 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002606
Eric Anholt673a3942008-07-30 12:06:12 -07002607 goto search_free;
2608 }
2609
Chris Wilsone5281cc2010-10-28 13:45:36 +01002610 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002611 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002612 drm_mm_put_block(obj->gtt_space);
2613 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002614
2615 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002616 /* first try to reclaim some memory by clearing the GTT */
2617 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002618 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002619 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002620 if (gfpmask) {
2621 gfpmask = 0;
2622 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002623 }
2624
Chris Wilson809b6332011-01-10 17:33:15 +00002625 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002626 }
2627
2628 goto search_free;
2629 }
2630
Eric Anholt673a3942008-07-30 12:06:12 -07002631 return ret;
2632 }
2633
Daniel Vetter74163902012-02-15 23:50:21 +01002634 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002635 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002636 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002637 drm_mm_put_block(obj->gtt_space);
2638 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002639
Chris Wilson809b6332011-01-10 17:33:15 +00002640 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002641 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002642
2643 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002644 }
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002645
2646 if (!dev_priv->mm.aliasing_ppgtt)
2647 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002648
Chris Wilson6299f992010-11-24 12:23:44 +00002649 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002650 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002651
Eric Anholt673a3942008-07-30 12:06:12 -07002652 /* Assert that the object is not currently in any GPU domain. As it
2653 * wasn't in the GTT, there shouldn't be any way it could have been in
2654 * a GPU cache
2655 */
Chris Wilson05394f32010-11-08 19:18:58 +00002656 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2657 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002658
Chris Wilson6299f992010-11-24 12:23:44 +00002659 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002660
Daniel Vetter75e9e912010-11-04 17:11:09 +01002661 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002662 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002663 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002664
Daniel Vetter75e9e912010-11-04 17:11:09 +01002665 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002666 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002667
Chris Wilson05394f32010-11-08 19:18:58 +00002668 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002669
Chris Wilsondb53a302011-02-03 11:57:46 +00002670 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002671 return 0;
2672}
2673
2674void
Chris Wilson05394f32010-11-08 19:18:58 +00002675i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002676{
Eric Anholt673a3942008-07-30 12:06:12 -07002677 /* If we don't have a page list set up, then we're not pinned
2678 * to GPU, and we can ignore the cache flush because it'll happen
2679 * again at bind time.
2680 */
Chris Wilson05394f32010-11-08 19:18:58 +00002681 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002682 return;
2683
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002684 /* If the GPU is snooping the contents of the CPU cache,
2685 * we do not need to manually clear the CPU cache lines. However,
2686 * the caches are only snooped when the render cache is
2687 * flushed/invalidated. As we always have to emit invalidations
2688 * and flushes when moving into and out of the RENDER domain, correct
2689 * snooping behaviour occurs naturally as the result of our domain
2690 * tracking.
2691 */
2692 if (obj->cache_level != I915_CACHE_NONE)
2693 return;
2694
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002695 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002696
Chris Wilson05394f32010-11-08 19:18:58 +00002697 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002698}
2699
Eric Anholte47c68e2008-11-14 13:35:19 -08002700/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002701static int
Chris Wilson3619df02010-11-28 15:37:17 +00002702i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002703{
Chris Wilson05394f32010-11-08 19:18:58 +00002704 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002705 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002706
2707 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002708 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002709}
2710
2711/** Flushes the GTT write domain for the object if it's dirty. */
2712static void
Chris Wilson05394f32010-11-08 19:18:58 +00002713i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002714{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002715 uint32_t old_write_domain;
2716
Chris Wilson05394f32010-11-08 19:18:58 +00002717 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002718 return;
2719
Chris Wilson63256ec2011-01-04 18:42:07 +00002720 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002721 * to it immediately go to main memory as far as we know, so there's
2722 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002723 *
2724 * However, we do have to enforce the order so that all writes through
2725 * the GTT land before any writes to the device, such as updates to
2726 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002727 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002728 wmb();
2729
Chris Wilson05394f32010-11-08 19:18:58 +00002730 old_write_domain = obj->base.write_domain;
2731 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002732
2733 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002734 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002735 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002736}
2737
2738/** Flushes the CPU write domain for the object if it's dirty. */
2739static void
Chris Wilson05394f32010-11-08 19:18:58 +00002740i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002741{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002742 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002743
Chris Wilson05394f32010-11-08 19:18:58 +00002744 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002745 return;
2746
2747 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002748 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002749 old_write_domain = obj->base.write_domain;
2750 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002751
2752 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002753 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002754 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002755}
2756
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002757/**
2758 * Moves a single object to the GTT read, and possibly write domain.
2759 *
2760 * This function returns when the move is complete, including waiting on
2761 * flushes to occur.
2762 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002763int
Chris Wilson20217462010-11-23 15:26:33 +00002764i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002765{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002766 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002767 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002768
Eric Anholt02354392008-11-26 13:58:13 -08002769 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002770 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002771 return -EINVAL;
2772
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002773 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2774 return 0;
2775
Chris Wilson88241782011-01-07 17:09:48 +00002776 ret = i915_gem_object_flush_gpu_write_domain(obj);
2777 if (ret)
2778 return ret;
2779
Chris Wilson87ca9c82010-12-02 09:42:56 +00002780 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002781 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002782 if (ret)
2783 return ret;
2784 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002785
Chris Wilson72133422010-09-13 23:56:38 +01002786 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002787
Chris Wilson05394f32010-11-08 19:18:58 +00002788 old_write_domain = obj->base.write_domain;
2789 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002790
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002791 /* It should now be out of any other write domains, and we can update
2792 * the domain values for our changes.
2793 */
Chris Wilson05394f32010-11-08 19:18:58 +00002794 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2795 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002796 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002797 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2798 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2799 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002800 }
2801
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002802 trace_i915_gem_object_change_domain(obj,
2803 old_read_domains,
2804 old_write_domain);
2805
Eric Anholte47c68e2008-11-14 13:35:19 -08002806 return 0;
2807}
2808
Chris Wilsone4ffd172011-04-04 09:44:39 +01002809int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2810 enum i915_cache_level cache_level)
2811{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002812 struct drm_device *dev = obj->base.dev;
2813 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002814 int ret;
2815
2816 if (obj->cache_level == cache_level)
2817 return 0;
2818
2819 if (obj->pin_count) {
2820 DRM_DEBUG("can not change the cache level of pinned objects\n");
2821 return -EBUSY;
2822 }
2823
2824 if (obj->gtt_space) {
2825 ret = i915_gem_object_finish_gpu(obj);
2826 if (ret)
2827 return ret;
2828
2829 i915_gem_object_finish_gtt(obj);
2830
2831 /* Before SandyBridge, you could not use tiling or fence
2832 * registers with snooped memory, so relinquish any fences
2833 * currently pointing to our region in the aperture.
2834 */
2835 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2836 ret = i915_gem_object_put_fence(obj);
2837 if (ret)
2838 return ret;
2839 }
2840
Daniel Vetter74898d72012-02-15 23:50:22 +01002841 if (obj->has_global_gtt_mapping)
2842 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002843 if (obj->has_aliasing_ppgtt_mapping)
2844 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2845 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002846 }
2847
2848 if (cache_level == I915_CACHE_NONE) {
2849 u32 old_read_domains, old_write_domain;
2850
2851 /* If we're coming from LLC cached, then we haven't
2852 * actually been tracking whether the data is in the
2853 * CPU cache or not, since we only allow one bit set
2854 * in obj->write_domain and have been skipping the clflushes.
2855 * Just set it to the CPU cache for now.
2856 */
2857 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2858 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2859
2860 old_read_domains = obj->base.read_domains;
2861 old_write_domain = obj->base.write_domain;
2862
2863 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2864 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2865
2866 trace_i915_gem_object_change_domain(obj,
2867 old_read_domains,
2868 old_write_domain);
2869 }
2870
2871 obj->cache_level = cache_level;
2872 return 0;
2873}
2874
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002875/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002876 * Prepare buffer for display plane (scanout, cursors, etc).
2877 * Can be called from an uninterruptible phase (modesetting) and allows
2878 * any flushes to be pipelined (for pageflips).
2879 *
2880 * For the display plane, we want to be in the GTT but out of any write
2881 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
2882 * ability to pipeline the waits, pinning and any additional subtleties
2883 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002884 */
2885int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002886i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2887 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002888 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002889{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002890 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002891 int ret;
2892
Chris Wilson88241782011-01-07 17:09:48 +00002893 ret = i915_gem_object_flush_gpu_write_domain(obj);
2894 if (ret)
2895 return ret;
2896
Chris Wilson0be73282010-12-06 14:36:27 +00002897 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002898 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07002899 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002900 return ret;
2901 }
2902
Eric Anholta7ef0642011-03-29 16:59:54 -07002903 /* The display engine is not coherent with the LLC cache on gen6. As
2904 * a result, we make sure that the pinning that is about to occur is
2905 * done with uncached PTEs. This is lowest common denominator for all
2906 * chipsets.
2907 *
2908 * However for gen6+, we could do better by using the GFDT bit instead
2909 * of uncaching, which would allow us to flush all the LLC-cached data
2910 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2911 */
2912 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2913 if (ret)
2914 return ret;
2915
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002916 /* As the user may map the buffer once pinned in the display plane
2917 * (e.g. libkms for the bootup splash), we have to ensure that we
2918 * always use map_and_fenceable for all scanout buffers.
2919 */
2920 ret = i915_gem_object_pin(obj, alignment, true);
2921 if (ret)
2922 return ret;
2923
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002924 i915_gem_object_flush_cpu_write_domain(obj);
2925
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002926 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002927 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002928
2929 /* It should now be out of any other write domains, and we can update
2930 * the domain values for our changes.
2931 */
2932 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002933 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002934
2935 trace_i915_gem_object_change_domain(obj,
2936 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002937 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002938
2939 return 0;
2940}
2941
Chris Wilson85345512010-11-13 09:49:11 +00002942int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002943i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002944{
Chris Wilson88241782011-01-07 17:09:48 +00002945 int ret;
2946
Chris Wilsona8198ee2011-04-13 22:04:09 +01002947 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002948 return 0;
2949
Chris Wilson88241782011-01-07 17:09:48 +00002950 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002951 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002952 if (ret)
2953 return ret;
2954 }
Chris Wilson85345512010-11-13 09:49:11 +00002955
Chris Wilsonc501ae72011-12-14 13:57:23 +01002956 ret = i915_gem_object_wait_rendering(obj);
2957 if (ret)
2958 return ret;
2959
Chris Wilsona8198ee2011-04-13 22:04:09 +01002960 /* Ensure that we invalidate the GPU's caches and TLBs. */
2961 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002962 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002963}
2964
Eric Anholte47c68e2008-11-14 13:35:19 -08002965/**
2966 * Moves a single object to the CPU read, and possibly write domain.
2967 *
2968 * This function returns when the move is complete, including waiting on
2969 * flushes to occur.
2970 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002971int
Chris Wilson919926a2010-11-12 13:42:53 +00002972i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002973{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002974 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002975 int ret;
2976
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002977 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2978 return 0;
2979
Chris Wilson88241782011-01-07 17:09:48 +00002980 ret = i915_gem_object_flush_gpu_write_domain(obj);
2981 if (ret)
2982 return ret;
2983
Chris Wilsonce453d82011-02-21 14:43:56 +00002984 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01002985 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08002986 return ret;
2987
2988 i915_gem_object_flush_gtt_write_domain(obj);
2989
Chris Wilson05394f32010-11-08 19:18:58 +00002990 old_write_domain = obj->base.write_domain;
2991 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002992
Eric Anholte47c68e2008-11-14 13:35:19 -08002993 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00002994 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002995 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002996
Chris Wilson05394f32010-11-08 19:18:58 +00002997 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002998 }
2999
3000 /* It should now be out of any other write domains, and we can update
3001 * the domain values for our changes.
3002 */
Chris Wilson05394f32010-11-08 19:18:58 +00003003 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003004
3005 /* If we're writing through the CPU, then the GPU read domains will
3006 * need to be invalidated at next use.
3007 */
3008 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003009 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3010 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003011 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003012
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003013 trace_i915_gem_object_change_domain(obj,
3014 old_read_domains,
3015 old_write_domain);
3016
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003017 return 0;
3018}
3019
Eric Anholt673a3942008-07-30 12:06:12 -07003020/* Throttle our rendering by waiting until the ring has completed our requests
3021 * emitted over 20 msec ago.
3022 *
Eric Anholtb9624422009-06-03 07:27:35 +00003023 * Note that if we were to use the current jiffies each time around the loop,
3024 * we wouldn't escape the function with any frames outstanding if the time to
3025 * render a frame was over 20ms.
3026 *
Eric Anholt673a3942008-07-30 12:06:12 -07003027 * This should get us reasonable parallelism between CPU and GPU but also
3028 * relatively low latency when blocking on a particular request to finish.
3029 */
3030static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003031i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003032{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003033 struct drm_i915_private *dev_priv = dev->dev_private;
3034 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003035 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003036 struct drm_i915_gem_request *request;
3037 struct intel_ring_buffer *ring = NULL;
3038 u32 seqno = 0;
3039 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003040
Chris Wilsone110e8d2011-01-26 15:39:14 +00003041 if (atomic_read(&dev_priv->mm.wedged))
3042 return -EIO;
3043
Chris Wilson1c255952010-09-26 11:03:27 +01003044 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003045 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003046 if (time_after_eq(request->emitted_jiffies, recent_enough))
3047 break;
3048
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003049 ring = request->ring;
3050 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003051 }
Chris Wilson1c255952010-09-26 11:03:27 +01003052 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003053
3054 if (seqno == 0)
3055 return 0;
3056
3057 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003058 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003059 /* And wait for the seqno passing without holding any locks and
3060 * causing extra latency for others. This is safe as the irq
3061 * generation is designed to be run atomically and so is
3062 * lockless.
3063 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003064 if (ring->irq_get(ring)) {
3065 ret = wait_event_interruptible(ring->irq_queue,
3066 i915_seqno_passed(ring->get_seqno(ring), seqno)
3067 || atomic_read(&dev_priv->mm.wedged));
3068 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003069
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003070 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3071 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003072 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3073 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003074 atomic_read(&dev_priv->mm.wedged), 3000)) {
3075 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003076 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003077 }
3078
3079 if (ret == 0)
3080 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003081
Eric Anholt673a3942008-07-30 12:06:12 -07003082 return ret;
3083}
3084
Eric Anholt673a3942008-07-30 12:06:12 -07003085int
Chris Wilson05394f32010-11-08 19:18:58 +00003086i915_gem_object_pin(struct drm_i915_gem_object *obj,
3087 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003088 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003089{
Chris Wilson05394f32010-11-08 19:18:58 +00003090 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003091 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003092 int ret;
3093
Chris Wilson05394f32010-11-08 19:18:58 +00003094 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003095 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003096
Chris Wilson05394f32010-11-08 19:18:58 +00003097 if (obj->gtt_space != NULL) {
3098 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3099 (map_and_fenceable && !obj->map_and_fenceable)) {
3100 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003101 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003102 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3103 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003104 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003105 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003106 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003107 ret = i915_gem_object_unbind(obj);
3108 if (ret)
3109 return ret;
3110 }
3111 }
3112
Chris Wilson05394f32010-11-08 19:18:58 +00003113 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003114 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003115 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003116 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003117 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003118 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003119
Daniel Vetter74898d72012-02-15 23:50:22 +01003120 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3121 i915_gem_gtt_bind_object(obj, obj->cache_level);
3122
Chris Wilson05394f32010-11-08 19:18:58 +00003123 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003124 if (!obj->active)
3125 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003126 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003127 }
Chris Wilson6299f992010-11-24 12:23:44 +00003128 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003129
Chris Wilson23bc5982010-09-29 16:10:57 +01003130 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003131 return 0;
3132}
3133
3134void
Chris Wilson05394f32010-11-08 19:18:58 +00003135i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003136{
Chris Wilson05394f32010-11-08 19:18:58 +00003137 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003138 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003139
Chris Wilson23bc5982010-09-29 16:10:57 +01003140 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003141 BUG_ON(obj->pin_count == 0);
3142 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003143
Chris Wilson05394f32010-11-08 19:18:58 +00003144 if (--obj->pin_count == 0) {
3145 if (!obj->active)
3146 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003147 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003148 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003149 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003150 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003151}
3152
3153int
3154i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003155 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003156{
3157 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003158 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003159 int ret;
3160
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003161 ret = i915_mutex_lock_interruptible(dev);
3162 if (ret)
3163 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003164
Chris Wilson05394f32010-11-08 19:18:58 +00003165 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003166 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003167 ret = -ENOENT;
3168 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003169 }
Eric Anholt673a3942008-07-30 12:06:12 -07003170
Chris Wilson05394f32010-11-08 19:18:58 +00003171 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003172 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003173 ret = -EINVAL;
3174 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003175 }
3176
Chris Wilson05394f32010-11-08 19:18:58 +00003177 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003178 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3179 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003180 ret = -EINVAL;
3181 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003182 }
3183
Chris Wilson05394f32010-11-08 19:18:58 +00003184 obj->user_pin_count++;
3185 obj->pin_filp = file;
3186 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003187 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003188 if (ret)
3189 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003190 }
3191
3192 /* XXX - flush the CPU caches for pinned objects
3193 * as the X server doesn't manage domains yet
3194 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003195 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003196 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003197out:
Chris Wilson05394f32010-11-08 19:18:58 +00003198 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003199unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003200 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003201 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003202}
3203
3204int
3205i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003206 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003207{
3208 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003209 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003210 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003211
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003212 ret = i915_mutex_lock_interruptible(dev);
3213 if (ret)
3214 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003215
Chris Wilson05394f32010-11-08 19:18:58 +00003216 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003217 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003218 ret = -ENOENT;
3219 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003220 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003221
Chris Wilson05394f32010-11-08 19:18:58 +00003222 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003223 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3224 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003225 ret = -EINVAL;
3226 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003227 }
Chris Wilson05394f32010-11-08 19:18:58 +00003228 obj->user_pin_count--;
3229 if (obj->user_pin_count == 0) {
3230 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003231 i915_gem_object_unpin(obj);
3232 }
Eric Anholt673a3942008-07-30 12:06:12 -07003233
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003234out:
Chris Wilson05394f32010-11-08 19:18:58 +00003235 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003236unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003237 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003238 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003239}
3240
3241int
3242i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003243 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003244{
3245 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003246 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003247 int ret;
3248
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003249 ret = i915_mutex_lock_interruptible(dev);
3250 if (ret)
3251 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003252
Chris Wilson05394f32010-11-08 19:18:58 +00003253 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003254 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003255 ret = -ENOENT;
3256 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003257 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003258
Chris Wilson0be555b2010-08-04 15:36:30 +01003259 /* Count all active objects as busy, even if they are currently not used
3260 * by the gpu. Users of this interface expect objects to eventually
3261 * become non-busy without any further actions, therefore emit any
3262 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003263 */
Chris Wilson05394f32010-11-08 19:18:58 +00003264 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003265 if (args->busy) {
3266 /* Unconditionally flush objects, even when the gpu still uses this
3267 * object. Userspace calling this function indicates that it wants to
3268 * use this buffer rather sooner than later, so issuing the required
3269 * flush earlier is beneficial.
3270 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003271 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003272 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003273 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003274 } else if (obj->ring->outstanding_lazy_request ==
3275 obj->last_rendering_seqno) {
3276 struct drm_i915_gem_request *request;
3277
Chris Wilson7a194872010-12-07 10:38:40 +00003278 /* This ring is not being cleared by active usage,
3279 * so emit a request to do so.
3280 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003281 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003282 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003283 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003284 if (ret)
3285 kfree(request);
3286 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003287 ret = -ENOMEM;
3288 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003289
3290 /* Update the active list for the hardware's current position.
3291 * Otherwise this only updates on a delayed timer or when irqs
3292 * are actually unmasked, and our working set ends up being
3293 * larger than required.
3294 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003295 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003296
Chris Wilson05394f32010-11-08 19:18:58 +00003297 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003298 }
Eric Anholt673a3942008-07-30 12:06:12 -07003299
Chris Wilson05394f32010-11-08 19:18:58 +00003300 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003301unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003302 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003303 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003304}
3305
3306int
3307i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3308 struct drm_file *file_priv)
3309{
Akshay Joshi0206e352011-08-16 15:34:10 -04003310 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003311}
3312
Chris Wilson3ef94da2009-09-14 16:50:29 +01003313int
3314i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3315 struct drm_file *file_priv)
3316{
3317 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003318 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003319 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003320
3321 switch (args->madv) {
3322 case I915_MADV_DONTNEED:
3323 case I915_MADV_WILLNEED:
3324 break;
3325 default:
3326 return -EINVAL;
3327 }
3328
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003329 ret = i915_mutex_lock_interruptible(dev);
3330 if (ret)
3331 return ret;
3332
Chris Wilson05394f32010-11-08 19:18:58 +00003333 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003334 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003335 ret = -ENOENT;
3336 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003337 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003338
Chris Wilson05394f32010-11-08 19:18:58 +00003339 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003340 ret = -EINVAL;
3341 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003342 }
3343
Chris Wilson05394f32010-11-08 19:18:58 +00003344 if (obj->madv != __I915_MADV_PURGED)
3345 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003346
Chris Wilson2d7ef392009-09-20 23:13:10 +01003347 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003348 if (i915_gem_object_is_purgeable(obj) &&
3349 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003350 i915_gem_object_truncate(obj);
3351
Chris Wilson05394f32010-11-08 19:18:58 +00003352 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003353
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003354out:
Chris Wilson05394f32010-11-08 19:18:58 +00003355 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003356unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003357 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003358 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003359}
3360
Chris Wilson05394f32010-11-08 19:18:58 +00003361struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3362 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003363{
Chris Wilson73aa8082010-09-30 11:46:12 +01003364 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003365 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003366 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003367
3368 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3369 if (obj == NULL)
3370 return NULL;
3371
3372 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3373 kfree(obj);
3374 return NULL;
3375 }
3376
Hugh Dickins5949eac2011-06-27 16:18:18 -07003377 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3378 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3379
Chris Wilson73aa8082010-09-30 11:46:12 +01003380 i915_gem_info_add_obj(dev_priv, size);
3381
Daniel Vetterc397b902010-04-09 19:05:07 +00003382 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3383 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3384
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003385 if (HAS_LLC(dev)) {
3386 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003387 * cache) for about a 10% performance improvement
3388 * compared to uncached. Graphics requests other than
3389 * display scanout are coherent with the CPU in
3390 * accessing this cache. This means in this mode we
3391 * don't need to clflush on the CPU side, and on the
3392 * GPU side we only need to flush internal caches to
3393 * get data visible to the CPU.
3394 *
3395 * However, we maintain the display planes as UC, and so
3396 * need to rebind when first used as such.
3397 */
3398 obj->cache_level = I915_CACHE_LLC;
3399 } else
3400 obj->cache_level = I915_CACHE_NONE;
3401
Daniel Vetter62b8b212010-04-09 19:05:08 +00003402 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003403 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003404 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003405 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003406 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003407 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003408 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003409 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003410 /* Avoid an unnecessary call to unbind on the first bind. */
3411 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003412
Chris Wilson05394f32010-11-08 19:18:58 +00003413 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003414}
3415
Eric Anholt673a3942008-07-30 12:06:12 -07003416int i915_gem_init_object(struct drm_gem_object *obj)
3417{
Daniel Vetterc397b902010-04-09 19:05:07 +00003418 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003419
Eric Anholt673a3942008-07-30 12:06:12 -07003420 return 0;
3421}
3422
Chris Wilson05394f32010-11-08 19:18:58 +00003423static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003424{
Chris Wilson05394f32010-11-08 19:18:58 +00003425 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003426 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003427 int ret;
3428
3429 ret = i915_gem_object_unbind(obj);
3430 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003431 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003432 &dev_priv->mm.deferred_free_list);
3433 return;
3434 }
3435
Chris Wilson26e12f82011-03-20 11:20:19 +00003436 trace_i915_gem_object_destroy(obj);
3437
Chris Wilson05394f32010-11-08 19:18:58 +00003438 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003439 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003440
Chris Wilson05394f32010-11-08 19:18:58 +00003441 drm_gem_object_release(&obj->base);
3442 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003443
Chris Wilson05394f32010-11-08 19:18:58 +00003444 kfree(obj->bit_17);
3445 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003446}
3447
Chris Wilson05394f32010-11-08 19:18:58 +00003448void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003449{
Chris Wilson05394f32010-11-08 19:18:58 +00003450 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3451 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003452
Chris Wilson05394f32010-11-08 19:18:58 +00003453 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003454 i915_gem_object_unpin(obj);
3455
Chris Wilson05394f32010-11-08 19:18:58 +00003456 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003457 i915_gem_detach_phys_object(dev, obj);
3458
Chris Wilsonbe726152010-07-23 23:18:50 +01003459 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003460}
3461
Jesse Barnes5669fca2009-02-17 15:13:31 -08003462int
Eric Anholt673a3942008-07-30 12:06:12 -07003463i915_gem_idle(struct drm_device *dev)
3464{
3465 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003466 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003467
Keith Packard6dbe2772008-10-14 21:41:13 -07003468 mutex_lock(&dev->struct_mutex);
3469
Chris Wilson87acb0a2010-10-19 10:13:00 +01003470 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003471 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003472 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003473 }
Eric Anholt673a3942008-07-30 12:06:12 -07003474
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003475 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003476 if (ret) {
3477 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003478 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003479 }
Eric Anholt673a3942008-07-30 12:06:12 -07003480
Chris Wilson29105cc2010-01-07 10:39:13 +00003481 /* Under UMS, be paranoid and evict. */
3482 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003483 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003484 if (ret) {
3485 mutex_unlock(&dev->struct_mutex);
3486 return ret;
3487 }
3488 }
3489
Chris Wilson312817a2010-11-22 11:50:11 +00003490 i915_gem_reset_fences(dev);
3491
Chris Wilson29105cc2010-01-07 10:39:13 +00003492 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3493 * We need to replace this with a semaphore, or something.
3494 * And not confound mm.suspended!
3495 */
3496 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003497 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003498
3499 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003500 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003501
Keith Packard6dbe2772008-10-14 21:41:13 -07003502 mutex_unlock(&dev->struct_mutex);
3503
Chris Wilson29105cc2010-01-07 10:39:13 +00003504 /* Cancel the retire work handler, which should be idle now. */
3505 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3506
Eric Anholt673a3942008-07-30 12:06:12 -07003507 return 0;
3508}
3509
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003510void i915_gem_init_swizzling(struct drm_device *dev)
3511{
3512 drm_i915_private_t *dev_priv = dev->dev_private;
3513
Daniel Vetter11782b02012-01-31 16:47:55 +01003514 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003515 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3516 return;
3517
3518 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3519 DISP_TILE_SURFACE_SWIZZLING);
3520
Daniel Vetter11782b02012-01-31 16:47:55 +01003521 if (IS_GEN5(dev))
3522 return;
3523
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003524 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3525 if (IS_GEN6(dev))
3526 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3527 else
3528 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3529}
Daniel Vettere21af882012-02-09 20:53:27 +01003530
3531void i915_gem_init_ppgtt(struct drm_device *dev)
3532{
3533 drm_i915_private_t *dev_priv = dev->dev_private;
3534 uint32_t pd_offset;
3535 struct intel_ring_buffer *ring;
3536 int i;
3537
3538 if (!dev_priv->mm.aliasing_ppgtt)
3539 return;
3540
3541 pd_offset = dev_priv->mm.aliasing_ppgtt->pd_offset;
3542 pd_offset /= 64; /* in cachelines, */
3543 pd_offset <<= 16;
3544
3545 if (INTEL_INFO(dev)->gen == 6) {
3546 uint32_t ecochk = I915_READ(GAM_ECOCHK);
3547 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3548 ECOCHK_PPGTT_CACHE64B);
3549 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3550 } else if (INTEL_INFO(dev)->gen >= 7) {
3551 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3552 /* GFX_MODE is per-ring on gen7+ */
3553 }
3554
3555 for (i = 0; i < I915_NUM_RINGS; i++) {
3556 ring = &dev_priv->ring[i];
3557
3558 if (INTEL_INFO(dev)->gen >= 7)
3559 I915_WRITE(RING_MODE_GEN7(ring),
3560 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3561
3562 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3563 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3564 }
3565}
3566
Eric Anholt673a3942008-07-30 12:06:12 -07003567int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003568i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003569{
3570 drm_i915_private_t *dev_priv = dev->dev_private;
3571 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003572
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003573 i915_gem_init_swizzling(dev);
3574
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003575 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003576 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003577 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003578
3579 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003580 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003581 if (ret)
3582 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003583 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003584
Chris Wilson549f7362010-10-19 11:19:32 +01003585 if (HAS_BLT(dev)) {
3586 ret = intel_init_blt_ring_buffer(dev);
3587 if (ret)
3588 goto cleanup_bsd_ring;
3589 }
3590
Chris Wilson6f392d52010-08-07 11:01:22 +01003591 dev_priv->next_seqno = 1;
3592
Daniel Vettere21af882012-02-09 20:53:27 +01003593 i915_gem_init_ppgtt(dev);
3594
Chris Wilson68f95ba2010-05-27 13:18:22 +01003595 return 0;
3596
Chris Wilson549f7362010-10-19 11:19:32 +01003597cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003598 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003599cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003600 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003601 return ret;
3602}
3603
3604void
3605i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3606{
3607 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003608 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003609
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003610 for (i = 0; i < I915_NUM_RINGS; i++)
3611 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003612}
3613
3614int
Eric Anholt673a3942008-07-30 12:06:12 -07003615i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3616 struct drm_file *file_priv)
3617{
3618 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003619 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003620
Jesse Barnes79e53942008-11-07 14:24:08 -08003621 if (drm_core_check_feature(dev, DRIVER_MODESET))
3622 return 0;
3623
Ben Gamariba1234d2009-09-14 17:48:47 -04003624 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003625 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003626 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003627 }
3628
Eric Anholt673a3942008-07-30 12:06:12 -07003629 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003630 dev_priv->mm.suspended = 0;
3631
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003632 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003633 if (ret != 0) {
3634 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003635 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003636 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003637
Chris Wilson69dc4982010-10-19 10:36:51 +01003638 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003639 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3640 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003641 for (i = 0; i < I915_NUM_RINGS; i++) {
3642 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3643 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3644 }
Eric Anholt673a3942008-07-30 12:06:12 -07003645 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003646
Chris Wilson5f353082010-06-07 14:03:03 +01003647 ret = drm_irq_install(dev);
3648 if (ret)
3649 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003650
Eric Anholt673a3942008-07-30 12:06:12 -07003651 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003652
3653cleanup_ringbuffer:
3654 mutex_lock(&dev->struct_mutex);
3655 i915_gem_cleanup_ringbuffer(dev);
3656 dev_priv->mm.suspended = 1;
3657 mutex_unlock(&dev->struct_mutex);
3658
3659 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003660}
3661
3662int
3663i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3664 struct drm_file *file_priv)
3665{
Jesse Barnes79e53942008-11-07 14:24:08 -08003666 if (drm_core_check_feature(dev, DRIVER_MODESET))
3667 return 0;
3668
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003669 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003670 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003671}
3672
3673void
3674i915_gem_lastclose(struct drm_device *dev)
3675{
3676 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003677
Eric Anholte806b492009-01-22 09:56:58 -08003678 if (drm_core_check_feature(dev, DRIVER_MODESET))
3679 return;
3680
Keith Packard6dbe2772008-10-14 21:41:13 -07003681 ret = i915_gem_idle(dev);
3682 if (ret)
3683 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003684}
3685
Chris Wilson64193402010-10-24 12:38:05 +01003686static void
3687init_ring_lists(struct intel_ring_buffer *ring)
3688{
3689 INIT_LIST_HEAD(&ring->active_list);
3690 INIT_LIST_HEAD(&ring->request_list);
3691 INIT_LIST_HEAD(&ring->gpu_write_list);
3692}
3693
Eric Anholt673a3942008-07-30 12:06:12 -07003694void
3695i915_gem_load(struct drm_device *dev)
3696{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003697 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003698 drm_i915_private_t *dev_priv = dev->dev_private;
3699
Chris Wilson69dc4982010-10-19 10:36:51 +01003700 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003701 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3702 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003703 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003704 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003705 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003706 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003707 for (i = 0; i < I915_NUM_RINGS; i++)
3708 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003709 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003710 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003711 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3712 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003713 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003714
Dave Airlie94400122010-07-20 13:15:31 +10003715 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3716 if (IS_GEN3(dev)) {
3717 u32 tmp = I915_READ(MI_ARB_STATE);
3718 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3719 /* arb state is a masked write, so set bit + bit in mask */
3720 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3721 I915_WRITE(MI_ARB_STATE, tmp);
3722 }
3723 }
3724
Chris Wilson72bfa192010-12-19 11:42:05 +00003725 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3726
Jesse Barnesde151cf2008-11-12 10:03:55 -08003727 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003728 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3729 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003730
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003731 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003732 dev_priv->num_fence_regs = 16;
3733 else
3734 dev_priv->num_fence_regs = 8;
3735
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003736 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003737 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3738 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003739 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003740
Eric Anholt673a3942008-07-30 12:06:12 -07003741 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003742 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003743
Chris Wilsonce453d82011-02-21 14:43:56 +00003744 dev_priv->mm.interruptible = true;
3745
Chris Wilson17250b72010-10-28 12:51:39 +01003746 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3747 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3748 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003749}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003750
3751/*
3752 * Create a physically contiguous memory object for this object
3753 * e.g. for cursor + overlay regs
3754 */
Chris Wilson995b6762010-08-20 13:23:26 +01003755static int i915_gem_init_phys_object(struct drm_device *dev,
3756 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003757{
3758 drm_i915_private_t *dev_priv = dev->dev_private;
3759 struct drm_i915_gem_phys_object *phys_obj;
3760 int ret;
3761
3762 if (dev_priv->mm.phys_objs[id - 1] || !size)
3763 return 0;
3764
Eric Anholt9a298b22009-03-24 12:23:04 -07003765 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003766 if (!phys_obj)
3767 return -ENOMEM;
3768
3769 phys_obj->id = id;
3770
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003771 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003772 if (!phys_obj->handle) {
3773 ret = -ENOMEM;
3774 goto kfree_obj;
3775 }
3776#ifdef CONFIG_X86
3777 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3778#endif
3779
3780 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3781
3782 return 0;
3783kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003784 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003785 return ret;
3786}
3787
Chris Wilson995b6762010-08-20 13:23:26 +01003788static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003789{
3790 drm_i915_private_t *dev_priv = dev->dev_private;
3791 struct drm_i915_gem_phys_object *phys_obj;
3792
3793 if (!dev_priv->mm.phys_objs[id - 1])
3794 return;
3795
3796 phys_obj = dev_priv->mm.phys_objs[id - 1];
3797 if (phys_obj->cur_obj) {
3798 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3799 }
3800
3801#ifdef CONFIG_X86
3802 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3803#endif
3804 drm_pci_free(dev, phys_obj->handle);
3805 kfree(phys_obj);
3806 dev_priv->mm.phys_objs[id - 1] = NULL;
3807}
3808
3809void i915_gem_free_all_phys_object(struct drm_device *dev)
3810{
3811 int i;
3812
Dave Airlie260883c2009-01-22 17:58:49 +10003813 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003814 i915_gem_free_phys_object(dev, i);
3815}
3816
3817void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003818 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003819{
Chris Wilson05394f32010-11-08 19:18:58 +00003820 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003821 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003822 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003823 int page_count;
3824
Chris Wilson05394f32010-11-08 19:18:58 +00003825 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003826 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003827 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003828
Chris Wilson05394f32010-11-08 19:18:58 +00003829 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003830 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003831 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003832 if (!IS_ERR(page)) {
3833 char *dst = kmap_atomic(page);
3834 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3835 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003836
Chris Wilsone5281cc2010-10-28 13:45:36 +01003837 drm_clflush_pages(&page, 1);
3838
3839 set_page_dirty(page);
3840 mark_page_accessed(page);
3841 page_cache_release(page);
3842 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003843 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003844 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003845
Chris Wilson05394f32010-11-08 19:18:58 +00003846 obj->phys_obj->cur_obj = NULL;
3847 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003848}
3849
3850int
3851i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003852 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003853 int id,
3854 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003855{
Chris Wilson05394f32010-11-08 19:18:58 +00003856 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003857 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003858 int ret = 0;
3859 int page_count;
3860 int i;
3861
3862 if (id > I915_MAX_PHYS_OBJECT)
3863 return -EINVAL;
3864
Chris Wilson05394f32010-11-08 19:18:58 +00003865 if (obj->phys_obj) {
3866 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003867 return 0;
3868 i915_gem_detach_phys_object(dev, obj);
3869 }
3870
Dave Airlie71acb5e2008-12-30 20:31:46 +10003871 /* create a new object */
3872 if (!dev_priv->mm.phys_objs[id - 1]) {
3873 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003874 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003875 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003876 DRM_ERROR("failed to init phys object %d size: %zu\n",
3877 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003878 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003879 }
3880 }
3881
3882 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003883 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3884 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003885
Chris Wilson05394f32010-11-08 19:18:58 +00003886 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003887
3888 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003889 struct page *page;
3890 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003891
Hugh Dickins5949eac2011-06-27 16:18:18 -07003892 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003893 if (IS_ERR(page))
3894 return PTR_ERR(page);
3895
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003896 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003897 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003898 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003899 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003900
3901 mark_page_accessed(page);
3902 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003903 }
3904
3905 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003906}
3907
3908static int
Chris Wilson05394f32010-11-08 19:18:58 +00003909i915_gem_phys_pwrite(struct drm_device *dev,
3910 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003911 struct drm_i915_gem_pwrite *args,
3912 struct drm_file *file_priv)
3913{
Chris Wilson05394f32010-11-08 19:18:58 +00003914 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003915 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003916
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003917 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3918 unsigned long unwritten;
3919
3920 /* The physical object once assigned is fixed for the lifetime
3921 * of the obj, so we can safely drop the lock and continue
3922 * to access vaddr.
3923 */
3924 mutex_unlock(&dev->struct_mutex);
3925 unwritten = copy_from_user(vaddr, user_data, args->size);
3926 mutex_lock(&dev->struct_mutex);
3927 if (unwritten)
3928 return -EFAULT;
3929 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003930
Daniel Vetter40ce6572010-11-05 18:12:18 +01003931 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003932 return 0;
3933}
Eric Anholtb9624422009-06-03 07:27:35 +00003934
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003935void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003936{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003937 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003938
3939 /* Clean up our request list when the client is going away, so that
3940 * later retire_requests won't dereference our soon-to-be-gone
3941 * file_priv.
3942 */
Chris Wilson1c255952010-09-26 11:03:27 +01003943 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003944 while (!list_empty(&file_priv->mm.request_list)) {
3945 struct drm_i915_gem_request *request;
3946
3947 request = list_first_entry(&file_priv->mm.request_list,
3948 struct drm_i915_gem_request,
3949 client_list);
3950 list_del(&request->client_list);
3951 request->file_priv = NULL;
3952 }
Chris Wilson1c255952010-09-26 11:03:27 +01003953 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003954}
Chris Wilson31169712009-09-14 16:50:28 +01003955
Chris Wilson31169712009-09-14 16:50:28 +01003956static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003957i915_gpu_is_active(struct drm_device *dev)
3958{
3959 drm_i915_private_t *dev_priv = dev->dev_private;
3960 int lists_empty;
3961
Chris Wilson1637ef42010-04-20 17:10:35 +01003962 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003963 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003964
3965 return !lists_empty;
3966}
3967
3968static int
Ying Han1495f232011-05-24 17:12:27 -07003969i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01003970{
Chris Wilson17250b72010-10-28 12:51:39 +01003971 struct drm_i915_private *dev_priv =
3972 container_of(shrinker,
3973 struct drm_i915_private,
3974 mm.inactive_shrinker);
3975 struct drm_device *dev = dev_priv->dev;
3976 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07003977 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01003978 int cnt;
3979
3980 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01003981 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01003982
3983 /* "fast-path" to count number of available objects */
3984 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01003985 cnt = 0;
3986 list_for_each_entry(obj,
3987 &dev_priv->mm.inactive_list,
3988 mm_list)
3989 cnt++;
3990 mutex_unlock(&dev->struct_mutex);
3991 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01003992 }
3993
Chris Wilson1637ef42010-04-20 17:10:35 +01003994rescan:
Chris Wilson31169712009-09-14 16:50:28 +01003995 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01003996 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01003997
Chris Wilson17250b72010-10-28 12:51:39 +01003998 list_for_each_entry_safe(obj, next,
3999 &dev_priv->mm.inactive_list,
4000 mm_list) {
4001 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004002 if (i915_gem_object_unbind(obj) == 0 &&
4003 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004004 break;
Chris Wilson31169712009-09-14 16:50:28 +01004005 }
Chris Wilson31169712009-09-14 16:50:28 +01004006 }
4007
4008 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004009 cnt = 0;
4010 list_for_each_entry_safe(obj, next,
4011 &dev_priv->mm.inactive_list,
4012 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004013 if (nr_to_scan &&
4014 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004015 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004016 else
Chris Wilson17250b72010-10-28 12:51:39 +01004017 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004018 }
4019
Chris Wilson17250b72010-10-28 12:51:39 +01004020 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004021 /*
4022 * We are desperate for pages, so as a last resort, wait
4023 * for the GPU to finish and discard whatever we can.
4024 * This has a dramatic impact to reduce the number of
4025 * OOM-killer events whilst running the GPU aggressively.
4026 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004027 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004028 goto rescan;
4029 }
Chris Wilson17250b72010-10-28 12:51:39 +01004030 mutex_unlock(&dev->struct_mutex);
4031 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004032}