blob: 12dae003c01162e721448db7e8c889757565e790 [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"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070035#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include <linux/pci.h>
Zhenyu Wangf8f235e2010-08-27 11:08:57 +080037#include <linux/intel-gtt.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson0f8c6d72010-11-01 12:38:44 +000039struct change_domains {
40 uint32_t invalidate_domains;
41 uint32_t flush_domains;
42 uint32_t flush_rings;
43};
44
Chris Wilsona00b10c2010-09-24 21:15:47 +010045static uint32_t i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj_priv);
46static uint32_t i915_gem_get_gtt_size(struct drm_i915_gem_object *obj_priv);
Daniel Vetterba3d8d72010-02-11 22:37:04 +010047
48static int i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj,
49 bool pipelined);
Eric Anholte47c68e2008-11-14 13:35:19 -080050static void i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj);
51static void i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj);
Eric Anholte47c68e2008-11-14 13:35:19 -080052static int i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj,
53 int write);
54static int i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
55 uint64_t offset,
56 uint64_t size);
57static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj);
Chris Wilson2cf34d72010-09-14 13:03:28 +010058static int i915_gem_object_wait_rendering(struct drm_gem_object *obj,
59 bool interruptible);
Jesse Barnesde151cf2008-11-12 10:03:55 -080060static int i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
Chris Wilsona00b10c2010-09-24 21:15:47 +010061 unsigned alignment,
62 bool mappable,
63 bool need_fence);
Jesse Barnesde151cf2008-11-12 10:03:55 -080064static void i915_gem_clear_fence_reg(struct drm_gem_object *obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +100065static int i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
66 struct drm_i915_gem_pwrite *args,
67 struct drm_file *file_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +010068static void i915_gem_free_object_tail(struct drm_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070069
Chris Wilson17250b72010-10-28 12:51:39 +010070static int i915_gem_inactive_shrink(struct shrinker *shrinker,
71 int nr_to_scan,
72 gfp_t gfp_mask);
73
Chris Wilson31169712009-09-14 16:50:28 +010074
Chris Wilson73aa8082010-09-30 11:46:12 +010075/* some bookkeeping */
76static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
77 size_t size)
78{
79 dev_priv->mm.object_count++;
80 dev_priv->mm.object_memory += size;
81}
82
83static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
84 size_t size)
85{
86 dev_priv->mm.object_count--;
87 dev_priv->mm.object_memory -= size;
88}
89
90static void i915_gem_info_add_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +010091 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +010092{
93 dev_priv->mm.gtt_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +010094 dev_priv->mm.gtt_memory += obj->gtt_space->size;
95 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +020096 dev_priv->mm.mappable_gtt_used +=
Chris Wilsona00b10c2010-09-24 21:15:47 +010097 min_t(size_t, obj->gtt_space->size,
98 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +020099 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100100}
101
102static void i915_gem_info_remove_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100103 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100104{
105 dev_priv->mm.gtt_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100106 dev_priv->mm.gtt_memory -= obj->gtt_space->size;
107 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200108 dev_priv->mm.mappable_gtt_used -=
Chris Wilsona00b10c2010-09-24 21:15:47 +0100109 min_t(size_t, obj->gtt_space->size,
110 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200111 }
112}
113
114/**
115 * Update the mappable working set counters. Call _only_ when there is a change
116 * in one of (pin|fault)_mappable and update *_mappable _before_ calling.
117 * @mappable: new state the changed mappable flag (either pin_ or fault_).
118 */
119static void
120i915_gem_info_update_mappable(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100121 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200122 bool mappable)
123{
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200124 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100125 if (obj->pin_mappable && obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200126 /* Combined state was already mappable. */
127 return;
128 dev_priv->mm.gtt_mappable_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100129 dev_priv->mm.gtt_mappable_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200130 } else {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100131 if (obj->pin_mappable || obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200132 /* Combined state still mappable. */
133 return;
134 dev_priv->mm.gtt_mappable_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100135 dev_priv->mm.gtt_mappable_memory -= obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200136 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100137}
138
139static void i915_gem_info_add_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100140 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200141 bool mappable)
Chris Wilson73aa8082010-09-30 11:46:12 +0100142{
143 dev_priv->mm.pin_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100144 dev_priv->mm.pin_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200145 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100146 obj->pin_mappable = true;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200147 i915_gem_info_update_mappable(dev_priv, obj, true);
148 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100149}
150
151static void i915_gem_info_remove_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100152 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100153{
154 dev_priv->mm.pin_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100155 dev_priv->mm.pin_memory -= obj->gtt_space->size;
156 if (obj->pin_mappable) {
157 obj->pin_mappable = false;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200158 i915_gem_info_update_mappable(dev_priv, obj, false);
159 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100160}
161
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100162int
163i915_gem_check_is_wedged(struct drm_device *dev)
164{
165 struct drm_i915_private *dev_priv = dev->dev_private;
166 struct completion *x = &dev_priv->error_completion;
167 unsigned long flags;
168 int ret;
169
170 if (!atomic_read(&dev_priv->mm.wedged))
171 return 0;
172
173 ret = wait_for_completion_interruptible(x);
174 if (ret)
175 return ret;
176
177 /* Success, we reset the GPU! */
178 if (!atomic_read(&dev_priv->mm.wedged))
179 return 0;
180
181 /* GPU is hung, bump the completion count to account for
182 * the token we just consumed so that we never hit zero and
183 * end up waiting upon a subsequent completion event that
184 * will never happen.
185 */
186 spin_lock_irqsave(&x->wait.lock, flags);
187 x->done++;
188 spin_unlock_irqrestore(&x->wait.lock, flags);
189 return -EIO;
190}
191
Chris Wilson76c1dec2010-09-25 11:22:51 +0100192static int i915_mutex_lock_interruptible(struct drm_device *dev)
193{
194 struct drm_i915_private *dev_priv = dev->dev_private;
195 int ret;
196
197 ret = i915_gem_check_is_wedged(dev);
198 if (ret)
199 return ret;
200
201 ret = mutex_lock_interruptible(&dev->struct_mutex);
202 if (ret)
203 return ret;
204
205 if (atomic_read(&dev_priv->mm.wedged)) {
206 mutex_unlock(&dev->struct_mutex);
207 return -EAGAIN;
208 }
209
Chris Wilson23bc5982010-09-29 16:10:57 +0100210 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100211 return 0;
212}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100213
Chris Wilson7d1c4802010-08-07 21:45:03 +0100214static inline bool
215i915_gem_object_is_inactive(struct drm_i915_gem_object *obj_priv)
216{
217 return obj_priv->gtt_space &&
218 !obj_priv->active &&
219 obj_priv->pin_count == 0;
220}
221
Chris Wilson73aa8082010-09-30 11:46:12 +0100222int i915_gem_do_init(struct drm_device *dev,
223 unsigned long start,
Daniel Vetter53984632010-09-22 23:44:24 +0200224 unsigned long mappable_end,
Jesse Barnes79e53942008-11-07 14:24:08 -0800225 unsigned long end)
226{
227 drm_i915_private_t *dev_priv = dev->dev_private;
228
229 if (start >= end ||
230 (start & (PAGE_SIZE - 1)) != 0 ||
231 (end & (PAGE_SIZE - 1)) != 0) {
232 return -EINVAL;
233 }
234
235 drm_mm_init(&dev_priv->mm.gtt_space, start,
236 end - start);
237
Chris Wilson73aa8082010-09-30 11:46:12 +0100238 dev_priv->mm.gtt_total = end - start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200239 dev_priv->mm.mappable_gtt_total = min(end, mappable_end) - start;
Daniel Vetter53984632010-09-22 23:44:24 +0200240 dev_priv->mm.gtt_mappable_end = mappable_end;
Jesse Barnes79e53942008-11-07 14:24:08 -0800241
242 return 0;
243}
Keith Packard6dbe2772008-10-14 21:41:13 -0700244
Eric Anholt673a3942008-07-30 12:06:12 -0700245int
246i915_gem_init_ioctl(struct drm_device *dev, void *data,
247 struct drm_file *file_priv)
248{
Eric Anholt673a3942008-07-30 12:06:12 -0700249 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -0800250 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700251
252 mutex_lock(&dev->struct_mutex);
Daniel Vetter53984632010-09-22 23:44:24 +0200253 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700254 mutex_unlock(&dev->struct_mutex);
255
Jesse Barnes79e53942008-11-07 14:24:08 -0800256 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700257}
258
Eric Anholt5a125c32008-10-22 21:40:13 -0700259int
260i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
261 struct drm_file *file_priv)
262{
Chris Wilson73aa8082010-09-30 11:46:12 +0100263 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700264 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -0700265
266 if (!(dev->driver->driver_features & DRIVER_GEM))
267 return -ENODEV;
268
Chris Wilson73aa8082010-09-30 11:46:12 +0100269 mutex_lock(&dev->struct_mutex);
270 args->aper_size = dev_priv->mm.gtt_total;
271 args->aper_available_size = args->aper_size - dev_priv->mm.pin_memory;
272 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700273
274 return 0;
275}
276
Eric Anholt673a3942008-07-30 12:06:12 -0700277
278/**
279 * Creates a new mm object and returns a handle to it.
280 */
281int
282i915_gem_create_ioctl(struct drm_device *dev, void *data,
283 struct drm_file *file_priv)
284{
285 struct drm_i915_gem_create *args = data;
286 struct drm_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300287 int ret;
288 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700289
290 args->size = roundup(args->size, PAGE_SIZE);
291
292 /* Allocate the new object */
Daniel Vetterac52bc52010-04-09 19:05:06 +0000293 obj = i915_gem_alloc_object(dev, args->size);
Eric Anholt673a3942008-07-30 12:06:12 -0700294 if (obj == NULL)
295 return -ENOMEM;
296
297 ret = drm_gem_handle_create(file_priv, obj, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100298 if (ret) {
Chris Wilson202f2fe2010-10-14 13:20:40 +0100299 drm_gem_object_release(obj);
300 i915_gem_info_remove_obj(dev->dev_private, obj->size);
301 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700302 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100303 }
304
Chris Wilson202f2fe2010-10-14 13:20:40 +0100305 /* drop reference from allocate - handle holds it now */
306 drm_gem_object_unreference(obj);
307 trace_i915_gem_object_create(obj);
308
Eric Anholt673a3942008-07-30 12:06:12 -0700309 args->handle = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700310 return 0;
311}
312
Eric Anholt280b7132009-03-12 16:56:27 -0700313static int i915_gem_object_needs_bit17_swizzle(struct drm_gem_object *obj)
314{
315 drm_i915_private_t *dev_priv = obj->dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +0100316 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt280b7132009-03-12 16:56:27 -0700317
318 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
319 obj_priv->tiling_mode != I915_TILING_NONE;
320}
321
Chris Wilson99a03df2010-05-27 14:15:34 +0100322static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700323slow_shmem_copy(struct page *dst_page,
324 int dst_offset,
325 struct page *src_page,
326 int src_offset,
327 int length)
328{
329 char *dst_vaddr, *src_vaddr;
330
Chris Wilson99a03df2010-05-27 14:15:34 +0100331 dst_vaddr = kmap(dst_page);
332 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700333
334 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
335
Chris Wilson99a03df2010-05-27 14:15:34 +0100336 kunmap(src_page);
337 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700338}
339
Chris Wilson99a03df2010-05-27 14:15:34 +0100340static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700341slow_shmem_bit17_copy(struct page *gpu_page,
342 int gpu_offset,
343 struct page *cpu_page,
344 int cpu_offset,
345 int length,
346 int is_read)
347{
348 char *gpu_vaddr, *cpu_vaddr;
349
350 /* Use the unswizzled path if this page isn't affected. */
351 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
352 if (is_read)
353 return slow_shmem_copy(cpu_page, cpu_offset,
354 gpu_page, gpu_offset, length);
355 else
356 return slow_shmem_copy(gpu_page, gpu_offset,
357 cpu_page, cpu_offset, length);
358 }
359
Chris Wilson99a03df2010-05-27 14:15:34 +0100360 gpu_vaddr = kmap(gpu_page);
361 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700362
363 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
364 * XORing with the other bits (A9 for Y, A9 and A10 for X)
365 */
366 while (length > 0) {
367 int cacheline_end = ALIGN(gpu_offset + 1, 64);
368 int this_length = min(cacheline_end - gpu_offset, length);
369 int swizzled_gpu_offset = gpu_offset ^ 64;
370
371 if (is_read) {
372 memcpy(cpu_vaddr + cpu_offset,
373 gpu_vaddr + swizzled_gpu_offset,
374 this_length);
375 } else {
376 memcpy(gpu_vaddr + swizzled_gpu_offset,
377 cpu_vaddr + cpu_offset,
378 this_length);
379 }
380 cpu_offset += this_length;
381 gpu_offset += this_length;
382 length -= this_length;
383 }
384
Chris Wilson99a03df2010-05-27 14:15:34 +0100385 kunmap(cpu_page);
386 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700387}
388
Eric Anholt673a3942008-07-30 12:06:12 -0700389/**
Eric Anholteb014592009-03-10 11:44:52 -0700390 * This is the fast shmem pread path, which attempts to copy_from_user directly
391 * from the backing pages of the object to the user's address space. On a
392 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
393 */
394static int
395i915_gem_shmem_pread_fast(struct drm_device *dev, struct drm_gem_object *obj,
396 struct drm_i915_gem_pread *args,
397 struct drm_file *file_priv)
398{
Daniel Vetter23010e42010-03-08 13:35:02 +0100399 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100400 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700401 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100402 loff_t offset;
Eric Anholteb014592009-03-10 11:44:52 -0700403 char __user *user_data;
404 int page_offset, page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700405
406 user_data = (char __user *) (uintptr_t) args->data_ptr;
407 remain = args->size;
408
Daniel Vetter23010e42010-03-08 13:35:02 +0100409 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700410 offset = args->offset;
411
412 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100413 struct page *page;
414 char *vaddr;
415 int ret;
416
Eric Anholteb014592009-03-10 11:44:52 -0700417 /* Operation in this page
418 *
Eric Anholteb014592009-03-10 11:44:52 -0700419 * page_offset = offset within page
420 * page_length = bytes to copy for this page
421 */
Eric Anholteb014592009-03-10 11:44:52 -0700422 page_offset = offset & (PAGE_SIZE-1);
423 page_length = remain;
424 if ((page_offset + remain) > PAGE_SIZE)
425 page_length = PAGE_SIZE - page_offset;
426
Chris Wilsone5281cc2010-10-28 13:45:36 +0100427 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
428 GFP_HIGHUSER | __GFP_RECLAIMABLE);
429 if (IS_ERR(page))
430 return PTR_ERR(page);
431
432 vaddr = kmap_atomic(page);
433 ret = __copy_to_user_inatomic(user_data,
434 vaddr + page_offset,
435 page_length);
436 kunmap_atomic(vaddr);
437
438 mark_page_accessed(page);
439 page_cache_release(page);
440 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100441 return -EFAULT;
Eric Anholteb014592009-03-10 11:44:52 -0700442
443 remain -= page_length;
444 user_data += page_length;
445 offset += page_length;
446 }
447
Chris Wilson4f27b752010-10-14 15:26:45 +0100448 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700449}
450
451/**
452 * This is the fallback shmem pread path, which allocates temporary storage
453 * in kernel space to copy_to_user into outside of the struct_mutex, so we
454 * can copy out of the object's backing pages while holding the struct mutex
455 * and not take page faults.
456 */
457static int
458i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj,
459 struct drm_i915_gem_pread *args,
460 struct drm_file *file_priv)
461{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100462 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100463 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700464 struct mm_struct *mm = current->mm;
465 struct page **user_pages;
466 ssize_t remain;
467 loff_t offset, pinned_pages, i;
468 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100469 int shmem_page_offset;
470 int data_page_index, data_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700471 int page_length;
472 int ret;
473 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700474 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700475
476 remain = args->size;
477
478 /* Pin the user pages containing the data. We can't fault while
479 * holding the struct mutex, yet we want to hold it while
480 * dereferencing the user data.
481 */
482 first_data_page = data_ptr / PAGE_SIZE;
483 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
484 num_pages = last_data_page - first_data_page + 1;
485
Chris Wilson4f27b752010-10-14 15:26:45 +0100486 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700487 if (user_pages == NULL)
488 return -ENOMEM;
489
Chris Wilson4f27b752010-10-14 15:26:45 +0100490 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700491 down_read(&mm->mmap_sem);
492 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700493 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700494 up_read(&mm->mmap_sem);
Chris Wilson4f27b752010-10-14 15:26:45 +0100495 mutex_lock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700496 if (pinned_pages < num_pages) {
497 ret = -EFAULT;
Chris Wilson4f27b752010-10-14 15:26:45 +0100498 goto out;
Eric Anholteb014592009-03-10 11:44:52 -0700499 }
500
Chris Wilson4f27b752010-10-14 15:26:45 +0100501 ret = i915_gem_object_set_cpu_read_domain_range(obj,
502 args->offset,
Eric Anholteb014592009-03-10 11:44:52 -0700503 args->size);
Chris Wilson4f27b752010-10-14 15:26:45 +0100504 if (ret)
505 goto out;
506
507 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700508
Daniel Vetter23010e42010-03-08 13:35:02 +0100509 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700510 offset = args->offset;
511
512 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100513 struct page *page;
514
Eric Anholteb014592009-03-10 11:44:52 -0700515 /* Operation in this page
516 *
Eric Anholteb014592009-03-10 11:44:52 -0700517 * shmem_page_offset = offset within page in shmem file
518 * data_page_index = page number in get_user_pages return
519 * data_page_offset = offset with data_page_index page.
520 * page_length = bytes to copy for this page
521 */
Eric Anholteb014592009-03-10 11:44:52 -0700522 shmem_page_offset = offset & ~PAGE_MASK;
523 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
524 data_page_offset = data_ptr & ~PAGE_MASK;
525
526 page_length = remain;
527 if ((shmem_page_offset + page_length) > PAGE_SIZE)
528 page_length = PAGE_SIZE - shmem_page_offset;
529 if ((data_page_offset + page_length) > PAGE_SIZE)
530 page_length = PAGE_SIZE - data_page_offset;
531
Chris Wilsone5281cc2010-10-28 13:45:36 +0100532 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
533 GFP_HIGHUSER | __GFP_RECLAIMABLE);
534 if (IS_ERR(page))
535 return PTR_ERR(page);
536
Eric Anholt280b7132009-03-12 16:56:27 -0700537 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100538 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700539 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100540 user_pages[data_page_index],
541 data_page_offset,
542 page_length,
543 1);
544 } else {
545 slow_shmem_copy(user_pages[data_page_index],
546 data_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100547 page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100548 shmem_page_offset,
549 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700550 }
Eric Anholteb014592009-03-10 11:44:52 -0700551
Chris Wilsone5281cc2010-10-28 13:45:36 +0100552 mark_page_accessed(page);
553 page_cache_release(page);
554
Eric Anholteb014592009-03-10 11:44:52 -0700555 remain -= page_length;
556 data_ptr += page_length;
557 offset += page_length;
558 }
559
Chris Wilson4f27b752010-10-14 15:26:45 +0100560out:
Eric Anholteb014592009-03-10 11:44:52 -0700561 for (i = 0; i < pinned_pages; i++) {
562 SetPageDirty(user_pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100563 mark_page_accessed(user_pages[i]);
Eric Anholteb014592009-03-10 11:44:52 -0700564 page_cache_release(user_pages[i]);
565 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700566 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700567
568 return ret;
569}
570
Eric Anholt673a3942008-07-30 12:06:12 -0700571/**
572 * Reads data from the object referenced by handle.
573 *
574 * On error, the contents of *data are undefined.
575 */
576int
577i915_gem_pread_ioctl(struct drm_device *dev, void *data,
578 struct drm_file *file_priv)
579{
580 struct drm_i915_gem_pread *args = data;
581 struct drm_gem_object *obj;
582 struct drm_i915_gem_object *obj_priv;
Chris Wilson35b62a82010-09-26 20:23:38 +0100583 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700584
Chris Wilson4f27b752010-10-14 15:26:45 +0100585 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100586 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100587 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700588
589 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100590 if (obj == NULL) {
591 ret = -ENOENT;
592 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100593 }
Daniel Vetter23010e42010-03-08 13:35:02 +0100594 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700595
Chris Wilson7dcd2492010-09-26 20:21:44 +0100596 /* Bounds check source. */
597 if (args->offset > obj->size || args->size > obj->size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100598 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100599 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100600 }
601
Chris Wilson35b62a82010-09-26 20:23:38 +0100602 if (args->size == 0)
603 goto out;
604
Chris Wilsonce9d4192010-09-26 20:50:05 +0100605 if (!access_ok(VERIFY_WRITE,
606 (char __user *)(uintptr_t)args->data_ptr,
607 args->size)) {
608 ret = -EFAULT;
Chris Wilson35b62a82010-09-26 20:23:38 +0100609 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -0700610 }
611
Chris Wilsonb5e4feb2010-10-14 13:47:43 +0100612 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
613 args->size);
614 if (ret) {
615 ret = -EFAULT;
616 goto out;
617 }
618
Chris Wilson4f27b752010-10-14 15:26:45 +0100619 ret = i915_gem_object_set_cpu_read_domain_range(obj,
620 args->offset,
621 args->size);
622 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100623 goto out;
Chris Wilson4f27b752010-10-14 15:26:45 +0100624
625 ret = -EFAULT;
626 if (!i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -0700627 ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv);
Chris Wilson4f27b752010-10-14 15:26:45 +0100628 if (ret == -EFAULT)
629 ret = i915_gem_shmem_pread_slow(dev, obj, args, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700630
Chris Wilson35b62a82010-09-26 20:23:38 +0100631out:
Chris Wilson4f27b752010-10-14 15:26:45 +0100632 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100633unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100634 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700635 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700636}
637
Keith Packard0839ccb2008-10-30 19:38:48 -0700638/* This is the fast write path which cannot handle
639 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700640 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700641
Keith Packard0839ccb2008-10-30 19:38:48 -0700642static inline int
643fast_user_write(struct io_mapping *mapping,
644 loff_t page_base, int page_offset,
645 char __user *user_data,
646 int length)
647{
648 char *vaddr_atomic;
649 unsigned long unwritten;
650
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700651 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700652 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
653 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700654 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100655 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700656}
657
658/* Here's the write path which can sleep for
659 * page faults
660 */
661
Chris Wilsonab34c222010-05-27 14:15:35 +0100662static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700663slow_kernel_write(struct io_mapping *mapping,
664 loff_t gtt_base, int gtt_offset,
665 struct page *user_page, int user_offset,
666 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700667{
Chris Wilsonab34c222010-05-27 14:15:35 +0100668 char __iomem *dst_vaddr;
669 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700670
Chris Wilsonab34c222010-05-27 14:15:35 +0100671 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
672 src_vaddr = kmap(user_page);
673
674 memcpy_toio(dst_vaddr + gtt_offset,
675 src_vaddr + user_offset,
676 length);
677
678 kunmap(user_page);
679 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700680}
681
Eric Anholt3de09aa2009-03-09 09:42:23 -0700682/**
683 * This is the fast pwrite path, where we copy the data directly from the
684 * user into the GTT, uncached.
685 */
Eric Anholt673a3942008-07-30 12:06:12 -0700686static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700687i915_gem_gtt_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
688 struct drm_i915_gem_pwrite *args,
689 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700690{
Daniel Vetter23010e42010-03-08 13:35:02 +0100691 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Keith Packard0839ccb2008-10-30 19:38:48 -0700692 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700693 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700694 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700695 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700696 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700697
698 user_data = (char __user *) (uintptr_t) args->data_ptr;
699 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700700
Daniel Vetter23010e42010-03-08 13:35:02 +0100701 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700702 offset = obj_priv->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700703
704 while (remain > 0) {
705 /* Operation in this page
706 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700707 * page_base = page offset within aperture
708 * page_offset = offset within page
709 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700710 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700711 page_base = (offset & ~(PAGE_SIZE-1));
712 page_offset = offset & (PAGE_SIZE-1);
713 page_length = remain;
714 if ((page_offset + remain) > PAGE_SIZE)
715 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700716
Keith Packard0839ccb2008-10-30 19:38:48 -0700717 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700718 * source page isn't available. Return the error and we'll
719 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700720 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100721 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
722 page_offset, user_data, page_length))
723
724 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700725
Keith Packard0839ccb2008-10-30 19:38:48 -0700726 remain -= page_length;
727 user_data += page_length;
728 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700729 }
Eric Anholt673a3942008-07-30 12:06:12 -0700730
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100731 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700732}
733
Eric Anholt3de09aa2009-03-09 09:42:23 -0700734/**
735 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
736 * the memory and maps it using kmap_atomic for copying.
737 *
738 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
739 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
740 */
Eric Anholt3043c602008-10-02 12:24:47 -0700741static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700742i915_gem_gtt_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
743 struct drm_i915_gem_pwrite *args,
744 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700745{
Daniel Vetter23010e42010-03-08 13:35:02 +0100746 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700747 drm_i915_private_t *dev_priv = dev->dev_private;
748 ssize_t remain;
749 loff_t gtt_page_base, offset;
750 loff_t first_data_page, last_data_page, num_pages;
751 loff_t pinned_pages, i;
752 struct page **user_pages;
753 struct mm_struct *mm = current->mm;
754 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700755 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700756 uint64_t data_ptr = args->data_ptr;
757
758 remain = args->size;
759
760 /* Pin the user pages containing the data. We can't fault while
761 * holding the struct mutex, and all of the pwrite implementations
762 * want to hold it while dereferencing the user data.
763 */
764 first_data_page = data_ptr / PAGE_SIZE;
765 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
766 num_pages = last_data_page - first_data_page + 1;
767
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100768 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700769 if (user_pages == NULL)
770 return -ENOMEM;
771
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100772 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700773 down_read(&mm->mmap_sem);
774 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
775 num_pages, 0, 0, user_pages, NULL);
776 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100777 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700778 if (pinned_pages < num_pages) {
779 ret = -EFAULT;
780 goto out_unpin_pages;
781 }
782
Eric Anholt3de09aa2009-03-09 09:42:23 -0700783 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
784 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100785 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700786
Daniel Vetter23010e42010-03-08 13:35:02 +0100787 obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700788 offset = obj_priv->gtt_offset + args->offset;
789
790 while (remain > 0) {
791 /* Operation in this page
792 *
793 * gtt_page_base = page offset within aperture
794 * gtt_page_offset = offset within page in aperture
795 * data_page_index = page number in get_user_pages return
796 * data_page_offset = offset with data_page_index page.
797 * page_length = bytes to copy for this page
798 */
799 gtt_page_base = offset & PAGE_MASK;
800 gtt_page_offset = offset & ~PAGE_MASK;
801 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
802 data_page_offset = data_ptr & ~PAGE_MASK;
803
804 page_length = remain;
805 if ((gtt_page_offset + page_length) > PAGE_SIZE)
806 page_length = PAGE_SIZE - gtt_page_offset;
807 if ((data_page_offset + page_length) > PAGE_SIZE)
808 page_length = PAGE_SIZE - data_page_offset;
809
Chris Wilsonab34c222010-05-27 14:15:35 +0100810 slow_kernel_write(dev_priv->mm.gtt_mapping,
811 gtt_page_base, gtt_page_offset,
812 user_pages[data_page_index],
813 data_page_offset,
814 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700815
816 remain -= page_length;
817 offset += page_length;
818 data_ptr += page_length;
819 }
820
Eric Anholt3de09aa2009-03-09 09:42:23 -0700821out_unpin_pages:
822 for (i = 0; i < pinned_pages; i++)
823 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700824 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700825
826 return ret;
827}
828
Eric Anholt40123c12009-03-09 13:42:30 -0700829/**
830 * This is the fast shmem pwrite path, which attempts to directly
831 * copy_from_user into the kmapped pages backing the object.
832 */
Eric Anholt673a3942008-07-30 12:06:12 -0700833static int
Eric Anholt40123c12009-03-09 13:42:30 -0700834i915_gem_shmem_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
835 struct drm_i915_gem_pwrite *args,
836 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700837{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100838 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100839 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700840 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100841 loff_t offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700842 char __user *user_data;
843 int page_offset, page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700844
845 user_data = (char __user *) (uintptr_t) args->data_ptr;
846 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700847
Daniel Vetter23010e42010-03-08 13:35:02 +0100848 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700849 offset = args->offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700850 obj_priv->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700851
Eric Anholt40123c12009-03-09 13:42:30 -0700852 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100853 struct page *page;
854 char *vaddr;
855 int ret;
856
Eric Anholt40123c12009-03-09 13:42:30 -0700857 /* Operation in this page
858 *
Eric Anholt40123c12009-03-09 13:42:30 -0700859 * page_offset = offset within page
860 * page_length = bytes to copy for this page
861 */
Eric Anholt40123c12009-03-09 13:42:30 -0700862 page_offset = offset & (PAGE_SIZE-1);
863 page_length = remain;
864 if ((page_offset + remain) > PAGE_SIZE)
865 page_length = PAGE_SIZE - page_offset;
866
Chris Wilsone5281cc2010-10-28 13:45:36 +0100867 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
868 GFP_HIGHUSER | __GFP_RECLAIMABLE);
869 if (IS_ERR(page))
870 return PTR_ERR(page);
871
872 vaddr = kmap_atomic(page, KM_USER0);
873 ret = __copy_from_user_inatomic(vaddr + page_offset,
874 user_data,
875 page_length);
876 kunmap_atomic(vaddr, KM_USER0);
877
878 set_page_dirty(page);
879 mark_page_accessed(page);
880 page_cache_release(page);
881
882 /* If we get a fault while copying data, then (presumably) our
883 * source page isn't available. Return the error and we'll
884 * retry in the slow path.
885 */
886 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100887 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700888
889 remain -= page_length;
890 user_data += page_length;
891 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700892 }
893
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100894 return 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700895}
896
897/**
898 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
899 * the memory and maps it using kmap_atomic for copying.
900 *
901 * This avoids taking mmap_sem for faulting on the user's address while the
902 * struct_mutex is held.
903 */
904static int
905i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
906 struct drm_i915_gem_pwrite *args,
907 struct drm_file *file_priv)
908{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100909 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100910 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700911 struct mm_struct *mm = current->mm;
912 struct page **user_pages;
913 ssize_t remain;
914 loff_t offset, pinned_pages, i;
915 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100916 int shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700917 int data_page_index, data_page_offset;
918 int page_length;
919 int ret;
920 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700921 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700922
923 remain = args->size;
924
925 /* Pin the user pages containing the data. We can't fault while
926 * holding the struct mutex, and all of the pwrite implementations
927 * want to hold it while dereferencing the user data.
928 */
929 first_data_page = data_ptr / PAGE_SIZE;
930 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
931 num_pages = last_data_page - first_data_page + 1;
932
Chris Wilson4f27b752010-10-14 15:26:45 +0100933 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700934 if (user_pages == NULL)
935 return -ENOMEM;
936
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100937 mutex_unlock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700938 down_read(&mm->mmap_sem);
939 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
940 num_pages, 0, 0, user_pages, NULL);
941 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100942 mutex_lock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700943 if (pinned_pages < num_pages) {
944 ret = -EFAULT;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100945 goto out;
Eric Anholt40123c12009-03-09 13:42:30 -0700946 }
947
Eric Anholt40123c12009-03-09 13:42:30 -0700948 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100949 if (ret)
950 goto out;
951
952 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700953
Daniel Vetter23010e42010-03-08 13:35:02 +0100954 obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700955 offset = args->offset;
956 obj_priv->dirty = 1;
957
958 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100959 struct page *page;
960
Eric Anholt40123c12009-03-09 13:42:30 -0700961 /* Operation in this page
962 *
Eric Anholt40123c12009-03-09 13:42:30 -0700963 * shmem_page_offset = offset within page in shmem file
964 * data_page_index = page number in get_user_pages return
965 * data_page_offset = offset with data_page_index page.
966 * page_length = bytes to copy for this page
967 */
Eric Anholt40123c12009-03-09 13:42:30 -0700968 shmem_page_offset = offset & ~PAGE_MASK;
969 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
970 data_page_offset = data_ptr & ~PAGE_MASK;
971
972 page_length = remain;
973 if ((shmem_page_offset + page_length) > PAGE_SIZE)
974 page_length = PAGE_SIZE - shmem_page_offset;
975 if ((data_page_offset + page_length) > PAGE_SIZE)
976 page_length = PAGE_SIZE - data_page_offset;
977
Chris Wilsone5281cc2010-10-28 13:45:36 +0100978 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
979 GFP_HIGHUSER | __GFP_RECLAIMABLE);
980 if (IS_ERR(page)) {
981 ret = PTR_ERR(page);
982 goto out;
983 }
984
Eric Anholt280b7132009-03-12 16:56:27 -0700985 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100986 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700987 shmem_page_offset,
988 user_pages[data_page_index],
989 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100990 page_length,
991 0);
992 } else {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100993 slow_shmem_copy(page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100994 shmem_page_offset,
995 user_pages[data_page_index],
996 data_page_offset,
997 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700998 }
Eric Anholt40123c12009-03-09 13:42:30 -0700999
Chris Wilsone5281cc2010-10-28 13:45:36 +01001000 set_page_dirty(page);
1001 mark_page_accessed(page);
1002 page_cache_release(page);
1003
Eric Anholt40123c12009-03-09 13:42:30 -07001004 remain -= page_length;
1005 data_ptr += page_length;
1006 offset += page_length;
1007 }
1008
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001009out:
Eric Anholt40123c12009-03-09 13:42:30 -07001010 for (i = 0; i < pinned_pages; i++)
1011 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001012 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -07001013
1014 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001015}
1016
1017/**
1018 * Writes data to the object referenced by handle.
1019 *
1020 * On error, the contents of the buffer that were to be modified are undefined.
1021 */
1022int
1023i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001024 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001025{
1026 struct drm_i915_gem_pwrite *args = data;
1027 struct drm_gem_object *obj;
1028 struct drm_i915_gem_object *obj_priv;
1029 int ret = 0;
1030
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001031 ret = i915_mutex_lock_interruptible(dev);
1032 if (ret)
1033 return ret;
1034
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001035 obj = drm_gem_object_lookup(dev, file, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001036 if (obj == NULL) {
1037 ret = -ENOENT;
1038 goto unlock;
1039 }
Daniel Vetter23010e42010-03-08 13:35:02 +01001040 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001041
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001042
Chris Wilson7dcd2492010-09-26 20:21:44 +01001043 /* Bounds check destination. */
1044 if (args->offset > obj->size || args->size > obj->size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001045 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001046 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001047 }
1048
Chris Wilson35b62a82010-09-26 20:23:38 +01001049 if (args->size == 0)
1050 goto out;
1051
Chris Wilsonce9d4192010-09-26 20:50:05 +01001052 if (!access_ok(VERIFY_READ,
1053 (char __user *)(uintptr_t)args->data_ptr,
1054 args->size)) {
1055 ret = -EFAULT;
Chris Wilson35b62a82010-09-26 20:23:38 +01001056 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07001057 }
1058
Chris Wilsonb5e4feb2010-10-14 13:47:43 +01001059 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
1060 args->size);
1061 if (ret) {
1062 ret = -EFAULT;
1063 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07001064 }
1065
1066 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1067 * it would end up going through the fenced access, and we'll get
1068 * different detiling behavior between reading and writing.
1069 * pread/pwrite currently are reading and writing from the CPU
1070 * perspective, requiring manual detiling by the client.
1071 */
Dave Airlie71acb5e2008-12-30 20:31:46 +10001072 if (obj_priv->phys_obj)
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001073 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Dave Airlie71acb5e2008-12-30 20:31:46 +10001074 else if (obj_priv->tiling_mode == I915_TILING_NONE &&
Chris Wilson5cdf5882010-09-27 15:51:07 +01001075 obj_priv->gtt_space &&
Chris Wilson9b8c4a02010-05-27 14:21:01 +01001076 obj->write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01001077 ret = i915_gem_object_pin(obj, 0, true, false);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001078 if (ret)
1079 goto out;
1080
1081 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
1082 if (ret)
1083 goto out_unpin;
1084
1085 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
1086 if (ret == -EFAULT)
1087 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
1088
1089out_unpin:
1090 i915_gem_object_unpin(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001091 } else {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001092 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1093 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001094 goto out;
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001095
1096 ret = -EFAULT;
1097 if (!i915_gem_object_needs_bit17_swizzle(obj))
1098 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file);
1099 if (ret == -EFAULT)
1100 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file);
Eric Anholt40123c12009-03-09 13:42:30 -07001101 }
Eric Anholt673a3942008-07-30 12:06:12 -07001102
Chris Wilson35b62a82010-09-26 20:23:38 +01001103out:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001104 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001105unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001106 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001107 return ret;
1108}
1109
1110/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001111 * Called when user space prepares to use an object with the CPU, either
1112 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001113 */
1114int
1115i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
1116 struct drm_file *file_priv)
1117{
Eric Anholta09ba7f2009-08-29 12:49:51 -07001118 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001119 struct drm_i915_gem_set_domain *args = data;
1120 struct drm_gem_object *obj;
Jesse Barnes652c3932009-08-17 13:31:43 -07001121 struct drm_i915_gem_object *obj_priv;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001122 uint32_t read_domains = args->read_domains;
1123 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001124 int ret;
1125
1126 if (!(dev->driver->driver_features & DRIVER_GEM))
1127 return -ENODEV;
1128
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001129 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001130 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001131 return -EINVAL;
1132
Chris Wilson21d509e2009-06-06 09:46:02 +01001133 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001134 return -EINVAL;
1135
1136 /* Having something in the write domain implies it's in the read
1137 * domain, and only that read domain. Enforce that in the request.
1138 */
1139 if (write_domain != 0 && read_domains != write_domain)
1140 return -EINVAL;
1141
Chris Wilson76c1dec2010-09-25 11:22:51 +01001142 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001143 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001144 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001145
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001146 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1147 if (obj == NULL) {
1148 ret = -ENOENT;
1149 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001150 }
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001151 obj_priv = to_intel_bo(obj);
Jesse Barnes652c3932009-08-17 13:31:43 -07001152
1153 intel_mark_busy(dev, obj);
1154
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001155 if (read_domains & I915_GEM_DOMAIN_GTT) {
1156 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001157
Eric Anholta09ba7f2009-08-29 12:49:51 -07001158 /* Update the LRU on the fence for the CPU access that's
1159 * about to occur.
1160 */
1161 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001162 struct drm_i915_fence_reg *reg =
1163 &dev_priv->fence_regs[obj_priv->fence_reg];
1164 list_move_tail(&reg->lru_list,
Eric Anholta09ba7f2009-08-29 12:49:51 -07001165 &dev_priv->mm.fence_list);
1166 }
1167
Eric Anholt02354392008-11-26 13:58:13 -08001168 /* Silently promote "you're not bound, there was nothing to do"
1169 * to success, since the client was just asking us to
1170 * make sure everything was done.
1171 */
1172 if (ret == -EINVAL)
1173 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001174 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001175 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001176 }
1177
Chris Wilson7d1c4802010-08-07 21:45:03 +01001178 /* Maintain LRU order of "inactive" objects */
1179 if (ret == 0 && i915_gem_object_is_inactive(obj_priv))
Chris Wilson69dc4982010-10-19 10:36:51 +01001180 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001181
Eric Anholt673a3942008-07-30 12:06:12 -07001182 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001183unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001184 mutex_unlock(&dev->struct_mutex);
1185 return ret;
1186}
1187
1188/**
1189 * Called when user space has done writes to this buffer
1190 */
1191int
1192i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
1193 struct drm_file *file_priv)
1194{
1195 struct drm_i915_gem_sw_finish *args = data;
1196 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001197 int ret = 0;
1198
1199 if (!(dev->driver->driver_features & DRIVER_GEM))
1200 return -ENODEV;
1201
Chris Wilson76c1dec2010-09-25 11:22:51 +01001202 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001203 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001204 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001205
Eric Anholt673a3942008-07-30 12:06:12 -07001206 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1207 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001208 ret = -ENOENT;
1209 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001210 }
1211
Eric Anholt673a3942008-07-30 12:06:12 -07001212 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson3d2a8122010-09-29 11:39:53 +01001213 if (to_intel_bo(obj)->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001214 i915_gem_object_flush_cpu_write_domain(obj);
1215
Eric Anholt673a3942008-07-30 12:06:12 -07001216 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001217unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001218 mutex_unlock(&dev->struct_mutex);
1219 return ret;
1220}
1221
1222/**
1223 * Maps the contents of an object, returning the address it is mapped
1224 * into.
1225 *
1226 * While the mapping holds a reference on the contents of the object, it doesn't
1227 * imply a ref on the object itself.
1228 */
1229int
1230i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
1231 struct drm_file *file_priv)
1232{
Chris Wilsonda761a62010-10-27 17:37:08 +01001233 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001234 struct drm_i915_gem_mmap *args = data;
1235 struct drm_gem_object *obj;
1236 loff_t offset;
1237 unsigned long addr;
1238
1239 if (!(dev->driver->driver_features & DRIVER_GEM))
1240 return -ENODEV;
1241
1242 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1243 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001244 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001245
Chris Wilsonda761a62010-10-27 17:37:08 +01001246 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1247 drm_gem_object_unreference_unlocked(obj);
1248 return -E2BIG;
1249 }
1250
Eric Anholt673a3942008-07-30 12:06:12 -07001251 offset = args->offset;
1252
1253 down_write(&current->mm->mmap_sem);
1254 addr = do_mmap(obj->filp, 0, args->size,
1255 PROT_READ | PROT_WRITE, MAP_SHARED,
1256 args->offset);
1257 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001258 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001259 if (IS_ERR((void *)addr))
1260 return addr;
1261
1262 args->addr_ptr = (uint64_t) addr;
1263
1264 return 0;
1265}
1266
Jesse Barnesde151cf2008-11-12 10:03:55 -08001267/**
1268 * i915_gem_fault - fault a page into the GTT
1269 * vma: VMA in question
1270 * vmf: fault info
1271 *
1272 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1273 * from userspace. The fault handler takes care of binding the object to
1274 * the GTT (if needed), allocating and programming a fence register (again,
1275 * only if needed based on whether the old reg is still valid or the object
1276 * is tiled) and inserting a new PTE into the faulting process.
1277 *
1278 * Note that the faulting process may involve evicting existing objects
1279 * from the GTT and/or fence registers to make room. So performance may
1280 * suffer if the GTT working set is large or there are few fence registers
1281 * left.
1282 */
1283int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1284{
1285 struct drm_gem_object *obj = vma->vm_private_data;
1286 struct drm_device *dev = obj->dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001287 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001288 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001289 pgoff_t page_offset;
1290 unsigned long pfn;
1291 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001292 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001293
1294 /* We don't use vmf->pgoff since that has the fake offset */
1295 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1296 PAGE_SHIFT;
1297
1298 /* Now bind it into the GTT if needed */
1299 mutex_lock(&dev->struct_mutex);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001300 BUG_ON(obj_priv->pin_count && !obj_priv->pin_mappable);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001301
1302 if (obj_priv->gtt_space) {
1303 if (!obj_priv->mappable ||
1304 (obj_priv->tiling_mode && !obj_priv->fenceable)) {
1305 ret = i915_gem_object_unbind(obj);
1306 if (ret)
1307 goto unlock;
1308 }
1309 }
Daniel Vetter16e809a2010-09-16 19:37:04 +02001310
Jesse Barnesde151cf2008-11-12 10:03:55 -08001311 if (!obj_priv->gtt_space) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01001312 ret = i915_gem_object_bind_to_gtt(obj, 0,
1313 true, obj_priv->tiling_mode);
Chris Wilsonc7150892009-09-23 00:43:56 +01001314 if (ret)
1315 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001316 }
1317
Chris Wilson4a684a42010-10-28 14:44:08 +01001318 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1319 if (ret)
1320 goto unlock;
1321
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001322 if (!obj_priv->fault_mappable) {
1323 obj_priv->fault_mappable = true;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001324 i915_gem_info_update_mappable(dev_priv, obj_priv, true);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001325 }
1326
Jesse Barnesde151cf2008-11-12 10:03:55 -08001327 /* Need a new fence register? */
Eric Anholta09ba7f2009-08-29 12:49:51 -07001328 if (obj_priv->tiling_mode != I915_TILING_NONE) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01001329 ret = i915_gem_object_get_fence_reg(obj, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001330 if (ret)
1331 goto unlock;
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001332 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001333
Chris Wilson7d1c4802010-08-07 21:45:03 +01001334 if (i915_gem_object_is_inactive(obj_priv))
Chris Wilson69dc4982010-10-19 10:36:51 +01001335 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001336
Jesse Barnesde151cf2008-11-12 10:03:55 -08001337 pfn = ((dev->agp->base + obj_priv->gtt_offset) >> PAGE_SHIFT) +
1338 page_offset;
1339
1340 /* Finally, remap it using the new GTT offset */
1341 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001342unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001343 mutex_unlock(&dev->struct_mutex);
1344
1345 switch (ret) {
Chris Wilsonc7150892009-09-23 00:43:56 +01001346 case 0:
1347 case -ERESTARTSYS:
1348 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001349 case -ENOMEM:
1350 case -EAGAIN:
1351 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001352 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001353 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001354 }
1355}
1356
1357/**
1358 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1359 * @obj: obj in question
1360 *
1361 * GEM memory mapping works by handing back to userspace a fake mmap offset
1362 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1363 * up the object based on the offset and sets up the various memory mapping
1364 * structures.
1365 *
1366 * This routine allocates and attaches a fake offset for @obj.
1367 */
1368static int
1369i915_gem_create_mmap_offset(struct drm_gem_object *obj)
1370{
1371 struct drm_device *dev = obj->dev;
1372 struct drm_gem_mm *mm = dev->mm_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001373 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001374 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001375 int ret = 0;
1376
1377 /* Set the object up for mmap'ing */
1378 list = &obj->map_list;
Eric Anholt9a298b22009-03-24 12:23:04 -07001379 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001380 if (!list->map)
1381 return -ENOMEM;
1382
1383 map = list->map;
1384 map->type = _DRM_GEM;
1385 map->size = obj->size;
1386 map->handle = obj;
1387
1388 /* Get a DRM GEM mmap offset allocated... */
1389 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
1390 obj->size / PAGE_SIZE, 0, 0);
1391 if (!list->file_offset_node) {
1392 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
Chris Wilson9e0ae532010-09-21 15:05:24 +01001393 ret = -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001394 goto out_free_list;
1395 }
1396
1397 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
1398 obj->size / PAGE_SIZE, 0);
1399 if (!list->file_offset_node) {
1400 ret = -ENOMEM;
1401 goto out_free_list;
1402 }
1403
1404 list->hash.key = list->file_offset_node->start;
Chris Wilson9e0ae532010-09-21 15:05:24 +01001405 ret = drm_ht_insert_item(&mm->offset_hash, &list->hash);
1406 if (ret) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001407 DRM_ERROR("failed to add to map hash\n");
1408 goto out_free_mm;
1409 }
1410
Jesse Barnesde151cf2008-11-12 10:03:55 -08001411 return 0;
1412
1413out_free_mm:
1414 drm_mm_put_block(list->file_offset_node);
1415out_free_list:
Eric Anholt9a298b22009-03-24 12:23:04 -07001416 kfree(list->map);
Chris Wilson39a01d12010-10-28 13:03:06 +01001417 list->map = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001418
1419 return ret;
1420}
1421
Chris Wilson901782b2009-07-10 08:18:50 +01001422/**
1423 * i915_gem_release_mmap - remove physical page mappings
1424 * @obj: obj in question
1425 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001426 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001427 * relinquish ownership of the pages back to the system.
1428 *
1429 * It is vital that we remove the page mapping if we have mapped a tiled
1430 * object through the GTT and then lose the fence register due to
1431 * resource pressure. Similarly if the object has been moved out of the
1432 * aperture, than pages mapped into userspace must be revoked. Removing the
1433 * mapping will then trigger a page fault on the next user access, allowing
1434 * fixup by i915_gem_fault().
1435 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001436void
Chris Wilson901782b2009-07-10 08:18:50 +01001437i915_gem_release_mmap(struct drm_gem_object *obj)
1438{
1439 struct drm_device *dev = obj->dev;
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001440 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001441 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson901782b2009-07-10 08:18:50 +01001442
Chris Wilson39a01d12010-10-28 13:03:06 +01001443 if (unlikely(obj->map_list.map && dev->dev_mapping))
Chris Wilson901782b2009-07-10 08:18:50 +01001444 unmap_mapping_range(dev->dev_mapping,
Chris Wilson39a01d12010-10-28 13:03:06 +01001445 (loff_t)obj->map_list.hash.key<<PAGE_SHIFT,
1446 obj->size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001447
1448 if (obj_priv->fault_mappable) {
1449 obj_priv->fault_mappable = false;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001450 i915_gem_info_update_mappable(dev_priv, obj_priv, false);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001451 }
Chris Wilson901782b2009-07-10 08:18:50 +01001452}
1453
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001454static void
1455i915_gem_free_mmap_offset(struct drm_gem_object *obj)
1456{
1457 struct drm_device *dev = obj->dev;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001458 struct drm_gem_mm *mm = dev->mm_private;
Chris Wilson39a01d12010-10-28 13:03:06 +01001459 struct drm_map_list *list = &obj->map_list;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001460
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001461 drm_ht_remove_item(&mm->offset_hash, &list->hash);
Chris Wilson39a01d12010-10-28 13:03:06 +01001462 drm_mm_put_block(list->file_offset_node);
1463 kfree(list->map);
1464 list->map = NULL;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001465}
1466
Jesse Barnesde151cf2008-11-12 10:03:55 -08001467/**
1468 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1469 * @obj: object to check
1470 *
1471 * Return the required GTT alignment for an object, taking into account
1472 * potential fence register mapping if needed.
1473 */
1474static uint32_t
Chris Wilsona00b10c2010-09-24 21:15:47 +01001475i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj_priv)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001476{
Chris Wilsona00b10c2010-09-24 21:15:47 +01001477 struct drm_device *dev = obj_priv->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001478
1479 /*
1480 * Minimum alignment is 4k (GTT page size), but might be greater
1481 * if a fence register is needed for the object.
1482 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001483 if (INTEL_INFO(dev)->gen >= 4 ||
1484 obj_priv->tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001485 return 4096;
1486
1487 /*
1488 * Previous chips need to be aligned to the size of the smallest
1489 * fence register that can contain the object.
1490 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001491 return i915_gem_get_gtt_size(obj_priv);
1492}
1493
1494static uint32_t
1495i915_gem_get_gtt_size(struct drm_i915_gem_object *obj_priv)
1496{
1497 struct drm_device *dev = obj_priv->base.dev;
1498 uint32_t size;
1499
1500 /*
1501 * Minimum alignment is 4k (GTT page size), but might be greater
1502 * if a fence register is needed for the object.
1503 */
1504 if (INTEL_INFO(dev)->gen >= 4)
1505 return obj_priv->base.size;
1506
1507 /*
1508 * Previous chips need to be aligned to the size of the smallest
1509 * fence register that can contain the object.
1510 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001511 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsona00b10c2010-09-24 21:15:47 +01001512 size = 1024*1024;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001513 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01001514 size = 512*1024;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001515
Chris Wilsona00b10c2010-09-24 21:15:47 +01001516 while (size < obj_priv->base.size)
1517 size <<= 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001518
Chris Wilsona00b10c2010-09-24 21:15:47 +01001519 return size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001520}
1521
1522/**
1523 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1524 * @dev: DRM device
1525 * @data: GTT mapping ioctl data
1526 * @file_priv: GEM object info
1527 *
1528 * Simply returns the fake offset to userspace so it can mmap it.
1529 * The mmap call will end up in drm_gem_mmap(), which will set things
1530 * up so we can get faults in the handler above.
1531 *
1532 * The fault handler will take care of binding the object into the GTT
1533 * (since it may have been evicted to make room for something), allocating
1534 * a fence register, and mapping the appropriate aperture address into
1535 * userspace.
1536 */
1537int
1538i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1539 struct drm_file *file_priv)
1540{
Chris Wilsonda761a62010-10-27 17:37:08 +01001541 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001542 struct drm_i915_gem_mmap_gtt *args = data;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001543 struct drm_gem_object *obj;
1544 struct drm_i915_gem_object *obj_priv;
1545 int ret;
1546
1547 if (!(dev->driver->driver_features & DRIVER_GEM))
1548 return -ENODEV;
1549
Chris Wilson76c1dec2010-09-25 11:22:51 +01001550 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001551 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001552 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001553
Jesse Barnesde151cf2008-11-12 10:03:55 -08001554 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001555 if (obj == NULL) {
1556 ret = -ENOENT;
1557 goto unlock;
1558 }
Daniel Vetter23010e42010-03-08 13:35:02 +01001559 obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001560
Chris Wilsonda761a62010-10-27 17:37:08 +01001561 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1562 ret = -E2BIG;
1563 goto unlock;
1564 }
1565
Chris Wilsonab182822009-09-22 18:46:17 +01001566 if (obj_priv->madv != I915_MADV_WILLNEED) {
1567 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001568 ret = -EINVAL;
1569 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001570 }
1571
Chris Wilson39a01d12010-10-28 13:03:06 +01001572 if (!obj->map_list.map) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001573 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001574 if (ret)
1575 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001576 }
1577
Chris Wilson39a01d12010-10-28 13:03:06 +01001578 args->offset = (u64)obj->map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001579
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001580out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001581 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001582unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001583 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001584 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001585}
1586
Chris Wilsone5281cc2010-10-28 13:45:36 +01001587static int
1588i915_gem_object_get_pages_gtt(struct drm_gem_object *obj,
1589 gfp_t gfpmask)
1590{
1591 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
1592 int page_count, i;
1593 struct address_space *mapping;
1594 struct inode *inode;
1595 struct page *page;
1596
1597 /* Get the list of pages out of our struct file. They'll be pinned
1598 * at this point until we release them.
1599 */
1600 page_count = obj->size / PAGE_SIZE;
1601 BUG_ON(obj_priv->pages != NULL);
1602 obj_priv->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1603 if (obj_priv->pages == NULL)
1604 return -ENOMEM;
1605
1606 inode = obj->filp->f_path.dentry->d_inode;
1607 mapping = inode->i_mapping;
1608 for (i = 0; i < page_count; i++) {
1609 page = read_cache_page_gfp(mapping, i,
1610 GFP_HIGHUSER |
1611 __GFP_COLD |
1612 __GFP_RECLAIMABLE |
1613 gfpmask);
1614 if (IS_ERR(page))
1615 goto err_pages;
1616
1617 obj_priv->pages[i] = page;
1618 }
1619
1620 if (obj_priv->tiling_mode != I915_TILING_NONE)
1621 i915_gem_object_do_bit_17_swizzle(obj);
1622
1623 return 0;
1624
1625err_pages:
1626 while (i--)
1627 page_cache_release(obj_priv->pages[i]);
1628
1629 drm_free_large(obj_priv->pages);
1630 obj_priv->pages = NULL;
1631 return PTR_ERR(page);
1632}
1633
Chris Wilson5cdf5882010-09-27 15:51:07 +01001634static void
Chris Wilsone5281cc2010-10-28 13:45:36 +01001635i915_gem_object_put_pages_gtt(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001636{
Daniel Vetter23010e42010-03-08 13:35:02 +01001637 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001638 int page_count = obj->size / PAGE_SIZE;
1639 int i;
1640
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001641 BUG_ON(obj_priv->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001642
Eric Anholt280b7132009-03-12 16:56:27 -07001643 if (obj_priv->tiling_mode != I915_TILING_NONE)
1644 i915_gem_object_save_bit_17_swizzle(obj);
1645
Chris Wilson3ef94da2009-09-14 16:50:29 +01001646 if (obj_priv->madv == I915_MADV_DONTNEED)
Chris Wilson13a05fd2009-09-20 23:03:19 +01001647 obj_priv->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001648
1649 for (i = 0; i < page_count; i++) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01001650 if (obj_priv->dirty)
1651 set_page_dirty(obj_priv->pages[i]);
1652
1653 if (obj_priv->madv == I915_MADV_WILLNEED)
Eric Anholt856fa192009-03-19 14:10:50 -07001654 mark_page_accessed(obj_priv->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001655
1656 page_cache_release(obj_priv->pages[i]);
1657 }
Eric Anholt673a3942008-07-30 12:06:12 -07001658 obj_priv->dirty = 0;
1659
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001660 drm_free_large(obj_priv->pages);
Eric Anholt856fa192009-03-19 14:10:50 -07001661 obj_priv->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001662}
1663
Chris Wilsona56ba562010-09-28 10:07:56 +01001664static uint32_t
1665i915_gem_next_request_seqno(struct drm_device *dev,
1666 struct intel_ring_buffer *ring)
1667{
1668 drm_i915_private_t *dev_priv = dev->dev_private;
1669
1670 ring->outstanding_lazy_request = true;
1671 return dev_priv->next_seqno;
1672}
1673
Eric Anholt673a3942008-07-30 12:06:12 -07001674static void
Daniel Vetter617dbe22010-02-11 22:16:02 +01001675i915_gem_object_move_to_active(struct drm_gem_object *obj,
Zou Nan hai852835f2010-05-21 09:08:56 +08001676 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001677{
1678 struct drm_device *dev = obj->dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001679 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001680 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona56ba562010-09-28 10:07:56 +01001681 uint32_t seqno = i915_gem_next_request_seqno(dev, ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001682
Zou Nan hai852835f2010-05-21 09:08:56 +08001683 BUG_ON(ring == NULL);
1684 obj_priv->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001685
1686 /* Add a reference if we're newly entering the active list. */
1687 if (!obj_priv->active) {
1688 drm_gem_object_reference(obj);
1689 obj_priv->active = 1;
1690 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001691
Eric Anholt673a3942008-07-30 12:06:12 -07001692 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson69dc4982010-10-19 10:36:51 +01001693 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.active_list);
1694 list_move_tail(&obj_priv->ring_list, &ring->active_list);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001695 obj_priv->last_rendering_seqno = seqno;
Eric Anholt673a3942008-07-30 12:06:12 -07001696}
1697
Eric Anholtce44b0e2008-11-06 16:00:31 -08001698static void
1699i915_gem_object_move_to_flushing(struct drm_gem_object *obj)
1700{
1701 struct drm_device *dev = obj->dev;
1702 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001703 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001704
1705 BUG_ON(!obj_priv->active);
Chris Wilson69dc4982010-10-19 10:36:51 +01001706 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.flushing_list);
1707 list_del_init(&obj_priv->ring_list);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001708 obj_priv->last_rendering_seqno = 0;
1709}
Eric Anholt673a3942008-07-30 12:06:12 -07001710
Chris Wilson963b4832009-09-20 23:03:54 +01001711/* Immediately discard the backing storage */
1712static void
1713i915_gem_object_truncate(struct drm_gem_object *obj)
1714{
Daniel Vetter23010e42010-03-08 13:35:02 +01001715 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001716 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001717
Chris Wilsonae9fed62010-08-07 11:01:30 +01001718 /* Our goal here is to return as much of the memory as
1719 * is possible back to the system as we are called from OOM.
1720 * To do this we must instruct the shmfs to drop all of its
1721 * backing pages, *now*. Here we mirror the actions taken
1722 * when by shmem_delete_inode() to release the backing store.
1723 */
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001724 inode = obj->filp->f_path.dentry->d_inode;
Chris Wilsonae9fed62010-08-07 11:01:30 +01001725 truncate_inode_pages(inode->i_mapping, 0);
1726 if (inode->i_op->truncate_range)
1727 inode->i_op->truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001728
1729 obj_priv->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001730}
1731
1732static inline int
1733i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj_priv)
1734{
1735 return obj_priv->madv == I915_MADV_DONTNEED;
1736}
1737
Eric Anholt673a3942008-07-30 12:06:12 -07001738static void
1739i915_gem_object_move_to_inactive(struct drm_gem_object *obj)
1740{
1741 struct drm_device *dev = obj->dev;
1742 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001743 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001744
Eric Anholt673a3942008-07-30 12:06:12 -07001745 if (obj_priv->pin_count != 0)
Chris Wilson69dc4982010-10-19 10:36:51 +01001746 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001747 else
Chris Wilson69dc4982010-10-19 10:36:51 +01001748 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
1749 list_del_init(&obj_priv->ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001750
Daniel Vetter99fcb762010-02-07 16:20:18 +01001751 BUG_ON(!list_empty(&obj_priv->gpu_write_list));
1752
Eric Anholtce44b0e2008-11-06 16:00:31 -08001753 obj_priv->last_rendering_seqno = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +08001754 obj_priv->ring = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001755 if (obj_priv->active) {
1756 obj_priv->active = 0;
1757 drm_gem_object_unreference(obj);
1758 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001759 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001760}
1761
Daniel Vetter63560392010-02-19 11:51:59 +01001762static void
1763i915_gem_process_flushing_list(struct drm_device *dev,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001764 uint32_t flush_domains,
Zou Nan hai852835f2010-05-21 09:08:56 +08001765 struct intel_ring_buffer *ring)
Daniel Vetter63560392010-02-19 11:51:59 +01001766{
1767 drm_i915_private_t *dev_priv = dev->dev_private;
1768 struct drm_i915_gem_object *obj_priv, *next;
1769
1770 list_for_each_entry_safe(obj_priv, next,
Chris Wilson64193402010-10-24 12:38:05 +01001771 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001772 gpu_write_list) {
Daniel Vettera8089e82010-04-09 19:05:09 +00001773 struct drm_gem_object *obj = &obj_priv->base;
Daniel Vetter63560392010-02-19 11:51:59 +01001774
Chris Wilson64193402010-10-24 12:38:05 +01001775 if (obj->write_domain & flush_domains) {
Daniel Vetter63560392010-02-19 11:51:59 +01001776 uint32_t old_write_domain = obj->write_domain;
1777
1778 obj->write_domain = 0;
1779 list_del_init(&obj_priv->gpu_write_list);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001780 i915_gem_object_move_to_active(obj, ring);
Daniel Vetter63560392010-02-19 11:51:59 +01001781
1782 /* update the fence lru list */
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001783 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
1784 struct drm_i915_fence_reg *reg =
1785 &dev_priv->fence_regs[obj_priv->fence_reg];
1786 list_move_tail(&reg->lru_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001787 &dev_priv->mm.fence_list);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001788 }
Daniel Vetter63560392010-02-19 11:51:59 +01001789
1790 trace_i915_gem_object_change_domain(obj,
1791 obj->read_domains,
1792 old_write_domain);
1793 }
1794 }
1795}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001796
Chris Wilson3cce4692010-10-27 16:11:02 +01001797int
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001798i915_add_request(struct drm_device *dev,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001799 struct drm_file *file,
Chris Wilson8dc5d142010-08-12 12:36:12 +01001800 struct drm_i915_gem_request *request,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001801 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001802{
1803 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001804 struct drm_i915_file_private *file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001805 uint32_t seqno;
1806 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001807 int ret;
1808
1809 BUG_ON(request == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001810
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001811 if (file != NULL)
1812 file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001813
Chris Wilson3cce4692010-10-27 16:11:02 +01001814 ret = ring->add_request(ring, &seqno);
1815 if (ret)
1816 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001817
Chris Wilsona56ba562010-09-28 10:07:56 +01001818 ring->outstanding_lazy_request = false;
Eric Anholt673a3942008-07-30 12:06:12 -07001819
1820 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001821 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001822 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001823 was_empty = list_empty(&ring->request_list);
1824 list_add_tail(&request->list, &ring->request_list);
1825
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001826 if (file_priv) {
Chris Wilson1c255952010-09-26 11:03:27 +01001827 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001828 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001829 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001830 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001831 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001832 }
Eric Anholt673a3942008-07-30 12:06:12 -07001833
Ben Gamarif65d9422009-09-14 17:48:44 -04001834 if (!dev_priv->mm.suspended) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001835 mod_timer(&dev_priv->hangcheck_timer,
1836 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001837 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001838 queue_delayed_work(dev_priv->wq,
1839 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001840 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001841 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001842}
1843
1844/**
1845 * Command execution barrier
1846 *
1847 * Ensures that all commands in the ring are finished
1848 * before signalling the CPU
1849 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001850static void
Zou Nan hai852835f2010-05-21 09:08:56 +08001851i915_retire_commands(struct drm_device *dev, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001852{
Eric Anholt673a3942008-07-30 12:06:12 -07001853 uint32_t flush_domains = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001854
1855 /* The sampler always gets flushed on i965 (sigh) */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001856 if (INTEL_INFO(dev)->gen >= 4)
Eric Anholt673a3942008-07-30 12:06:12 -07001857 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
Zou Nan hai852835f2010-05-21 09:08:56 +08001858
Chris Wilson78501ea2010-10-27 12:18:21 +01001859 ring->flush(ring, I915_GEM_DOMAIN_COMMAND, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07001860}
1861
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001862static inline void
1863i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001864{
Chris Wilson1c255952010-09-26 11:03:27 +01001865 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001866
Chris Wilson1c255952010-09-26 11:03:27 +01001867 if (!file_priv)
1868 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001869
Chris Wilson1c255952010-09-26 11:03:27 +01001870 spin_lock(&file_priv->mm.lock);
1871 list_del(&request->client_list);
1872 request->file_priv = NULL;
1873 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001874}
1875
Chris Wilsondfaae392010-09-22 10:31:52 +01001876static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1877 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001878{
Chris Wilsondfaae392010-09-22 10:31:52 +01001879 while (!list_empty(&ring->request_list)) {
1880 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001881
Chris Wilsondfaae392010-09-22 10:31:52 +01001882 request = list_first_entry(&ring->request_list,
1883 struct drm_i915_gem_request,
1884 list);
1885
1886 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001887 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001888 kfree(request);
1889 }
1890
1891 while (!list_empty(&ring->active_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001892 struct drm_i915_gem_object *obj_priv;
1893
Chris Wilsondfaae392010-09-22 10:31:52 +01001894 obj_priv = list_first_entry(&ring->active_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001895 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001896 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001897
Chris Wilsondfaae392010-09-22 10:31:52 +01001898 obj_priv->base.write_domain = 0;
1899 list_del_init(&obj_priv->gpu_write_list);
1900 i915_gem_object_move_to_inactive(&obj_priv->base);
Eric Anholt673a3942008-07-30 12:06:12 -07001901 }
Eric Anholt673a3942008-07-30 12:06:12 -07001902}
1903
Chris Wilson069efc12010-09-30 16:53:18 +01001904void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001905{
Chris Wilsondfaae392010-09-22 10:31:52 +01001906 struct drm_i915_private *dev_priv = dev->dev_private;
1907 struct drm_i915_gem_object *obj_priv;
Chris Wilson069efc12010-09-30 16:53:18 +01001908 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001909
Chris Wilsondfaae392010-09-22 10:31:52 +01001910 i915_gem_reset_ring_lists(dev_priv, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001911 i915_gem_reset_ring_lists(dev_priv, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001912 i915_gem_reset_ring_lists(dev_priv, &dev_priv->blt_ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01001913
1914 /* Remove anything from the flushing lists. The GPU cache is likely
1915 * to be lost on reset along with the data, so simply move the
1916 * lost bo to the inactive list.
1917 */
1918 while (!list_empty(&dev_priv->mm.flushing_list)) {
Chris Wilson9375e442010-09-19 12:21:28 +01001919 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
1920 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001921 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001922
1923 obj_priv->base.write_domain = 0;
Chris Wilsondfaae392010-09-22 10:31:52 +01001924 list_del_init(&obj_priv->gpu_write_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001925 i915_gem_object_move_to_inactive(&obj_priv->base);
1926 }
Chris Wilson9375e442010-09-19 12:21:28 +01001927
Chris Wilsondfaae392010-09-22 10:31:52 +01001928 /* Move everything out of the GPU domains to ensure we do any
1929 * necessary invalidation upon reuse.
1930 */
Chris Wilson77f01232010-09-19 12:31:36 +01001931 list_for_each_entry(obj_priv,
1932 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001933 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001934 {
1935 obj_priv->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
1936 }
Chris Wilson069efc12010-09-30 16:53:18 +01001937
1938 /* The fence registers are invalidated so clear them out */
1939 for (i = 0; i < 16; i++) {
1940 struct drm_i915_fence_reg *reg;
1941
1942 reg = &dev_priv->fence_regs[i];
1943 if (!reg->obj)
1944 continue;
1945
1946 i915_gem_clear_fence_reg(reg->obj);
1947 }
Eric Anholt673a3942008-07-30 12:06:12 -07001948}
1949
1950/**
1951 * This function clears the request list as sequence numbers are passed.
1952 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001953static void
1954i915_gem_retire_requests_ring(struct drm_device *dev,
1955 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001956{
1957 drm_i915_private_t *dev_priv = dev->dev_private;
1958 uint32_t seqno;
1959
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001960 if (!ring->status_page.page_addr ||
1961 list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001962 return;
1963
Chris Wilson23bc5982010-09-29 16:10:57 +01001964 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001965
Chris Wilson78501ea2010-10-27 12:18:21 +01001966 seqno = ring->get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001967 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001968 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001969
Zou Nan hai852835f2010-05-21 09:08:56 +08001970 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001971 struct drm_i915_gem_request,
1972 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001973
Chris Wilsondfaae392010-09-22 10:31:52 +01001974 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001975 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001976
1977 trace_i915_gem_request_retire(dev, request->seqno);
1978
1979 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001980 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001981 kfree(request);
1982 }
1983
1984 /* Move any buffers on the active list that are no longer referenced
1985 * by the ringbuffer to the flushing/inactive lists as appropriate.
1986 */
1987 while (!list_empty(&ring->active_list)) {
1988 struct drm_gem_object *obj;
1989 struct drm_i915_gem_object *obj_priv;
1990
1991 obj_priv = list_first_entry(&ring->active_list,
1992 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001993 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001994
Chris Wilsondfaae392010-09-22 10:31:52 +01001995 if (!i915_seqno_passed(seqno, obj_priv->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001996 break;
1997
1998 obj = &obj_priv->base;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001999 if (obj->write_domain != 0)
2000 i915_gem_object_move_to_flushing(obj);
2001 else
2002 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002003 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002004
2005 if (unlikely (dev_priv->trace_irq_seqno &&
2006 i915_seqno_passed(dev_priv->trace_irq_seqno, seqno))) {
Chris Wilson78501ea2010-10-27 12:18:21 +01002007 ring->user_irq_put(ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002008 dev_priv->trace_irq_seqno = 0;
2009 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002010
2011 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002012}
2013
2014void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002015i915_gem_retire_requests(struct drm_device *dev)
2016{
2017 drm_i915_private_t *dev_priv = dev->dev_private;
2018
Chris Wilsonbe726152010-07-23 23:18:50 +01002019 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
2020 struct drm_i915_gem_object *obj_priv, *tmp;
2021
2022 /* We must be careful that during unbind() we do not
2023 * accidentally infinitely recurse into retire requests.
2024 * Currently:
2025 * retire -> free -> unbind -> wait -> retire_ring
2026 */
2027 list_for_each_entry_safe(obj_priv, tmp,
2028 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01002029 mm_list)
Chris Wilsonbe726152010-07-23 23:18:50 +01002030 i915_gem_free_object_tail(&obj_priv->base);
2031 }
2032
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002033 i915_gem_retire_requests_ring(dev, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01002034 i915_gem_retire_requests_ring(dev, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01002035 i915_gem_retire_requests_ring(dev, &dev_priv->blt_ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002036}
2037
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002038static void
Eric Anholt673a3942008-07-30 12:06:12 -07002039i915_gem_retire_work_handler(struct work_struct *work)
2040{
2041 drm_i915_private_t *dev_priv;
2042 struct drm_device *dev;
2043
2044 dev_priv = container_of(work, drm_i915_private_t,
2045 mm.retire_work.work);
2046 dev = dev_priv->dev;
2047
Chris Wilson891b48c2010-09-29 12:26:37 +01002048 /* Come back later if the device is busy... */
2049 if (!mutex_trylock(&dev->struct_mutex)) {
2050 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
2051 return;
2052 }
2053
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002054 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002055
Keith Packard6dbe2772008-10-14 21:41:13 -07002056 if (!dev_priv->mm.suspended &&
Zou Nan haid1b851f2010-05-21 09:08:57 +08002057 (!list_empty(&dev_priv->render_ring.request_list) ||
Chris Wilson549f7362010-10-19 11:19:32 +01002058 !list_empty(&dev_priv->bsd_ring.request_list) ||
2059 !list_empty(&dev_priv->blt_ring.request_list)))
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002060 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07002061 mutex_unlock(&dev->struct_mutex);
2062}
2063
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02002064int
Zou Nan hai852835f2010-05-21 09:08:56 +08002065i915_do_wait_request(struct drm_device *dev, uint32_t seqno,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002066 bool interruptible, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002067{
2068 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002069 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07002070 int ret = 0;
2071
2072 BUG_ON(seqno == 0);
2073
Ben Gamariba1234d2009-09-14 17:48:47 -04002074 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002075 return -EAGAIN;
Ben Gamariffed1d02009-09-14 17:48:41 -04002076
Chris Wilsona56ba562010-09-28 10:07:56 +01002077 if (ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01002078 struct drm_i915_gem_request *request;
2079
2080 request = kzalloc(sizeof(*request), GFP_KERNEL);
2081 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01002082 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01002083
2084 ret = i915_add_request(dev, NULL, request, ring);
2085 if (ret) {
2086 kfree(request);
2087 return ret;
2088 }
2089
2090 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01002091 }
Chris Wilsona56ba562010-09-28 10:07:56 +01002092 BUG_ON(seqno == dev_priv->next_seqno);
Daniel Vettere35a41d2010-02-11 22:13:59 +01002093
Chris Wilson78501ea2010-10-27 12:18:21 +01002094 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07002095 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002096 ier = I915_READ(DEIER) | I915_READ(GTIER);
2097 else
2098 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002099 if (!ier) {
2100 DRM_ERROR("something (likely vbetool) disabled "
2101 "interrupts, re-enabling\n");
2102 i915_driver_irq_preinstall(dev);
2103 i915_driver_irq_postinstall(dev);
2104 }
2105
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002106 trace_i915_gem_request_wait_begin(dev, seqno);
2107
Chris Wilsonb2223492010-10-27 15:27:33 +01002108 ring->waiting_seqno = seqno;
Chris Wilson78501ea2010-10-27 12:18:21 +01002109 ring->user_irq_get(ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002110 if (interruptible)
Zou Nan hai852835f2010-05-21 09:08:56 +08002111 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002112 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002113 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002114 else
Zou Nan hai852835f2010-05-21 09:08:56 +08002115 wait_event(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002116 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002117 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002118
Chris Wilson78501ea2010-10-27 12:18:21 +01002119 ring->user_irq_put(ring);
Chris Wilsonb2223492010-10-27 15:27:33 +01002120 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002121
2122 trace_i915_gem_request_wait_end(dev, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002123 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002124 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002125 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002126
2127 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002128 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002129 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002130 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002131
2132 /* Directly dispatch request retiring. While we have the work queue
2133 * to handle this, the waiter on a request often wants an associated
2134 * buffer to have made it to the inactive list, and we would need
2135 * a separate wait queue to handle that.
2136 */
2137 if (ret == 0)
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002138 i915_gem_retire_requests_ring(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002139
2140 return ret;
2141}
2142
Daniel Vetter48764bf2009-09-15 22:57:32 +02002143/**
2144 * Waits for a sequence number to be signaled, and cleans up the
2145 * request and object lists appropriately for that event.
2146 */
2147static int
Zou Nan hai852835f2010-05-21 09:08:56 +08002148i915_wait_request(struct drm_device *dev, uint32_t seqno,
Chris Wilsona56ba562010-09-28 10:07:56 +01002149 struct intel_ring_buffer *ring)
Daniel Vetter48764bf2009-09-15 22:57:32 +02002150{
Zou Nan hai852835f2010-05-21 09:08:56 +08002151 return i915_do_wait_request(dev, seqno, 1, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002152}
2153
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002154static void
Chris Wilson92204342010-09-18 11:02:01 +01002155i915_gem_flush_ring(struct drm_device *dev,
Chris Wilsonc78ec302010-09-20 12:50:23 +01002156 struct drm_file *file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002157 struct intel_ring_buffer *ring,
2158 uint32_t invalidate_domains,
2159 uint32_t flush_domains)
2160{
Chris Wilson78501ea2010-10-27 12:18:21 +01002161 ring->flush(ring, invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002162 i915_gem_process_flushing_list(dev, flush_domains, ring);
2163}
2164
2165static void
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002166i915_gem_flush(struct drm_device *dev,
Chris Wilsonc78ec302010-09-20 12:50:23 +01002167 struct drm_file *file_priv,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002168 uint32_t invalidate_domains,
Chris Wilson92204342010-09-18 11:02:01 +01002169 uint32_t flush_domains,
2170 uint32_t flush_rings)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002171{
2172 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter8bff9172010-02-11 22:19:40 +01002173
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002174 if (flush_domains & I915_GEM_DOMAIN_CPU)
2175 drm_agp_chipset_flush(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002176
Chris Wilson92204342010-09-18 11:02:01 +01002177 if ((flush_domains | invalidate_domains) & I915_GEM_GPU_DOMAINS) {
2178 if (flush_rings & RING_RENDER)
Chris Wilsonc78ec302010-09-20 12:50:23 +01002179 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002180 &dev_priv->render_ring,
2181 invalidate_domains, flush_domains);
2182 if (flush_rings & RING_BSD)
Chris Wilsonc78ec302010-09-20 12:50:23 +01002183 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002184 &dev_priv->bsd_ring,
2185 invalidate_domains, flush_domains);
Chris Wilson549f7362010-10-19 11:19:32 +01002186 if (flush_rings & RING_BLT)
2187 i915_gem_flush_ring(dev, file_priv,
2188 &dev_priv->blt_ring,
2189 invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002190 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002191}
2192
Eric Anholt673a3942008-07-30 12:06:12 -07002193/**
2194 * Ensures that all rendering to the object has completed and the object is
2195 * safe to unbind from the GTT or access from the CPU.
2196 */
2197static int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002198i915_gem_object_wait_rendering(struct drm_gem_object *obj,
2199 bool interruptible)
Eric Anholt673a3942008-07-30 12:06:12 -07002200{
2201 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01002202 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002203 int ret;
2204
Eric Anholte47c68e2008-11-14 13:35:19 -08002205 /* This function only exists to support waiting for existing rendering,
2206 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002207 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002208 BUG_ON((obj->write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002209
2210 /* If there is rendering queued on the buffer being evicted, wait for
2211 * it.
2212 */
2213 if (obj_priv->active) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002214 ret = i915_do_wait_request(dev,
2215 obj_priv->last_rendering_seqno,
2216 interruptible,
2217 obj_priv->ring);
2218 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002219 return ret;
2220 }
2221
2222 return 0;
2223}
2224
2225/**
2226 * Unbinds an object from the GTT aperture.
2227 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002228int
Eric Anholt673a3942008-07-30 12:06:12 -07002229i915_gem_object_unbind(struct drm_gem_object *obj)
2230{
2231 struct drm_device *dev = obj->dev;
Chris Wilson73aa8082010-09-30 11:46:12 +01002232 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002233 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002234 int ret = 0;
2235
Eric Anholt673a3942008-07-30 12:06:12 -07002236 if (obj_priv->gtt_space == NULL)
2237 return 0;
2238
2239 if (obj_priv->pin_count != 0) {
2240 DRM_ERROR("Attempting to unbind pinned buffer\n");
2241 return -EINVAL;
2242 }
2243
Eric Anholt5323fd02009-09-09 11:50:45 -07002244 /* blow away mappings if mapped through GTT */
2245 i915_gem_release_mmap(obj);
2246
Eric Anholt673a3942008-07-30 12:06:12 -07002247 /* Move the object to the CPU domain to ensure that
2248 * any possible CPU writes while it's not in the GTT
2249 * are flushed when we go to remap it. This will
2250 * also ensure that all pending GPU writes are finished
2251 * before we unbind.
2252 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002253 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilson8dc17752010-07-23 23:18:51 +01002254 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002255 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002256 /* Continue on if we fail due to EIO, the GPU is hung so we
2257 * should be safe and we need to cleanup or else we might
2258 * cause memory corruption through use-after-free.
2259 */
Chris Wilson812ed492010-09-30 15:08:57 +01002260 if (ret) {
2261 i915_gem_clflush_object(obj);
2262 obj->read_domains = obj->write_domain = I915_GEM_DOMAIN_CPU;
2263 }
Eric Anholt673a3942008-07-30 12:06:12 -07002264
Daniel Vetter96b47b62009-12-15 17:50:00 +01002265 /* release the fence reg _after_ flushing */
2266 if (obj_priv->fence_reg != I915_FENCE_REG_NONE)
2267 i915_gem_clear_fence_reg(obj);
2268
Chris Wilson73aa8082010-09-30 11:46:12 +01002269 drm_unbind_agp(obj_priv->agp_mem);
2270 drm_free_agp(obj_priv->agp_mem, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002271
Chris Wilsone5281cc2010-10-28 13:45:36 +01002272 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002273
Chris Wilsona00b10c2010-09-24 21:15:47 +01002274 i915_gem_info_remove_gtt(dev_priv, obj_priv);
Chris Wilson69dc4982010-10-19 10:36:51 +01002275 list_del_init(&obj_priv->mm_list);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002276 obj_priv->fenceable = true;
2277 obj_priv->mappable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002278
Chris Wilson73aa8082010-09-30 11:46:12 +01002279 drm_mm_put_block(obj_priv->gtt_space);
2280 obj_priv->gtt_space = NULL;
Chris Wilson9af90d12010-10-17 10:01:56 +01002281 obj_priv->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002282
Chris Wilson963b4832009-09-20 23:03:54 +01002283 if (i915_gem_object_is_purgeable(obj_priv))
2284 i915_gem_object_truncate(obj);
2285
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002286 trace_i915_gem_object_unbind(obj);
2287
Chris Wilson8dc17752010-07-23 23:18:51 +01002288 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002289}
2290
Chris Wilsona56ba562010-09-28 10:07:56 +01002291static int i915_ring_idle(struct drm_device *dev,
2292 struct intel_ring_buffer *ring)
2293{
Chris Wilson395b70b2010-10-28 21:28:46 +01002294 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002295 return 0;
2296
Chris Wilsona56ba562010-09-28 10:07:56 +01002297 i915_gem_flush_ring(dev, NULL, ring,
2298 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
2299 return i915_wait_request(dev,
2300 i915_gem_next_request_seqno(dev, ring),
2301 ring);
2302}
2303
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002304int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002305i915_gpu_idle(struct drm_device *dev)
2306{
2307 drm_i915_private_t *dev_priv = dev->dev_private;
2308 bool lists_empty;
Zou Nan hai852835f2010-05-21 09:08:56 +08002309 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002310
Zou Nan haid1b851f2010-05-21 09:08:57 +08002311 lists_empty = (list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson395b70b2010-10-28 21:28:46 +01002312 list_empty(&dev_priv->mm.active_list));
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002313 if (lists_empty)
2314 return 0;
2315
2316 /* Flush everything onto the inactive list. */
Chris Wilsona56ba562010-09-28 10:07:56 +01002317 ret = i915_ring_idle(dev, &dev_priv->render_ring);
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002318 if (ret)
2319 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002320
Chris Wilson87acb0a2010-10-19 10:13:00 +01002321 ret = i915_ring_idle(dev, &dev_priv->bsd_ring);
2322 if (ret)
2323 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002324
Chris Wilson549f7362010-10-19 11:19:32 +01002325 ret = i915_ring_idle(dev, &dev_priv->blt_ring);
2326 if (ret)
2327 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002328
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002329 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002330}
2331
Chris Wilsona00b10c2010-09-24 21:15:47 +01002332static void sandybridge_write_fence_reg(struct drm_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002333{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002334 struct drm_device *dev = obj->dev;
2335 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002336 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002337 u32 size = i915_gem_get_gtt_size(obj_priv);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002338 int regnum = obj_priv->fence_reg;
2339 uint64_t val;
2340
Chris Wilsona00b10c2010-09-24 21:15:47 +01002341 val = (uint64_t)((obj_priv->gtt_offset + size - 4096) &
Eric Anholt4e901fd2009-10-26 16:44:17 -07002342 0xfffff000) << 32;
2343 val |= obj_priv->gtt_offset & 0xfffff000;
2344 val |= (uint64_t)((obj_priv->stride / 128) - 1) <<
2345 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2346
2347 if (obj_priv->tiling_mode == I915_TILING_Y)
2348 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2349 val |= I965_FENCE_REG_VALID;
2350
2351 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (regnum * 8), val);
2352}
2353
Chris Wilsona00b10c2010-09-24 21:15:47 +01002354static void i965_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002355{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002356 struct drm_device *dev = obj->dev;
2357 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002358 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002359 u32 size = i915_gem_get_gtt_size(obj_priv);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002360 int regnum = obj_priv->fence_reg;
2361 uint64_t val;
2362
Chris Wilsona00b10c2010-09-24 21:15:47 +01002363 val = (uint64_t)((obj_priv->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002364 0xfffff000) << 32;
2365 val |= obj_priv->gtt_offset & 0xfffff000;
2366 val |= ((obj_priv->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2367 if (obj_priv->tiling_mode == I915_TILING_Y)
2368 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2369 val |= I965_FENCE_REG_VALID;
2370
2371 I915_WRITE64(FENCE_REG_965_0 + (regnum * 8), val);
2372}
2373
Chris Wilsona00b10c2010-09-24 21:15:47 +01002374static void i915_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002375{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002376 struct drm_device *dev = obj->dev;
2377 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002378 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002379 u32 size = i915_gem_get_gtt_size(obj_priv);
2380 uint32_t fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002381 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002382
2383 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
Chris Wilsona00b10c2010-09-24 21:15:47 +01002384 (obj_priv->gtt_offset & (size - 1))) {
2385 WARN(1, "%s: object 0x%08x [fenceable? %d] not 1M or size (0x%08x) aligned [gtt_space offset=%lx, size=%lx]\n",
2386 __func__, obj_priv->gtt_offset, obj_priv->fenceable, size,
2387 obj_priv->gtt_space->start, obj_priv->gtt_space->size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002388 return;
2389 }
2390
Jesse Barnes0f973f22009-01-26 17:10:45 -08002391 if (obj_priv->tiling_mode == I915_TILING_Y &&
2392 HAS_128_BYTE_Y_TILING(dev))
2393 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002394 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002395 tile_width = 512;
2396
2397 /* Note: pitch better be a power of two tile widths */
2398 pitch_val = obj_priv->stride / tile_width;
2399 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002400
Daniel Vetterc36a2a62010-04-17 15:12:03 +02002401 if (obj_priv->tiling_mode == I915_TILING_Y &&
2402 HAS_128_BYTE_Y_TILING(dev))
2403 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2404 else
2405 WARN_ON(pitch_val > I915_FENCE_MAX_PITCH_VAL);
2406
Jesse Barnesde151cf2008-11-12 10:03:55 -08002407 val = obj_priv->gtt_offset;
2408 if (obj_priv->tiling_mode == I915_TILING_Y)
2409 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002410 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002411 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2412 val |= I830_FENCE_REG_VALID;
2413
Chris Wilsona00b10c2010-09-24 21:15:47 +01002414 fence_reg = obj_priv->fence_reg;
2415 if (fence_reg < 8)
2416 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002417 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002418 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002419 I915_WRITE(fence_reg, val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002420}
2421
Chris Wilsona00b10c2010-09-24 21:15:47 +01002422static void i830_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002423{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002424 struct drm_device *dev = obj->dev;
2425 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002426 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002427 u32 size = i915_gem_get_gtt_size(obj_priv);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002428 int regnum = obj_priv->fence_reg;
2429 uint32_t val;
2430 uint32_t pitch_val;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002431 uint32_t fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002432
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002433 if ((obj_priv->gtt_offset & ~I830_FENCE_START_MASK) ||
Jesse Barnesde151cf2008-11-12 10:03:55 -08002434 (obj_priv->gtt_offset & (obj->size - 1))) {
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002435 WARN(1, "%s: object 0x%08x not 512K or size aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002436 __func__, obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002437 return;
2438 }
2439
Eric Anholte76a16d2009-05-26 17:44:56 -07002440 pitch_val = obj_priv->stride / 128;
2441 pitch_val = ffs(pitch_val) - 1;
2442 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2443
Jesse Barnesde151cf2008-11-12 10:03:55 -08002444 val = obj_priv->gtt_offset;
2445 if (obj_priv->tiling_mode == I915_TILING_Y)
2446 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002447 fence_size_bits = I830_FENCE_SIZE_BITS(size);
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002448 WARN_ON(fence_size_bits & ~0x00000f00);
2449 val |= fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002450 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2451 val |= I830_FENCE_REG_VALID;
2452
2453 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454}
2455
Chris Wilson2cf34d72010-09-14 13:03:28 +01002456static int i915_find_fence_reg(struct drm_device *dev,
2457 bool interruptible)
Daniel Vetterae3db242010-02-19 11:51:58 +01002458{
Daniel Vetterae3db242010-02-19 11:51:58 +01002459 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002460 struct drm_i915_fence_reg *reg;
2461 struct drm_i915_gem_object *obj_priv = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002462 int i, avail, ret;
2463
2464 /* First try to find a free reg */
2465 avail = 0;
2466 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2467 reg = &dev_priv->fence_regs[i];
2468 if (!reg->obj)
2469 return i;
2470
Daniel Vetter23010e42010-03-08 13:35:02 +01002471 obj_priv = to_intel_bo(reg->obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002472 if (!obj_priv->pin_count)
2473 avail++;
2474 }
2475
2476 if (avail == 0)
2477 return -ENOSPC;
2478
2479 /* None available, try to steal one or wait for a user to finish */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002480 avail = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002481 list_for_each_entry(reg, &dev_priv->mm.fence_list,
2482 lru_list) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01002483 obj_priv = to_intel_bo(reg->obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002484 if (obj_priv->pin_count)
2485 continue;
2486
2487 /* found one! */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002488 avail = obj_priv->fence_reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002489 break;
2490 }
2491
Chris Wilsona00b10c2010-09-24 21:15:47 +01002492 BUG_ON(avail == I915_FENCE_REG_NONE);
Daniel Vetterae3db242010-02-19 11:51:58 +01002493
2494 /* We only have a reference on obj from the active list. put_fence_reg
2495 * might drop that one, causing a use-after-free in it. So hold a
2496 * private reference to obj like the other callers of put_fence_reg
2497 * (set_tiling ioctl) do. */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002498 drm_gem_object_reference(&obj_priv->base);
2499 ret = i915_gem_object_put_fence_reg(&obj_priv->base, interruptible);
2500 drm_gem_object_unreference(&obj_priv->base);
Daniel Vetterae3db242010-02-19 11:51:58 +01002501 if (ret != 0)
2502 return ret;
2503
Chris Wilsona00b10c2010-09-24 21:15:47 +01002504 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002505}
2506
Jesse Barnesde151cf2008-11-12 10:03:55 -08002507/**
2508 * i915_gem_object_get_fence_reg - set up a fence reg for an object
2509 * @obj: object to map through a fence reg
2510 *
2511 * When mapping objects through the GTT, userspace wants to be able to write
2512 * to them without having to worry about swizzling if the object is tiled.
2513 *
2514 * This function walks the fence regs looking for a free one for @obj,
2515 * stealing one if it can't find any.
2516 *
2517 * It then sets up the reg based on the object's properties: address, pitch
2518 * and tiling format.
2519 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002520int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002521i915_gem_object_get_fence_reg(struct drm_gem_object *obj,
2522 bool interruptible)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002523{
2524 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002525 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002526 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002527 struct drm_i915_fence_reg *reg = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002528 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002529
Eric Anholta09ba7f2009-08-29 12:49:51 -07002530 /* Just update our place in the LRU if our fence is getting used. */
2531 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002532 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
2533 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002534 return 0;
2535 }
2536
Jesse Barnesde151cf2008-11-12 10:03:55 -08002537 switch (obj_priv->tiling_mode) {
2538 case I915_TILING_NONE:
2539 WARN(1, "allocating a fence for non-tiled object?\n");
2540 break;
2541 case I915_TILING_X:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002542 if (!obj_priv->stride)
2543 return -EINVAL;
2544 WARN((obj_priv->stride & (512 - 1)),
2545 "object 0x%08x is X tiled but has non-512B pitch\n",
2546 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002547 break;
2548 case I915_TILING_Y:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002549 if (!obj_priv->stride)
2550 return -EINVAL;
2551 WARN((obj_priv->stride & (128 - 1)),
2552 "object 0x%08x is Y tiled but has non-128B pitch\n",
2553 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002554 break;
2555 }
2556
Chris Wilson2cf34d72010-09-14 13:03:28 +01002557 ret = i915_find_fence_reg(dev, interruptible);
Daniel Vetterae3db242010-02-19 11:51:58 +01002558 if (ret < 0)
2559 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002560
Daniel Vetterae3db242010-02-19 11:51:58 +01002561 obj_priv->fence_reg = ret;
2562 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002563 list_add_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002564
Jesse Barnesde151cf2008-11-12 10:03:55 -08002565 reg->obj = obj;
2566
Chris Wilsone259bef2010-09-17 00:32:02 +01002567 switch (INTEL_INFO(dev)->gen) {
2568 case 6:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002569 sandybridge_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002570 break;
2571 case 5:
2572 case 4:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002573 i965_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002574 break;
2575 case 3:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002576 i915_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002577 break;
2578 case 2:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002579 i830_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002580 break;
2581 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002582
Chris Wilsona00b10c2010-09-24 21:15:47 +01002583 trace_i915_gem_object_get_fence(obj,
2584 obj_priv->fence_reg,
2585 obj_priv->tiling_mode);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002586
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002587 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002588}
2589
2590/**
2591 * i915_gem_clear_fence_reg - clear out fence register info
2592 * @obj: object to clear
2593 *
2594 * Zeroes out the fence register itself and clears out the associated
2595 * data structures in dev_priv and obj_priv.
2596 */
2597static void
2598i915_gem_clear_fence_reg(struct drm_gem_object *obj)
2599{
2600 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002601 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002602 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002603 struct drm_i915_fence_reg *reg =
2604 &dev_priv->fence_regs[obj_priv->fence_reg];
Chris Wilsone259bef2010-09-17 00:32:02 +01002605 uint32_t fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002606
Chris Wilsone259bef2010-09-17 00:32:02 +01002607 switch (INTEL_INFO(dev)->gen) {
2608 case 6:
Eric Anholt4e901fd2009-10-26 16:44:17 -07002609 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 +
2610 (obj_priv->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002611 break;
2612 case 5:
2613 case 4:
Jesse Barnesde151cf2008-11-12 10:03:55 -08002614 I915_WRITE64(FENCE_REG_965_0 + (obj_priv->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002615 break;
2616 case 3:
Chris Wilson9b74f732010-09-22 19:10:44 +01002617 if (obj_priv->fence_reg >= 8)
Chris Wilsone259bef2010-09-17 00:32:02 +01002618 fence_reg = FENCE_REG_945_8 + (obj_priv->fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002619 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002620 case 2:
2621 fence_reg = FENCE_REG_830_0 + obj_priv->fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002622
2623 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002624 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002625 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002626
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002627 reg->obj = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002628 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002629 list_del_init(&reg->lru_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002630}
2631
Eric Anholt673a3942008-07-30 12:06:12 -07002632/**
Chris Wilson52dc7d32009-06-06 09:46:01 +01002633 * i915_gem_object_put_fence_reg - waits on outstanding fenced access
2634 * to the buffer to finish, and then resets the fence register.
2635 * @obj: tiled object holding a fence register.
Chris Wilson2cf34d72010-09-14 13:03:28 +01002636 * @bool: whether the wait upon the fence is interruptible
Chris Wilson52dc7d32009-06-06 09:46:01 +01002637 *
2638 * Zeroes out the fence register itself and clears out the associated
2639 * data structures in dev_priv and obj_priv.
2640 */
2641int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002642i915_gem_object_put_fence_reg(struct drm_gem_object *obj,
2643 bool interruptible)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002644{
2645 struct drm_device *dev = obj->dev;
Chris Wilson53640e12010-09-20 11:40:50 +01002646 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002647 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson53640e12010-09-20 11:40:50 +01002648 struct drm_i915_fence_reg *reg;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002649
2650 if (obj_priv->fence_reg == I915_FENCE_REG_NONE)
2651 return 0;
2652
Daniel Vetter10ae9bd2010-02-01 13:59:17 +01002653 /* If we've changed tiling, GTT-mappings of the object
2654 * need to re-fault to ensure that the correct fence register
2655 * setup is in place.
2656 */
2657 i915_gem_release_mmap(obj);
2658
Chris Wilson52dc7d32009-06-06 09:46:01 +01002659 /* On the i915, GPU access to tiled buffers is via a fence,
2660 * therefore we must wait for any outstanding access to complete
2661 * before clearing the fence.
2662 */
Chris Wilson53640e12010-09-20 11:40:50 +01002663 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
2664 if (reg->gpu) {
Chris Wilson52dc7d32009-06-06 09:46:01 +01002665 int ret;
2666
Chris Wilson2cf34d72010-09-14 13:03:28 +01002667 ret = i915_gem_object_flush_gpu_write_domain(obj, true);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002668 if (ret)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002669 return ret;
2670
Chris Wilson2cf34d72010-09-14 13:03:28 +01002671 ret = i915_gem_object_wait_rendering(obj, interruptible);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002672 if (ret)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002673 return ret;
Chris Wilson53640e12010-09-20 11:40:50 +01002674
2675 reg->gpu = false;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002676 }
2677
Daniel Vetter4a726612010-02-01 13:59:16 +01002678 i915_gem_object_flush_gtt_write_domain(obj);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002679 i915_gem_clear_fence_reg(obj);
Chris Wilson52dc7d32009-06-06 09:46:01 +01002680
2681 return 0;
2682}
2683
2684/**
Eric Anholt673a3942008-07-30 12:06:12 -07002685 * Finds free space in the GTT aperture and binds the object there.
2686 */
2687static int
Daniel Vetter920afa72010-09-16 17:54:23 +02002688i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
2689 unsigned alignment,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002690 bool mappable,
2691 bool need_fence)
Eric Anholt673a3942008-07-30 12:06:12 -07002692{
2693 struct drm_device *dev = obj->dev;
2694 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002695 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002696 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002697 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
2698 u32 size, fence_size, fence_alignment;
Chris Wilson07f73f62009-09-14 16:50:30 +01002699 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002700
Chris Wilsonbb6baf72009-09-22 14:24:13 +01002701 if (obj_priv->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002702 DRM_ERROR("Attempting to bind a purgeable object\n");
2703 return -EINVAL;
2704 }
2705
Chris Wilsona00b10c2010-09-24 21:15:47 +01002706 fence_size = i915_gem_get_gtt_size(obj_priv);
2707 fence_alignment = i915_gem_get_gtt_alignment(obj_priv);
2708
Eric Anholt673a3942008-07-30 12:06:12 -07002709 if (alignment == 0)
Chris Wilsona00b10c2010-09-24 21:15:47 +01002710 alignment = need_fence ? fence_alignment : 4096;
2711 if (need_fence && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002712 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2713 return -EINVAL;
2714 }
2715
Chris Wilsona00b10c2010-09-24 21:15:47 +01002716 size = need_fence ? fence_size : obj->size;
2717
Chris Wilson654fc602010-05-27 13:18:21 +01002718 /* If the object is bigger than the entire aperture, reject it early
2719 * before evicting everything in a vain attempt to find space.
2720 */
Daniel Vetter920afa72010-09-16 17:54:23 +02002721 if (obj->size >
2722 (mappable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002723 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2724 return -E2BIG;
2725 }
2726
Eric Anholt673a3942008-07-30 12:06:12 -07002727 search_free:
Daniel Vetter920afa72010-09-16 17:54:23 +02002728 if (mappable)
2729 free_space =
2730 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002731 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002732 dev_priv->mm.gtt_mappable_end,
2733 0);
2734 else
2735 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002736 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002737
2738 if (free_space != NULL) {
2739 if (mappable)
2740 obj_priv->gtt_space =
2741 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002742 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002743 dev_priv->mm.gtt_mappable_end,
2744 0);
2745 else
2746 obj_priv->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002747 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002748 }
Eric Anholt673a3942008-07-30 12:06:12 -07002749 if (obj_priv->gtt_space == NULL) {
2750 /* If the gtt is empty and we're still having trouble
2751 * fitting our object in, we're out of memory.
2752 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002753 ret = i915_gem_evict_something(dev, size, alignment, mappable);
Chris Wilson97311292009-09-21 00:22:34 +01002754 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002755 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002756
Eric Anholt673a3942008-07-30 12:06:12 -07002757 goto search_free;
2758 }
2759
Chris Wilsone5281cc2010-10-28 13:45:36 +01002760 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002761 if (ret) {
2762 drm_mm_put_block(obj_priv->gtt_space);
2763 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002764
2765 if (ret == -ENOMEM) {
2766 /* first try to clear up some space from the GTT */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002767 ret = i915_gem_evict_something(dev, size,
Daniel Vetter920afa72010-09-16 17:54:23 +02002768 alignment, mappable);
Chris Wilson07f73f62009-09-14 16:50:30 +01002769 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002770 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002771 if (gfpmask) {
2772 gfpmask = 0;
2773 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002774 }
2775
2776 return ret;
2777 }
2778
2779 goto search_free;
2780 }
2781
Eric Anholt673a3942008-07-30 12:06:12 -07002782 return ret;
2783 }
2784
Eric Anholt673a3942008-07-30 12:06:12 -07002785 /* Create an AGP memory structure pointing at our pages, and bind it
2786 * into the GTT.
2787 */
2788 obj_priv->agp_mem = drm_agp_bind_pages(dev,
Eric Anholt856fa192009-03-19 14:10:50 -07002789 obj_priv->pages,
Chris Wilson07f73f62009-09-14 16:50:30 +01002790 obj->size >> PAGE_SHIFT,
Chris Wilson9af90d12010-10-17 10:01:56 +01002791 obj_priv->gtt_space->start,
Keith Packardba1eb1d2008-10-14 19:55:10 -07002792 obj_priv->agp_type);
Eric Anholt673a3942008-07-30 12:06:12 -07002793 if (obj_priv->agp_mem == NULL) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002794 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002795 drm_mm_put_block(obj_priv->gtt_space);
2796 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002797
Chris Wilsona00b10c2010-09-24 21:15:47 +01002798 ret = i915_gem_evict_something(dev, size,
2799 alignment, mappable);
Chris Wilson97311292009-09-21 00:22:34 +01002800 if (ret)
Chris Wilson07f73f62009-09-14 16:50:30 +01002801 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002802
2803 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002804 }
Eric Anholt673a3942008-07-30 12:06:12 -07002805
Daniel Vetterfb7d5162010-10-01 22:05:20 +02002806 obj_priv->gtt_offset = obj_priv->gtt_space->start;
2807
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002808 /* keep track of bounds object by adding it to the inactive list */
Chris Wilson69dc4982010-10-19 10:36:51 +01002809 list_add_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002810 i915_gem_info_add_gtt(dev_priv, obj_priv);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002811
Eric Anholt673a3942008-07-30 12:06:12 -07002812 /* Assert that the object is not currently in any GPU domain. As it
2813 * wasn't in the GTT, there shouldn't be any way it could have been in
2814 * a GPU cache
2815 */
Chris Wilson21d509e2009-06-06 09:46:02 +01002816 BUG_ON(obj->read_domains & I915_GEM_GPU_DOMAINS);
2817 BUG_ON(obj->write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002818
Daniel Vetterec57d262010-09-30 23:42:15 +02002819 trace_i915_gem_object_bind(obj, obj_priv->gtt_offset, mappable);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002820
Chris Wilsona00b10c2010-09-24 21:15:47 +01002821 obj_priv->fenceable =
2822 obj_priv->gtt_space->size == fence_size &&
2823 (obj_priv->gtt_space->start & (fence_alignment -1)) == 0;
2824
2825 obj_priv->mappable =
2826 obj_priv->gtt_offset + obj->size <= dev_priv->mm.gtt_mappable_end;
2827
Eric Anholt673a3942008-07-30 12:06:12 -07002828 return 0;
2829}
2830
2831void
2832i915_gem_clflush_object(struct drm_gem_object *obj)
2833{
Daniel Vetter23010e42010-03-08 13:35:02 +01002834 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002835
2836 /* If we don't have a page list set up, then we're not pinned
2837 * to GPU, and we can ignore the cache flush because it'll happen
2838 * again at bind time.
2839 */
Eric Anholt856fa192009-03-19 14:10:50 -07002840 if (obj_priv->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002841 return;
2842
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002843 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002844
Eric Anholt856fa192009-03-19 14:10:50 -07002845 drm_clflush_pages(obj_priv->pages, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002846}
2847
Eric Anholte47c68e2008-11-14 13:35:19 -08002848/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002849static int
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002850i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj,
2851 bool pipelined)
Eric Anholte47c68e2008-11-14 13:35:19 -08002852{
2853 struct drm_device *dev = obj->dev;
Eric Anholte47c68e2008-11-14 13:35:19 -08002854
2855 if ((obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002856 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002857
2858 /* Queue the GPU write cache flushing we need. */
Chris Wilsonc78ec302010-09-20 12:50:23 +01002859 i915_gem_flush_ring(dev, NULL,
Chris Wilson92204342010-09-18 11:02:01 +01002860 to_intel_bo(obj)->ring,
2861 0, obj->write_domain);
Chris Wilson48b956c2010-09-14 12:50:34 +01002862 BUG_ON(obj->write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002863
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002864 if (pipelined)
2865 return 0;
2866
Chris Wilson2cf34d72010-09-14 13:03:28 +01002867 return i915_gem_object_wait_rendering(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08002868}
2869
2870/** Flushes the GTT write domain for the object if it's dirty. */
2871static void
2872i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj)
2873{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002874 uint32_t old_write_domain;
2875
Eric Anholte47c68e2008-11-14 13:35:19 -08002876 if (obj->write_domain != I915_GEM_DOMAIN_GTT)
2877 return;
2878
2879 /* No actual flushing is required for the GTT write domain. Writes
2880 * to it immediately go to main memory as far as we know, so there's
2881 * no chipset flush. It also doesn't land in render cache.
2882 */
Chris Wilson4a684a42010-10-28 14:44:08 +01002883 i915_gem_release_mmap(obj);
2884
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002885 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002886 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002887
2888 trace_i915_gem_object_change_domain(obj,
2889 obj->read_domains,
2890 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002891}
2892
2893/** Flushes the CPU write domain for the object if it's dirty. */
2894static void
2895i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj)
2896{
2897 struct drm_device *dev = obj->dev;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002898 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002899
2900 if (obj->write_domain != I915_GEM_DOMAIN_CPU)
2901 return;
2902
2903 i915_gem_clflush_object(obj);
2904 drm_agp_chipset_flush(dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002905 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002906 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002907
2908 trace_i915_gem_object_change_domain(obj,
2909 obj->read_domains,
2910 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002911}
2912
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002913/**
2914 * Moves a single object to the GTT read, and possibly write domain.
2915 *
2916 * This function returns when the move is complete, including waiting on
2917 * flushes to occur.
2918 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002919int
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002920i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write)
2921{
Daniel Vetter23010e42010-03-08 13:35:02 +01002922 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002923 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002924 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002925
Eric Anholt02354392008-11-26 13:58:13 -08002926 /* Not valid to be called on unbound objects. */
2927 if (obj_priv->gtt_space == NULL)
2928 return -EINVAL;
2929
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002930 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002931 if (ret != 0)
2932 return ret;
2933
Chris Wilson72133422010-09-13 23:56:38 +01002934 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002935
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002936 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002937 ret = i915_gem_object_wait_rendering(obj, true);
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002938 if (ret)
2939 return ret;
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002940 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002941
2942 old_write_domain = obj->write_domain;
2943 old_read_domains = obj->read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002944
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002945 /* It should now be out of any other write domains, and we can update
2946 * the domain values for our changes.
2947 */
2948 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2949 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002950 if (write) {
Chris Wilson72133422010-09-13 23:56:38 +01002951 obj->read_domains = I915_GEM_DOMAIN_GTT;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002952 obj->write_domain = I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002953 obj_priv->dirty = 1;
2954 }
2955
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002956 trace_i915_gem_object_change_domain(obj,
2957 old_read_domains,
2958 old_write_domain);
2959
Eric Anholte47c68e2008-11-14 13:35:19 -08002960 return 0;
2961}
2962
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002963/*
2964 * Prepare buffer for display plane. Use uninterruptible for possible flush
2965 * wait, as in modesetting process we're not supposed to be interrupted.
2966 */
2967int
Chris Wilson48b956c2010-09-14 12:50:34 +01002968i915_gem_object_set_to_display_plane(struct drm_gem_object *obj,
2969 bool pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002970{
Daniel Vetter23010e42010-03-08 13:35:02 +01002971 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002972 uint32_t old_read_domains;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002973 int ret;
2974
2975 /* Not valid to be called on unbound objects. */
2976 if (obj_priv->gtt_space == NULL)
2977 return -EINVAL;
2978
Chris Wilsonced270f2010-09-26 22:47:46 +01002979 ret = i915_gem_object_flush_gpu_write_domain(obj, true);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002980 if (ret)
2981 return ret;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002982
Chris Wilsonced270f2010-09-26 22:47:46 +01002983 /* Currently, we are always called from an non-interruptible context. */
2984 if (!pipelined) {
2985 ret = i915_gem_object_wait_rendering(obj, false);
2986 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002987 return ret;
2988 }
2989
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002990 i915_gem_object_flush_cpu_write_domain(obj);
2991
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002992 old_read_domains = obj->read_domains;
Chris Wilsonc78ec302010-09-20 12:50:23 +01002993 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002994
2995 trace_i915_gem_object_change_domain(obj,
2996 old_read_domains,
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002997 obj->write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002998
2999 return 0;
3000}
3001
Eric Anholte47c68e2008-11-14 13:35:19 -08003002/**
3003 * Moves a single object to the CPU read, and possibly write domain.
3004 *
3005 * This function returns when the move is complete, including waiting on
3006 * flushes to occur.
3007 */
3008static int
3009i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj, int write)
3010{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003011 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003012 int ret;
3013
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003014 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003015 if (ret != 0)
3016 return ret;
3017
3018 i915_gem_object_flush_gtt_write_domain(obj);
3019
3020 /* If we have a partially-valid cache of the object in the CPU,
3021 * finish invalidating it and free the per-page flags.
3022 */
3023 i915_gem_object_set_to_full_cpu_read_domain(obj);
3024
Chris Wilson72133422010-09-13 23:56:38 +01003025 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01003026 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson72133422010-09-13 23:56:38 +01003027 if (ret)
3028 return ret;
3029 }
3030
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003031 old_write_domain = obj->write_domain;
3032 old_read_domains = obj->read_domains;
3033
Eric Anholte47c68e2008-11-14 13:35:19 -08003034 /* Flush the CPU cache if it's still invalid. */
3035 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
3036 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003037
3038 obj->read_domains |= I915_GEM_DOMAIN_CPU;
3039 }
3040
3041 /* It should now be out of any other write domains, and we can update
3042 * the domain values for our changes.
3043 */
3044 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
3045
3046 /* If we're writing through the CPU, then the GPU read domains will
3047 * need to be invalidated at next use.
3048 */
3049 if (write) {
Chris Wilsonc78ec302010-09-20 12:50:23 +01003050 obj->read_domains = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003051 obj->write_domain = I915_GEM_DOMAIN_CPU;
3052 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003053
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003054 trace_i915_gem_object_change_domain(obj,
3055 old_read_domains,
3056 old_write_domain);
3057
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003058 return 0;
3059}
3060
Eric Anholt673a3942008-07-30 12:06:12 -07003061/*
3062 * Set the next domain for the specified object. This
3063 * may not actually perform the necessary flushing/invaliding though,
3064 * as that may want to be batched with other set_domain operations
3065 *
3066 * This is (we hope) the only really tricky part of gem. The goal
3067 * is fairly simple -- track which caches hold bits of the object
3068 * and make sure they remain coherent. A few concrete examples may
3069 * help to explain how it works. For shorthand, we use the notation
3070 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
3071 * a pair of read and write domain masks.
3072 *
3073 * Case 1: the batch buffer
3074 *
3075 * 1. Allocated
3076 * 2. Written by CPU
3077 * 3. Mapped to GTT
3078 * 4. Read by GPU
3079 * 5. Unmapped from GTT
3080 * 6. Freed
3081 *
3082 * Let's take these a step at a time
3083 *
3084 * 1. Allocated
3085 * Pages allocated from the kernel may still have
3086 * cache contents, so we set them to (CPU, CPU) always.
3087 * 2. Written by CPU (using pwrite)
3088 * The pwrite function calls set_domain (CPU, CPU) and
3089 * this function does nothing (as nothing changes)
3090 * 3. Mapped by GTT
3091 * This function asserts that the object is not
3092 * currently in any GPU-based read or write domains
3093 * 4. Read by GPU
3094 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
3095 * As write_domain is zero, this function adds in the
3096 * current read domains (CPU+COMMAND, 0).
3097 * flush_domains is set to CPU.
3098 * invalidate_domains is set to COMMAND
3099 * clflush is run to get data out of the CPU caches
3100 * then i915_dev_set_domain calls i915_gem_flush to
3101 * emit an MI_FLUSH and drm_agp_chipset_flush
3102 * 5. Unmapped from GTT
3103 * i915_gem_object_unbind calls set_domain (CPU, CPU)
3104 * flush_domains and invalidate_domains end up both zero
3105 * so no flushing/invalidating happens
3106 * 6. Freed
3107 * yay, done
3108 *
3109 * Case 2: The shared render buffer
3110 *
3111 * 1. Allocated
3112 * 2. Mapped to GTT
3113 * 3. Read/written by GPU
3114 * 4. set_domain to (CPU,CPU)
3115 * 5. Read/written by CPU
3116 * 6. Read/written by GPU
3117 *
3118 * 1. Allocated
3119 * Same as last example, (CPU, CPU)
3120 * 2. Mapped to GTT
3121 * Nothing changes (assertions find that it is not in the GPU)
3122 * 3. Read/written by GPU
3123 * execbuffer calls set_domain (RENDER, RENDER)
3124 * flush_domains gets CPU
3125 * invalidate_domains gets GPU
3126 * clflush (obj)
3127 * MI_FLUSH and drm_agp_chipset_flush
3128 * 4. set_domain (CPU, CPU)
3129 * flush_domains gets GPU
3130 * invalidate_domains gets CPU
3131 * wait_rendering (obj) to make sure all drawing is complete.
3132 * This will include an MI_FLUSH to get the data from GPU
3133 * to memory
3134 * clflush (obj) to invalidate the CPU cache
3135 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
3136 * 5. Read/written by CPU
3137 * cache lines are loaded and dirtied
3138 * 6. Read written by GPU
3139 * Same as last GPU access
3140 *
3141 * Case 3: The constant buffer
3142 *
3143 * 1. Allocated
3144 * 2. Written by CPU
3145 * 3. Read by GPU
3146 * 4. Updated (written) by CPU again
3147 * 5. Read by GPU
3148 *
3149 * 1. Allocated
3150 * (CPU, CPU)
3151 * 2. Written by CPU
3152 * (CPU, CPU)
3153 * 3. Read by GPU
3154 * (CPU+RENDER, 0)
3155 * flush_domains = CPU
3156 * invalidate_domains = RENDER
3157 * clflush (obj)
3158 * MI_FLUSH
3159 * drm_agp_chipset_flush
3160 * 4. Updated (written) by CPU again
3161 * (CPU, CPU)
3162 * flush_domains = 0 (no previous write domain)
3163 * invalidate_domains = 0 (no new read domains)
3164 * 5. Read by GPU
3165 * (CPU+RENDER, 0)
3166 * flush_domains = CPU
3167 * invalidate_domains = RENDER
3168 * clflush (obj)
3169 * MI_FLUSH
3170 * drm_agp_chipset_flush
3171 */
Keith Packardc0d90822008-11-20 23:11:08 -08003172static void
Chris Wilsonb6651452010-10-23 10:15:06 +01003173i915_gem_object_set_to_gpu_domain(struct drm_gem_object *obj,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003174 struct intel_ring_buffer *ring,
3175 struct change_domains *cd)
Eric Anholt673a3942008-07-30 12:06:12 -07003176{
Daniel Vetter23010e42010-03-08 13:35:02 +01003177 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003178 uint32_t invalidate_domains = 0;
3179 uint32_t flush_domains = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003180
Eric Anholt673a3942008-07-30 12:06:12 -07003181 /*
3182 * If the object isn't moving to a new write domain,
3183 * let the object stay in multiple read domains
3184 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003185 if (obj->pending_write_domain == 0)
3186 obj->pending_read_domains |= obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07003187
3188 /*
3189 * Flush the current write domain if
3190 * the new read domains don't match. Invalidate
3191 * any read domains which differ from the old
3192 * write domain
3193 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003194 if (obj->write_domain &&
Chris Wilson13b29282010-11-01 12:22:48 +00003195 (obj->write_domain != obj->pending_read_domains ||
3196 obj_priv->ring != ring)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003197 flush_domains |= obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08003198 invalidate_domains |=
3199 obj->pending_read_domains & ~obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003200 }
3201 /*
3202 * Invalidate any read caches which may have
3203 * stale data. That is, any new read domains.
3204 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003205 invalidate_domains |= obj->pending_read_domains & ~obj->read_domains;
Chris Wilson3d2a8122010-09-29 11:39:53 +01003206 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU)
Eric Anholt673a3942008-07-30 12:06:12 -07003207 i915_gem_clflush_object(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003208
Chris Wilson4a684a42010-10-28 14:44:08 +01003209 /* blow away mappings if mapped through GTT */
3210 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_GTT)
3211 i915_gem_release_mmap(obj);
3212
Eric Anholtefbeed92009-02-19 14:54:51 -08003213 /* The actual obj->write_domain will be updated with
3214 * pending_write_domain after we emit the accumulated flush for all
3215 * of our domain changes in execbuffers (which clears objects'
3216 * write_domains). So if we have a current write domain that we
3217 * aren't changing, set pending_write_domain to that.
3218 */
3219 if (flush_domains == 0 && obj->pending_write_domain == 0)
3220 obj->pending_write_domain = obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003221
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003222 cd->invalidate_domains |= invalidate_domains;
3223 cd->flush_domains |= flush_domains;
Chris Wilsonb6651452010-10-23 10:15:06 +01003224 if (flush_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003225 cd->flush_rings |= obj_priv->ring->id;
Chris Wilsonb6651452010-10-23 10:15:06 +01003226 if (invalidate_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003227 cd->flush_rings |= ring->id;
Eric Anholt673a3942008-07-30 12:06:12 -07003228}
3229
3230/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003231 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003232 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003233 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3234 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3235 */
3236static void
3237i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj)
3238{
Daniel Vetter23010e42010-03-08 13:35:02 +01003239 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003240
3241 if (!obj_priv->page_cpu_valid)
3242 return;
3243
3244 /* If we're partially in the CPU read domain, finish moving it in.
3245 */
3246 if (obj->read_domains & I915_GEM_DOMAIN_CPU) {
3247 int i;
3248
3249 for (i = 0; i <= (obj->size - 1) / PAGE_SIZE; i++) {
3250 if (obj_priv->page_cpu_valid[i])
3251 continue;
Eric Anholt856fa192009-03-19 14:10:50 -07003252 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003253 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003254 }
3255
3256 /* Free the page_cpu_valid mappings which are now stale, whether
3257 * or not we've got I915_GEM_DOMAIN_CPU.
3258 */
Eric Anholt9a298b22009-03-24 12:23:04 -07003259 kfree(obj_priv->page_cpu_valid);
Eric Anholte47c68e2008-11-14 13:35:19 -08003260 obj_priv->page_cpu_valid = NULL;
3261}
3262
3263/**
3264 * Set the CPU read domain on a range of the object.
3265 *
3266 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3267 * not entirely valid. The page_cpu_valid member of the object flags which
3268 * pages have been flushed, and will be respected by
3269 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3270 * of the whole object.
3271 *
3272 * This function returns when the move is complete, including waiting on
3273 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003274 */
3275static int
Eric Anholte47c68e2008-11-14 13:35:19 -08003276i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
3277 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003278{
Daniel Vetter23010e42010-03-08 13:35:02 +01003279 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003280 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003281 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003282
Eric Anholte47c68e2008-11-14 13:35:19 -08003283 if (offset == 0 && size == obj->size)
3284 return i915_gem_object_set_to_cpu_domain(obj, 0);
3285
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003286 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003287 if (ret != 0)
3288 return ret;
3289 i915_gem_object_flush_gtt_write_domain(obj);
3290
3291 /* If we're already fully in the CPU read domain, we're done. */
3292 if (obj_priv->page_cpu_valid == NULL &&
3293 (obj->read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003294 return 0;
3295
Eric Anholte47c68e2008-11-14 13:35:19 -08003296 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3297 * newly adding I915_GEM_DOMAIN_CPU
3298 */
Eric Anholt673a3942008-07-30 12:06:12 -07003299 if (obj_priv->page_cpu_valid == NULL) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003300 obj_priv->page_cpu_valid = kzalloc(obj->size / PAGE_SIZE,
3301 GFP_KERNEL);
Eric Anholte47c68e2008-11-14 13:35:19 -08003302 if (obj_priv->page_cpu_valid == NULL)
3303 return -ENOMEM;
3304 } else if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0)
3305 memset(obj_priv->page_cpu_valid, 0, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003306
3307 /* Flush the cache on any pages that are still invalid from the CPU's
3308 * perspective.
3309 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003310 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3311 i++) {
Eric Anholt673a3942008-07-30 12:06:12 -07003312 if (obj_priv->page_cpu_valid[i])
3313 continue;
3314
Eric Anholt856fa192009-03-19 14:10:50 -07003315 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003316
3317 obj_priv->page_cpu_valid[i] = 1;
3318 }
3319
Eric Anholte47c68e2008-11-14 13:35:19 -08003320 /* It should now be out of any other write domains, and we can update
3321 * the domain values for our changes.
3322 */
3323 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
3324
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003325 old_read_domains = obj->read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003326 obj->read_domains |= I915_GEM_DOMAIN_CPU;
3327
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003328 trace_i915_gem_object_change_domain(obj,
3329 old_read_domains,
3330 obj->write_domain);
3331
Eric Anholt673a3942008-07-30 12:06:12 -07003332 return 0;
3333}
3334
3335/**
Eric Anholt673a3942008-07-30 12:06:12 -07003336 * Pin an object to the GTT and evaluate the relocations landing in it.
3337 */
3338static int
Chris Wilson9af90d12010-10-17 10:01:56 +01003339i915_gem_execbuffer_relocate(struct drm_i915_gem_object *obj,
3340 struct drm_file *file_priv,
3341 struct drm_i915_gem_exec_object2 *entry)
Eric Anholt673a3942008-07-30 12:06:12 -07003342{
Chris Wilson9af90d12010-10-17 10:01:56 +01003343 struct drm_device *dev = obj->base.dev;
Keith Packard0839ccb2008-10-30 19:38:48 -07003344 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson2549d6c2010-10-14 12:10:41 +01003345 struct drm_i915_gem_relocation_entry __user *user_relocs;
Chris Wilson9af90d12010-10-17 10:01:56 +01003346 struct drm_gem_object *target_obj = NULL;
3347 uint32_t target_handle = 0;
3348 int i, ret = 0;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003349
Chris Wilson2549d6c2010-10-14 12:10:41 +01003350 user_relocs = (void __user *)(uintptr_t)entry->relocs_ptr;
Eric Anholt673a3942008-07-30 12:06:12 -07003351 for (i = 0; i < entry->relocation_count; i++) {
Chris Wilson2549d6c2010-10-14 12:10:41 +01003352 struct drm_i915_gem_relocation_entry reloc;
Chris Wilson9af90d12010-10-17 10:01:56 +01003353 uint32_t target_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003354
Chris Wilson9af90d12010-10-17 10:01:56 +01003355 if (__copy_from_user_inatomic(&reloc,
3356 user_relocs+i,
3357 sizeof(reloc))) {
3358 ret = -EFAULT;
3359 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003360 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003361
Chris Wilson9af90d12010-10-17 10:01:56 +01003362 if (reloc.target_handle != target_handle) {
3363 drm_gem_object_unreference(target_obj);
3364
3365 target_obj = drm_gem_object_lookup(dev, file_priv,
3366 reloc.target_handle);
3367 if (target_obj == NULL) {
3368 ret = -ENOENT;
3369 break;
3370 }
3371
3372 target_handle = reloc.target_handle;
Eric Anholt673a3942008-07-30 12:06:12 -07003373 }
Chris Wilson9af90d12010-10-17 10:01:56 +01003374 target_offset = to_intel_bo(target_obj)->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003375
Chris Wilson8542a0b2009-09-09 21:15:15 +01003376#if WATCH_RELOC
3377 DRM_INFO("%s: obj %p offset %08x target %d "
3378 "read %08x write %08x gtt %08x "
3379 "presumed %08x delta %08x\n",
3380 __func__,
3381 obj,
Chris Wilson2549d6c2010-10-14 12:10:41 +01003382 (int) reloc.offset,
3383 (int) reloc.target_handle,
3384 (int) reloc.read_domains,
3385 (int) reloc.write_domain,
Chris Wilson9af90d12010-10-17 10:01:56 +01003386 (int) target_offset,
Chris Wilson2549d6c2010-10-14 12:10:41 +01003387 (int) reloc.presumed_offset,
3388 reloc.delta);
Chris Wilson8542a0b2009-09-09 21:15:15 +01003389#endif
3390
Eric Anholt673a3942008-07-30 12:06:12 -07003391 /* The target buffer should have appeared before us in the
3392 * exec_object list, so it should have a GTT space bound by now.
3393 */
Chris Wilson9af90d12010-10-17 10:01:56 +01003394 if (target_offset == 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07003395 DRM_ERROR("No GTT space found for object %d\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003396 reloc.target_handle);
Chris Wilson9af90d12010-10-17 10:01:56 +01003397 ret = -EINVAL;
3398 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003399 }
3400
Chris Wilson8542a0b2009-09-09 21:15:15 +01003401 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilson2549d6c2010-10-14 12:10:41 +01003402 if (reloc.write_domain & (reloc.write_domain - 1)) {
Daniel Vetter16edd552010-02-19 11:52:02 +01003403 DRM_ERROR("reloc with multiple write domains: "
3404 "obj %p target %d offset %d "
3405 "read %08x write %08x",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003406 obj, reloc.target_handle,
3407 (int) reloc.offset,
3408 reloc.read_domains,
3409 reloc.write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003410 ret = -EINVAL;
3411 break;
Daniel Vetter16edd552010-02-19 11:52:02 +01003412 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003413 if (reloc.write_domain & I915_GEM_DOMAIN_CPU ||
3414 reloc.read_domains & I915_GEM_DOMAIN_CPU) {
Chris Wilson8542a0b2009-09-09 21:15:15 +01003415 DRM_ERROR("reloc with read/write CPU domains: "
3416 "obj %p target %d offset %d "
3417 "read %08x write %08x",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003418 obj, reloc.target_handle,
3419 (int) reloc.offset,
3420 reloc.read_domains,
3421 reloc.write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003422 ret = -EINVAL;
3423 break;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003424 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003425 if (reloc.write_domain && target_obj->pending_write_domain &&
3426 reloc.write_domain != target_obj->pending_write_domain) {
Chris Wilson8542a0b2009-09-09 21:15:15 +01003427 DRM_ERROR("Write domain conflict: "
3428 "obj %p target %d offset %d "
3429 "new %08x old %08x\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003430 obj, reloc.target_handle,
3431 (int) reloc.offset,
3432 reloc.write_domain,
Chris Wilson8542a0b2009-09-09 21:15:15 +01003433 target_obj->pending_write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003434 ret = -EINVAL;
3435 break;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003436 }
3437
Chris Wilson2549d6c2010-10-14 12:10:41 +01003438 target_obj->pending_read_domains |= reloc.read_domains;
Chris Wilson878a3c32010-10-22 10:48:12 +01003439 target_obj->pending_write_domain |= reloc.write_domain;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003440
3441 /* If the relocation already has the right value in it, no
3442 * more work needs to be done.
3443 */
Chris Wilson9af90d12010-10-17 10:01:56 +01003444 if (target_offset == reloc.presumed_offset)
Chris Wilson8542a0b2009-09-09 21:15:15 +01003445 continue;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003446
3447 /* Check that the relocation address is valid... */
Chris Wilson9af90d12010-10-17 10:01:56 +01003448 if (reloc.offset > obj->base.size - 4) {
Eric Anholt673a3942008-07-30 12:06:12 -07003449 DRM_ERROR("Relocation beyond object bounds: "
3450 "obj %p target %d offset %d size %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003451 obj, reloc.target_handle,
Chris Wilson9af90d12010-10-17 10:01:56 +01003452 (int) reloc.offset, (int) obj->base.size);
3453 ret = -EINVAL;
3454 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003455 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003456 if (reloc.offset & 3) {
Eric Anholt673a3942008-07-30 12:06:12 -07003457 DRM_ERROR("Relocation not 4-byte aligned: "
3458 "obj %p target %d offset %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003459 obj, reloc.target_handle,
3460 (int) reloc.offset);
Chris Wilson9af90d12010-10-17 10:01:56 +01003461 ret = -EINVAL;
3462 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003463 }
3464
Chris Wilson8542a0b2009-09-09 21:15:15 +01003465 /* and points to somewhere within the target object. */
Chris Wilson2549d6c2010-10-14 12:10:41 +01003466 if (reloc.delta >= target_obj->size) {
Chris Wilsoncd0b9fb2009-09-15 23:23:18 +01003467 DRM_ERROR("Relocation beyond target object bounds: "
3468 "obj %p target %d delta %d size %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003469 obj, reloc.target_handle,
3470 (int) reloc.delta, (int) target_obj->size);
Chris Wilson9af90d12010-10-17 10:01:56 +01003471 ret = -EINVAL;
3472 break;
Eric Anholte47c68e2008-11-14 13:35:19 -08003473 }
3474
Chris Wilson9af90d12010-10-17 10:01:56 +01003475 reloc.delta += target_offset;
3476 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU) {
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003477 uint32_t page_offset = reloc.offset & ~PAGE_MASK;
3478 char *vaddr;
3479
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003480 vaddr = kmap_atomic(obj->pages[reloc.offset >> PAGE_SHIFT]);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003481 *(uint32_t *)(vaddr + page_offset) = reloc.delta;
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003482 kunmap_atomic(vaddr);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003483 } else {
3484 uint32_t __iomem *reloc_entry;
3485 void __iomem *reloc_page;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003486
Chris Wilson9af90d12010-10-17 10:01:56 +01003487 ret = i915_gem_object_set_to_gtt_domain(&obj->base, 1);
3488 if (ret)
3489 break;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003490
3491 /* Map the page containing the relocation we're going to perform. */
Chris Wilson9af90d12010-10-17 10:01:56 +01003492 reloc.offset += obj->gtt_offset;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003493 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003494 reloc.offset & PAGE_MASK);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003495 reloc_entry = (uint32_t __iomem *)
3496 (reloc_page + (reloc.offset & ~PAGE_MASK));
3497 iowrite32(reloc.delta, reloc_entry);
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003498 io_mapping_unmap_atomic(reloc_page);
Eric Anholt673a3942008-07-30 12:06:12 -07003499 }
3500
Chris Wilsonb5dc6082010-10-20 20:59:57 +01003501 /* and update the user's relocation entry */
3502 reloc.presumed_offset = target_offset;
3503 if (__copy_to_user_inatomic(&user_relocs[i].presumed_offset,
3504 &reloc.presumed_offset,
3505 sizeof(reloc.presumed_offset))) {
3506 ret = -EFAULT;
3507 break;
3508 }
Eric Anholt673a3942008-07-30 12:06:12 -07003509 }
3510
Chris Wilson9af90d12010-10-17 10:01:56 +01003511 drm_gem_object_unreference(target_obj);
3512 return ret;
3513}
3514
3515static int
3516i915_gem_execbuffer_pin(struct drm_device *dev,
3517 struct drm_file *file,
3518 struct drm_gem_object **object_list,
3519 struct drm_i915_gem_exec_object2 *exec_list,
3520 int count)
3521{
3522 struct drm_i915_private *dev_priv = dev->dev_private;
3523 int ret, i, retry;
3524
3525 /* attempt to pin all of the buffers into the GTT */
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003526 retry = 0;
3527 do {
Chris Wilson9af90d12010-10-17 10:01:56 +01003528 ret = 0;
3529 for (i = 0; i < count; i++) {
3530 struct drm_i915_gem_exec_object2 *entry = &exec_list[i];
Daniel Vetter16e809a2010-09-16 19:37:04 +02003531 struct drm_i915_gem_object *obj = to_intel_bo(object_list[i]);
Chris Wilson9af90d12010-10-17 10:01:56 +01003532 bool need_fence =
3533 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
3534 obj->tiling_mode != I915_TILING_NONE;
3535
Daniel Vetter16e809a2010-09-16 19:37:04 +02003536 /* g33/pnv can't fence buffers in the unmappable part */
3537 bool need_mappable =
3538 entry->relocation_count ? true : need_fence;
3539
Chris Wilson9af90d12010-10-17 10:01:56 +01003540 /* Check fence reg constraints and rebind if necessary */
Chris Wilsona00b10c2010-09-24 21:15:47 +01003541 if ((need_fence && !obj->fenceable) ||
3542 (need_mappable && !obj->mappable)) {
Chris Wilson9af90d12010-10-17 10:01:56 +01003543 ret = i915_gem_object_unbind(&obj->base);
3544 if (ret)
3545 break;
3546 }
3547
Daniel Vetter920afa72010-09-16 17:54:23 +02003548 ret = i915_gem_object_pin(&obj->base,
Daniel Vetter16e809a2010-09-16 19:37:04 +02003549 entry->alignment,
Chris Wilsona00b10c2010-09-24 21:15:47 +01003550 need_mappable,
3551 need_fence);
Chris Wilson9af90d12010-10-17 10:01:56 +01003552 if (ret)
3553 break;
3554
3555 /*
3556 * Pre-965 chips need a fence register set up in order
3557 * to properly handle blits to/from tiled surfaces.
3558 */
3559 if (need_fence) {
3560 ret = i915_gem_object_get_fence_reg(&obj->base, true);
3561 if (ret) {
3562 i915_gem_object_unpin(&obj->base);
3563 break;
3564 }
3565
3566 dev_priv->fence_regs[obj->fence_reg].gpu = true;
3567 }
3568
3569 entry->offset = obj->gtt_offset;
3570 }
3571
3572 while (i--)
3573 i915_gem_object_unpin(object_list[i]);
3574
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003575 if (ret != -ENOSPC || retry > 1)
Chris Wilson9af90d12010-10-17 10:01:56 +01003576 return ret;
3577
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003578 /* First attempt, just clear anything that is purgeable.
3579 * Second attempt, clear the entire GTT.
3580 */
3581 ret = i915_gem_evict_everything(dev, retry == 0);
Chris Wilson9af90d12010-10-17 10:01:56 +01003582 if (ret)
3583 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003584
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003585 retry++;
3586 } while (1);
Eric Anholt673a3942008-07-30 12:06:12 -07003587}
3588
Chris Wilson13b29282010-11-01 12:22:48 +00003589static int
3590i915_gem_execbuffer_move_to_gpu(struct drm_device *dev,
3591 struct drm_file *file,
3592 struct intel_ring_buffer *ring,
3593 struct drm_gem_object **objects,
3594 int count)
3595{
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003596 struct change_domains cd;
Chris Wilson13b29282010-11-01 12:22:48 +00003597 int ret, i;
3598
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003599 cd.invalidate_domains = 0;
3600 cd.flush_domains = 0;
3601 cd.flush_rings = 0;
Chris Wilson13b29282010-11-01 12:22:48 +00003602 for (i = 0; i < count; i++)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003603 i915_gem_object_set_to_gpu_domain(objects[i], ring, &cd);
Chris Wilson13b29282010-11-01 12:22:48 +00003604
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003605 if (cd.invalidate_domains | cd.flush_domains) {
Chris Wilson13b29282010-11-01 12:22:48 +00003606#if WATCH_EXEC
3607 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3608 __func__,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003609 cd.invalidate_domains,
3610 cd.flush_domains);
Chris Wilson13b29282010-11-01 12:22:48 +00003611#endif
3612 i915_gem_flush(dev, file,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003613 cd.invalidate_domains,
3614 cd.flush_domains,
3615 cd.flush_rings);
Chris Wilson13b29282010-11-01 12:22:48 +00003616 }
3617
3618 for (i = 0; i < count; i++) {
3619 struct drm_i915_gem_object *obj = to_intel_bo(objects[i]);
3620 /* XXX replace with semaphores */
3621 if (obj->ring && ring != obj->ring) {
3622 ret = i915_gem_object_wait_rendering(&obj->base, true);
3623 if (ret)
3624 return ret;
3625 }
3626 }
3627
3628 return 0;
3629}
3630
Eric Anholt673a3942008-07-30 12:06:12 -07003631/* Throttle our rendering by waiting until the ring has completed our requests
3632 * emitted over 20 msec ago.
3633 *
Eric Anholtb9624422009-06-03 07:27:35 +00003634 * Note that if we were to use the current jiffies each time around the loop,
3635 * we wouldn't escape the function with any frames outstanding if the time to
3636 * render a frame was over 20ms.
3637 *
Eric Anholt673a3942008-07-30 12:06:12 -07003638 * This should get us reasonable parallelism between CPU and GPU but also
3639 * relatively low latency when blocking on a particular request to finish.
3640 */
3641static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003642i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003643{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003644 struct drm_i915_private *dev_priv = dev->dev_private;
3645 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003646 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003647 struct drm_i915_gem_request *request;
3648 struct intel_ring_buffer *ring = NULL;
3649 u32 seqno = 0;
3650 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003651
Chris Wilson1c255952010-09-26 11:03:27 +01003652 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003653 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003654 if (time_after_eq(request->emitted_jiffies, recent_enough))
3655 break;
3656
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003657 ring = request->ring;
3658 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003659 }
Chris Wilson1c255952010-09-26 11:03:27 +01003660 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003661
3662 if (seqno == 0)
3663 return 0;
3664
3665 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003666 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003667 /* And wait for the seqno passing without holding any locks and
3668 * causing extra latency for others. This is safe as the irq
3669 * generation is designed to be run atomically and so is
3670 * lockless.
3671 */
Chris Wilson78501ea2010-10-27 12:18:21 +01003672 ring->user_irq_get(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003673 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01003674 i915_seqno_passed(ring->get_seqno(ring), seqno)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003675 || atomic_read(&dev_priv->mm.wedged));
Chris Wilson78501ea2010-10-27 12:18:21 +01003676 ring->user_irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003677
3678 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3679 ret = -EIO;
3680 }
3681
3682 if (ret == 0)
3683 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003684
Eric Anholt673a3942008-07-30 12:06:12 -07003685 return ret;
3686}
3687
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003688static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003689i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec,
3690 uint64_t exec_offset)
Chris Wilson83d60792009-06-06 09:45:57 +01003691{
3692 uint32_t exec_start, exec_len;
3693
3694 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3695 exec_len = (uint32_t) exec->batch_len;
3696
3697 if ((exec_start | exec_len) & 0x7)
3698 return -EINVAL;
3699
3700 if (!exec_start)
3701 return -EINVAL;
3702
3703 return 0;
3704}
3705
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003706static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003707validate_exec_list(struct drm_i915_gem_exec_object2 *exec,
3708 int count)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003709{
Chris Wilson2549d6c2010-10-14 12:10:41 +01003710 int i;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003711
Chris Wilson2549d6c2010-10-14 12:10:41 +01003712 for (i = 0; i < count; i++) {
3713 char __user *ptr = (char __user *)(uintptr_t)exec[i].relocs_ptr;
3714 size_t length = exec[i].relocation_count * sizeof(struct drm_i915_gem_relocation_entry);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003715
Chris Wilson2549d6c2010-10-14 12:10:41 +01003716 if (!access_ok(VERIFY_READ, ptr, length))
3717 return -EFAULT;
3718
Chris Wilsonb5dc6082010-10-20 20:59:57 +01003719 /* we may also need to update the presumed offsets */
3720 if (!access_ok(VERIFY_WRITE, ptr, length))
3721 return -EFAULT;
3722
Chris Wilson2549d6c2010-10-14 12:10:41 +01003723 if (fault_in_pages_readable(ptr, length))
3724 return -EFAULT;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003725 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003726
Chris Wilson2549d6c2010-10-14 12:10:41 +01003727 return 0;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003728}
3729
Chris Wilson2549d6c2010-10-14 12:10:41 +01003730static int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003731i915_gem_do_execbuffer(struct drm_device *dev, void *data,
Chris Wilson9af90d12010-10-17 10:01:56 +01003732 struct drm_file *file,
Jesse Barnes76446ca2009-12-17 22:05:42 -05003733 struct drm_i915_gem_execbuffer2 *args,
3734 struct drm_i915_gem_exec_object2 *exec_list)
Eric Anholt673a3942008-07-30 12:06:12 -07003735{
3736 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003737 struct drm_gem_object **object_list = NULL;
3738 struct drm_gem_object *batch_obj;
Eric Anholt201361a2009-03-11 12:30:04 -07003739 struct drm_clip_rect *cliprects = NULL;
Chris Wilson8dc5d142010-08-12 12:36:12 +01003740 struct drm_i915_gem_request *request = NULL;
Chris Wilson9af90d12010-10-17 10:01:56 +01003741 int ret, i, flips;
Eric Anholt673a3942008-07-30 12:06:12 -07003742 uint64_t exec_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003743
Zou Nan hai852835f2010-05-21 09:08:56 +08003744 struct intel_ring_buffer *ring = NULL;
3745
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003746 ret = i915_gem_check_is_wedged(dev);
3747 if (ret)
3748 return ret;
3749
Chris Wilson2549d6c2010-10-14 12:10:41 +01003750 ret = validate_exec_list(exec_list, args->buffer_count);
3751 if (ret)
3752 return ret;
3753
Eric Anholt673a3942008-07-30 12:06:12 -07003754#if WATCH_EXEC
3755 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3756 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3757#endif
Chris Wilson549f7362010-10-19 11:19:32 +01003758 switch (args->flags & I915_EXEC_RING_MASK) {
3759 case I915_EXEC_DEFAULT:
3760 case I915_EXEC_RENDER:
3761 ring = &dev_priv->render_ring;
3762 break;
3763 case I915_EXEC_BSD:
Zou Nan haid1b851f2010-05-21 09:08:57 +08003764 if (!HAS_BSD(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01003765 DRM_ERROR("execbuf with invalid ring (BSD)\n");
Zou Nan haid1b851f2010-05-21 09:08:57 +08003766 return -EINVAL;
3767 }
3768 ring = &dev_priv->bsd_ring;
Chris Wilson549f7362010-10-19 11:19:32 +01003769 break;
3770 case I915_EXEC_BLT:
3771 if (!HAS_BLT(dev)) {
3772 DRM_ERROR("execbuf with invalid ring (BLT)\n");
3773 return -EINVAL;
3774 }
3775 ring = &dev_priv->blt_ring;
3776 break;
3777 default:
3778 DRM_ERROR("execbuf with unknown ring: %d\n",
3779 (int)(args->flags & I915_EXEC_RING_MASK));
3780 return -EINVAL;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003781 }
3782
Eric Anholt4f481ed2008-09-10 14:22:49 -07003783 if (args->buffer_count < 1) {
3784 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3785 return -EINVAL;
3786 }
Eric Anholtc8e0f932009-11-22 03:49:37 +01003787 object_list = drm_malloc_ab(sizeof(*object_list), args->buffer_count);
Jesse Barnes76446ca2009-12-17 22:05:42 -05003788 if (object_list == NULL) {
3789 DRM_ERROR("Failed to allocate object list for %d buffers\n",
Eric Anholt673a3942008-07-30 12:06:12 -07003790 args->buffer_count);
3791 ret = -ENOMEM;
3792 goto pre_mutex_err;
3793 }
Eric Anholt673a3942008-07-30 12:06:12 -07003794
Eric Anholt201361a2009-03-11 12:30:04 -07003795 if (args->num_cliprects != 0) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003796 cliprects = kcalloc(args->num_cliprects, sizeof(*cliprects),
3797 GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003798 if (cliprects == NULL) {
3799 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -07003800 goto pre_mutex_err;
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003801 }
Eric Anholt201361a2009-03-11 12:30:04 -07003802
3803 ret = copy_from_user(cliprects,
3804 (struct drm_clip_rect __user *)
3805 (uintptr_t) args->cliprects_ptr,
3806 sizeof(*cliprects) * args->num_cliprects);
3807 if (ret != 0) {
3808 DRM_ERROR("copy %d cliprects failed: %d\n",
3809 args->num_cliprects, ret);
Dan Carpenterc877cdc2010-06-23 19:03:01 +02003810 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -07003811 goto pre_mutex_err;
3812 }
3813 }
3814
Chris Wilson8dc5d142010-08-12 12:36:12 +01003815 request = kzalloc(sizeof(*request), GFP_KERNEL);
3816 if (request == NULL) {
3817 ret = -ENOMEM;
Chris Wilsona198bc82009-02-06 16:55:20 +00003818 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003819 }
3820
Chris Wilson76c1dec2010-09-25 11:22:51 +01003821 ret = i915_mutex_lock_interruptible(dev);
3822 if (ret)
3823 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003824
Eric Anholt673a3942008-07-30 12:06:12 -07003825 if (dev_priv->mm.suspended) {
Eric Anholt673a3942008-07-30 12:06:12 -07003826 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003827 ret = -EBUSY;
3828 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003829 }
3830
Keith Packardac94a962008-11-20 23:30:27 -08003831 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07003832 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson7e318e12010-10-27 13:43:39 +01003833 struct drm_i915_gem_object *obj_priv;
3834
Chris Wilson9af90d12010-10-17 10:01:56 +01003835 object_list[i] = drm_gem_object_lookup(dev, file,
Eric Anholt673a3942008-07-30 12:06:12 -07003836 exec_list[i].handle);
3837 if (object_list[i] == NULL) {
3838 DRM_ERROR("Invalid object handle %d at index %d\n",
3839 exec_list[i].handle, i);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003840 /* prevent error path from reading uninitialized data */
3841 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003842 ret = -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07003843 goto err;
3844 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003845
Daniel Vetter23010e42010-03-08 13:35:02 +01003846 obj_priv = to_intel_bo(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003847 if (obj_priv->in_execbuffer) {
3848 DRM_ERROR("Object %p appears more than once in object list\n",
3849 object_list[i]);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003850 /* prevent error path from reading uninitialized data */
3851 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003852 ret = -EINVAL;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003853 goto err;
3854 }
3855 obj_priv->in_execbuffer = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003856 }
3857
Chris Wilson9af90d12010-10-17 10:01:56 +01003858 /* Move the objects en-masse into the GTT, evicting if necessary. */
3859 ret = i915_gem_execbuffer_pin(dev, file,
3860 object_list, exec_list,
3861 args->buffer_count);
3862 if (ret)
3863 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003864
Chris Wilson9af90d12010-10-17 10:01:56 +01003865 /* The objects are in their final locations, apply the relocations. */
3866 for (i = 0; i < args->buffer_count; i++) {
3867 struct drm_i915_gem_object *obj = to_intel_bo(object_list[i]);
3868 obj->base.pending_read_domains = 0;
3869 obj->base.pending_write_domain = 0;
3870 ret = i915_gem_execbuffer_relocate(obj, file, &exec_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07003871 if (ret)
3872 goto err;
3873 }
3874
Eric Anholt673a3942008-07-30 12:06:12 -07003875 /* Set the pending read domains for the batch buffer to COMMAND */
3876 batch_obj = object_list[args->buffer_count-1];
Chris Wilson5f26a2c2009-06-06 09:45:58 +01003877 if (batch_obj->pending_write_domain) {
3878 DRM_ERROR("Attempting to use self-modifying batch buffer\n");
3879 ret = -EINVAL;
3880 goto err;
3881 }
3882 batch_obj->pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Eric Anholt673a3942008-07-30 12:06:12 -07003883
Chris Wilson9af90d12010-10-17 10:01:56 +01003884 /* Sanity check the batch buffer */
3885 exec_offset = to_intel_bo(batch_obj)->gtt_offset;
3886 ret = i915_gem_check_execbuffer(args, exec_offset);
Chris Wilson83d60792009-06-06 09:45:57 +01003887 if (ret != 0) {
3888 DRM_ERROR("execbuf with invalid offset/length\n");
3889 goto err;
3890 }
3891
Chris Wilson13b29282010-11-01 12:22:48 +00003892 ret = i915_gem_execbuffer_move_to_gpu(dev, file, ring,
3893 object_list, args->buffer_count);
3894 if (ret)
3895 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003896
Eric Anholt673a3942008-07-30 12:06:12 -07003897#if WATCH_COHERENCY
3898 for (i = 0; i < args->buffer_count; i++) {
3899 i915_gem_object_check_coherency(object_list[i],
3900 exec_list[i].handle);
3901 }
3902#endif
3903
Eric Anholt673a3942008-07-30 12:06:12 -07003904#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07003905 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07003906 args->batch_len,
3907 __func__,
3908 ~0);
3909#endif
3910
Chris Wilsone59f2ba2010-10-07 17:28:15 +01003911 /* Check for any pending flips. As we only maintain a flip queue depth
3912 * of 1, we can simply insert a WAIT for the next display flip prior
3913 * to executing the batch and avoid stalling the CPU.
3914 */
3915 flips = 0;
3916 for (i = 0; i < args->buffer_count; i++) {
3917 if (object_list[i]->write_domain)
3918 flips |= atomic_read(&to_intel_bo(object_list[i])->pending_flip);
3919 }
3920 if (flips) {
3921 int plane, flip_mask;
3922
3923 for (plane = 0; flips >> plane; plane++) {
3924 if (((flips >> plane) & 1) == 0)
3925 continue;
3926
3927 if (plane)
3928 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
3929 else
3930 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
3931
Chris Wilsone1f99ce2010-10-27 12:45:26 +01003932 ret = intel_ring_begin(ring, 2);
3933 if (ret)
3934 goto err;
3935
Chris Wilson78501ea2010-10-27 12:18:21 +01003936 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
3937 intel_ring_emit(ring, MI_NOOP);
3938 intel_ring_advance(ring);
Chris Wilsone59f2ba2010-10-07 17:28:15 +01003939 }
3940 }
3941
Eric Anholt673a3942008-07-30 12:06:12 -07003942 /* Exec the batchbuffer */
Chris Wilson78501ea2010-10-27 12:18:21 +01003943 ret = ring->dispatch_execbuffer(ring, args, cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003944 if (ret) {
3945 DRM_ERROR("dispatch failed %d\n", ret);
3946 goto err;
3947 }
3948
Chris Wilson7e318e12010-10-27 13:43:39 +01003949 for (i = 0; i < args->buffer_count; i++) {
3950 struct drm_gem_object *obj = object_list[i];
3951
3952 obj->read_domains = obj->pending_read_domains;
3953 obj->write_domain = obj->pending_write_domain;
3954
3955 i915_gem_object_move_to_active(obj, ring);
3956 if (obj->write_domain) {
3957 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
3958 obj_priv->dirty = 1;
3959 list_move_tail(&obj_priv->gpu_write_list,
3960 &ring->gpu_write_list);
3961 intel_mark_busy(dev, obj);
3962 }
3963
3964 trace_i915_gem_object_change_domain(obj,
3965 obj->read_domains,
3966 obj->write_domain);
3967 }
3968
Eric Anholt673a3942008-07-30 12:06:12 -07003969 /*
3970 * Ensure that the commands in the batch buffer are
3971 * finished before the interrupt fires
3972 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003973 i915_retire_commands(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07003974
Chris Wilson3cce4692010-10-27 16:11:02 +01003975 if (i915_add_request(dev, file, request, ring))
3976 ring->outstanding_lazy_request = true;
3977 else
3978 request = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07003979
Eric Anholt673a3942008-07-30 12:06:12 -07003980err:
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003981 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson7e318e12010-10-27 13:43:39 +01003982 if (object_list[i] == NULL)
3983 break;
3984
3985 to_intel_bo(object_list[i])->in_execbuffer = false;
Julia Lawallaad87df2008-12-21 16:28:47 +01003986 drm_gem_object_unreference(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003987 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003988
Eric Anholt673a3942008-07-30 12:06:12 -07003989 mutex_unlock(&dev->struct_mutex);
3990
Chris Wilson93533c22010-01-31 10:40:48 +00003991pre_mutex_err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003992 drm_free_large(object_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07003993 kfree(cliprects);
Chris Wilson8dc5d142010-08-12 12:36:12 +01003994 kfree(request);
Eric Anholt673a3942008-07-30 12:06:12 -07003995
3996 return ret;
3997}
3998
Jesse Barnes76446ca2009-12-17 22:05:42 -05003999/*
4000 * Legacy execbuffer just creates an exec2 list from the original exec object
4001 * list array and passes it to the real function.
4002 */
4003int
4004i915_gem_execbuffer(struct drm_device *dev, void *data,
4005 struct drm_file *file_priv)
4006{
4007 struct drm_i915_gem_execbuffer *args = data;
4008 struct drm_i915_gem_execbuffer2 exec2;
4009 struct drm_i915_gem_exec_object *exec_list = NULL;
4010 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4011 int ret, i;
4012
4013#if WATCH_EXEC
4014 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4015 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4016#endif
4017
4018 if (args->buffer_count < 1) {
4019 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
4020 return -EINVAL;
4021 }
4022
4023 /* Copy in the exec list from userland */
4024 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
4025 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4026 if (exec_list == NULL || exec2_list == NULL) {
4027 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4028 args->buffer_count);
4029 drm_free_large(exec_list);
4030 drm_free_large(exec2_list);
4031 return -ENOMEM;
4032 }
4033 ret = copy_from_user(exec_list,
4034 (struct drm_i915_relocation_entry __user *)
4035 (uintptr_t) args->buffers_ptr,
4036 sizeof(*exec_list) * args->buffer_count);
4037 if (ret != 0) {
4038 DRM_ERROR("copy %d exec entries failed %d\n",
4039 args->buffer_count, ret);
4040 drm_free_large(exec_list);
4041 drm_free_large(exec2_list);
4042 return -EFAULT;
4043 }
4044
4045 for (i = 0; i < args->buffer_count; i++) {
4046 exec2_list[i].handle = exec_list[i].handle;
4047 exec2_list[i].relocation_count = exec_list[i].relocation_count;
4048 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
4049 exec2_list[i].alignment = exec_list[i].alignment;
4050 exec2_list[i].offset = exec_list[i].offset;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004051 if (INTEL_INFO(dev)->gen < 4)
Jesse Barnes76446ca2009-12-17 22:05:42 -05004052 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
4053 else
4054 exec2_list[i].flags = 0;
4055 }
4056
4057 exec2.buffers_ptr = args->buffers_ptr;
4058 exec2.buffer_count = args->buffer_count;
4059 exec2.batch_start_offset = args->batch_start_offset;
4060 exec2.batch_len = args->batch_len;
4061 exec2.DR1 = args->DR1;
4062 exec2.DR4 = args->DR4;
4063 exec2.num_cliprects = args->num_cliprects;
4064 exec2.cliprects_ptr = args->cliprects_ptr;
Zou Nan hai852835f2010-05-21 09:08:56 +08004065 exec2.flags = I915_EXEC_RENDER;
Jesse Barnes76446ca2009-12-17 22:05:42 -05004066
4067 ret = i915_gem_do_execbuffer(dev, data, file_priv, &exec2, exec2_list);
4068 if (!ret) {
4069 /* Copy the new buffer offsets back to the user's exec list. */
4070 for (i = 0; i < args->buffer_count; i++)
4071 exec_list[i].offset = exec2_list[i].offset;
4072 /* ... and back out to userspace */
4073 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4074 (uintptr_t) args->buffers_ptr,
4075 exec_list,
4076 sizeof(*exec_list) * args->buffer_count);
4077 if (ret) {
4078 ret = -EFAULT;
4079 DRM_ERROR("failed to copy %d exec entries "
4080 "back to user (%d)\n",
4081 args->buffer_count, ret);
4082 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004083 }
4084
4085 drm_free_large(exec_list);
4086 drm_free_large(exec2_list);
4087 return ret;
4088}
4089
4090int
4091i915_gem_execbuffer2(struct drm_device *dev, void *data,
4092 struct drm_file *file_priv)
4093{
4094 struct drm_i915_gem_execbuffer2 *args = data;
4095 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4096 int ret;
4097
4098#if WATCH_EXEC
4099 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4100 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4101#endif
4102
4103 if (args->buffer_count < 1) {
4104 DRM_ERROR("execbuf2 with %d buffers\n", args->buffer_count);
4105 return -EINVAL;
4106 }
4107
4108 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4109 if (exec2_list == NULL) {
4110 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4111 args->buffer_count);
4112 return -ENOMEM;
4113 }
4114 ret = copy_from_user(exec2_list,
4115 (struct drm_i915_relocation_entry __user *)
4116 (uintptr_t) args->buffers_ptr,
4117 sizeof(*exec2_list) * args->buffer_count);
4118 if (ret != 0) {
4119 DRM_ERROR("copy %d exec entries failed %d\n",
4120 args->buffer_count, ret);
4121 drm_free_large(exec2_list);
4122 return -EFAULT;
4123 }
4124
4125 ret = i915_gem_do_execbuffer(dev, data, file_priv, args, exec2_list);
4126 if (!ret) {
4127 /* Copy the new buffer offsets back to the user's exec list. */
4128 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4129 (uintptr_t) args->buffers_ptr,
4130 exec2_list,
4131 sizeof(*exec2_list) * args->buffer_count);
4132 if (ret) {
4133 ret = -EFAULT;
4134 DRM_ERROR("failed to copy %d exec entries "
4135 "back to user (%d)\n",
4136 args->buffer_count, ret);
4137 }
4138 }
4139
4140 drm_free_large(exec2_list);
4141 return ret;
4142}
4143
Eric Anholt673a3942008-07-30 12:06:12 -07004144int
Daniel Vetter920afa72010-09-16 17:54:23 +02004145i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment,
Chris Wilsona00b10c2010-09-24 21:15:47 +01004146 bool mappable, bool need_fence)
Eric Anholt673a3942008-07-30 12:06:12 -07004147{
4148 struct drm_device *dev = obj->dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004149 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01004150 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004151 int ret;
4152
Daniel Vetter778c3542010-05-13 11:49:44 +02004153 BUG_ON(obj_priv->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson085ce262010-11-03 09:27:53 +00004154 BUG_ON(need_fence && !mappable);
Chris Wilson23bc5982010-09-29 16:10:57 +01004155 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004156
4157 if (obj_priv->gtt_space != NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004158 if ((alignment && obj_priv->gtt_offset & (alignment - 1)) ||
4159 (need_fence && !obj_priv->fenceable) ||
4160 (mappable && !obj_priv->mappable)) {
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004161 WARN(obj_priv->pin_count,
4162 "bo is already pinned with incorrect alignment:"
Chris Wilsona00b10c2010-09-24 21:15:47 +01004163 " offset=%x, req.alignment=%x, need_fence=%d, fenceable=%d, mappable=%d, cpu_accessible=%d\n",
4164 obj_priv->gtt_offset, alignment,
4165 need_fence, obj_priv->fenceable,
4166 mappable, obj_priv->mappable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004167 ret = i915_gem_object_unbind(obj);
4168 if (ret)
4169 return ret;
4170 }
4171 }
4172
Eric Anholt673a3942008-07-30 12:06:12 -07004173 if (obj_priv->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004174 ret = i915_gem_object_bind_to_gtt(obj, alignment,
4175 mappable, need_fence);
Chris Wilson97311292009-09-21 00:22:34 +01004176 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07004177 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00004178 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004179
Chris Wilson74653782010-10-29 10:41:23 +01004180 if (obj_priv->pin_count++ == 0) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004181 i915_gem_info_add_pin(dev_priv, obj_priv, mappable);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004182 if (!obj_priv->active)
Chris Wilson69dc4982010-10-19 10:36:51 +01004183 list_move_tail(&obj_priv->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004184 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004185 }
Daniel Vetterfb7d5162010-10-01 22:05:20 +02004186 BUG_ON(!obj_priv->pin_mappable && mappable);
Eric Anholt673a3942008-07-30 12:06:12 -07004187
Chris Wilson23bc5982010-09-29 16:10:57 +01004188 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004189 return 0;
4190}
4191
4192void
4193i915_gem_object_unpin(struct drm_gem_object *obj)
4194{
4195 struct drm_device *dev = obj->dev;
4196 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01004197 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004198
Chris Wilson23bc5982010-09-29 16:10:57 +01004199 WARN_ON(i915_verify_lists(dev));
Chris Wilson74653782010-10-29 10:41:23 +01004200 BUG_ON(obj_priv->pin_count == 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004201 BUG_ON(obj_priv->gtt_space == NULL);
4202
Chris Wilson74653782010-10-29 10:41:23 +01004203 if (--obj_priv->pin_count == 0) {
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004204 if (!obj_priv->active)
Chris Wilson69dc4982010-10-19 10:36:51 +01004205 list_move_tail(&obj_priv->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07004206 &dev_priv->mm.inactive_list);
Chris Wilsona00b10c2010-09-24 21:15:47 +01004207 i915_gem_info_remove_pin(dev_priv, obj_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004208 }
Chris Wilson23bc5982010-09-29 16:10:57 +01004209 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004210}
4211
4212int
4213i915_gem_pin_ioctl(struct drm_device *dev, void *data,
4214 struct drm_file *file_priv)
4215{
4216 struct drm_i915_gem_pin *args = data;
4217 struct drm_gem_object *obj;
4218 struct drm_i915_gem_object *obj_priv;
4219 int ret;
4220
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004221 ret = i915_mutex_lock_interruptible(dev);
4222 if (ret)
4223 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004224
4225 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4226 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004227 ret = -ENOENT;
4228 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004229 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004230 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004231
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004232 if (obj_priv->madv != I915_MADV_WILLNEED) {
4233 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004234 ret = -EINVAL;
4235 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004236 }
4237
Jesse Barnes79e53942008-11-07 14:24:08 -08004238 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
4239 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
4240 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004241 ret = -EINVAL;
4242 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004243 }
4244
4245 obj_priv->user_pin_count++;
4246 obj_priv->pin_filp = file_priv;
4247 if (obj_priv->user_pin_count == 1) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004248 ret = i915_gem_object_pin(obj, args->alignment,
4249 true, obj_priv->tiling_mode);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004250 if (ret)
4251 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004252 }
4253
4254 /* XXX - flush the CPU caches for pinned objects
4255 * as the X server doesn't manage domains yet
4256 */
Eric Anholte47c68e2008-11-14 13:35:19 -08004257 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004258 args->offset = obj_priv->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004259out:
Eric Anholt673a3942008-07-30 12:06:12 -07004260 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004261unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004262 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004263 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004264}
4265
4266int
4267i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
4268 struct drm_file *file_priv)
4269{
4270 struct drm_i915_gem_pin *args = data;
4271 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08004272 struct drm_i915_gem_object *obj_priv;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004273 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004274
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004275 ret = i915_mutex_lock_interruptible(dev);
4276 if (ret)
4277 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004278
4279 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4280 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004281 ret = -ENOENT;
4282 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004283 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004284 obj_priv = to_intel_bo(obj);
Chris Wilson76c1dec2010-09-25 11:22:51 +01004285
Jesse Barnes79e53942008-11-07 14:24:08 -08004286 if (obj_priv->pin_filp != file_priv) {
4287 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
4288 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004289 ret = -EINVAL;
4290 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004291 }
4292 obj_priv->user_pin_count--;
4293 if (obj_priv->user_pin_count == 0) {
4294 obj_priv->pin_filp = NULL;
4295 i915_gem_object_unpin(obj);
4296 }
Eric Anholt673a3942008-07-30 12:06:12 -07004297
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004298out:
Eric Anholt673a3942008-07-30 12:06:12 -07004299 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004300unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004301 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004302 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004303}
4304
4305int
4306i915_gem_busy_ioctl(struct drm_device *dev, void *data,
4307 struct drm_file *file_priv)
4308{
4309 struct drm_i915_gem_busy *args = data;
4310 struct drm_gem_object *obj;
4311 struct drm_i915_gem_object *obj_priv;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004312 int ret;
4313
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004314 ret = i915_mutex_lock_interruptible(dev);
4315 if (ret)
4316 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004317
Eric Anholt673a3942008-07-30 12:06:12 -07004318 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4319 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004320 ret = -ENOENT;
4321 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004322 }
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004323 obj_priv = to_intel_bo(obj);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004324
Chris Wilson0be555b2010-08-04 15:36:30 +01004325 /* Count all active objects as busy, even if they are currently not used
4326 * by the gpu. Users of this interface expect objects to eventually
4327 * become non-busy without any further actions, therefore emit any
4328 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004329 */
Chris Wilson0be555b2010-08-04 15:36:30 +01004330 args->busy = obj_priv->active;
4331 if (args->busy) {
4332 /* Unconditionally flush objects, even when the gpu still uses this
4333 * object. Userspace calling this function indicates that it wants to
4334 * use this buffer rather sooner than later, so issuing the required
4335 * flush earlier is beneficial.
4336 */
Chris Wilsonc78ec302010-09-20 12:50:23 +01004337 if (obj->write_domain & I915_GEM_GPU_DOMAINS)
4338 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01004339 obj_priv->ring,
4340 0, obj->write_domain);
Chris Wilson0be555b2010-08-04 15:36:30 +01004341
4342 /* Update the active list for the hardware's current position.
4343 * Otherwise this only updates on a delayed timer or when irqs
4344 * are actually unmasked, and our working set ends up being
4345 * larger than required.
4346 */
4347 i915_gem_retire_requests_ring(dev, obj_priv->ring);
4348
4349 args->busy = obj_priv->active;
4350 }
Eric Anholt673a3942008-07-30 12:06:12 -07004351
4352 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004353unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004354 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004355 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004356}
4357
4358int
4359i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4360 struct drm_file *file_priv)
4361{
4362 return i915_gem_ring_throttle(dev, file_priv);
4363}
4364
Chris Wilson3ef94da2009-09-14 16:50:29 +01004365int
4366i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4367 struct drm_file *file_priv)
4368{
4369 struct drm_i915_gem_madvise *args = data;
4370 struct drm_gem_object *obj;
4371 struct drm_i915_gem_object *obj_priv;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004372 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004373
4374 switch (args->madv) {
4375 case I915_MADV_DONTNEED:
4376 case I915_MADV_WILLNEED:
4377 break;
4378 default:
4379 return -EINVAL;
4380 }
4381
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004382 ret = i915_mutex_lock_interruptible(dev);
4383 if (ret)
4384 return ret;
4385
Chris Wilson3ef94da2009-09-14 16:50:29 +01004386 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4387 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004388 ret = -ENOENT;
4389 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004390 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004391 obj_priv = to_intel_bo(obj);
Chris Wilson3ef94da2009-09-14 16:50:29 +01004392
4393 if (obj_priv->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004394 ret = -EINVAL;
4395 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004396 }
4397
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004398 if (obj_priv->madv != __I915_MADV_PURGED)
4399 obj_priv->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004400
Chris Wilson2d7ef392009-09-20 23:13:10 +01004401 /* if the object is no longer bound, discard its backing storage */
4402 if (i915_gem_object_is_purgeable(obj_priv) &&
4403 obj_priv->gtt_space == NULL)
4404 i915_gem_object_truncate(obj);
4405
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004406 args->retained = obj_priv->madv != __I915_MADV_PURGED;
4407
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004408out:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004409 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004410unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004411 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004412 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004413}
4414
Daniel Vetterac52bc52010-04-09 19:05:06 +00004415struct drm_gem_object * i915_gem_alloc_object(struct drm_device *dev,
4416 size_t size)
4417{
Chris Wilson73aa8082010-09-30 11:46:12 +01004418 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00004419 struct drm_i915_gem_object *obj;
4420
4421 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
4422 if (obj == NULL)
4423 return NULL;
4424
4425 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
4426 kfree(obj);
4427 return NULL;
4428 }
4429
Chris Wilson73aa8082010-09-30 11:46:12 +01004430 i915_gem_info_add_obj(dev_priv, size);
4431
Daniel Vetterc397b902010-04-09 19:05:07 +00004432 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4433 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4434
4435 obj->agp_type = AGP_USER_MEMORY;
Daniel Vetter62b8b212010-04-09 19:05:08 +00004436 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00004437 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01004438 INIT_LIST_HEAD(&obj->mm_list);
4439 INIT_LIST_HEAD(&obj->ring_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004440 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004441 obj->madv = I915_MADV_WILLNEED;
Chris Wilsona00b10c2010-09-24 21:15:47 +01004442 obj->fenceable = true;
4443 obj->mappable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00004444
Daniel Vetterc397b902010-04-09 19:05:07 +00004445 return &obj->base;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004446}
4447
Eric Anholt673a3942008-07-30 12:06:12 -07004448int i915_gem_init_object(struct drm_gem_object *obj)
4449{
Daniel Vetterc397b902010-04-09 19:05:07 +00004450 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004451
Eric Anholt673a3942008-07-30 12:06:12 -07004452 return 0;
4453}
4454
Chris Wilsonbe726152010-07-23 23:18:50 +01004455static void i915_gem_free_object_tail(struct drm_gem_object *obj)
4456{
4457 struct drm_device *dev = obj->dev;
4458 drm_i915_private_t *dev_priv = dev->dev_private;
4459 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
4460 int ret;
4461
4462 ret = i915_gem_object_unbind(obj);
4463 if (ret == -ERESTARTSYS) {
Chris Wilson69dc4982010-10-19 10:36:51 +01004464 list_move(&obj_priv->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01004465 &dev_priv->mm.deferred_free_list);
4466 return;
4467 }
4468
Chris Wilson39a01d12010-10-28 13:03:06 +01004469 if (obj->map_list.map)
Chris Wilsonbe726152010-07-23 23:18:50 +01004470 i915_gem_free_mmap_offset(obj);
4471
4472 drm_gem_object_release(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +01004473 i915_gem_info_remove_obj(dev_priv, obj->size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004474
4475 kfree(obj_priv->page_cpu_valid);
4476 kfree(obj_priv->bit_17);
4477 kfree(obj_priv);
4478}
4479
Eric Anholt673a3942008-07-30 12:06:12 -07004480void i915_gem_free_object(struct drm_gem_object *obj)
4481{
Jesse Barnesde151cf2008-11-12 10:03:55 -08004482 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01004483 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004484
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004485 trace_i915_gem_object_destroy(obj);
4486
Eric Anholt673a3942008-07-30 12:06:12 -07004487 while (obj_priv->pin_count > 0)
4488 i915_gem_object_unpin(obj);
4489
Dave Airlie71acb5e2008-12-30 20:31:46 +10004490 if (obj_priv->phys_obj)
4491 i915_gem_detach_phys_object(dev, obj);
4492
Chris Wilsonbe726152010-07-23 23:18:50 +01004493 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004494}
4495
Jesse Barnes5669fca2009-02-17 15:13:31 -08004496int
Eric Anholt673a3942008-07-30 12:06:12 -07004497i915_gem_idle(struct drm_device *dev)
4498{
4499 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004500 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004501
Keith Packard6dbe2772008-10-14 21:41:13 -07004502 mutex_lock(&dev->struct_mutex);
4503
Chris Wilson87acb0a2010-10-19 10:13:00 +01004504 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004505 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004506 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004507 }
Eric Anholt673a3942008-07-30 12:06:12 -07004508
Chris Wilson29105cc2010-01-07 10:39:13 +00004509 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004510 if (ret) {
4511 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004512 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004513 }
Eric Anholt673a3942008-07-30 12:06:12 -07004514
Chris Wilson29105cc2010-01-07 10:39:13 +00004515 /* Under UMS, be paranoid and evict. */
4516 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00004517 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00004518 if (ret) {
4519 mutex_unlock(&dev->struct_mutex);
4520 return ret;
4521 }
4522 }
4523
4524 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4525 * We need to replace this with a semaphore, or something.
4526 * And not confound mm.suspended!
4527 */
4528 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02004529 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004530
4531 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004532 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004533
Keith Packard6dbe2772008-10-14 21:41:13 -07004534 mutex_unlock(&dev->struct_mutex);
4535
Chris Wilson29105cc2010-01-07 10:39:13 +00004536 /* Cancel the retire work handler, which should be idle now. */
4537 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4538
Eric Anholt673a3942008-07-30 12:06:12 -07004539 return 0;
4540}
4541
Jesse Barnese552eb72010-04-21 11:39:23 -07004542/*
4543 * 965+ support PIPE_CONTROL commands, which provide finer grained control
4544 * over cache flushing.
4545 */
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004546static int
Jesse Barnese552eb72010-04-21 11:39:23 -07004547i915_gem_init_pipe_control(struct drm_device *dev)
4548{
4549 drm_i915_private_t *dev_priv = dev->dev_private;
4550 struct drm_gem_object *obj;
4551 struct drm_i915_gem_object *obj_priv;
4552 int ret;
4553
Eric Anholt34dc4d42010-05-07 14:30:03 -07004554 obj = i915_gem_alloc_object(dev, 4096);
Jesse Barnese552eb72010-04-21 11:39:23 -07004555 if (obj == NULL) {
4556 DRM_ERROR("Failed to allocate seqno page\n");
4557 ret = -ENOMEM;
4558 goto err;
4559 }
4560 obj_priv = to_intel_bo(obj);
4561 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
4562
Chris Wilsona00b10c2010-09-24 21:15:47 +01004563 ret = i915_gem_object_pin(obj, 4096, true, false);
Jesse Barnese552eb72010-04-21 11:39:23 -07004564 if (ret)
4565 goto err_unref;
4566
4567 dev_priv->seqno_gfx_addr = obj_priv->gtt_offset;
4568 dev_priv->seqno_page = kmap(obj_priv->pages[0]);
4569 if (dev_priv->seqno_page == NULL)
4570 goto err_unpin;
4571
4572 dev_priv->seqno_obj = obj;
4573 memset(dev_priv->seqno_page, 0, PAGE_SIZE);
4574
4575 return 0;
4576
4577err_unpin:
4578 i915_gem_object_unpin(obj);
4579err_unref:
4580 drm_gem_object_unreference(obj);
4581err:
4582 return ret;
4583}
4584
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004585
4586static void
Jesse Barnese552eb72010-04-21 11:39:23 -07004587i915_gem_cleanup_pipe_control(struct drm_device *dev)
4588{
4589 drm_i915_private_t *dev_priv = dev->dev_private;
4590 struct drm_gem_object *obj;
4591 struct drm_i915_gem_object *obj_priv;
4592
4593 obj = dev_priv->seqno_obj;
4594 obj_priv = to_intel_bo(obj);
4595 kunmap(obj_priv->pages[0]);
4596 i915_gem_object_unpin(obj);
4597 drm_gem_object_unreference(obj);
4598 dev_priv->seqno_obj = NULL;
4599
4600 dev_priv->seqno_page = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07004601}
4602
Eric Anholt673a3942008-07-30 12:06:12 -07004603int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004604i915_gem_init_ringbuffer(struct drm_device *dev)
4605{
4606 drm_i915_private_t *dev_priv = dev->dev_private;
4607 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004608
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004609 if (HAS_PIPE_CONTROL(dev)) {
4610 ret = i915_gem_init_pipe_control(dev);
4611 if (ret)
4612 return ret;
4613 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004614
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004615 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004616 if (ret)
4617 goto cleanup_pipe_control;
4618
4619 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004620 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004621 if (ret)
4622 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004623 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004624
Chris Wilson549f7362010-10-19 11:19:32 +01004625 if (HAS_BLT(dev)) {
4626 ret = intel_init_blt_ring_buffer(dev);
4627 if (ret)
4628 goto cleanup_bsd_ring;
4629 }
4630
Chris Wilson6f392d52010-08-07 11:01:22 +01004631 dev_priv->next_seqno = 1;
4632
Chris Wilson68f95ba2010-05-27 13:18:22 +01004633 return 0;
4634
Chris Wilson549f7362010-10-19 11:19:32 +01004635cleanup_bsd_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004636 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004637cleanup_render_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004638 intel_cleanup_ring_buffer(&dev_priv->render_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004639cleanup_pipe_control:
4640 if (HAS_PIPE_CONTROL(dev))
4641 i915_gem_cleanup_pipe_control(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004642 return ret;
4643}
4644
4645void
4646i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4647{
4648 drm_i915_private_t *dev_priv = dev->dev_private;
4649
Chris Wilson78501ea2010-10-27 12:18:21 +01004650 intel_cleanup_ring_buffer(&dev_priv->render_ring);
4651 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
4652 intel_cleanup_ring_buffer(&dev_priv->blt_ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004653 if (HAS_PIPE_CONTROL(dev))
4654 i915_gem_cleanup_pipe_control(dev);
4655}
4656
4657int
Eric Anholt673a3942008-07-30 12:06:12 -07004658i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4659 struct drm_file *file_priv)
4660{
4661 drm_i915_private_t *dev_priv = dev->dev_private;
4662 int ret;
4663
Jesse Barnes79e53942008-11-07 14:24:08 -08004664 if (drm_core_check_feature(dev, DRIVER_MODESET))
4665 return 0;
4666
Ben Gamariba1234d2009-09-14 17:48:47 -04004667 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004668 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04004669 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004670 }
4671
Eric Anholt673a3942008-07-30 12:06:12 -07004672 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004673 dev_priv->mm.suspended = 0;
4674
4675 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004676 if (ret != 0) {
4677 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004678 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004679 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004680
Chris Wilson69dc4982010-10-19 10:36:51 +01004681 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004682 BUG_ON(!list_empty(&dev_priv->render_ring.active_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004683 BUG_ON(!list_empty(&dev_priv->bsd_ring.active_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004684 BUG_ON(!list_empty(&dev_priv->blt_ring.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004685 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4686 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004687 BUG_ON(!list_empty(&dev_priv->render_ring.request_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004688 BUG_ON(!list_empty(&dev_priv->bsd_ring.request_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004689 BUG_ON(!list_empty(&dev_priv->blt_ring.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004690 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004691
Chris Wilson5f353082010-06-07 14:03:03 +01004692 ret = drm_irq_install(dev);
4693 if (ret)
4694 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004695
Eric Anholt673a3942008-07-30 12:06:12 -07004696 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004697
4698cleanup_ringbuffer:
4699 mutex_lock(&dev->struct_mutex);
4700 i915_gem_cleanup_ringbuffer(dev);
4701 dev_priv->mm.suspended = 1;
4702 mutex_unlock(&dev->struct_mutex);
4703
4704 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004705}
4706
4707int
4708i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4709 struct drm_file *file_priv)
4710{
Jesse Barnes79e53942008-11-07 14:24:08 -08004711 if (drm_core_check_feature(dev, DRIVER_MODESET))
4712 return 0;
4713
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004714 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07004715 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004716}
4717
4718void
4719i915_gem_lastclose(struct drm_device *dev)
4720{
4721 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004722
Eric Anholte806b492009-01-22 09:56:58 -08004723 if (drm_core_check_feature(dev, DRIVER_MODESET))
4724 return;
4725
Keith Packard6dbe2772008-10-14 21:41:13 -07004726 ret = i915_gem_idle(dev);
4727 if (ret)
4728 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004729}
4730
Chris Wilson64193402010-10-24 12:38:05 +01004731static void
4732init_ring_lists(struct intel_ring_buffer *ring)
4733{
4734 INIT_LIST_HEAD(&ring->active_list);
4735 INIT_LIST_HEAD(&ring->request_list);
4736 INIT_LIST_HEAD(&ring->gpu_write_list);
4737}
4738
Eric Anholt673a3942008-07-30 12:06:12 -07004739void
4740i915_gem_load(struct drm_device *dev)
4741{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004742 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07004743 drm_i915_private_t *dev_priv = dev->dev_private;
4744
Chris Wilson69dc4982010-10-19 10:36:51 +01004745 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004746 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
4747 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004748 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004749 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01004750 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Chris Wilson64193402010-10-24 12:38:05 +01004751 init_ring_lists(&dev_priv->render_ring);
4752 init_ring_lists(&dev_priv->bsd_ring);
4753 init_ring_lists(&dev_priv->blt_ring);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004754 for (i = 0; i < 16; i++)
4755 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004756 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4757 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004758 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01004759
Dave Airlie94400122010-07-20 13:15:31 +10004760 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4761 if (IS_GEN3(dev)) {
4762 u32 tmp = I915_READ(MI_ARB_STATE);
4763 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
4764 /* arb state is a masked write, so set bit + bit in mask */
4765 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
4766 I915_WRITE(MI_ARB_STATE, tmp);
4767 }
4768 }
4769
Jesse Barnesde151cf2008-11-12 10:03:55 -08004770 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004771 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4772 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004773
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004774 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004775 dev_priv->num_fence_regs = 16;
4776 else
4777 dev_priv->num_fence_regs = 8;
4778
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004779 /* Initialize fence registers to zero */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004780 switch (INTEL_INFO(dev)->gen) {
4781 case 6:
4782 for (i = 0; i < 16; i++)
4783 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (i * 8), 0);
4784 break;
4785 case 5:
4786 case 4:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004787 for (i = 0; i < 16; i++)
4788 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004789 break;
4790 case 3:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004791 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4792 for (i = 0; i < 8; i++)
4793 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004794 case 2:
4795 for (i = 0; i < 8; i++)
4796 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
4797 break;
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004798 }
Eric Anholt673a3942008-07-30 12:06:12 -07004799 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004800 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004801
4802 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4803 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4804 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004805}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004806
4807/*
4808 * Create a physically contiguous memory object for this object
4809 * e.g. for cursor + overlay regs
4810 */
Chris Wilson995b6762010-08-20 13:23:26 +01004811static int i915_gem_init_phys_object(struct drm_device *dev,
4812 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004813{
4814 drm_i915_private_t *dev_priv = dev->dev_private;
4815 struct drm_i915_gem_phys_object *phys_obj;
4816 int ret;
4817
4818 if (dev_priv->mm.phys_objs[id - 1] || !size)
4819 return 0;
4820
Eric Anholt9a298b22009-03-24 12:23:04 -07004821 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004822 if (!phys_obj)
4823 return -ENOMEM;
4824
4825 phys_obj->id = id;
4826
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004827 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004828 if (!phys_obj->handle) {
4829 ret = -ENOMEM;
4830 goto kfree_obj;
4831 }
4832#ifdef CONFIG_X86
4833 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4834#endif
4835
4836 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4837
4838 return 0;
4839kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004840 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004841 return ret;
4842}
4843
Chris Wilson995b6762010-08-20 13:23:26 +01004844static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004845{
4846 drm_i915_private_t *dev_priv = dev->dev_private;
4847 struct drm_i915_gem_phys_object *phys_obj;
4848
4849 if (!dev_priv->mm.phys_objs[id - 1])
4850 return;
4851
4852 phys_obj = dev_priv->mm.phys_objs[id - 1];
4853 if (phys_obj->cur_obj) {
4854 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4855 }
4856
4857#ifdef CONFIG_X86
4858 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4859#endif
4860 drm_pci_free(dev, phys_obj->handle);
4861 kfree(phys_obj);
4862 dev_priv->mm.phys_objs[id - 1] = NULL;
4863}
4864
4865void i915_gem_free_all_phys_object(struct drm_device *dev)
4866{
4867 int i;
4868
Dave Airlie260883c2009-01-22 17:58:49 +10004869 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004870 i915_gem_free_phys_object(dev, i);
4871}
4872
4873void i915_gem_detach_phys_object(struct drm_device *dev,
4874 struct drm_gem_object *obj)
4875{
Chris Wilsone5281cc2010-10-28 13:45:36 +01004876 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
4877 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
4878 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004879 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004880 int page_count;
4881
Dave Airlie71acb5e2008-12-30 20:31:46 +10004882 if (!obj_priv->phys_obj)
4883 return;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004884 vaddr = obj_priv->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004885
4886 page_count = obj->size / PAGE_SIZE;
4887
4888 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004889 struct page *page = read_cache_page_gfp(mapping, i,
4890 GFP_HIGHUSER | __GFP_RECLAIMABLE);
4891 if (!IS_ERR(page)) {
4892 char *dst = kmap_atomic(page);
4893 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4894 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004895
Chris Wilsone5281cc2010-10-28 13:45:36 +01004896 drm_clflush_pages(&page, 1);
4897
4898 set_page_dirty(page);
4899 mark_page_accessed(page);
4900 page_cache_release(page);
4901 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004902 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004903 drm_agp_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004904
Dave Airlie71acb5e2008-12-30 20:31:46 +10004905 obj_priv->phys_obj->cur_obj = NULL;
4906 obj_priv->phys_obj = NULL;
4907}
4908
4909int
4910i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004911 struct drm_gem_object *obj,
4912 int id,
4913 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004914{
Chris Wilsone5281cc2010-10-28 13:45:36 +01004915 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004916 drm_i915_private_t *dev_priv = dev->dev_private;
4917 struct drm_i915_gem_object *obj_priv;
4918 int ret = 0;
4919 int page_count;
4920 int i;
4921
4922 if (id > I915_MAX_PHYS_OBJECT)
4923 return -EINVAL;
4924
Daniel Vetter23010e42010-03-08 13:35:02 +01004925 obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004926
4927 if (obj_priv->phys_obj) {
4928 if (obj_priv->phys_obj->id == id)
4929 return 0;
4930 i915_gem_detach_phys_object(dev, obj);
4931 }
4932
Dave Airlie71acb5e2008-12-30 20:31:46 +10004933 /* create a new object */
4934 if (!dev_priv->mm.phys_objs[id - 1]) {
4935 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004936 obj->size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004937 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08004938 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004939 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004940 }
4941 }
4942
4943 /* bind to the object */
4944 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
4945 obj_priv->phys_obj->cur_obj = obj;
4946
Dave Airlie71acb5e2008-12-30 20:31:46 +10004947 page_count = obj->size / PAGE_SIZE;
4948
4949 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004950 struct page *page;
4951 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004952
Chris Wilsone5281cc2010-10-28 13:45:36 +01004953 page = read_cache_page_gfp(mapping, i,
4954 GFP_HIGHUSER | __GFP_RECLAIMABLE);
4955 if (IS_ERR(page))
4956 return PTR_ERR(page);
4957
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004958 src = kmap_atomic(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004959 dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004960 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004961 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004962
4963 mark_page_accessed(page);
4964 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004965 }
4966
4967 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004968}
4969
4970static int
4971i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
4972 struct drm_i915_gem_pwrite *args,
4973 struct drm_file *file_priv)
4974{
Daniel Vetter23010e42010-03-08 13:35:02 +01004975 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004976 void *obj_addr;
4977 int ret;
4978 char __user *user_data;
4979
4980 user_data = (char __user *) (uintptr_t) args->data_ptr;
4981 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
4982
Zhao Yakui44d98a62009-10-09 11:39:40 +08004983 DRM_DEBUG_DRIVER("obj_addr %p, %lld\n", obj_addr, args->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004984 ret = copy_from_user(obj_addr, user_data, args->size);
4985 if (ret)
4986 return -EFAULT;
4987
4988 drm_agp_chipset_flush(dev);
4989 return 0;
4990}
Eric Anholtb9624422009-06-03 07:27:35 +00004991
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004992void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004993{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004994 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004995
4996 /* Clean up our request list when the client is going away, so that
4997 * later retire_requests won't dereference our soon-to-be-gone
4998 * file_priv.
4999 */
Chris Wilson1c255952010-09-26 11:03:27 +01005000 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005001 while (!list_empty(&file_priv->mm.request_list)) {
5002 struct drm_i915_gem_request *request;
5003
5004 request = list_first_entry(&file_priv->mm.request_list,
5005 struct drm_i915_gem_request,
5006 client_list);
5007 list_del(&request->client_list);
5008 request->file_priv = NULL;
5009 }
Chris Wilson1c255952010-09-26 11:03:27 +01005010 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005011}
Chris Wilson31169712009-09-14 16:50:28 +01005012
Chris Wilson31169712009-09-14 16:50:28 +01005013static int
Chris Wilson1637ef42010-04-20 17:10:35 +01005014i915_gpu_is_active(struct drm_device *dev)
5015{
5016 drm_i915_private_t *dev_priv = dev->dev_private;
5017 int lists_empty;
5018
Chris Wilson1637ef42010-04-20 17:10:35 +01005019 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01005020 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01005021
5022 return !lists_empty;
5023}
5024
5025static int
Chris Wilson17250b72010-10-28 12:51:39 +01005026i915_gem_inactive_shrink(struct shrinker *shrinker,
5027 int nr_to_scan,
5028 gfp_t gfp_mask)
Chris Wilson31169712009-09-14 16:50:28 +01005029{
Chris Wilson17250b72010-10-28 12:51:39 +01005030 struct drm_i915_private *dev_priv =
5031 container_of(shrinker,
5032 struct drm_i915_private,
5033 mm.inactive_shrinker);
5034 struct drm_device *dev = dev_priv->dev;
5035 struct drm_i915_gem_object *obj, *next;
5036 int cnt;
5037
5038 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01005039 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005040
5041 /* "fast-path" to count number of available objects */
5042 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01005043 cnt = 0;
5044 list_for_each_entry(obj,
5045 &dev_priv->mm.inactive_list,
5046 mm_list)
5047 cnt++;
5048 mutex_unlock(&dev->struct_mutex);
5049 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005050 }
5051
Chris Wilson1637ef42010-04-20 17:10:35 +01005052rescan:
Chris Wilson31169712009-09-14 16:50:28 +01005053 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01005054 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01005055
Chris Wilson17250b72010-10-28 12:51:39 +01005056 list_for_each_entry_safe(obj, next,
5057 &dev_priv->mm.inactive_list,
5058 mm_list) {
5059 if (i915_gem_object_is_purgeable(obj)) {
5060 i915_gem_object_unbind(&obj->base);
5061 if (--nr_to_scan == 0)
5062 break;
Chris Wilson31169712009-09-14 16:50:28 +01005063 }
Chris Wilson31169712009-09-14 16:50:28 +01005064 }
5065
5066 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01005067 cnt = 0;
5068 list_for_each_entry_safe(obj, next,
5069 &dev_priv->mm.inactive_list,
5070 mm_list) {
5071 if (nr_to_scan) {
5072 i915_gem_object_unbind(&obj->base);
5073 nr_to_scan--;
5074 } else
5075 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01005076 }
5077
Chris Wilson17250b72010-10-28 12:51:39 +01005078 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01005079 /*
5080 * We are desperate for pages, so as a last resort, wait
5081 * for the GPU to finish and discard whatever we can.
5082 * This has a dramatic impact to reduce the number of
5083 * OOM-killer events whilst running the GPU aggressively.
5084 */
Chris Wilson17250b72010-10-28 12:51:39 +01005085 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01005086 goto rescan;
5087 }
Chris Wilson17250b72010-10-28 12:51:39 +01005088 mutex_unlock(&dev->struct_mutex);
5089 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005090}