blob: 939c9e34ce965bef20ec2c8d51f502b9721a3bda [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>
Eric Anholt673a3942008-07-30 12:06:12 -070037
Chris Wilson0f8c6d72010-11-01 12:38:44 +000038struct change_domains {
39 uint32_t invalidate_domains;
40 uint32_t flush_domains;
41 uint32_t flush_rings;
42};
43
Chris Wilson05394f32010-11-08 19:18:58 +000044static int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +000045 struct intel_ring_buffer *pipelined);
Chris Wilson05394f32010-11-08 19:18:58 +000046static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
47static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
48static int i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +000049 bool write);
Chris Wilson05394f32010-11-08 19:18:58 +000050static int i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -080051 uint64_t offset,
52 uint64_t size);
Chris Wilson05394f32010-11-08 19:18:58 +000053static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj);
54static int i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
Chris Wilson2cf34d72010-09-14 13:03:28 +010055 bool interruptible);
Chris Wilson05394f32010-11-08 19:18:58 +000056static int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Chris Wilsona00b10c2010-09-24 21:15:47 +010057 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +010058 bool map_and_fenceable);
Chris Wilson05394f32010-11-08 19:18:58 +000059static void i915_gem_clear_fence_reg(struct drm_i915_gem_object *obj);
60static int i915_gem_phys_pwrite(struct drm_device *dev,
61 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100062 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000063 struct drm_file *file);
64static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070065
Chris Wilson17250b72010-10-28 12:51:39 +010066static int i915_gem_inactive_shrink(struct shrinker *shrinker,
67 int nr_to_scan,
68 gfp_t gfp_mask);
69
Chris Wilson31169712009-09-14 16:50:28 +010070
Chris Wilson73aa8082010-09-30 11:46:12 +010071/* some bookkeeping */
72static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
73 size_t size)
74{
75 dev_priv->mm.object_count++;
76 dev_priv->mm.object_memory += size;
77}
78
79static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
80 size_t size)
81{
82 dev_priv->mm.object_count--;
83 dev_priv->mm.object_memory -= size;
84}
85
86static void i915_gem_info_add_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +010087 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +010088{
89 dev_priv->mm.gtt_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +010090 dev_priv->mm.gtt_memory += obj->gtt_space->size;
91 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +020092 dev_priv->mm.mappable_gtt_used +=
Chris Wilsona00b10c2010-09-24 21:15:47 +010093 min_t(size_t, obj->gtt_space->size,
94 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +020095 }
Daniel Vetter93a37f22010-11-05 20:24:53 +010096 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson73aa8082010-09-30 11:46:12 +010097}
98
99static void i915_gem_info_remove_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100100 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100101{
102 dev_priv->mm.gtt_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100103 dev_priv->mm.gtt_memory -= obj->gtt_space->size;
104 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200105 dev_priv->mm.mappable_gtt_used -=
Chris Wilsona00b10c2010-09-24 21:15:47 +0100106 min_t(size_t, obj->gtt_space->size,
107 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200108 }
Daniel Vetter93a37f22010-11-05 20:24:53 +0100109 list_del_init(&obj->gtt_list);
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200110}
111
112/**
113 * Update the mappable working set counters. Call _only_ when there is a change
114 * in one of (pin|fault)_mappable and update *_mappable _before_ calling.
115 * @mappable: new state the changed mappable flag (either pin_ or fault_).
116 */
117static void
118i915_gem_info_update_mappable(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100119 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200120 bool mappable)
121{
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200122 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100123 if (obj->pin_mappable && obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200124 /* Combined state was already mappable. */
125 return;
126 dev_priv->mm.gtt_mappable_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100127 dev_priv->mm.gtt_mappable_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200128 } else {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100129 if (obj->pin_mappable || obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200130 /* Combined state still mappable. */
131 return;
132 dev_priv->mm.gtt_mappable_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100133 dev_priv->mm.gtt_mappable_memory -= obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200134 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100135}
136
137static void i915_gem_info_add_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100138 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200139 bool mappable)
Chris Wilson73aa8082010-09-30 11:46:12 +0100140{
141 dev_priv->mm.pin_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100142 dev_priv->mm.pin_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200143 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100144 obj->pin_mappable = true;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200145 i915_gem_info_update_mappable(dev_priv, obj, true);
146 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100147}
148
149static void i915_gem_info_remove_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100150 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100151{
152 dev_priv->mm.pin_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100153 dev_priv->mm.pin_memory -= obj->gtt_space->size;
154 if (obj->pin_mappable) {
155 obj->pin_mappable = false;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200156 i915_gem_info_update_mappable(dev_priv, obj, false);
157 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100158}
159
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100160int
161i915_gem_check_is_wedged(struct drm_device *dev)
162{
163 struct drm_i915_private *dev_priv = dev->dev_private;
164 struct completion *x = &dev_priv->error_completion;
165 unsigned long flags;
166 int ret;
167
168 if (!atomic_read(&dev_priv->mm.wedged))
169 return 0;
170
171 ret = wait_for_completion_interruptible(x);
172 if (ret)
173 return ret;
174
175 /* Success, we reset the GPU! */
176 if (!atomic_read(&dev_priv->mm.wedged))
177 return 0;
178
179 /* GPU is hung, bump the completion count to account for
180 * the token we just consumed so that we never hit zero and
181 * end up waiting upon a subsequent completion event that
182 * will never happen.
183 */
184 spin_lock_irqsave(&x->wait.lock, flags);
185 x->done++;
186 spin_unlock_irqrestore(&x->wait.lock, flags);
187 return -EIO;
188}
189
Chris Wilson76c1dec2010-09-25 11:22:51 +0100190static int i915_mutex_lock_interruptible(struct drm_device *dev)
191{
192 struct drm_i915_private *dev_priv = dev->dev_private;
193 int ret;
194
195 ret = i915_gem_check_is_wedged(dev);
196 if (ret)
197 return ret;
198
199 ret = mutex_lock_interruptible(&dev->struct_mutex);
200 if (ret)
201 return ret;
202
203 if (atomic_read(&dev_priv->mm.wedged)) {
204 mutex_unlock(&dev->struct_mutex);
205 return -EAGAIN;
206 }
207
Chris Wilson23bc5982010-09-29 16:10:57 +0100208 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100209 return 0;
210}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100211
Chris Wilson7d1c4802010-08-07 21:45:03 +0100212static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000213i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100214{
Chris Wilson05394f32010-11-08 19:18:58 +0000215 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100216}
217
Chris Wilson73aa8082010-09-30 11:46:12 +0100218int i915_gem_do_init(struct drm_device *dev,
219 unsigned long start,
Daniel Vetter53984632010-09-22 23:44:24 +0200220 unsigned long mappable_end,
Jesse Barnes79e53942008-11-07 14:24:08 -0800221 unsigned long end)
222{
223 drm_i915_private_t *dev_priv = dev->dev_private;
224
225 if (start >= end ||
226 (start & (PAGE_SIZE - 1)) != 0 ||
227 (end & (PAGE_SIZE - 1)) != 0) {
228 return -EINVAL;
229 }
230
231 drm_mm_init(&dev_priv->mm.gtt_space, start,
232 end - start);
233
Chris Wilson73aa8082010-09-30 11:46:12 +0100234 dev_priv->mm.gtt_total = end - start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200235 dev_priv->mm.mappable_gtt_total = min(end, mappable_end) - start;
Daniel Vetter53984632010-09-22 23:44:24 +0200236 dev_priv->mm.gtt_mappable_end = mappable_end;
Jesse Barnes79e53942008-11-07 14:24:08 -0800237
238 return 0;
239}
Keith Packard6dbe2772008-10-14 21:41:13 -0700240
Eric Anholt673a3942008-07-30 12:06:12 -0700241int
242i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000243 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700244{
Eric Anholt673a3942008-07-30 12:06:12 -0700245 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -0800246 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700247
248 mutex_lock(&dev->struct_mutex);
Daniel Vetter53984632010-09-22 23:44:24 +0200249 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700250 mutex_unlock(&dev->struct_mutex);
251
Jesse Barnes79e53942008-11-07 14:24:08 -0800252 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700253}
254
Eric Anholt5a125c32008-10-22 21:40:13 -0700255int
256i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000257 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700258{
Chris Wilson73aa8082010-09-30 11:46:12 +0100259 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700260 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -0700261
262 if (!(dev->driver->driver_features & DRIVER_GEM))
263 return -ENODEV;
264
Chris Wilson73aa8082010-09-30 11:46:12 +0100265 mutex_lock(&dev->struct_mutex);
266 args->aper_size = dev_priv->mm.gtt_total;
267 args->aper_available_size = args->aper_size - dev_priv->mm.pin_memory;
268 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700269
270 return 0;
271}
272
Eric Anholt673a3942008-07-30 12:06:12 -0700273
274/**
275 * Creates a new mm object and returns a handle to it.
276 */
277int
278i915_gem_create_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000279 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700280{
281 struct drm_i915_gem_create *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000282 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300283 int ret;
284 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700285
286 args->size = roundup(args->size, PAGE_SIZE);
287
288 /* Allocate the new object */
Daniel Vetterac52bc52010-04-09 19:05:06 +0000289 obj = i915_gem_alloc_object(dev, args->size);
Eric Anholt673a3942008-07-30 12:06:12 -0700290 if (obj == NULL)
291 return -ENOMEM;
292
Chris Wilson05394f32010-11-08 19:18:58 +0000293 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100294 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000295 drm_gem_object_release(&obj->base);
296 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100297 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700298 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100299 }
300
Chris Wilson202f2fe2010-10-14 13:20:40 +0100301 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000302 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100303 trace_i915_gem_object_create(obj);
304
Eric Anholt673a3942008-07-30 12:06:12 -0700305 args->handle = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700306 return 0;
307}
308
Chris Wilson05394f32010-11-08 19:18:58 +0000309static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700310{
Chris Wilson05394f32010-11-08 19:18:58 +0000311 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700312
313 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000314 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700315}
316
Chris Wilson99a03df2010-05-27 14:15:34 +0100317static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700318slow_shmem_copy(struct page *dst_page,
319 int dst_offset,
320 struct page *src_page,
321 int src_offset,
322 int length)
323{
324 char *dst_vaddr, *src_vaddr;
325
Chris Wilson99a03df2010-05-27 14:15:34 +0100326 dst_vaddr = kmap(dst_page);
327 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700328
329 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
330
Chris Wilson99a03df2010-05-27 14:15:34 +0100331 kunmap(src_page);
332 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700333}
334
Chris Wilson99a03df2010-05-27 14:15:34 +0100335static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700336slow_shmem_bit17_copy(struct page *gpu_page,
337 int gpu_offset,
338 struct page *cpu_page,
339 int cpu_offset,
340 int length,
341 int is_read)
342{
343 char *gpu_vaddr, *cpu_vaddr;
344
345 /* Use the unswizzled path if this page isn't affected. */
346 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
347 if (is_read)
348 return slow_shmem_copy(cpu_page, cpu_offset,
349 gpu_page, gpu_offset, length);
350 else
351 return slow_shmem_copy(gpu_page, gpu_offset,
352 cpu_page, cpu_offset, length);
353 }
354
Chris Wilson99a03df2010-05-27 14:15:34 +0100355 gpu_vaddr = kmap(gpu_page);
356 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700357
358 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
359 * XORing with the other bits (A9 for Y, A9 and A10 for X)
360 */
361 while (length > 0) {
362 int cacheline_end = ALIGN(gpu_offset + 1, 64);
363 int this_length = min(cacheline_end - gpu_offset, length);
364 int swizzled_gpu_offset = gpu_offset ^ 64;
365
366 if (is_read) {
367 memcpy(cpu_vaddr + cpu_offset,
368 gpu_vaddr + swizzled_gpu_offset,
369 this_length);
370 } else {
371 memcpy(gpu_vaddr + swizzled_gpu_offset,
372 cpu_vaddr + cpu_offset,
373 this_length);
374 }
375 cpu_offset += this_length;
376 gpu_offset += this_length;
377 length -= this_length;
378 }
379
Chris Wilson99a03df2010-05-27 14:15:34 +0100380 kunmap(cpu_page);
381 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700382}
383
Eric Anholt673a3942008-07-30 12:06:12 -0700384/**
Eric Anholteb014592009-03-10 11:44:52 -0700385 * This is the fast shmem pread path, which attempts to copy_from_user directly
386 * from the backing pages of the object to the user's address space. On a
387 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
388 */
389static int
Chris Wilson05394f32010-11-08 19:18:58 +0000390i915_gem_shmem_pread_fast(struct drm_device *dev,
391 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700392 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000393 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700394{
Chris Wilson05394f32010-11-08 19:18:58 +0000395 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700396 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100397 loff_t offset;
Eric Anholteb014592009-03-10 11:44:52 -0700398 char __user *user_data;
399 int page_offset, page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700400
401 user_data = (char __user *) (uintptr_t) args->data_ptr;
402 remain = args->size;
403
Eric Anholteb014592009-03-10 11:44:52 -0700404 offset = args->offset;
405
406 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100407 struct page *page;
408 char *vaddr;
409 int ret;
410
Eric Anholteb014592009-03-10 11:44:52 -0700411 /* Operation in this page
412 *
Eric Anholteb014592009-03-10 11:44:52 -0700413 * page_offset = offset within page
414 * page_length = bytes to copy for this page
415 */
Eric Anholteb014592009-03-10 11:44:52 -0700416 page_offset = offset & (PAGE_SIZE-1);
417 page_length = remain;
418 if ((page_offset + remain) > PAGE_SIZE)
419 page_length = PAGE_SIZE - page_offset;
420
Chris Wilsone5281cc2010-10-28 13:45:36 +0100421 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
422 GFP_HIGHUSER | __GFP_RECLAIMABLE);
423 if (IS_ERR(page))
424 return PTR_ERR(page);
425
426 vaddr = kmap_atomic(page);
427 ret = __copy_to_user_inatomic(user_data,
428 vaddr + page_offset,
429 page_length);
430 kunmap_atomic(vaddr);
431
432 mark_page_accessed(page);
433 page_cache_release(page);
434 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100435 return -EFAULT;
Eric Anholteb014592009-03-10 11:44:52 -0700436
437 remain -= page_length;
438 user_data += page_length;
439 offset += page_length;
440 }
441
Chris Wilson4f27b752010-10-14 15:26:45 +0100442 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700443}
444
445/**
446 * This is the fallback shmem pread path, which allocates temporary storage
447 * in kernel space to copy_to_user into outside of the struct_mutex, so we
448 * can copy out of the object's backing pages while holding the struct mutex
449 * and not take page faults.
450 */
451static int
Chris Wilson05394f32010-11-08 19:18:58 +0000452i915_gem_shmem_pread_slow(struct drm_device *dev,
453 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700454 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000455 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700456{
Chris Wilson05394f32010-11-08 19:18:58 +0000457 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700458 struct mm_struct *mm = current->mm;
459 struct page **user_pages;
460 ssize_t remain;
461 loff_t offset, pinned_pages, i;
462 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100463 int shmem_page_offset;
464 int data_page_index, data_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700465 int page_length;
466 int ret;
467 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700468 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700469
470 remain = args->size;
471
472 /* Pin the user pages containing the data. We can't fault while
473 * holding the struct mutex, yet we want to hold it while
474 * dereferencing the user data.
475 */
476 first_data_page = data_ptr / PAGE_SIZE;
477 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
478 num_pages = last_data_page - first_data_page + 1;
479
Chris Wilson4f27b752010-10-14 15:26:45 +0100480 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700481 if (user_pages == NULL)
482 return -ENOMEM;
483
Chris Wilson4f27b752010-10-14 15:26:45 +0100484 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700485 down_read(&mm->mmap_sem);
486 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700487 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700488 up_read(&mm->mmap_sem);
Chris Wilson4f27b752010-10-14 15:26:45 +0100489 mutex_lock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700490 if (pinned_pages < num_pages) {
491 ret = -EFAULT;
Chris Wilson4f27b752010-10-14 15:26:45 +0100492 goto out;
Eric Anholteb014592009-03-10 11:44:52 -0700493 }
494
Chris Wilson4f27b752010-10-14 15:26:45 +0100495 ret = i915_gem_object_set_cpu_read_domain_range(obj,
496 args->offset,
Eric Anholteb014592009-03-10 11:44:52 -0700497 args->size);
Chris Wilson4f27b752010-10-14 15:26:45 +0100498 if (ret)
499 goto out;
500
501 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700502
Eric Anholteb014592009-03-10 11:44:52 -0700503 offset = args->offset;
504
505 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100506 struct page *page;
507
Eric Anholteb014592009-03-10 11:44:52 -0700508 /* Operation in this page
509 *
Eric Anholteb014592009-03-10 11:44:52 -0700510 * shmem_page_offset = offset within page in shmem file
511 * data_page_index = page number in get_user_pages return
512 * data_page_offset = offset with data_page_index page.
513 * page_length = bytes to copy for this page
514 */
Eric Anholteb014592009-03-10 11:44:52 -0700515 shmem_page_offset = offset & ~PAGE_MASK;
516 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
517 data_page_offset = data_ptr & ~PAGE_MASK;
518
519 page_length = remain;
520 if ((shmem_page_offset + page_length) > PAGE_SIZE)
521 page_length = PAGE_SIZE - shmem_page_offset;
522 if ((data_page_offset + page_length) > PAGE_SIZE)
523 page_length = PAGE_SIZE - data_page_offset;
524
Chris Wilsone5281cc2010-10-28 13:45:36 +0100525 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
526 GFP_HIGHUSER | __GFP_RECLAIMABLE);
527 if (IS_ERR(page))
528 return PTR_ERR(page);
529
Eric Anholt280b7132009-03-12 16:56:27 -0700530 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100531 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700532 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100533 user_pages[data_page_index],
534 data_page_offset,
535 page_length,
536 1);
537 } else {
538 slow_shmem_copy(user_pages[data_page_index],
539 data_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100540 page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100541 shmem_page_offset,
542 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700543 }
Eric Anholteb014592009-03-10 11:44:52 -0700544
Chris Wilsone5281cc2010-10-28 13:45:36 +0100545 mark_page_accessed(page);
546 page_cache_release(page);
547
Eric Anholteb014592009-03-10 11:44:52 -0700548 remain -= page_length;
549 data_ptr += page_length;
550 offset += page_length;
551 }
552
Chris Wilson4f27b752010-10-14 15:26:45 +0100553out:
Eric Anholteb014592009-03-10 11:44:52 -0700554 for (i = 0; i < pinned_pages; i++) {
555 SetPageDirty(user_pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100556 mark_page_accessed(user_pages[i]);
Eric Anholteb014592009-03-10 11:44:52 -0700557 page_cache_release(user_pages[i]);
558 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700559 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700560
561 return ret;
562}
563
Eric Anholt673a3942008-07-30 12:06:12 -0700564/**
565 * Reads data from the object referenced by handle.
566 *
567 * On error, the contents of *data are undefined.
568 */
569int
570i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000571 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700572{
573 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000574 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100575 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700576
Chris Wilson51311d02010-11-17 09:10:42 +0000577 if (args->size == 0)
578 return 0;
579
580 if (!access_ok(VERIFY_WRITE,
581 (char __user *)(uintptr_t)args->data_ptr,
582 args->size))
583 return -EFAULT;
584
585 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
586 args->size);
587 if (ret)
588 return -EFAULT;
589
Chris Wilson4f27b752010-10-14 15:26:45 +0100590 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100591 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100592 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700593
Chris Wilson05394f32010-11-08 19:18:58 +0000594 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100595 if (obj == NULL) {
596 ret = -ENOENT;
597 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100598 }
Eric Anholt673a3942008-07-30 12:06:12 -0700599
Chris Wilson7dcd2492010-09-26 20:21:44 +0100600 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000601 if (args->offset > obj->base.size ||
602 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100603 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100604 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100605 }
606
Chris Wilson4f27b752010-10-14 15:26:45 +0100607 ret = i915_gem_object_set_cpu_read_domain_range(obj,
608 args->offset,
609 args->size);
610 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100611 goto out;
Chris Wilson4f27b752010-10-14 15:26:45 +0100612
613 ret = -EFAULT;
614 if (!i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson05394f32010-11-08 19:18:58 +0000615 ret = i915_gem_shmem_pread_fast(dev, obj, args, file);
Chris Wilson4f27b752010-10-14 15:26:45 +0100616 if (ret == -EFAULT)
Chris Wilson05394f32010-11-08 19:18:58 +0000617 ret = i915_gem_shmem_pread_slow(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700618
Chris Wilson35b62a82010-09-26 20:23:38 +0100619out:
Chris Wilson05394f32010-11-08 19:18:58 +0000620 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100621unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100622 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700623 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700624}
625
Keith Packard0839ccb2008-10-30 19:38:48 -0700626/* This is the fast write path which cannot handle
627 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700628 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700629
Keith Packard0839ccb2008-10-30 19:38:48 -0700630static inline int
631fast_user_write(struct io_mapping *mapping,
632 loff_t page_base, int page_offset,
633 char __user *user_data,
634 int length)
635{
636 char *vaddr_atomic;
637 unsigned long unwritten;
638
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700639 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700640 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
641 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700642 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100643 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700644}
645
646/* Here's the write path which can sleep for
647 * page faults
648 */
649
Chris Wilsonab34c222010-05-27 14:15:35 +0100650static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700651slow_kernel_write(struct io_mapping *mapping,
652 loff_t gtt_base, int gtt_offset,
653 struct page *user_page, int user_offset,
654 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700655{
Chris Wilsonab34c222010-05-27 14:15:35 +0100656 char __iomem *dst_vaddr;
657 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700658
Chris Wilsonab34c222010-05-27 14:15:35 +0100659 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
660 src_vaddr = kmap(user_page);
661
662 memcpy_toio(dst_vaddr + gtt_offset,
663 src_vaddr + user_offset,
664 length);
665
666 kunmap(user_page);
667 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700668}
669
Eric Anholt3de09aa2009-03-09 09:42:23 -0700670/**
671 * This is the fast pwrite path, where we copy the data directly from the
672 * user into the GTT, uncached.
673 */
Eric Anholt673a3942008-07-30 12:06:12 -0700674static int
Chris Wilson05394f32010-11-08 19:18:58 +0000675i915_gem_gtt_pwrite_fast(struct drm_device *dev,
676 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700677 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000678 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700679{
Keith Packard0839ccb2008-10-30 19:38:48 -0700680 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700681 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700682 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700683 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700684 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700685
686 user_data = (char __user *) (uintptr_t) args->data_ptr;
687 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700688
Chris Wilson05394f32010-11-08 19:18:58 +0000689 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700690
691 while (remain > 0) {
692 /* Operation in this page
693 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700694 * page_base = page offset within aperture
695 * page_offset = offset within page
696 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700697 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700698 page_base = (offset & ~(PAGE_SIZE-1));
699 page_offset = offset & (PAGE_SIZE-1);
700 page_length = remain;
701 if ((page_offset + remain) > PAGE_SIZE)
702 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700703
Keith Packard0839ccb2008-10-30 19:38:48 -0700704 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700705 * source page isn't available. Return the error and we'll
706 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700707 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100708 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
709 page_offset, user_data, page_length))
710
711 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700712
Keith Packard0839ccb2008-10-30 19:38:48 -0700713 remain -= page_length;
714 user_data += page_length;
715 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700716 }
Eric Anholt673a3942008-07-30 12:06:12 -0700717
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100718 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700719}
720
Eric Anholt3de09aa2009-03-09 09:42:23 -0700721/**
722 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
723 * the memory and maps it using kmap_atomic for copying.
724 *
725 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
726 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
727 */
Eric Anholt3043c602008-10-02 12:24:47 -0700728static int
Chris Wilson05394f32010-11-08 19:18:58 +0000729i915_gem_gtt_pwrite_slow(struct drm_device *dev,
730 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700731 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000732 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700733{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700734 drm_i915_private_t *dev_priv = dev->dev_private;
735 ssize_t remain;
736 loff_t gtt_page_base, offset;
737 loff_t first_data_page, last_data_page, num_pages;
738 loff_t pinned_pages, i;
739 struct page **user_pages;
740 struct mm_struct *mm = current->mm;
741 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700742 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700743 uint64_t data_ptr = args->data_ptr;
744
745 remain = args->size;
746
747 /* Pin the user pages containing the data. We can't fault while
748 * holding the struct mutex, and all of the pwrite implementations
749 * want to hold it while dereferencing the user data.
750 */
751 first_data_page = data_ptr / PAGE_SIZE;
752 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
753 num_pages = last_data_page - first_data_page + 1;
754
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100755 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700756 if (user_pages == NULL)
757 return -ENOMEM;
758
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100759 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700760 down_read(&mm->mmap_sem);
761 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
762 num_pages, 0, 0, user_pages, NULL);
763 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100764 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700765 if (pinned_pages < num_pages) {
766 ret = -EFAULT;
767 goto out_unpin_pages;
768 }
769
Eric Anholt3de09aa2009-03-09 09:42:23 -0700770 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
771 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100772 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700773
Chris Wilson05394f32010-11-08 19:18:58 +0000774 offset = obj->gtt_offset + args->offset;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700775
776 while (remain > 0) {
777 /* Operation in this page
778 *
779 * gtt_page_base = page offset within aperture
780 * gtt_page_offset = offset within page in aperture
781 * data_page_index = page number in get_user_pages return
782 * data_page_offset = offset with data_page_index page.
783 * page_length = bytes to copy for this page
784 */
785 gtt_page_base = offset & PAGE_MASK;
786 gtt_page_offset = offset & ~PAGE_MASK;
787 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
788 data_page_offset = data_ptr & ~PAGE_MASK;
789
790 page_length = remain;
791 if ((gtt_page_offset + page_length) > PAGE_SIZE)
792 page_length = PAGE_SIZE - gtt_page_offset;
793 if ((data_page_offset + page_length) > PAGE_SIZE)
794 page_length = PAGE_SIZE - data_page_offset;
795
Chris Wilsonab34c222010-05-27 14:15:35 +0100796 slow_kernel_write(dev_priv->mm.gtt_mapping,
797 gtt_page_base, gtt_page_offset,
798 user_pages[data_page_index],
799 data_page_offset,
800 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700801
802 remain -= page_length;
803 offset += page_length;
804 data_ptr += page_length;
805 }
806
Eric Anholt3de09aa2009-03-09 09:42:23 -0700807out_unpin_pages:
808 for (i = 0; i < pinned_pages; i++)
809 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700810 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700811
812 return ret;
813}
814
Eric Anholt40123c12009-03-09 13:42:30 -0700815/**
816 * This is the fast shmem pwrite path, which attempts to directly
817 * copy_from_user into the kmapped pages backing the object.
818 */
Eric Anholt673a3942008-07-30 12:06:12 -0700819static int
Chris Wilson05394f32010-11-08 19:18:58 +0000820i915_gem_shmem_pwrite_fast(struct drm_device *dev,
821 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700822 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000823 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700824{
Chris Wilson05394f32010-11-08 19:18:58 +0000825 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700826 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100827 loff_t offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700828 char __user *user_data;
829 int page_offset, page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700830
831 user_data = (char __user *) (uintptr_t) args->data_ptr;
832 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700833
Eric Anholt673a3942008-07-30 12:06:12 -0700834 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000835 obj->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700836
Eric Anholt40123c12009-03-09 13:42:30 -0700837 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100838 struct page *page;
839 char *vaddr;
840 int ret;
841
Eric Anholt40123c12009-03-09 13:42:30 -0700842 /* Operation in this page
843 *
Eric Anholt40123c12009-03-09 13:42:30 -0700844 * page_offset = offset within page
845 * page_length = bytes to copy for this page
846 */
Eric Anholt40123c12009-03-09 13:42:30 -0700847 page_offset = offset & (PAGE_SIZE-1);
848 page_length = remain;
849 if ((page_offset + remain) > PAGE_SIZE)
850 page_length = PAGE_SIZE - page_offset;
851
Chris Wilsone5281cc2010-10-28 13:45:36 +0100852 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
853 GFP_HIGHUSER | __GFP_RECLAIMABLE);
854 if (IS_ERR(page))
855 return PTR_ERR(page);
856
857 vaddr = kmap_atomic(page, KM_USER0);
858 ret = __copy_from_user_inatomic(vaddr + page_offset,
859 user_data,
860 page_length);
861 kunmap_atomic(vaddr, KM_USER0);
862
863 set_page_dirty(page);
864 mark_page_accessed(page);
865 page_cache_release(page);
866
867 /* If we get a fault while copying data, then (presumably) our
868 * source page isn't available. Return the error and we'll
869 * retry in the slow path.
870 */
871 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100872 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700873
874 remain -= page_length;
875 user_data += page_length;
876 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700877 }
878
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100879 return 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700880}
881
882/**
883 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
884 * the memory and maps it using kmap_atomic for copying.
885 *
886 * This avoids taking mmap_sem for faulting on the user's address while the
887 * struct_mutex is held.
888 */
889static int
Chris Wilson05394f32010-11-08 19:18:58 +0000890i915_gem_shmem_pwrite_slow(struct drm_device *dev,
891 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700892 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000893 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700894{
Chris Wilson05394f32010-11-08 19:18:58 +0000895 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700896 struct mm_struct *mm = current->mm;
897 struct page **user_pages;
898 ssize_t remain;
899 loff_t offset, pinned_pages, i;
900 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100901 int shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700902 int data_page_index, data_page_offset;
903 int page_length;
904 int ret;
905 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700906 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700907
908 remain = args->size;
909
910 /* Pin the user pages containing the data. We can't fault while
911 * holding the struct mutex, and all of the pwrite implementations
912 * want to hold it while dereferencing the user data.
913 */
914 first_data_page = data_ptr / PAGE_SIZE;
915 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
916 num_pages = last_data_page - first_data_page + 1;
917
Chris Wilson4f27b752010-10-14 15:26:45 +0100918 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700919 if (user_pages == NULL)
920 return -ENOMEM;
921
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100922 mutex_unlock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700923 down_read(&mm->mmap_sem);
924 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
925 num_pages, 0, 0, user_pages, NULL);
926 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100927 mutex_lock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700928 if (pinned_pages < num_pages) {
929 ret = -EFAULT;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100930 goto out;
Eric Anholt40123c12009-03-09 13:42:30 -0700931 }
932
Eric Anholt40123c12009-03-09 13:42:30 -0700933 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100934 if (ret)
935 goto out;
936
937 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700938
Eric Anholt40123c12009-03-09 13:42:30 -0700939 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000940 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700941
942 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100943 struct page *page;
944
Eric Anholt40123c12009-03-09 13:42:30 -0700945 /* Operation in this page
946 *
Eric Anholt40123c12009-03-09 13:42:30 -0700947 * shmem_page_offset = offset within page in shmem file
948 * data_page_index = page number in get_user_pages return
949 * data_page_offset = offset with data_page_index page.
950 * page_length = bytes to copy for this page
951 */
Eric Anholt40123c12009-03-09 13:42:30 -0700952 shmem_page_offset = offset & ~PAGE_MASK;
953 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
954 data_page_offset = data_ptr & ~PAGE_MASK;
955
956 page_length = remain;
957 if ((shmem_page_offset + page_length) > PAGE_SIZE)
958 page_length = PAGE_SIZE - shmem_page_offset;
959 if ((data_page_offset + page_length) > PAGE_SIZE)
960 page_length = PAGE_SIZE - data_page_offset;
961
Chris Wilsone5281cc2010-10-28 13:45:36 +0100962 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
963 GFP_HIGHUSER | __GFP_RECLAIMABLE);
964 if (IS_ERR(page)) {
965 ret = PTR_ERR(page);
966 goto out;
967 }
968
Eric Anholt280b7132009-03-12 16:56:27 -0700969 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100970 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700971 shmem_page_offset,
972 user_pages[data_page_index],
973 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100974 page_length,
975 0);
976 } else {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100977 slow_shmem_copy(page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100978 shmem_page_offset,
979 user_pages[data_page_index],
980 data_page_offset,
981 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700982 }
Eric Anholt40123c12009-03-09 13:42:30 -0700983
Chris Wilsone5281cc2010-10-28 13:45:36 +0100984 set_page_dirty(page);
985 mark_page_accessed(page);
986 page_cache_release(page);
987
Eric Anholt40123c12009-03-09 13:42:30 -0700988 remain -= page_length;
989 data_ptr += page_length;
990 offset += page_length;
991 }
992
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100993out:
Eric Anholt40123c12009-03-09 13:42:30 -0700994 for (i = 0; i < pinned_pages; i++)
995 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700996 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -0700997
998 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700999}
1000
1001/**
1002 * Writes data to the object referenced by handle.
1003 *
1004 * On error, the contents of the buffer that were to be modified are undefined.
1005 */
1006int
1007i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001008 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001009{
1010 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001011 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001012 int ret;
1013
1014 if (args->size == 0)
1015 return 0;
1016
1017 if (!access_ok(VERIFY_READ,
1018 (char __user *)(uintptr_t)args->data_ptr,
1019 args->size))
1020 return -EFAULT;
1021
1022 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
1023 args->size);
1024 if (ret)
1025 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001026
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001027 ret = i915_mutex_lock_interruptible(dev);
1028 if (ret)
1029 return ret;
1030
Chris Wilson05394f32010-11-08 19:18:58 +00001031 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001032 if (obj == NULL) {
1033 ret = -ENOENT;
1034 goto unlock;
1035 }
Eric Anholt673a3942008-07-30 12:06:12 -07001036
Chris Wilson7dcd2492010-09-26 20:21:44 +01001037 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001038 if (args->offset > obj->base.size ||
1039 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001040 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001041 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001042 }
1043
Eric Anholt673a3942008-07-30 12:06:12 -07001044 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1045 * it would end up going through the fenced access, and we'll get
1046 * different detiling behavior between reading and writing.
1047 * pread/pwrite currently are reading and writing from the CPU
1048 * perspective, requiring manual detiling by the client.
1049 */
Chris Wilson05394f32010-11-08 19:18:58 +00001050 if (obj->phys_obj)
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001051 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Chris Wilson05394f32010-11-08 19:18:58 +00001052 else if (obj->tiling_mode == I915_TILING_NONE &&
1053 obj->gtt_space &&
1054 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001055 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001056 if (ret)
1057 goto out;
1058
1059 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
1060 if (ret)
1061 goto out_unpin;
1062
1063 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
1064 if (ret == -EFAULT)
1065 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
1066
1067out_unpin:
1068 i915_gem_object_unpin(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001069 } else {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001070 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1071 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001072 goto out;
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001073
1074 ret = -EFAULT;
1075 if (!i915_gem_object_needs_bit17_swizzle(obj))
1076 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file);
1077 if (ret == -EFAULT)
1078 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file);
Eric Anholt40123c12009-03-09 13:42:30 -07001079 }
Eric Anholt673a3942008-07-30 12:06:12 -07001080
Chris Wilson35b62a82010-09-26 20:23:38 +01001081out:
Chris Wilson05394f32010-11-08 19:18:58 +00001082 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001083unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001084 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001085 return ret;
1086}
1087
1088/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001089 * Called when user space prepares to use an object with the CPU, either
1090 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001091 */
1092int
1093i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001094 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001095{
Eric Anholta09ba7f2009-08-29 12:49:51 -07001096 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001097 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001098 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001099 uint32_t read_domains = args->read_domains;
1100 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001101 int ret;
1102
1103 if (!(dev->driver->driver_features & DRIVER_GEM))
1104 return -ENODEV;
1105
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001106 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001107 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001108 return -EINVAL;
1109
Chris Wilson21d509e2009-06-06 09:46:02 +01001110 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001111 return -EINVAL;
1112
1113 /* Having something in the write domain implies it's in the read
1114 * domain, and only that read domain. Enforce that in the request.
1115 */
1116 if (write_domain != 0 && read_domains != write_domain)
1117 return -EINVAL;
1118
Chris Wilson76c1dec2010-09-25 11:22:51 +01001119 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001120 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001121 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001122
Chris Wilson05394f32010-11-08 19:18:58 +00001123 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001124 if (obj == NULL) {
1125 ret = -ENOENT;
1126 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001127 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001128
1129 intel_mark_busy(dev, obj);
1130
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001131 if (read_domains & I915_GEM_DOMAIN_GTT) {
1132 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001133
Eric Anholta09ba7f2009-08-29 12:49:51 -07001134 /* Update the LRU on the fence for the CPU access that's
1135 * about to occur.
1136 */
Chris Wilson05394f32010-11-08 19:18:58 +00001137 if (obj->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001138 struct drm_i915_fence_reg *reg =
Chris Wilson05394f32010-11-08 19:18:58 +00001139 &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001140 list_move_tail(&reg->lru_list,
Eric Anholta09ba7f2009-08-29 12:49:51 -07001141 &dev_priv->mm.fence_list);
1142 }
1143
Eric Anholt02354392008-11-26 13:58:13 -08001144 /* Silently promote "you're not bound, there was nothing to do"
1145 * to success, since the client was just asking us to
1146 * make sure everything was done.
1147 */
1148 if (ret == -EINVAL)
1149 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001150 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001151 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001152 }
1153
Chris Wilson7d1c4802010-08-07 21:45:03 +01001154 /* Maintain LRU order of "inactive" objects */
Chris Wilson05394f32010-11-08 19:18:58 +00001155 if (ret == 0 && i915_gem_object_is_inactive(obj))
1156 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001157
Chris Wilson05394f32010-11-08 19:18:58 +00001158 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001159unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001160 mutex_unlock(&dev->struct_mutex);
1161 return ret;
1162}
1163
1164/**
1165 * Called when user space has done writes to this buffer
1166 */
1167int
1168i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001169 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001170{
1171 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001172 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001173 int ret = 0;
1174
1175 if (!(dev->driver->driver_features & DRIVER_GEM))
1176 return -ENODEV;
1177
Chris Wilson76c1dec2010-09-25 11:22:51 +01001178 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001179 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001180 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001181
Chris Wilson05394f32010-11-08 19:18:58 +00001182 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07001183 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001184 ret = -ENOENT;
1185 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001186 }
1187
Eric Anholt673a3942008-07-30 12:06:12 -07001188 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001189 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001190 i915_gem_object_flush_cpu_write_domain(obj);
1191
Chris Wilson05394f32010-11-08 19:18:58 +00001192 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001193unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001194 mutex_unlock(&dev->struct_mutex);
1195 return ret;
1196}
1197
1198/**
1199 * Maps the contents of an object, returning the address it is mapped
1200 * into.
1201 *
1202 * While the mapping holds a reference on the contents of the object, it doesn't
1203 * imply a ref on the object itself.
1204 */
1205int
1206i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001207 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001208{
Chris Wilsonda761a62010-10-27 17:37:08 +01001209 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001210 struct drm_i915_gem_mmap *args = data;
1211 struct drm_gem_object *obj;
1212 loff_t offset;
1213 unsigned long addr;
1214
1215 if (!(dev->driver->driver_features & DRIVER_GEM))
1216 return -ENODEV;
1217
Chris Wilson05394f32010-11-08 19:18:58 +00001218 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001219 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001220 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001221
Chris Wilsonda761a62010-10-27 17:37:08 +01001222 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1223 drm_gem_object_unreference_unlocked(obj);
1224 return -E2BIG;
1225 }
1226
Eric Anholt673a3942008-07-30 12:06:12 -07001227 offset = args->offset;
1228
1229 down_write(&current->mm->mmap_sem);
1230 addr = do_mmap(obj->filp, 0, args->size,
1231 PROT_READ | PROT_WRITE, MAP_SHARED,
1232 args->offset);
1233 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001234 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001235 if (IS_ERR((void *)addr))
1236 return addr;
1237
1238 args->addr_ptr = (uint64_t) addr;
1239
1240 return 0;
1241}
1242
Jesse Barnesde151cf2008-11-12 10:03:55 -08001243/**
1244 * i915_gem_fault - fault a page into the GTT
1245 * vma: VMA in question
1246 * vmf: fault info
1247 *
1248 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1249 * from userspace. The fault handler takes care of binding the object to
1250 * the GTT (if needed), allocating and programming a fence register (again,
1251 * only if needed based on whether the old reg is still valid or the object
1252 * is tiled) and inserting a new PTE into the faulting process.
1253 *
1254 * Note that the faulting process may involve evicting existing objects
1255 * from the GTT and/or fence registers to make room. So performance may
1256 * suffer if the GTT working set is large or there are few fence registers
1257 * left.
1258 */
1259int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1260{
Chris Wilson05394f32010-11-08 19:18:58 +00001261 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1262 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001263 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001264 pgoff_t page_offset;
1265 unsigned long pfn;
1266 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001267 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001268
1269 /* We don't use vmf->pgoff since that has the fake offset */
1270 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1271 PAGE_SHIFT;
1272
1273 /* Now bind it into the GTT if needed */
1274 mutex_lock(&dev->struct_mutex);
Chris Wilson05394f32010-11-08 19:18:58 +00001275 BUG_ON(obj->pin_count && !obj->pin_mappable);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001276
Chris Wilson919926a2010-11-12 13:42:53 +00001277 if (!obj->map_and_fenceable) {
1278 ret = i915_gem_object_unbind(obj);
1279 if (ret)
1280 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001281 }
Daniel Vetter16e809a2010-09-16 19:37:04 +02001282
Chris Wilson05394f32010-11-08 19:18:58 +00001283 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001284 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001285 if (ret)
1286 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001287 }
1288
Chris Wilson4a684a42010-10-28 14:44:08 +01001289 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1290 if (ret)
1291 goto unlock;
1292
Chris Wilson05394f32010-11-08 19:18:58 +00001293 if (!obj->fault_mappable) {
1294 obj->fault_mappable = true;
1295 i915_gem_info_update_mappable(dev_priv, obj, true);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001296 }
1297
Jesse Barnesde151cf2008-11-12 10:03:55 -08001298 /* Need a new fence register? */
Chris Wilson05394f32010-11-08 19:18:58 +00001299 if (obj->tiling_mode != I915_TILING_NONE) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01001300 ret = i915_gem_object_get_fence_reg(obj, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001301 if (ret)
1302 goto unlock;
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001303 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001304
Chris Wilson05394f32010-11-08 19:18:58 +00001305 if (i915_gem_object_is_inactive(obj))
1306 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001307
Chris Wilson05394f32010-11-08 19:18:58 +00001308 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001309 page_offset;
1310
1311 /* Finally, remap it using the new GTT offset */
1312 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001313unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001314 mutex_unlock(&dev->struct_mutex);
1315
1316 switch (ret) {
Chris Wilson045e7692010-11-07 09:18:22 +00001317 case -EAGAIN:
1318 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001319 case 0:
1320 case -ERESTARTSYS:
1321 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001322 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001323 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001324 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001325 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001326 }
1327}
1328
1329/**
1330 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1331 * @obj: obj in question
1332 *
1333 * GEM memory mapping works by handing back to userspace a fake mmap offset
1334 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1335 * up the object based on the offset and sets up the various memory mapping
1336 * structures.
1337 *
1338 * This routine allocates and attaches a fake offset for @obj.
1339 */
1340static int
Chris Wilson05394f32010-11-08 19:18:58 +00001341i915_gem_create_mmap_offset(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001342{
Chris Wilson05394f32010-11-08 19:18:58 +00001343 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001344 struct drm_gem_mm *mm = dev->mm_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001345 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001346 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001347 int ret = 0;
1348
1349 /* Set the object up for mmap'ing */
Chris Wilson05394f32010-11-08 19:18:58 +00001350 list = &obj->base.map_list;
Eric Anholt9a298b22009-03-24 12:23:04 -07001351 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001352 if (!list->map)
1353 return -ENOMEM;
1354
1355 map = list->map;
1356 map->type = _DRM_GEM;
Chris Wilson05394f32010-11-08 19:18:58 +00001357 map->size = obj->base.size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001358 map->handle = obj;
1359
1360 /* Get a DRM GEM mmap offset allocated... */
1361 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
Chris Wilson05394f32010-11-08 19:18:58 +00001362 obj->base.size / PAGE_SIZE,
1363 0, 0);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001364 if (!list->file_offset_node) {
Chris Wilson05394f32010-11-08 19:18:58 +00001365 DRM_ERROR("failed to allocate offset for bo %d\n",
1366 obj->base.name);
Chris Wilson9e0ae5342010-09-21 15:05:24 +01001367 ret = -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001368 goto out_free_list;
1369 }
1370
1371 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
Chris Wilson05394f32010-11-08 19:18:58 +00001372 obj->base.size / PAGE_SIZE,
1373 0);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001374 if (!list->file_offset_node) {
1375 ret = -ENOMEM;
1376 goto out_free_list;
1377 }
1378
1379 list->hash.key = list->file_offset_node->start;
Chris Wilson9e0ae5342010-09-21 15:05:24 +01001380 ret = drm_ht_insert_item(&mm->offset_hash, &list->hash);
1381 if (ret) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001382 DRM_ERROR("failed to add to map hash\n");
1383 goto out_free_mm;
1384 }
1385
Jesse Barnesde151cf2008-11-12 10:03:55 -08001386 return 0;
1387
1388out_free_mm:
1389 drm_mm_put_block(list->file_offset_node);
1390out_free_list:
Eric Anholt9a298b22009-03-24 12:23:04 -07001391 kfree(list->map);
Chris Wilson39a01d12010-10-28 13:03:06 +01001392 list->map = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001393
1394 return ret;
1395}
1396
Chris Wilson901782b2009-07-10 08:18:50 +01001397/**
1398 * i915_gem_release_mmap - remove physical page mappings
1399 * @obj: obj in question
1400 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001401 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001402 * relinquish ownership of the pages back to the system.
1403 *
1404 * It is vital that we remove the page mapping if we have mapped a tiled
1405 * object through the GTT and then lose the fence register due to
1406 * resource pressure. Similarly if the object has been moved out of the
1407 * aperture, than pages mapped into userspace must be revoked. Removing the
1408 * mapping will then trigger a page fault on the next user access, allowing
1409 * fixup by i915_gem_fault().
1410 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001411void
Chris Wilson05394f32010-11-08 19:18:58 +00001412i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001413{
Chris Wilson05394f32010-11-08 19:18:58 +00001414 struct drm_device *dev = obj->base.dev;
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001415 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson901782b2009-07-10 08:18:50 +01001416
Chris Wilson05394f32010-11-08 19:18:58 +00001417 if (unlikely(obj->base.map_list.map && dev->dev_mapping))
Chris Wilson901782b2009-07-10 08:18:50 +01001418 unmap_mapping_range(dev->dev_mapping,
Chris Wilson05394f32010-11-08 19:18:58 +00001419 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1420 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001421
Chris Wilson05394f32010-11-08 19:18:58 +00001422 if (obj->fault_mappable) {
1423 obj->fault_mappable = false;
1424 i915_gem_info_update_mappable(dev_priv, obj, false);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001425 }
Chris Wilson901782b2009-07-10 08:18:50 +01001426}
1427
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001428static void
Chris Wilson05394f32010-11-08 19:18:58 +00001429i915_gem_free_mmap_offset(struct drm_i915_gem_object *obj)
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001430{
Chris Wilson05394f32010-11-08 19:18:58 +00001431 struct drm_device *dev = obj->base.dev;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001432 struct drm_gem_mm *mm = dev->mm_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001433 struct drm_map_list *list = &obj->base.map_list;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001434
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001435 drm_ht_remove_item(&mm->offset_hash, &list->hash);
Chris Wilson39a01d12010-10-28 13:03:06 +01001436 drm_mm_put_block(list->file_offset_node);
1437 kfree(list->map);
1438 list->map = NULL;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001439}
1440
Chris Wilson92b88ae2010-11-09 11:47:32 +00001441static uint32_t
1442i915_gem_get_gtt_size(struct drm_i915_gem_object *obj)
1443{
1444 struct drm_device *dev = obj->base.dev;
1445 uint32_t size;
1446
1447 if (INTEL_INFO(dev)->gen >= 4 ||
1448 obj->tiling_mode == I915_TILING_NONE)
1449 return obj->base.size;
1450
1451 /* Previous chips need a power-of-two fence region when tiling */
1452 if (INTEL_INFO(dev)->gen == 3)
1453 size = 1024*1024;
1454 else
1455 size = 512*1024;
1456
1457 while (size < obj->base.size)
1458 size <<= 1;
1459
1460 return size;
1461}
1462
Jesse Barnesde151cf2008-11-12 10:03:55 -08001463/**
1464 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1465 * @obj: object to check
1466 *
1467 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001468 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001469 */
1470static uint32_t
Chris Wilson05394f32010-11-08 19:18:58 +00001471i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001472{
Chris Wilson05394f32010-11-08 19:18:58 +00001473 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001474
1475 /*
1476 * Minimum alignment is 4k (GTT page size), but might be greater
1477 * if a fence register is needed for the object.
1478 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001479 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilson05394f32010-11-08 19:18:58 +00001480 obj->tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001481 return 4096;
1482
1483 /*
1484 * Previous chips need to be aligned to the size of the smallest
1485 * fence register that can contain the object.
1486 */
Chris Wilson05394f32010-11-08 19:18:58 +00001487 return i915_gem_get_gtt_size(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001488}
1489
Daniel Vetter5e783302010-11-14 22:32:36 +01001490/**
1491 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1492 * unfenced object
1493 * @obj: object to check
1494 *
1495 * Return the required GTT alignment for an object, only taking into account
1496 * unfenced tiled surface requirements.
1497 */
1498static uint32_t
Chris Wilson05394f32010-11-08 19:18:58 +00001499i915_gem_get_unfenced_gtt_alignment(struct drm_i915_gem_object *obj)
Daniel Vetter5e783302010-11-14 22:32:36 +01001500{
Chris Wilson05394f32010-11-08 19:18:58 +00001501 struct drm_device *dev = obj->base.dev;
Daniel Vetter5e783302010-11-14 22:32:36 +01001502 int tile_height;
1503
1504 /*
1505 * Minimum alignment is 4k (GTT page size) for sane hw.
1506 */
1507 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilson05394f32010-11-08 19:18:58 +00001508 obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001509 return 4096;
1510
1511 /*
1512 * Older chips need unfenced tiled buffers to be aligned to the left
1513 * edge of an even tile row (where tile rows are counted as if the bo is
1514 * placed in a fenced gtt region).
1515 */
1516 if (IS_GEN2(dev) ||
Chris Wilson05394f32010-11-08 19:18:58 +00001517 (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev)))
Daniel Vetter5e783302010-11-14 22:32:36 +01001518 tile_height = 32;
1519 else
1520 tile_height = 8;
1521
Chris Wilson05394f32010-11-08 19:18:58 +00001522 return tile_height * obj->stride * 2;
Daniel Vetter5e783302010-11-14 22:32:36 +01001523}
1524
Jesse Barnesde151cf2008-11-12 10:03:55 -08001525/**
1526 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1527 * @dev: DRM device
1528 * @data: GTT mapping ioctl data
Chris Wilson05394f32010-11-08 19:18:58 +00001529 * @file: GEM object info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001530 *
1531 * Simply returns the fake offset to userspace so it can mmap it.
1532 * The mmap call will end up in drm_gem_mmap(), which will set things
1533 * up so we can get faults in the handler above.
1534 *
1535 * The fault handler will take care of binding the object into the GTT
1536 * (since it may have been evicted to make room for something), allocating
1537 * a fence register, and mapping the appropriate aperture address into
1538 * userspace.
1539 */
1540int
1541i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001542 struct drm_file *file)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001543{
Chris Wilsonda761a62010-10-27 17:37:08 +01001544 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001545 struct drm_i915_gem_mmap_gtt *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001546 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001547 int ret;
1548
1549 if (!(dev->driver->driver_features & DRIVER_GEM))
1550 return -ENODEV;
1551
Chris Wilson76c1dec2010-09-25 11:22:51 +01001552 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001553 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001554 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001555
Chris Wilson05394f32010-11-08 19:18:58 +00001556 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001557 if (obj == NULL) {
1558 ret = -ENOENT;
1559 goto unlock;
1560 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001561
Chris Wilson05394f32010-11-08 19:18:58 +00001562 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001563 ret = -E2BIG;
1564 goto unlock;
1565 }
1566
Chris Wilson05394f32010-11-08 19:18:58 +00001567 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001568 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001569 ret = -EINVAL;
1570 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001571 }
1572
Chris Wilson05394f32010-11-08 19:18:58 +00001573 if (!obj->base.map_list.map) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001574 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001575 if (ret)
1576 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001577 }
1578
Chris Wilson05394f32010-11-08 19:18:58 +00001579 args->offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001580
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001581out:
Chris Wilson05394f32010-11-08 19:18:58 +00001582 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001583unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001584 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001585 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001586}
1587
Chris Wilsone5281cc2010-10-28 13:45:36 +01001588static int
Chris Wilson05394f32010-11-08 19:18:58 +00001589i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001590 gfp_t gfpmask)
1591{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001592 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 */
Chris Wilson05394f32010-11-08 19:18:58 +00001600 page_count = obj->base.size / PAGE_SIZE;
1601 BUG_ON(obj->pages != NULL);
1602 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1603 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001604 return -ENOMEM;
1605
Chris Wilson05394f32010-11-08 19:18:58 +00001606 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001607 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
Chris Wilson05394f32010-11-08 19:18:58 +00001617 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001618 }
1619
Chris Wilson05394f32010-11-08 19:18:58 +00001620 if (obj->tiling_mode != I915_TILING_NONE)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001621 i915_gem_object_do_bit_17_swizzle(obj);
1622
1623 return 0;
1624
1625err_pages:
1626 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001627 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001628
Chris Wilson05394f32010-11-08 19:18:58 +00001629 drm_free_large(obj->pages);
1630 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001631 return PTR_ERR(page);
1632}
1633
Chris Wilson5cdf5882010-09-27 15:51:07 +01001634static void
Chris Wilson05394f32010-11-08 19:18:58 +00001635i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001636{
Chris Wilson05394f32010-11-08 19:18:58 +00001637 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001638 int i;
1639
Chris Wilson05394f32010-11-08 19:18:58 +00001640 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001641
Chris Wilson05394f32010-11-08 19:18:58 +00001642 if (obj->tiling_mode != I915_TILING_NONE)
Eric Anholt280b7132009-03-12 16:56:27 -07001643 i915_gem_object_save_bit_17_swizzle(obj);
1644
Chris Wilson05394f32010-11-08 19:18:58 +00001645 if (obj->madv == I915_MADV_DONTNEED)
1646 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001647
1648 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001649 if (obj->dirty)
1650 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001651
Chris Wilson05394f32010-11-08 19:18:58 +00001652 if (obj->madv == I915_MADV_WILLNEED)
1653 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001654
Chris Wilson05394f32010-11-08 19:18:58 +00001655 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001656 }
Chris Wilson05394f32010-11-08 19:18:58 +00001657 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001658
Chris Wilson05394f32010-11-08 19:18:58 +00001659 drm_free_large(obj->pages);
1660 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001661}
1662
Chris Wilsona56ba562010-09-28 10:07:56 +01001663static uint32_t
1664i915_gem_next_request_seqno(struct drm_device *dev,
1665 struct intel_ring_buffer *ring)
1666{
1667 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson5d97eb62010-11-10 20:40:02 +00001668 return ring->outstanding_lazy_request = dev_priv->next_seqno;
Chris Wilsona56ba562010-09-28 10:07:56 +01001669}
1670
Eric Anholt673a3942008-07-30 12:06:12 -07001671static void
Chris Wilson05394f32010-11-08 19:18:58 +00001672i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Zou Nan hai852835f2010-05-21 09:08:56 +08001673 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001674{
Chris Wilson05394f32010-11-08 19:18:58 +00001675 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001676 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona56ba562010-09-28 10:07:56 +01001677 uint32_t seqno = i915_gem_next_request_seqno(dev, ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001678
Zou Nan hai852835f2010-05-21 09:08:56 +08001679 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001680 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001681
1682 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001683 if (!obj->active) {
1684 drm_gem_object_reference(&obj->base);
1685 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001686 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001687
Eric Anholt673a3942008-07-30 12:06:12 -07001688 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001689 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1690 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001691
Chris Wilson05394f32010-11-08 19:18:58 +00001692 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001693 if (obj->fenced_gpu_access) {
1694 struct drm_i915_fence_reg *reg;
1695
1696 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1697
1698 obj->last_fenced_seqno = seqno;
1699 obj->last_fenced_ring = ring;
1700
1701 reg = &dev_priv->fence_regs[obj->fence_reg];
1702 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1703 }
1704}
1705
1706static void
1707i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1708{
1709 list_del_init(&obj->ring_list);
1710 obj->last_rendering_seqno = 0;
1711 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001712}
1713
Eric Anholtce44b0e2008-11-06 16:00:31 -08001714static void
Chris Wilson05394f32010-11-08 19:18:58 +00001715i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001716{
Chris Wilson05394f32010-11-08 19:18:58 +00001717 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001718 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001719
Chris Wilson05394f32010-11-08 19:18:58 +00001720 BUG_ON(!obj->active);
1721 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001722
1723 i915_gem_object_move_off_active(obj);
1724}
1725
1726static void
1727i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1728{
1729 struct drm_device *dev = obj->base.dev;
1730 struct drm_i915_private *dev_priv = dev->dev_private;
1731
1732 if (obj->pin_count != 0)
1733 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1734 else
1735 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1736
1737 BUG_ON(!list_empty(&obj->gpu_write_list));
1738 BUG_ON(!obj->active);
1739 obj->ring = NULL;
1740
1741 i915_gem_object_move_off_active(obj);
1742 obj->fenced_gpu_access = false;
1743 obj->last_fenced_ring = NULL;
1744
1745 obj->active = 0;
1746 drm_gem_object_unreference(&obj->base);
1747
1748 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001749}
Eric Anholt673a3942008-07-30 12:06:12 -07001750
Chris Wilson963b4832009-09-20 23:03:54 +01001751/* Immediately discard the backing storage */
1752static void
Chris Wilson05394f32010-11-08 19:18:58 +00001753i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001754{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001755 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001756
Chris Wilsonae9fed62010-08-07 11:01:30 +01001757 /* Our goal here is to return as much of the memory as
1758 * is possible back to the system as we are called from OOM.
1759 * To do this we must instruct the shmfs to drop all of its
1760 * backing pages, *now*. Here we mirror the actions taken
1761 * when by shmem_delete_inode() to release the backing store.
1762 */
Chris Wilson05394f32010-11-08 19:18:58 +00001763 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsonae9fed62010-08-07 11:01:30 +01001764 truncate_inode_pages(inode->i_mapping, 0);
1765 if (inode->i_op->truncate_range)
1766 inode->i_op->truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001767
Chris Wilson05394f32010-11-08 19:18:58 +00001768 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001769}
1770
1771static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001772i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001773{
Chris Wilson05394f32010-11-08 19:18:58 +00001774 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001775}
1776
Eric Anholt673a3942008-07-30 12:06:12 -07001777static void
Daniel Vetter63560392010-02-19 11:51:59 +01001778i915_gem_process_flushing_list(struct drm_device *dev,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001779 uint32_t flush_domains,
Zou Nan hai852835f2010-05-21 09:08:56 +08001780 struct intel_ring_buffer *ring)
Daniel Vetter63560392010-02-19 11:51:59 +01001781{
Chris Wilson05394f32010-11-08 19:18:58 +00001782 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001783
Chris Wilson05394f32010-11-08 19:18:58 +00001784 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001785 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001786 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001787 if (obj->base.write_domain & flush_domains) {
1788 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001789
Chris Wilson05394f32010-11-08 19:18:58 +00001790 obj->base.write_domain = 0;
1791 list_del_init(&obj->gpu_write_list);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001792 i915_gem_object_move_to_active(obj, ring);
Daniel Vetter63560392010-02-19 11:51:59 +01001793
Daniel Vetter63560392010-02-19 11:51:59 +01001794 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001795 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001796 old_write_domain);
1797 }
1798 }
1799}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001800
Chris Wilson3cce4692010-10-27 16:11:02 +01001801int
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001802i915_add_request(struct drm_device *dev,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001803 struct drm_file *file,
Chris Wilson8dc5d142010-08-12 12:36:12 +01001804 struct drm_i915_gem_request *request,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001805 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001806{
1807 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001808 struct drm_i915_file_private *file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001809 uint32_t seqno;
1810 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001811 int ret;
1812
1813 BUG_ON(request == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001814
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001815 if (file != NULL)
1816 file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001817
Chris Wilson3cce4692010-10-27 16:11:02 +01001818 ret = ring->add_request(ring, &seqno);
1819 if (ret)
1820 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001821
Chris Wilsona56ba562010-09-28 10:07:56 +01001822 ring->outstanding_lazy_request = false;
Eric Anholt673a3942008-07-30 12:06:12 -07001823
1824 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001825 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001826 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001827 was_empty = list_empty(&ring->request_list);
1828 list_add_tail(&request->list, &ring->request_list);
1829
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001830 if (file_priv) {
Chris Wilson1c255952010-09-26 11:03:27 +01001831 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001832 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001833 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001834 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001835 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001836 }
Eric Anholt673a3942008-07-30 12:06:12 -07001837
Ben Gamarif65d9422009-09-14 17:48:44 -04001838 if (!dev_priv->mm.suspended) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001839 mod_timer(&dev_priv->hangcheck_timer,
1840 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001841 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001842 queue_delayed_work(dev_priv->wq,
1843 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001844 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001845 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001846}
1847
1848/**
1849 * Command execution barrier
1850 *
1851 * Ensures that all commands in the ring are finished
1852 * before signalling the CPU
1853 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001854static void
Zou Nan hai852835f2010-05-21 09:08:56 +08001855i915_retire_commands(struct drm_device *dev, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001856{
Eric Anholt673a3942008-07-30 12:06:12 -07001857 uint32_t flush_domains = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001858
1859 /* The sampler always gets flushed on i965 (sigh) */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001860 if (INTEL_INFO(dev)->gen >= 4)
Eric Anholt673a3942008-07-30 12:06:12 -07001861 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
Zou Nan hai852835f2010-05-21 09:08:56 +08001862
Chris Wilson78501ea2010-10-27 12:18:21 +01001863 ring->flush(ring, I915_GEM_DOMAIN_COMMAND, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07001864}
1865
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001866static inline void
1867i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001868{
Chris Wilson1c255952010-09-26 11:03:27 +01001869 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001870
Chris Wilson1c255952010-09-26 11:03:27 +01001871 if (!file_priv)
1872 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001873
Chris Wilson1c255952010-09-26 11:03:27 +01001874 spin_lock(&file_priv->mm.lock);
1875 list_del(&request->client_list);
1876 request->file_priv = NULL;
1877 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001878}
1879
Chris Wilsondfaae392010-09-22 10:31:52 +01001880static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1881 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001882{
Chris Wilsondfaae392010-09-22 10:31:52 +01001883 while (!list_empty(&ring->request_list)) {
1884 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001885
Chris Wilsondfaae392010-09-22 10:31:52 +01001886 request = list_first_entry(&ring->request_list,
1887 struct drm_i915_gem_request,
1888 list);
1889
1890 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001891 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001892 kfree(request);
1893 }
1894
1895 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001896 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001897
Chris Wilson05394f32010-11-08 19:18:58 +00001898 obj = list_first_entry(&ring->active_list,
1899 struct drm_i915_gem_object,
1900 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001901
Chris Wilson05394f32010-11-08 19:18:58 +00001902 obj->base.write_domain = 0;
1903 list_del_init(&obj->gpu_write_list);
1904 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001905 }
Eric Anholt673a3942008-07-30 12:06:12 -07001906}
1907
Chris Wilson312817a2010-11-22 11:50:11 +00001908static void i915_gem_reset_fences(struct drm_device *dev)
1909{
1910 struct drm_i915_private *dev_priv = dev->dev_private;
1911 int i;
1912
1913 for (i = 0; i < 16; i++) {
1914 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
1915 if (reg->obj)
1916 i915_gem_clear_fence_reg(reg->obj);
1917 }
1918}
1919
Chris Wilson069efc12010-09-30 16:53:18 +01001920void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001921{
Chris Wilsondfaae392010-09-22 10:31:52 +01001922 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001923 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001924
Chris Wilsondfaae392010-09-22 10:31:52 +01001925 i915_gem_reset_ring_lists(dev_priv, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001926 i915_gem_reset_ring_lists(dev_priv, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001927 i915_gem_reset_ring_lists(dev_priv, &dev_priv->blt_ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01001928
1929 /* Remove anything from the flushing lists. The GPU cache is likely
1930 * to be lost on reset along with the data, so simply move the
1931 * lost bo to the inactive list.
1932 */
1933 while (!list_empty(&dev_priv->mm.flushing_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001934 obj= list_first_entry(&dev_priv->mm.flushing_list,
1935 struct drm_i915_gem_object,
1936 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001937
Chris Wilson05394f32010-11-08 19:18:58 +00001938 obj->base.write_domain = 0;
1939 list_del_init(&obj->gpu_write_list);
1940 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001941 }
Chris Wilson9375e442010-09-19 12:21:28 +01001942
Chris Wilsondfaae392010-09-22 10:31:52 +01001943 /* Move everything out of the GPU domains to ensure we do any
1944 * necessary invalidation upon reuse.
1945 */
Chris Wilson05394f32010-11-08 19:18:58 +00001946 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001947 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001948 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001949 {
Chris Wilson05394f32010-11-08 19:18:58 +00001950 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001951 }
Chris Wilson069efc12010-09-30 16:53:18 +01001952
1953 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001954 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001955}
1956
1957/**
1958 * This function clears the request list as sequence numbers are passed.
1959 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001960static void
1961i915_gem_retire_requests_ring(struct drm_device *dev,
1962 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001963{
1964 drm_i915_private_t *dev_priv = dev->dev_private;
1965 uint32_t seqno;
1966
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001967 if (!ring->status_page.page_addr ||
1968 list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001969 return;
1970
Chris Wilson23bc5982010-09-29 16:10:57 +01001971 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001972
Chris Wilson78501ea2010-10-27 12:18:21 +01001973 seqno = ring->get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001974 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001975 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001976
Zou Nan hai852835f2010-05-21 09:08:56 +08001977 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001978 struct drm_i915_gem_request,
1979 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001980
Chris Wilsondfaae392010-09-22 10:31:52 +01001981 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001982 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001983
1984 trace_i915_gem_request_retire(dev, request->seqno);
1985
1986 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001987 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001988 kfree(request);
1989 }
1990
1991 /* Move any buffers on the active list that are no longer referenced
1992 * by the ringbuffer to the flushing/inactive lists as appropriate.
1993 */
1994 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001995 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001996
Chris Wilson05394f32010-11-08 19:18:58 +00001997 obj= list_first_entry(&ring->active_list,
1998 struct drm_i915_gem_object,
1999 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002000
Chris Wilson05394f32010-11-08 19:18:58 +00002001 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002002 break;
2003
Chris Wilson05394f32010-11-08 19:18:58 +00002004 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002005 i915_gem_object_move_to_flushing(obj);
2006 else
2007 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002008 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002009
2010 if (unlikely (dev_priv->trace_irq_seqno &&
2011 i915_seqno_passed(dev_priv->trace_irq_seqno, seqno))) {
Chris Wilson78501ea2010-10-27 12:18:21 +01002012 ring->user_irq_put(ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002013 dev_priv->trace_irq_seqno = 0;
2014 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002015
2016 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002017}
2018
2019void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002020i915_gem_retire_requests(struct drm_device *dev)
2021{
2022 drm_i915_private_t *dev_priv = dev->dev_private;
2023
Chris Wilsonbe726152010-07-23 23:18:50 +01002024 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002025 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01002026
2027 /* We must be careful that during unbind() we do not
2028 * accidentally infinitely recurse into retire requests.
2029 * Currently:
2030 * retire -> free -> unbind -> wait -> retire_ring
2031 */
Chris Wilson05394f32010-11-08 19:18:58 +00002032 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01002033 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01002034 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00002035 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01002036 }
2037
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002038 i915_gem_retire_requests_ring(dev, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01002039 i915_gem_retire_requests_ring(dev, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01002040 i915_gem_retire_requests_ring(dev, &dev_priv->blt_ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002041}
2042
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002043static void
Eric Anholt673a3942008-07-30 12:06:12 -07002044i915_gem_retire_work_handler(struct work_struct *work)
2045{
2046 drm_i915_private_t *dev_priv;
2047 struct drm_device *dev;
2048
2049 dev_priv = container_of(work, drm_i915_private_t,
2050 mm.retire_work.work);
2051 dev = dev_priv->dev;
2052
Chris Wilson891b48c2010-09-29 12:26:37 +01002053 /* Come back later if the device is busy... */
2054 if (!mutex_trylock(&dev->struct_mutex)) {
2055 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
2056 return;
2057 }
2058
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002059 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002060
Keith Packard6dbe2772008-10-14 21:41:13 -07002061 if (!dev_priv->mm.suspended &&
Zou Nan haid1b851f2010-05-21 09:08:57 +08002062 (!list_empty(&dev_priv->render_ring.request_list) ||
Chris Wilson549f7362010-10-19 11:19:32 +01002063 !list_empty(&dev_priv->bsd_ring.request_list) ||
2064 !list_empty(&dev_priv->blt_ring.request_list)))
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002065 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07002066 mutex_unlock(&dev->struct_mutex);
2067}
2068
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02002069int
Zou Nan hai852835f2010-05-21 09:08:56 +08002070i915_do_wait_request(struct drm_device *dev, uint32_t seqno,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002071 bool interruptible, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002072{
2073 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002074 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07002075 int ret = 0;
2076
2077 BUG_ON(seqno == 0);
2078
Ben Gamariba1234d2009-09-14 17:48:47 -04002079 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002080 return -EAGAIN;
Ben Gamariffed1d02009-09-14 17:48:41 -04002081
Chris Wilson5d97eb62010-11-10 20:40:02 +00002082 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01002083 struct drm_i915_gem_request *request;
2084
2085 request = kzalloc(sizeof(*request), GFP_KERNEL);
2086 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01002087 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01002088
2089 ret = i915_add_request(dev, NULL, request, ring);
2090 if (ret) {
2091 kfree(request);
2092 return ret;
2093 }
2094
2095 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01002096 }
2097
Chris Wilson78501ea2010-10-27 12:18:21 +01002098 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07002099 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002100 ier = I915_READ(DEIER) | I915_READ(GTIER);
2101 else
2102 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002103 if (!ier) {
2104 DRM_ERROR("something (likely vbetool) disabled "
2105 "interrupts, re-enabling\n");
2106 i915_driver_irq_preinstall(dev);
2107 i915_driver_irq_postinstall(dev);
2108 }
2109
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002110 trace_i915_gem_request_wait_begin(dev, seqno);
2111
Chris Wilsonb2223492010-10-27 15:27:33 +01002112 ring->waiting_seqno = seqno;
Chris Wilson78501ea2010-10-27 12:18:21 +01002113 ring->user_irq_get(ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002114 if (interruptible)
Zou Nan hai852835f2010-05-21 09:08:56 +08002115 ret = wait_event_interruptible(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 else
Zou Nan hai852835f2010-05-21 09:08:56 +08002119 wait_event(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002120 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002121 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002122
Chris Wilson78501ea2010-10-27 12:18:21 +01002123 ring->user_irq_put(ring);
Chris Wilsonb2223492010-10-27 15:27:33 +01002124 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002125
2126 trace_i915_gem_request_wait_end(dev, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002127 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002128 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002129 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002130
2131 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002132 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002133 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002134 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002135
2136 /* Directly dispatch request retiring. While we have the work queue
2137 * to handle this, the waiter on a request often wants an associated
2138 * buffer to have made it to the inactive list, and we would need
2139 * a separate wait queue to handle that.
2140 */
2141 if (ret == 0)
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002142 i915_gem_retire_requests_ring(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002143
2144 return ret;
2145}
2146
Daniel Vetter48764bf2009-09-15 22:57:32 +02002147/**
2148 * Waits for a sequence number to be signaled, and cleans up the
2149 * request and object lists appropriately for that event.
2150 */
2151static int
Zou Nan hai852835f2010-05-21 09:08:56 +08002152i915_wait_request(struct drm_device *dev, uint32_t seqno,
Chris Wilsona56ba562010-09-28 10:07:56 +01002153 struct intel_ring_buffer *ring)
Daniel Vetter48764bf2009-09-15 22:57:32 +02002154{
Zou Nan hai852835f2010-05-21 09:08:56 +08002155 return i915_do_wait_request(dev, seqno, 1, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002156}
2157
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002158static void
Chris Wilson92204342010-09-18 11:02:01 +01002159i915_gem_flush_ring(struct drm_device *dev,
2160 struct intel_ring_buffer *ring,
2161 uint32_t invalidate_domains,
2162 uint32_t flush_domains)
2163{
Chris Wilson78501ea2010-10-27 12:18:21 +01002164 ring->flush(ring, invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002165 i915_gem_process_flushing_list(dev, flush_domains, ring);
2166}
2167
2168static void
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002169i915_gem_flush(struct drm_device *dev,
2170 uint32_t invalidate_domains,
Chris Wilson92204342010-09-18 11:02:01 +01002171 uint32_t flush_domains,
2172 uint32_t flush_rings)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002173{
2174 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter8bff9172010-02-11 22:19:40 +01002175
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002176 if (flush_domains & I915_GEM_DOMAIN_CPU)
Daniel Vetter40ce6572010-11-05 18:12:18 +01002177 intel_gtt_chipset_flush();
Zou Nan haid1b851f2010-05-21 09:08:57 +08002178
Chris Wilson92204342010-09-18 11:02:01 +01002179 if ((flush_domains | invalidate_domains) & I915_GEM_GPU_DOMAINS) {
2180 if (flush_rings & RING_RENDER)
Chris Wilson05394f32010-11-08 19:18:58 +00002181 i915_gem_flush_ring(dev, &dev_priv->render_ring,
Chris Wilson92204342010-09-18 11:02:01 +01002182 invalidate_domains, flush_domains);
2183 if (flush_rings & RING_BSD)
Chris Wilson05394f32010-11-08 19:18:58 +00002184 i915_gem_flush_ring(dev, &dev_priv->bsd_ring,
Chris Wilson92204342010-09-18 11:02:01 +01002185 invalidate_domains, flush_domains);
Chris Wilson549f7362010-10-19 11:19:32 +01002186 if (flush_rings & RING_BLT)
Chris Wilson05394f32010-11-08 19:18:58 +00002187 i915_gem_flush_ring(dev, &dev_priv->blt_ring,
Chris Wilson549f7362010-10-19 11:19:32 +01002188 invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002189 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002190}
2191
Eric Anholt673a3942008-07-30 12:06:12 -07002192/**
2193 * Ensures that all rendering to the object has completed and the object is
2194 * safe to unbind from the GTT or access from the CPU.
2195 */
2196static int
Chris Wilson05394f32010-11-08 19:18:58 +00002197i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002198 bool interruptible)
Eric Anholt673a3942008-07-30 12:06:12 -07002199{
Chris Wilson05394f32010-11-08 19:18:58 +00002200 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002201 int ret;
2202
Eric Anholte47c68e2008-11-14 13:35:19 -08002203 /* This function only exists to support waiting for existing rendering,
2204 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002205 */
Chris Wilson05394f32010-11-08 19:18:58 +00002206 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002207
2208 /* If there is rendering queued on the buffer being evicted, wait for
2209 * it.
2210 */
Chris Wilson05394f32010-11-08 19:18:58 +00002211 if (obj->active) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002212 ret = i915_do_wait_request(dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002213 obj->last_rendering_seqno,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002214 interruptible,
Chris Wilson05394f32010-11-08 19:18:58 +00002215 obj->ring);
Chris Wilson2cf34d72010-09-14 13:03:28 +01002216 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002217 return ret;
2218 }
2219
2220 return 0;
2221}
2222
2223/**
2224 * Unbinds an object from the GTT aperture.
2225 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002226int
Chris Wilson05394f32010-11-08 19:18:58 +00002227i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002228{
Chris Wilson05394f32010-11-08 19:18:58 +00002229 struct drm_device *dev = obj->base.dev;
Chris Wilson73aa8082010-09-30 11:46:12 +01002230 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002231 int ret = 0;
2232
Chris Wilson05394f32010-11-08 19:18:58 +00002233 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002234 return 0;
2235
Chris Wilson05394f32010-11-08 19:18:58 +00002236 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002237 DRM_ERROR("Attempting to unbind pinned buffer\n");
2238 return -EINVAL;
2239 }
2240
Eric Anholt5323fd02009-09-09 11:50:45 -07002241 /* blow away mappings if mapped through GTT */
2242 i915_gem_release_mmap(obj);
2243
Eric Anholt673a3942008-07-30 12:06:12 -07002244 /* Move the object to the CPU domain to ensure that
2245 * any possible CPU writes while it's not in the GTT
2246 * are flushed when we go to remap it. This will
2247 * also ensure that all pending GPU writes are finished
2248 * before we unbind.
2249 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002250 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilson8dc17752010-07-23 23:18:51 +01002251 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002252 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002253 /* Continue on if we fail due to EIO, the GPU is hung so we
2254 * should be safe and we need to cleanup or else we might
2255 * cause memory corruption through use-after-free.
2256 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002257 if (ret) {
2258 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002259 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002260 }
Eric Anholt673a3942008-07-30 12:06:12 -07002261
Daniel Vetter96b47b62009-12-15 17:50:00 +01002262 /* release the fence reg _after_ flushing */
Chris Wilson05394f32010-11-08 19:18:58 +00002263 if (obj->fence_reg != I915_FENCE_REG_NONE)
Daniel Vetter96b47b62009-12-15 17:50:00 +01002264 i915_gem_clear_fence_reg(obj);
2265
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002266 i915_gem_gtt_unbind_object(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002267
Chris Wilsone5281cc2010-10-28 13:45:36 +01002268 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002269
Chris Wilson05394f32010-11-08 19:18:58 +00002270 i915_gem_info_remove_gtt(dev_priv, obj);
2271 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002272 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002273 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002274
Chris Wilson05394f32010-11-08 19:18:58 +00002275 drm_mm_put_block(obj->gtt_space);
2276 obj->gtt_space = NULL;
2277 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002278
Chris Wilson05394f32010-11-08 19:18:58 +00002279 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002280 i915_gem_object_truncate(obj);
2281
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002282 trace_i915_gem_object_unbind(obj);
2283
Chris Wilson8dc17752010-07-23 23:18:51 +01002284 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002285}
2286
Chris Wilsona56ba562010-09-28 10:07:56 +01002287static int i915_ring_idle(struct drm_device *dev,
2288 struct intel_ring_buffer *ring)
2289{
Chris Wilson395b70b2010-10-28 21:28:46 +01002290 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002291 return 0;
2292
Chris Wilson05394f32010-11-08 19:18:58 +00002293 i915_gem_flush_ring(dev, ring,
Chris Wilsona56ba562010-09-28 10:07:56 +01002294 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
2295 return i915_wait_request(dev,
2296 i915_gem_next_request_seqno(dev, ring),
2297 ring);
2298}
2299
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002300int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002301i915_gpu_idle(struct drm_device *dev)
2302{
2303 drm_i915_private_t *dev_priv = dev->dev_private;
2304 bool lists_empty;
Zou Nan hai852835f2010-05-21 09:08:56 +08002305 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002306
Zou Nan haid1b851f2010-05-21 09:08:57 +08002307 lists_empty = (list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson395b70b2010-10-28 21:28:46 +01002308 list_empty(&dev_priv->mm.active_list));
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002309 if (lists_empty)
2310 return 0;
2311
2312 /* Flush everything onto the inactive list. */
Chris Wilsona56ba562010-09-28 10:07:56 +01002313 ret = i915_ring_idle(dev, &dev_priv->render_ring);
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002314 if (ret)
2315 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002316
Chris Wilson87acb0a2010-10-19 10:13:00 +01002317 ret = i915_ring_idle(dev, &dev_priv->bsd_ring);
2318 if (ret)
2319 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002320
Chris Wilson549f7362010-10-19 11:19:32 +01002321 ret = i915_ring_idle(dev, &dev_priv->blt_ring);
2322 if (ret)
2323 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002324
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002325 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002326}
2327
Daniel Vetterc6642782010-11-12 13:46:18 +00002328static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2329 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002330{
Chris Wilson05394f32010-11-08 19:18:58 +00002331 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002332 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002333 u32 size = obj->gtt_space->size;
2334 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002335 uint64_t val;
2336
Chris Wilson05394f32010-11-08 19:18:58 +00002337 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002338 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002339 val |= obj->gtt_offset & 0xfffff000;
2340 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002341 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2342
Chris Wilson05394f32010-11-08 19:18:58 +00002343 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002344 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2345 val |= I965_FENCE_REG_VALID;
2346
Daniel Vetterc6642782010-11-12 13:46:18 +00002347 if (pipelined) {
2348 int ret = intel_ring_begin(pipelined, 6);
2349 if (ret)
2350 return ret;
2351
2352 intel_ring_emit(pipelined, MI_NOOP);
2353 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2354 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2355 intel_ring_emit(pipelined, (u32)val);
2356 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2357 intel_ring_emit(pipelined, (u32)(val >> 32));
2358 intel_ring_advance(pipelined);
2359 } else
2360 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2361
2362 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002363}
2364
Daniel Vetterc6642782010-11-12 13:46:18 +00002365static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2366 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002367{
Chris Wilson05394f32010-11-08 19:18:58 +00002368 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002369 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002370 u32 size = obj->gtt_space->size;
2371 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002372 uint64_t val;
2373
Chris Wilson05394f32010-11-08 19:18:58 +00002374 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002375 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002376 val |= obj->gtt_offset & 0xfffff000;
2377 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2378 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002379 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2380 val |= I965_FENCE_REG_VALID;
2381
Daniel Vetterc6642782010-11-12 13:46:18 +00002382 if (pipelined) {
2383 int ret = intel_ring_begin(pipelined, 6);
2384 if (ret)
2385 return ret;
2386
2387 intel_ring_emit(pipelined, MI_NOOP);
2388 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2389 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2390 intel_ring_emit(pipelined, (u32)val);
2391 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2392 intel_ring_emit(pipelined, (u32)(val >> 32));
2393 intel_ring_advance(pipelined);
2394 } else
2395 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2396
2397 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002398}
2399
Daniel Vetterc6642782010-11-12 13:46:18 +00002400static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2401 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002402{
Chris Wilson05394f32010-11-08 19:18:58 +00002403 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002404 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002405 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002406 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002407 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002408
Daniel Vetterc6642782010-11-12 13:46:18 +00002409 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2410 (size & -size) != size ||
2411 (obj->gtt_offset & (size - 1)),
2412 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2413 obj->gtt_offset, obj->map_and_fenceable, size))
2414 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002415
Daniel Vetterc6642782010-11-12 13:46:18 +00002416 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002417 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002418 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002419 tile_width = 512;
2420
2421 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002422 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002423 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002424
Chris Wilson05394f32010-11-08 19:18:58 +00002425 val = obj->gtt_offset;
2426 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002427 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002428 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002429 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2430 val |= I830_FENCE_REG_VALID;
2431
Chris Wilson05394f32010-11-08 19:18:58 +00002432 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002433 if (fence_reg < 8)
2434 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002435 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002436 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002437
2438 if (pipelined) {
2439 int ret = intel_ring_begin(pipelined, 4);
2440 if (ret)
2441 return ret;
2442
2443 intel_ring_emit(pipelined, MI_NOOP);
2444 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2445 intel_ring_emit(pipelined, fence_reg);
2446 intel_ring_emit(pipelined, val);
2447 intel_ring_advance(pipelined);
2448 } else
2449 I915_WRITE(fence_reg, val);
2450
2451 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002452}
2453
Daniel Vetterc6642782010-11-12 13:46:18 +00002454static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2455 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002456{
Chris Wilson05394f32010-11-08 19:18:58 +00002457 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002458 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002459 u32 size = obj->gtt_space->size;
2460 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002461 uint32_t val;
2462 uint32_t pitch_val;
2463
Daniel Vetterc6642782010-11-12 13:46:18 +00002464 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2465 (size & -size) != size ||
2466 (obj->gtt_offset & (size - 1)),
2467 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2468 obj->gtt_offset, size))
2469 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002470
Chris Wilson05394f32010-11-08 19:18:58 +00002471 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002472 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002473
Chris Wilson05394f32010-11-08 19:18:58 +00002474 val = obj->gtt_offset;
2475 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002476 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002477 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002478 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2479 val |= I830_FENCE_REG_VALID;
2480
Daniel Vetterc6642782010-11-12 13:46:18 +00002481 if (pipelined) {
2482 int ret = intel_ring_begin(pipelined, 4);
2483 if (ret)
2484 return ret;
2485
2486 intel_ring_emit(pipelined, MI_NOOP);
2487 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2488 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2489 intel_ring_emit(pipelined, val);
2490 intel_ring_advance(pipelined);
2491 } else
2492 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2493
2494 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002495}
2496
Chris Wilson2cf34d72010-09-14 13:03:28 +01002497static int i915_find_fence_reg(struct drm_device *dev,
2498 bool interruptible)
Daniel Vetterae3db242010-02-19 11:51:58 +01002499{
Daniel Vetterae3db242010-02-19 11:51:58 +01002500 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002501 struct drm_i915_fence_reg *reg;
Chris Wilson05394f32010-11-08 19:18:58 +00002502 struct drm_i915_gem_object *obj = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002503 int i, avail, ret;
2504
2505 /* First try to find a free reg */
2506 avail = 0;
2507 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2508 reg = &dev_priv->fence_regs[i];
2509 if (!reg->obj)
2510 return i;
2511
Chris Wilson05394f32010-11-08 19:18:58 +00002512 if (!reg->obj->pin_count)
2513 avail++;
Daniel Vetterae3db242010-02-19 11:51:58 +01002514 }
2515
2516 if (avail == 0)
2517 return -ENOSPC;
2518
2519 /* None available, try to steal one or wait for a user to finish */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002520 avail = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002521 list_for_each_entry(reg, &dev_priv->mm.fence_list,
2522 lru_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00002523 obj = reg->obj;
2524 if (obj->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002525 continue;
2526
2527 /* found one! */
Chris Wilson05394f32010-11-08 19:18:58 +00002528 avail = obj->fence_reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002529 break;
2530 }
2531
Chris Wilsona00b10c2010-09-24 21:15:47 +01002532 BUG_ON(avail == I915_FENCE_REG_NONE);
Daniel Vetterae3db242010-02-19 11:51:58 +01002533
2534 /* We only have a reference on obj from the active list. put_fence_reg
2535 * might drop that one, causing a use-after-free in it. So hold a
2536 * private reference to obj like the other callers of put_fence_reg
2537 * (set_tiling ioctl) do. */
Chris Wilson05394f32010-11-08 19:18:58 +00002538 drm_gem_object_reference(&obj->base);
2539 ret = i915_gem_object_put_fence_reg(obj, interruptible);
2540 drm_gem_object_unreference(&obj->base);
Daniel Vetterae3db242010-02-19 11:51:58 +01002541 if (ret != 0)
2542 return ret;
2543
Chris Wilsona00b10c2010-09-24 21:15:47 +01002544 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002545}
2546
Jesse Barnesde151cf2008-11-12 10:03:55 -08002547/**
2548 * i915_gem_object_get_fence_reg - set up a fence reg for an object
2549 * @obj: object to map through a fence reg
2550 *
2551 * When mapping objects through the GTT, userspace wants to be able to write
2552 * to them without having to worry about swizzling if the object is tiled.
2553 *
2554 * This function walks the fence regs looking for a free one for @obj,
2555 * stealing one if it can't find any.
2556 *
2557 * It then sets up the reg based on the object's properties: address, pitch
2558 * and tiling format.
2559 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002560int
Chris Wilson05394f32010-11-08 19:18:58 +00002561i915_gem_object_get_fence_reg(struct drm_i915_gem_object *obj,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002562 bool interruptible)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002563{
Chris Wilson05394f32010-11-08 19:18:58 +00002564 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002565 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002566 struct drm_i915_fence_reg *reg = NULL;
Daniel Vetterc6642782010-11-12 13:46:18 +00002567 struct intel_ring_buffer *pipelined = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002568 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002569
Eric Anholta09ba7f2009-08-29 12:49:51 -07002570 /* Just update our place in the LRU if our fence is getting used. */
Chris Wilson05394f32010-11-08 19:18:58 +00002571 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2572 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002573 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002574 return 0;
2575 }
2576
Chris Wilson05394f32010-11-08 19:18:58 +00002577 switch (obj->tiling_mode) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08002578 case I915_TILING_NONE:
2579 WARN(1, "allocating a fence for non-tiled object?\n");
2580 break;
2581 case I915_TILING_X:
Chris Wilson05394f32010-11-08 19:18:58 +00002582 if (!obj->stride)
Jesse Barnes0f973f22009-01-26 17:10:45 -08002583 return -EINVAL;
Chris Wilson05394f32010-11-08 19:18:58 +00002584 WARN((obj->stride & (512 - 1)),
Jesse Barnes0f973f22009-01-26 17:10:45 -08002585 "object 0x%08x is X tiled but has non-512B pitch\n",
Chris Wilson05394f32010-11-08 19:18:58 +00002586 obj->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002587 break;
2588 case I915_TILING_Y:
Chris Wilson05394f32010-11-08 19:18:58 +00002589 if (!obj->stride)
Jesse Barnes0f973f22009-01-26 17:10:45 -08002590 return -EINVAL;
Chris Wilson05394f32010-11-08 19:18:58 +00002591 WARN((obj->stride & (128 - 1)),
Jesse Barnes0f973f22009-01-26 17:10:45 -08002592 "object 0x%08x is Y tiled but has non-128B pitch\n",
Chris Wilson05394f32010-11-08 19:18:58 +00002593 obj->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002594 break;
2595 }
2596
Chris Wilson2cf34d72010-09-14 13:03:28 +01002597 ret = i915_find_fence_reg(dev, interruptible);
Daniel Vetterae3db242010-02-19 11:51:58 +01002598 if (ret < 0)
2599 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002600
Chris Wilson05394f32010-11-08 19:18:58 +00002601 obj->fence_reg = ret;
2602 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002603 list_add_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002604
Jesse Barnesde151cf2008-11-12 10:03:55 -08002605 reg->obj = obj;
2606
Chris Wilsone259bef2010-09-17 00:32:02 +01002607 switch (INTEL_INFO(dev)->gen) {
2608 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002609 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002610 break;
2611 case 5:
2612 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002613 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002614 break;
2615 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002616 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002617 break;
2618 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002619 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002620 break;
2621 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002622
Chris Wilsona00b10c2010-09-24 21:15:47 +01002623 trace_i915_gem_object_get_fence(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002624 obj->fence_reg,
2625 obj->tiling_mode);
Daniel Vetterc6642782010-11-12 13:46:18 +00002626 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002627}
2628
2629/**
2630 * i915_gem_clear_fence_reg - clear out fence register info
2631 * @obj: object to clear
2632 *
2633 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002634 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002635 */
2636static void
Chris Wilson05394f32010-11-08 19:18:58 +00002637i915_gem_clear_fence_reg(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002638{
Chris Wilson05394f32010-11-08 19:18:58 +00002639 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002640 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002641 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilsone259bef2010-09-17 00:32:02 +01002642 uint32_t fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002643
Chris Wilsone259bef2010-09-17 00:32:02 +01002644 switch (INTEL_INFO(dev)->gen) {
2645 case 6:
Eric Anholt4e901fd2009-10-26 16:44:17 -07002646 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 +
Chris Wilson05394f32010-11-08 19:18:58 +00002647 (obj->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002648 break;
2649 case 5:
2650 case 4:
Chris Wilson05394f32010-11-08 19:18:58 +00002651 I915_WRITE64(FENCE_REG_965_0 + (obj->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002652 break;
2653 case 3:
Chris Wilson05394f32010-11-08 19:18:58 +00002654 if (obj->fence_reg >= 8)
2655 fence_reg = FENCE_REG_945_8 + (obj->fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002656 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002657 case 2:
Chris Wilson05394f32010-11-08 19:18:58 +00002658 fence_reg = FENCE_REG_830_0 + obj->fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002659
2660 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002661 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002662 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002663
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002664 reg->obj = NULL;
Chris Wilson05394f32010-11-08 19:18:58 +00002665 obj->fence_reg = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002666 list_del_init(&reg->lru_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002667}
2668
Eric Anholt673a3942008-07-30 12:06:12 -07002669/**
Chris Wilson52dc7d32009-06-06 09:46:01 +01002670 * i915_gem_object_put_fence_reg - waits on outstanding fenced access
2671 * to the buffer to finish, and then resets the fence register.
2672 * @obj: tiled object holding a fence register.
Chris Wilson2cf34d72010-09-14 13:03:28 +01002673 * @bool: whether the wait upon the fence is interruptible
Chris Wilson52dc7d32009-06-06 09:46:01 +01002674 *
2675 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002676 * data structures in dev_priv and obj.
Chris Wilson52dc7d32009-06-06 09:46:01 +01002677 */
2678int
Chris Wilson05394f32010-11-08 19:18:58 +00002679i915_gem_object_put_fence_reg(struct drm_i915_gem_object *obj,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002680 bool interruptible)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002681{
Chris Wilson05394f32010-11-08 19:18:58 +00002682 struct drm_device *dev = obj->base.dev;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002683 int ret;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002684
Chris Wilson05394f32010-11-08 19:18:58 +00002685 if (obj->fence_reg == I915_FENCE_REG_NONE)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002686 return 0;
2687
Daniel Vetter10ae9bd2010-02-01 13:59:17 +01002688 /* If we've changed tiling, GTT-mappings of the object
2689 * need to re-fault to ensure that the correct fence register
2690 * setup is in place.
2691 */
2692 i915_gem_release_mmap(obj);
2693
Chris Wilson52dc7d32009-06-06 09:46:01 +01002694 /* On the i915, GPU access to tiled buffers is via a fence,
2695 * therefore we must wait for any outstanding access to complete
2696 * before clearing the fence.
2697 */
Chris Wilsoncaea7472010-11-12 13:53:37 +00002698 if (obj->fenced_gpu_access) {
Chris Wilson919926a2010-11-12 13:42:53 +00002699 ret = i915_gem_object_flush_gpu_write_domain(obj, NULL);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002700 if (ret)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002701 return ret;
2702
Chris Wilsoncaea7472010-11-12 13:53:37 +00002703 obj->fenced_gpu_access = false;
2704 }
2705
2706 if (obj->last_fenced_seqno) {
2707 ret = i915_do_wait_request(dev,
2708 obj->last_fenced_seqno,
2709 interruptible,
2710 obj->last_fenced_ring);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002711 if (ret)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002712 return ret;
Chris Wilson53640e12010-09-20 11:40:50 +01002713
Chris Wilsoncaea7472010-11-12 13:53:37 +00002714 obj->last_fenced_seqno = false;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002715 }
2716
Daniel Vetter4a726612010-02-01 13:59:16 +01002717 i915_gem_object_flush_gtt_write_domain(obj);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002718 i915_gem_clear_fence_reg(obj);
Chris Wilson52dc7d32009-06-06 09:46:01 +01002719
2720 return 0;
2721}
2722
2723/**
Eric Anholt673a3942008-07-30 12:06:12 -07002724 * Finds free space in the GTT aperture and binds the object there.
2725 */
2726static int
Chris Wilson05394f32010-11-08 19:18:58 +00002727i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002728 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002729 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002730{
Chris Wilson05394f32010-11-08 19:18:58 +00002731 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002732 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002733 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002734 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002735 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002736 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002737 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002738
Chris Wilson05394f32010-11-08 19:18:58 +00002739 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002740 DRM_ERROR("Attempting to bind a purgeable object\n");
2741 return -EINVAL;
2742 }
2743
Chris Wilson05394f32010-11-08 19:18:58 +00002744 fence_size = i915_gem_get_gtt_size(obj);
2745 fence_alignment = i915_gem_get_gtt_alignment(obj);
2746 unfenced_alignment = i915_gem_get_unfenced_gtt_alignment(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002747
Eric Anholt673a3942008-07-30 12:06:12 -07002748 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002749 alignment = map_and_fenceable ? fence_alignment :
2750 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002751 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002752 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2753 return -EINVAL;
2754 }
2755
Chris Wilson05394f32010-11-08 19:18:58 +00002756 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002757
Chris Wilson654fc602010-05-27 13:18:21 +01002758 /* If the object is bigger than the entire aperture, reject it early
2759 * before evicting everything in a vain attempt to find space.
2760 */
Chris Wilson05394f32010-11-08 19:18:58 +00002761 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002762 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002763 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2764 return -E2BIG;
2765 }
2766
Eric Anholt673a3942008-07-30 12:06:12 -07002767 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002768 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002769 free_space =
2770 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002771 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002772 dev_priv->mm.gtt_mappable_end,
2773 0);
2774 else
2775 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002776 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002777
2778 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002779 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002780 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002781 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002782 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002783 dev_priv->mm.gtt_mappable_end,
2784 0);
2785 else
Chris Wilson05394f32010-11-08 19:18:58 +00002786 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002787 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002788 }
Chris Wilson05394f32010-11-08 19:18:58 +00002789 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002790 /* If the gtt is empty and we're still having trouble
2791 * fitting our object in, we're out of memory.
2792 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002793 ret = i915_gem_evict_something(dev, size, alignment,
2794 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002795 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002796 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002797
Eric Anholt673a3942008-07-30 12:06:12 -07002798 goto search_free;
2799 }
2800
Chris Wilsone5281cc2010-10-28 13:45:36 +01002801 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002802 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002803 drm_mm_put_block(obj->gtt_space);
2804 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002805
2806 if (ret == -ENOMEM) {
2807 /* first try to clear up some space from the GTT */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002808 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002809 alignment,
2810 map_and_fenceable);
Chris Wilson07f73f62009-09-14 16:50:30 +01002811 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002812 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002813 if (gfpmask) {
2814 gfpmask = 0;
2815 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002816 }
2817
2818 return ret;
2819 }
2820
2821 goto search_free;
2822 }
2823
Eric Anholt673a3942008-07-30 12:06:12 -07002824 return ret;
2825 }
2826
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002827 ret = i915_gem_gtt_bind_object(obj);
2828 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002829 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002830 drm_mm_put_block(obj->gtt_space);
2831 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002832
Chris Wilsona00b10c2010-09-24 21:15:47 +01002833 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002834 alignment, map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002835 if (ret)
Chris Wilson07f73f62009-09-14 16:50:30 +01002836 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002837
2838 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002839 }
Eric Anholt673a3942008-07-30 12:06:12 -07002840
Chris Wilson05394f32010-11-08 19:18:58 +00002841 obj->gtt_offset = obj->gtt_space->start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +02002842
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002843 /* keep track of bounds object by adding it to the inactive list */
Chris Wilson05394f32010-11-08 19:18:58 +00002844 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
2845 i915_gem_info_add_gtt(dev_priv, obj);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002846
Eric Anholt673a3942008-07-30 12:06:12 -07002847 /* Assert that the object is not currently in any GPU domain. As it
2848 * wasn't in the GTT, there shouldn't be any way it could have been in
2849 * a GPU cache
2850 */
Chris Wilson05394f32010-11-08 19:18:58 +00002851 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2852 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002853
Chris Wilson05394f32010-11-08 19:18:58 +00002854 trace_i915_gem_object_bind(obj, obj->gtt_offset, map_and_fenceable);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002855
Daniel Vetter75e9e912010-11-04 17:11:09 +01002856 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002857 obj->gtt_space->size == fence_size &&
2858 (obj->gtt_space->start & (fence_alignment -1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002859
Daniel Vetter75e9e912010-11-04 17:11:09 +01002860 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002861 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002862
Chris Wilson05394f32010-11-08 19:18:58 +00002863 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002864
Eric Anholt673a3942008-07-30 12:06:12 -07002865 return 0;
2866}
2867
2868void
Chris Wilson05394f32010-11-08 19:18:58 +00002869i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002870{
Eric Anholt673a3942008-07-30 12:06:12 -07002871 /* If we don't have a page list set up, then we're not pinned
2872 * to GPU, and we can ignore the cache flush because it'll happen
2873 * again at bind time.
2874 */
Chris Wilson05394f32010-11-08 19:18:58 +00002875 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002876 return;
2877
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002878 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002879
Chris Wilson05394f32010-11-08 19:18:58 +00002880 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002881}
2882
Eric Anholte47c68e2008-11-14 13:35:19 -08002883/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002884static int
Chris Wilson05394f32010-11-08 19:18:58 +00002885i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002886 struct intel_ring_buffer *pipelined)
Eric Anholte47c68e2008-11-14 13:35:19 -08002887{
Chris Wilson05394f32010-11-08 19:18:58 +00002888 struct drm_device *dev = obj->base.dev;
Eric Anholte47c68e2008-11-14 13:35:19 -08002889
Chris Wilson05394f32010-11-08 19:18:58 +00002890 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002891 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002892
2893 /* Queue the GPU write cache flushing we need. */
Chris Wilson05394f32010-11-08 19:18:58 +00002894 i915_gem_flush_ring(dev, obj->ring, 0, obj->base.write_domain);
2895 BUG_ON(obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002896
Chris Wilson919926a2010-11-12 13:42:53 +00002897 if (pipelined && pipelined == obj->ring)
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002898 return 0;
2899
Chris Wilson2cf34d72010-09-14 13:03:28 +01002900 return i915_gem_object_wait_rendering(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08002901}
2902
2903/** Flushes the GTT write domain for the object if it's dirty. */
2904static void
Chris Wilson05394f32010-11-08 19:18:58 +00002905i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002906{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002907 uint32_t old_write_domain;
2908
Chris Wilson05394f32010-11-08 19:18:58 +00002909 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002910 return;
2911
2912 /* No actual flushing is required for the GTT write domain. Writes
2913 * to it immediately go to main memory as far as we know, so there's
2914 * no chipset flush. It also doesn't land in render cache.
2915 */
Chris Wilson4a684a42010-10-28 14:44:08 +01002916 i915_gem_release_mmap(obj);
2917
Chris Wilson05394f32010-11-08 19:18:58 +00002918 old_write_domain = obj->base.write_domain;
2919 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002920
2921 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002922 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002923 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002924}
2925
2926/** Flushes the CPU write domain for the object if it's dirty. */
2927static void
Chris Wilson05394f32010-11-08 19:18:58 +00002928i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002929{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002930 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002931
Chris Wilson05394f32010-11-08 19:18:58 +00002932 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002933 return;
2934
2935 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002936 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002937 old_write_domain = obj->base.write_domain;
2938 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002939
2940 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002941 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002942 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002943}
2944
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002945/**
2946 * Moves a single object to the GTT read, and possibly write domain.
2947 *
2948 * This function returns when the move is complete, including waiting on
2949 * flushes to occur.
2950 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002951int
Chris Wilson05394f32010-11-08 19:18:58 +00002952i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, int write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002953{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002954 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002955 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002956
Eric Anholt02354392008-11-26 13:58:13 -08002957 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002958 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002959 return -EINVAL;
2960
Chris Wilson919926a2010-11-12 13:42:53 +00002961 ret = i915_gem_object_flush_gpu_write_domain(obj, NULL);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002962 if (ret != 0)
2963 return ret;
2964
Chris Wilson72133422010-09-13 23:56:38 +01002965 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002966
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002967 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002968 ret = i915_gem_object_wait_rendering(obj, true);
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002969 if (ret)
2970 return ret;
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002971 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002972
Chris Wilson05394f32010-11-08 19:18:58 +00002973 old_write_domain = obj->base.write_domain;
2974 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002975
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002976 /* It should now be out of any other write domains, and we can update
2977 * the domain values for our changes.
2978 */
Chris Wilson05394f32010-11-08 19:18:58 +00002979 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2980 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002981 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002982 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2983 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2984 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002985 }
2986
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002987 trace_i915_gem_object_change_domain(obj,
2988 old_read_domains,
2989 old_write_domain);
2990
Eric Anholte47c68e2008-11-14 13:35:19 -08002991 return 0;
2992}
2993
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002994/*
2995 * Prepare buffer for display plane. Use uninterruptible for possible flush
2996 * wait, as in modesetting process we're not supposed to be interrupted.
2997 */
2998int
Chris Wilson05394f32010-11-08 19:18:58 +00002999i915_gem_object_set_to_display_plane(struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00003000 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003001{
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003002 uint32_t old_read_domains;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003003 int ret;
3004
3005 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00003006 if (obj->gtt_space == NULL)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003007 return -EINVAL;
3008
Chris Wilson919926a2010-11-12 13:42:53 +00003009 ret = i915_gem_object_flush_gpu_write_domain(obj, pipelined);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01003010 if (ret)
3011 return ret;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003012
Chris Wilsonced270f2010-09-26 22:47:46 +01003013 /* Currently, we are always called from an non-interruptible context. */
3014 if (!pipelined) {
3015 ret = i915_gem_object_wait_rendering(obj, false);
3016 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003017 return ret;
3018 }
3019
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003020 i915_gem_object_flush_cpu_write_domain(obj);
3021
Chris Wilson05394f32010-11-08 19:18:58 +00003022 old_read_domains = obj->base.read_domains;
3023 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003024
3025 trace_i915_gem_object_change_domain(obj,
3026 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003027 obj->base.write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003028
3029 return 0;
3030}
3031
Chris Wilson85345512010-11-13 09:49:11 +00003032int
3033i915_gem_object_flush_gpu(struct drm_i915_gem_object *obj,
3034 bool interruptible)
3035{
3036 if (!obj->active)
3037 return 0;
3038
3039 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
Chris Wilson05394f32010-11-08 19:18:58 +00003040 i915_gem_flush_ring(obj->base.dev, obj->ring,
Chris Wilson85345512010-11-13 09:49:11 +00003041 0, obj->base.write_domain);
3042
Chris Wilson05394f32010-11-08 19:18:58 +00003043 return i915_gem_object_wait_rendering(obj, interruptible);
Chris Wilson85345512010-11-13 09:49:11 +00003044}
3045
Eric Anholte47c68e2008-11-14 13:35:19 -08003046/**
3047 * Moves a single object to the CPU read, and possibly write domain.
3048 *
3049 * This function returns when the move is complete, including waiting on
3050 * flushes to occur.
3051 */
3052static int
Chris Wilson919926a2010-11-12 13:42:53 +00003053i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003054{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003055 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003056 int ret;
3057
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003058 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003059 if (ret != 0)
3060 return ret;
3061
3062 i915_gem_object_flush_gtt_write_domain(obj);
3063
3064 /* If we have a partially-valid cache of the object in the CPU,
3065 * finish invalidating it and free the per-page flags.
3066 */
3067 i915_gem_object_set_to_full_cpu_read_domain(obj);
3068
Chris Wilson72133422010-09-13 23:56:38 +01003069 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01003070 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson72133422010-09-13 23:56:38 +01003071 if (ret)
3072 return ret;
3073 }
3074
Chris Wilson05394f32010-11-08 19:18:58 +00003075 old_write_domain = obj->base.write_domain;
3076 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003077
Eric Anholte47c68e2008-11-14 13:35:19 -08003078 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003079 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003080 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003081
Chris Wilson05394f32010-11-08 19:18:58 +00003082 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003083 }
3084
3085 /* It should now be out of any other write domains, and we can update
3086 * the domain values for our changes.
3087 */
Chris Wilson05394f32010-11-08 19:18:58 +00003088 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003089
3090 /* If we're writing through the CPU, then the GPU read domains will
3091 * need to be invalidated at next use.
3092 */
3093 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003094 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3095 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003096 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003097
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003098 trace_i915_gem_object_change_domain(obj,
3099 old_read_domains,
3100 old_write_domain);
3101
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003102 return 0;
3103}
3104
Eric Anholt673a3942008-07-30 12:06:12 -07003105/*
3106 * Set the next domain for the specified object. This
3107 * may not actually perform the necessary flushing/invaliding though,
3108 * as that may want to be batched with other set_domain operations
3109 *
3110 * This is (we hope) the only really tricky part of gem. The goal
3111 * is fairly simple -- track which caches hold bits of the object
3112 * and make sure they remain coherent. A few concrete examples may
3113 * help to explain how it works. For shorthand, we use the notation
3114 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
3115 * a pair of read and write domain masks.
3116 *
3117 * Case 1: the batch buffer
3118 *
3119 * 1. Allocated
3120 * 2. Written by CPU
3121 * 3. Mapped to GTT
3122 * 4. Read by GPU
3123 * 5. Unmapped from GTT
3124 * 6. Freed
3125 *
3126 * Let's take these a step at a time
3127 *
3128 * 1. Allocated
3129 * Pages allocated from the kernel may still have
3130 * cache contents, so we set them to (CPU, CPU) always.
3131 * 2. Written by CPU (using pwrite)
3132 * The pwrite function calls set_domain (CPU, CPU) and
3133 * this function does nothing (as nothing changes)
3134 * 3. Mapped by GTT
3135 * This function asserts that the object is not
3136 * currently in any GPU-based read or write domains
3137 * 4. Read by GPU
3138 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
3139 * As write_domain is zero, this function adds in the
3140 * current read domains (CPU+COMMAND, 0).
3141 * flush_domains is set to CPU.
3142 * invalidate_domains is set to COMMAND
3143 * clflush is run to get data out of the CPU caches
3144 * then i915_dev_set_domain calls i915_gem_flush to
3145 * emit an MI_FLUSH and drm_agp_chipset_flush
3146 * 5. Unmapped from GTT
3147 * i915_gem_object_unbind calls set_domain (CPU, CPU)
3148 * flush_domains and invalidate_domains end up both zero
3149 * so no flushing/invalidating happens
3150 * 6. Freed
3151 * yay, done
3152 *
3153 * Case 2: The shared render buffer
3154 *
3155 * 1. Allocated
3156 * 2. Mapped to GTT
3157 * 3. Read/written by GPU
3158 * 4. set_domain to (CPU,CPU)
3159 * 5. Read/written by CPU
3160 * 6. Read/written by GPU
3161 *
3162 * 1. Allocated
3163 * Same as last example, (CPU, CPU)
3164 * 2. Mapped to GTT
3165 * Nothing changes (assertions find that it is not in the GPU)
3166 * 3. Read/written by GPU
3167 * execbuffer calls set_domain (RENDER, RENDER)
3168 * flush_domains gets CPU
3169 * invalidate_domains gets GPU
3170 * clflush (obj)
3171 * MI_FLUSH and drm_agp_chipset_flush
3172 * 4. set_domain (CPU, CPU)
3173 * flush_domains gets GPU
3174 * invalidate_domains gets CPU
3175 * wait_rendering (obj) to make sure all drawing is complete.
3176 * This will include an MI_FLUSH to get the data from GPU
3177 * to memory
3178 * clflush (obj) to invalidate the CPU cache
3179 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
3180 * 5. Read/written by CPU
3181 * cache lines are loaded and dirtied
3182 * 6. Read written by GPU
3183 * Same as last GPU access
3184 *
3185 * Case 3: The constant buffer
3186 *
3187 * 1. Allocated
3188 * 2. Written by CPU
3189 * 3. Read by GPU
3190 * 4. Updated (written) by CPU again
3191 * 5. Read by GPU
3192 *
3193 * 1. Allocated
3194 * (CPU, CPU)
3195 * 2. Written by CPU
3196 * (CPU, CPU)
3197 * 3. Read by GPU
3198 * (CPU+RENDER, 0)
3199 * flush_domains = CPU
3200 * invalidate_domains = RENDER
3201 * clflush (obj)
3202 * MI_FLUSH
3203 * drm_agp_chipset_flush
3204 * 4. Updated (written) by CPU again
3205 * (CPU, CPU)
3206 * flush_domains = 0 (no previous write domain)
3207 * invalidate_domains = 0 (no new read domains)
3208 * 5. Read by GPU
3209 * (CPU+RENDER, 0)
3210 * flush_domains = CPU
3211 * invalidate_domains = RENDER
3212 * clflush (obj)
3213 * MI_FLUSH
3214 * drm_agp_chipset_flush
3215 */
Keith Packardc0d90822008-11-20 23:11:08 -08003216static void
Chris Wilson05394f32010-11-08 19:18:58 +00003217i915_gem_object_set_to_gpu_domain(struct drm_i915_gem_object *obj,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003218 struct intel_ring_buffer *ring,
3219 struct change_domains *cd)
Eric Anholt673a3942008-07-30 12:06:12 -07003220{
Chris Wilson05394f32010-11-08 19:18:58 +00003221 uint32_t invalidate_domains = 0, flush_domains = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003222
Eric Anholt673a3942008-07-30 12:06:12 -07003223 /*
3224 * If the object isn't moving to a new write domain,
3225 * let the object stay in multiple read domains
3226 */
Chris Wilson05394f32010-11-08 19:18:58 +00003227 if (obj->base.pending_write_domain == 0)
3228 obj->base.pending_read_domains |= obj->base.read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07003229
3230 /*
3231 * Flush the current write domain if
3232 * the new read domains don't match. Invalidate
3233 * any read domains which differ from the old
3234 * write domain
3235 */
Chris Wilson05394f32010-11-08 19:18:58 +00003236 if (obj->base.write_domain &&
Chris Wilsoncaea7472010-11-12 13:53:37 +00003237 (((obj->base.write_domain != obj->base.pending_read_domains ||
3238 obj->ring != ring)) ||
3239 (obj->fenced_gpu_access && !obj->pending_fenced_gpu_access))) {
Chris Wilson05394f32010-11-08 19:18:58 +00003240 flush_domains |= obj->base.write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08003241 invalidate_domains |=
Chris Wilson05394f32010-11-08 19:18:58 +00003242 obj->base.pending_read_domains & ~obj->base.write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003243 }
3244 /*
3245 * Invalidate any read caches which may have
3246 * stale data. That is, any new read domains.
3247 */
Chris Wilson05394f32010-11-08 19:18:58 +00003248 invalidate_domains |= obj->base.pending_read_domains & ~obj->base.read_domains;
Chris Wilson3d2a8122010-09-29 11:39:53 +01003249 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU)
Eric Anholt673a3942008-07-30 12:06:12 -07003250 i915_gem_clflush_object(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003251
Chris Wilson4a684a42010-10-28 14:44:08 +01003252 /* blow away mappings if mapped through GTT */
3253 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_GTT)
3254 i915_gem_release_mmap(obj);
3255
Eric Anholtefbeed92009-02-19 14:54:51 -08003256 /* The actual obj->write_domain will be updated with
3257 * pending_write_domain after we emit the accumulated flush for all
3258 * of our domain changes in execbuffers (which clears objects'
3259 * write_domains). So if we have a current write domain that we
3260 * aren't changing, set pending_write_domain to that.
3261 */
Chris Wilson05394f32010-11-08 19:18:58 +00003262 if (flush_domains == 0 && obj->base.pending_write_domain == 0)
3263 obj->base.pending_write_domain = obj->base.write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003264
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003265 cd->invalidate_domains |= invalidate_domains;
3266 cd->flush_domains |= flush_domains;
Chris Wilsonb6651452010-10-23 10:15:06 +01003267 if (flush_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson05394f32010-11-08 19:18:58 +00003268 cd->flush_rings |= obj->ring->id;
Chris Wilsonb6651452010-10-23 10:15:06 +01003269 if (invalidate_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003270 cd->flush_rings |= ring->id;
Eric Anholt673a3942008-07-30 12:06:12 -07003271}
3272
3273/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003274 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003275 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003276 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3277 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3278 */
3279static void
Chris Wilson05394f32010-11-08 19:18:58 +00003280i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003281{
Chris Wilson05394f32010-11-08 19:18:58 +00003282 if (!obj->page_cpu_valid)
Eric Anholte47c68e2008-11-14 13:35:19 -08003283 return;
3284
3285 /* If we're partially in the CPU read domain, finish moving it in.
3286 */
Chris Wilson05394f32010-11-08 19:18:58 +00003287 if (obj->base.read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003288 int i;
3289
Chris Wilson05394f32010-11-08 19:18:58 +00003290 for (i = 0; i <= (obj->base.size - 1) / PAGE_SIZE; i++) {
3291 if (obj->page_cpu_valid[i])
Eric Anholte47c68e2008-11-14 13:35:19 -08003292 continue;
Chris Wilson05394f32010-11-08 19:18:58 +00003293 drm_clflush_pages(obj->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003294 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003295 }
3296
3297 /* Free the page_cpu_valid mappings which are now stale, whether
3298 * or not we've got I915_GEM_DOMAIN_CPU.
3299 */
Chris Wilson05394f32010-11-08 19:18:58 +00003300 kfree(obj->page_cpu_valid);
3301 obj->page_cpu_valid = NULL;
Eric Anholte47c68e2008-11-14 13:35:19 -08003302}
3303
3304/**
3305 * Set the CPU read domain on a range of the object.
3306 *
3307 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3308 * not entirely valid. The page_cpu_valid member of the object flags which
3309 * pages have been flushed, and will be respected by
3310 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3311 * of the whole object.
3312 *
3313 * This function returns when the move is complete, including waiting on
3314 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003315 */
3316static int
Chris Wilson05394f32010-11-08 19:18:58 +00003317i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -08003318 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003319{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003320 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003321 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003322
Chris Wilson05394f32010-11-08 19:18:58 +00003323 if (offset == 0 && size == obj->base.size)
Eric Anholte47c68e2008-11-14 13:35:19 -08003324 return i915_gem_object_set_to_cpu_domain(obj, 0);
3325
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003326 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003327 if (ret != 0)
3328 return ret;
3329 i915_gem_object_flush_gtt_write_domain(obj);
3330
3331 /* If we're already fully in the CPU read domain, we're done. */
Chris Wilson05394f32010-11-08 19:18:58 +00003332 if (obj->page_cpu_valid == NULL &&
3333 (obj->base.read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003334 return 0;
3335
Eric Anholte47c68e2008-11-14 13:35:19 -08003336 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3337 * newly adding I915_GEM_DOMAIN_CPU
3338 */
Chris Wilson05394f32010-11-08 19:18:58 +00003339 if (obj->page_cpu_valid == NULL) {
3340 obj->page_cpu_valid = kzalloc(obj->base.size / PAGE_SIZE,
3341 GFP_KERNEL);
3342 if (obj->page_cpu_valid == NULL)
Eric Anholte47c68e2008-11-14 13:35:19 -08003343 return -ENOMEM;
Chris Wilson05394f32010-11-08 19:18:58 +00003344 } else if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
3345 memset(obj->page_cpu_valid, 0, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003346
3347 /* Flush the cache on any pages that are still invalid from the CPU's
3348 * perspective.
3349 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003350 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3351 i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003352 if (obj->page_cpu_valid[i])
Eric Anholt673a3942008-07-30 12:06:12 -07003353 continue;
3354
Chris Wilson05394f32010-11-08 19:18:58 +00003355 drm_clflush_pages(obj->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003356
Chris Wilson05394f32010-11-08 19:18:58 +00003357 obj->page_cpu_valid[i] = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003358 }
3359
Eric Anholte47c68e2008-11-14 13:35:19 -08003360 /* It should now be out of any other write domains, and we can update
3361 * the domain values for our changes.
3362 */
Chris Wilson05394f32010-11-08 19:18:58 +00003363 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003364
Chris Wilson05394f32010-11-08 19:18:58 +00003365 old_read_domains = obj->base.read_domains;
3366 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003367
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003368 trace_i915_gem_object_change_domain(obj,
3369 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003370 obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003371
Eric Anholt673a3942008-07-30 12:06:12 -07003372 return 0;
3373}
3374
Eric Anholt673a3942008-07-30 12:06:12 -07003375static int
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003376i915_gem_execbuffer_relocate_entry(struct drm_i915_gem_object *obj,
3377 struct drm_file *file_priv,
3378 struct drm_i915_gem_exec_object2 *entry,
3379 struct drm_i915_gem_relocation_entry *reloc)
Eric Anholt673a3942008-07-30 12:06:12 -07003380{
Chris Wilson9af90d12010-10-17 10:01:56 +01003381 struct drm_device *dev = obj->base.dev;
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003382 struct drm_gem_object *target_obj;
3383 uint32_t target_offset;
3384 int ret = -EINVAL;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003385
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003386 target_obj = drm_gem_object_lookup(dev, file_priv,
3387 reloc->target_handle);
3388 if (target_obj == NULL)
3389 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07003390
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003391 target_offset = to_intel_bo(target_obj)->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003392
Chris Wilson8542a0b2009-09-09 21:15:15 +01003393#if WATCH_RELOC
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003394 DRM_INFO("%s: obj %p offset %08x target %d "
3395 "read %08x write %08x gtt %08x "
3396 "presumed %08x delta %08x\n",
3397 __func__,
3398 obj,
3399 (int) reloc->offset,
3400 (int) reloc->target_handle,
3401 (int) reloc->read_domains,
3402 (int) reloc->write_domain,
3403 (int) target_offset,
3404 (int) reloc->presumed_offset,
3405 reloc->delta);
Chris Wilson8542a0b2009-09-09 21:15:15 +01003406#endif
3407
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003408 /* The target buffer should have appeared before us in the
3409 * exec_object list, so it should have a GTT space bound by now.
3410 */
3411 if (target_offset == 0) {
3412 DRM_ERROR("No GTT space found for object %d\n",
3413 reloc->target_handle);
3414 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003415 }
3416
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003417 /* Validate that the target is in a valid r/w GPU domain */
3418 if (reloc->write_domain & (reloc->write_domain - 1)) {
3419 DRM_ERROR("reloc with multiple write domains: "
3420 "obj %p target %d offset %d "
3421 "read %08x write %08x",
3422 obj, reloc->target_handle,
3423 (int) reloc->offset,
3424 reloc->read_domains,
3425 reloc->write_domain);
3426 goto err;
3427 }
3428 if (reloc->write_domain & I915_GEM_DOMAIN_CPU ||
3429 reloc->read_domains & I915_GEM_DOMAIN_CPU) {
3430 DRM_ERROR("reloc with read/write CPU domains: "
3431 "obj %p target %d offset %d "
3432 "read %08x write %08x",
3433 obj, reloc->target_handle,
3434 (int) reloc->offset,
3435 reloc->read_domains,
3436 reloc->write_domain);
3437 goto err;
3438 }
3439 if (reloc->write_domain && target_obj->pending_write_domain &&
3440 reloc->write_domain != target_obj->pending_write_domain) {
3441 DRM_ERROR("Write domain conflict: "
3442 "obj %p target %d offset %d "
3443 "new %08x old %08x\n",
3444 obj, reloc->target_handle,
3445 (int) reloc->offset,
3446 reloc->write_domain,
3447 target_obj->pending_write_domain);
3448 goto err;
3449 }
3450
3451 target_obj->pending_read_domains |= reloc->read_domains;
3452 target_obj->pending_write_domain |= reloc->write_domain;
3453
3454 /* If the relocation already has the right value in it, no
3455 * more work needs to be done.
3456 */
3457 if (target_offset == reloc->presumed_offset)
3458 goto out;
3459
3460 /* Check that the relocation address is valid... */
3461 if (reloc->offset > obj->base.size - 4) {
3462 DRM_ERROR("Relocation beyond object bounds: "
3463 "obj %p target %d offset %d size %d.\n",
3464 obj, reloc->target_handle,
3465 (int) reloc->offset,
3466 (int) obj->base.size);
3467 goto err;
3468 }
3469 if (reloc->offset & 3) {
3470 DRM_ERROR("Relocation not 4-byte aligned: "
3471 "obj %p target %d offset %d.\n",
3472 obj, reloc->target_handle,
3473 (int) reloc->offset);
3474 goto err;
3475 }
3476
3477 /* and points to somewhere within the target object. */
3478 if (reloc->delta >= target_obj->size) {
3479 DRM_ERROR("Relocation beyond target object bounds: "
3480 "obj %p target %d delta %d size %d.\n",
3481 obj, reloc->target_handle,
3482 (int) reloc->delta,
3483 (int) target_obj->size);
3484 goto err;
3485 }
3486
3487 reloc->delta += target_offset;
3488 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU) {
3489 uint32_t page_offset = reloc->offset & ~PAGE_MASK;
3490 char *vaddr;
3491
3492 vaddr = kmap_atomic(obj->pages[reloc->offset >> PAGE_SHIFT]);
3493 *(uint32_t *)(vaddr + page_offset) = reloc->delta;
3494 kunmap_atomic(vaddr);
3495 } else {
3496 struct drm_i915_private *dev_priv = dev->dev_private;
3497 uint32_t __iomem *reloc_entry;
3498 void __iomem *reloc_page;
3499
Chris Wilson05394f32010-11-08 19:18:58 +00003500 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003501 if (ret)
3502 goto err;
3503
3504 /* Map the page containing the relocation we're going to perform. */
3505 reloc->offset += obj->gtt_offset;
3506 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
3507 reloc->offset & PAGE_MASK);
3508 reloc_entry = (uint32_t __iomem *)
3509 (reloc_page + (reloc->offset & ~PAGE_MASK));
3510 iowrite32(reloc->delta, reloc_entry);
3511 io_mapping_unmap_atomic(reloc_page);
3512 }
3513
3514 /* and update the user's relocation entry */
3515 reloc->presumed_offset = target_offset;
3516
3517out:
3518 ret = 0;
3519err:
Chris Wilson9af90d12010-10-17 10:01:56 +01003520 drm_gem_object_unreference(target_obj);
3521 return ret;
3522}
3523
3524static int
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003525i915_gem_execbuffer_relocate_object(struct drm_i915_gem_object *obj,
3526 struct drm_file *file_priv,
3527 struct drm_i915_gem_exec_object2 *entry)
3528{
3529 struct drm_i915_gem_relocation_entry __user *user_relocs;
3530 int i, ret;
3531
3532 user_relocs = (void __user *)(uintptr_t)entry->relocs_ptr;
3533 for (i = 0; i < entry->relocation_count; i++) {
3534 struct drm_i915_gem_relocation_entry reloc;
3535
3536 if (__copy_from_user_inatomic(&reloc,
3537 user_relocs+i,
3538 sizeof(reloc)))
3539 return -EFAULT;
3540
3541 ret = i915_gem_execbuffer_relocate_entry(obj, file_priv, entry, &reloc);
3542 if (ret)
3543 return ret;
3544
3545 if (__copy_to_user_inatomic(&user_relocs[i].presumed_offset,
3546 &reloc.presumed_offset,
3547 sizeof(reloc.presumed_offset)))
3548 return -EFAULT;
3549 }
3550
3551 return 0;
3552}
3553
3554static int
3555i915_gem_execbuffer_relocate_object_slow(struct drm_i915_gem_object *obj,
3556 struct drm_file *file_priv,
3557 struct drm_i915_gem_exec_object2 *entry,
3558 struct drm_i915_gem_relocation_entry *relocs)
3559{
3560 int i, ret;
3561
3562 for (i = 0; i < entry->relocation_count; i++) {
3563 ret = i915_gem_execbuffer_relocate_entry(obj, file_priv, entry, &relocs[i]);
3564 if (ret)
3565 return ret;
3566 }
3567
3568 return 0;
3569}
3570
3571static int
3572i915_gem_execbuffer_relocate(struct drm_device *dev,
3573 struct drm_file *file,
Chris Wilson05394f32010-11-08 19:18:58 +00003574 struct drm_i915_gem_object **object_list,
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003575 struct drm_i915_gem_exec_object2 *exec_list,
3576 int count)
3577{
3578 int i, ret;
3579
3580 for (i = 0; i < count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003581 struct drm_i915_gem_object *obj = object_list[i];
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003582 obj->base.pending_read_domains = 0;
3583 obj->base.pending_write_domain = 0;
3584 ret = i915_gem_execbuffer_relocate_object(obj, file,
3585 &exec_list[i]);
3586 if (ret)
3587 return ret;
3588 }
3589
3590 return 0;
3591}
3592
3593static int
3594i915_gem_execbuffer_reserve(struct drm_device *dev,
3595 struct drm_file *file,
Chris Wilson05394f32010-11-08 19:18:58 +00003596 struct drm_i915_gem_object **object_list,
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003597 struct drm_i915_gem_exec_object2 *exec_list,
3598 int count)
Chris Wilson9af90d12010-10-17 10:01:56 +01003599{
Chris Wilson9af90d12010-10-17 10:01:56 +01003600 int ret, i, retry;
3601
Chris Wilsona7a09ae2010-11-12 13:49:09 +00003602 /* Attempt to pin all of the buffers into the GTT.
3603 * This is done in 3 phases:
3604 *
3605 * 1a. Unbind all objects that do not match the GTT constraints for
3606 * the execbuffer (fenceable, mappable, alignment etc).
3607 * 1b. Increment pin count for already bound objects.
3608 * 2. Bind new objects.
3609 * 3. Decrement pin count.
3610 *
3611 * This avoid unnecessary unbinding of later objects in order to makr
3612 * room for the earlier objects *unless* we need to defragment.
3613 */
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003614 retry = 0;
3615 do {
Chris Wilson9af90d12010-10-17 10:01:56 +01003616 ret = 0;
Chris Wilsona7a09ae2010-11-12 13:49:09 +00003617
3618 /* Unbind any ill-fitting objects or pin. */
3619 for (i = 0; i < count; i++) {
3620 struct drm_i915_gem_object *obj = object_list[i];
3621 struct drm_i915_gem_exec_object2 *entry = &exec_list[i];
3622 bool need_fence, need_mappable;
3623
3624 if (!obj->gtt_space)
3625 continue;
3626
3627 need_fence =
3628 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
3629 obj->tiling_mode != I915_TILING_NONE;
3630 need_mappable =
3631 entry->relocation_count ? true : need_fence;
3632
3633 if ((entry->alignment && obj->gtt_offset & (entry->alignment - 1)) ||
3634 (need_mappable && !obj->map_and_fenceable))
3635 ret = i915_gem_object_unbind(obj);
3636 else
3637 ret = i915_gem_object_pin(obj,
3638 entry->alignment,
3639 need_mappable);
3640 if (ret) {
3641 count = i;
3642 goto err;
3643 }
3644 }
3645
3646 /* Bind fresh objects */
Chris Wilson9af90d12010-10-17 10:01:56 +01003647 for (i = 0; i < count; i++) {
3648 struct drm_i915_gem_exec_object2 *entry = &exec_list[i];
Chris Wilson05394f32010-11-08 19:18:58 +00003649 struct drm_i915_gem_object *obj = object_list[i];
Chris Wilsona7a09ae2010-11-12 13:49:09 +00003650 bool need_fence;
3651
3652 need_fence =
Chris Wilson9af90d12010-10-17 10:01:56 +01003653 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
3654 obj->tiling_mode != I915_TILING_NONE;
3655
Chris Wilsona7a09ae2010-11-12 13:49:09 +00003656 if (!obj->gtt_space) {
3657 bool need_mappable =
3658 entry->relocation_count ? true : need_fence;
Daniel Vetter16e809a2010-09-16 19:37:04 +02003659
Chris Wilsona7a09ae2010-11-12 13:49:09 +00003660 ret = i915_gem_object_pin(obj,
3661 entry->alignment,
3662 need_mappable);
Chris Wilson9af90d12010-10-17 10:01:56 +01003663 if (ret)
3664 break;
3665 }
3666
Chris Wilson9af90d12010-10-17 10:01:56 +01003667 if (need_fence) {
Chris Wilson05394f32010-11-08 19:18:58 +00003668 ret = i915_gem_object_get_fence_reg(obj, true);
Chris Wilsona7a09ae2010-11-12 13:49:09 +00003669 if (ret)
Chris Wilson9af90d12010-10-17 10:01:56 +01003670 break;
Chris Wilson9af90d12010-10-17 10:01:56 +01003671
Chris Wilsoncaea7472010-11-12 13:53:37 +00003672 obj->pending_fenced_gpu_access = true;
Chris Wilson9af90d12010-10-17 10:01:56 +01003673 }
3674
3675 entry->offset = obj->gtt_offset;
3676 }
3677
Chris Wilsona7a09ae2010-11-12 13:49:09 +00003678err: /* Decrement pin count for bound objects */
3679 for (i = 0; i < count; i++) {
3680 struct drm_i915_gem_object *obj = object_list[i];
3681 if (obj->gtt_space)
3682 i915_gem_object_unpin(obj);
3683 }
Chris Wilson9af90d12010-10-17 10:01:56 +01003684
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003685 if (ret != -ENOSPC || retry > 1)
Chris Wilson9af90d12010-10-17 10:01:56 +01003686 return ret;
3687
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003688 /* First attempt, just clear anything that is purgeable.
3689 * Second attempt, clear the entire GTT.
3690 */
3691 ret = i915_gem_evict_everything(dev, retry == 0);
Chris Wilson9af90d12010-10-17 10:01:56 +01003692 if (ret)
3693 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003694
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003695 retry++;
3696 } while (1);
Eric Anholt673a3942008-07-30 12:06:12 -07003697}
3698
Chris Wilson13b29282010-11-01 12:22:48 +00003699static int
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003700i915_gem_execbuffer_relocate_slow(struct drm_device *dev,
3701 struct drm_file *file,
Chris Wilson05394f32010-11-08 19:18:58 +00003702 struct drm_i915_gem_object **object_list,
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003703 struct drm_i915_gem_exec_object2 *exec_list,
3704 int count)
3705{
3706 struct drm_i915_gem_relocation_entry *reloc;
3707 int i, total, ret;
3708
Chris Wilson05394f32010-11-08 19:18:58 +00003709 for (i = 0; i < count; i++)
3710 object_list[i]->in_execbuffer = false;
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003711
3712 mutex_unlock(&dev->struct_mutex);
3713
3714 total = 0;
3715 for (i = 0; i < count; i++)
3716 total += exec_list[i].relocation_count;
3717
3718 reloc = drm_malloc_ab(total, sizeof(*reloc));
3719 if (reloc == NULL) {
3720 mutex_lock(&dev->struct_mutex);
3721 return -ENOMEM;
3722 }
3723
3724 total = 0;
3725 for (i = 0; i < count; i++) {
3726 struct drm_i915_gem_relocation_entry __user *user_relocs;
3727
3728 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3729
3730 if (copy_from_user(reloc+total, user_relocs,
3731 exec_list[i].relocation_count *
3732 sizeof(*reloc))) {
3733 ret = -EFAULT;
3734 mutex_lock(&dev->struct_mutex);
3735 goto err;
3736 }
3737
3738 total += exec_list[i].relocation_count;
3739 }
3740
3741 ret = i915_mutex_lock_interruptible(dev);
3742 if (ret) {
3743 mutex_lock(&dev->struct_mutex);
3744 goto err;
3745 }
3746
3747 ret = i915_gem_execbuffer_reserve(dev, file,
3748 object_list, exec_list,
3749 count);
3750 if (ret)
3751 goto err;
3752
3753 total = 0;
3754 for (i = 0; i < count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003755 struct drm_i915_gem_object *obj = object_list[i];
Chris Wilsonbcf50e22010-11-21 22:07:12 +00003756 obj->base.pending_read_domains = 0;
3757 obj->base.pending_write_domain = 0;
3758 ret = i915_gem_execbuffer_relocate_object_slow(obj, file,
3759 &exec_list[i],
3760 reloc + total);
3761 if (ret)
3762 goto err;
3763
3764 total += exec_list[i].relocation_count;
3765 }
3766
3767 /* Leave the user relocations as are, this is the painfully slow path,
3768 * and we want to avoid the complication of dropping the lock whilst
3769 * having buffers reserved in the aperture and so causing spurious
3770 * ENOSPC for random operations.
3771 */
3772
3773err:
3774 drm_free_large(reloc);
3775 return ret;
3776}
3777
3778static int
Chris Wilson13b29282010-11-01 12:22:48 +00003779i915_gem_execbuffer_move_to_gpu(struct drm_device *dev,
3780 struct drm_file *file,
3781 struct intel_ring_buffer *ring,
Chris Wilson05394f32010-11-08 19:18:58 +00003782 struct drm_i915_gem_object **objects,
Chris Wilson13b29282010-11-01 12:22:48 +00003783 int count)
3784{
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003785 struct change_domains cd;
Chris Wilson13b29282010-11-01 12:22:48 +00003786 int ret, i;
3787
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003788 cd.invalidate_domains = 0;
3789 cd.flush_domains = 0;
3790 cd.flush_rings = 0;
Chris Wilson13b29282010-11-01 12:22:48 +00003791 for (i = 0; i < count; i++)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003792 i915_gem_object_set_to_gpu_domain(objects[i], ring, &cd);
Chris Wilson13b29282010-11-01 12:22:48 +00003793
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003794 if (cd.invalidate_domains | cd.flush_domains) {
Chris Wilson13b29282010-11-01 12:22:48 +00003795#if WATCH_EXEC
3796 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3797 __func__,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003798 cd.invalidate_domains,
3799 cd.flush_domains);
Chris Wilson13b29282010-11-01 12:22:48 +00003800#endif
Chris Wilson05394f32010-11-08 19:18:58 +00003801 i915_gem_flush(dev,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003802 cd.invalidate_domains,
3803 cd.flush_domains,
3804 cd.flush_rings);
Chris Wilson13b29282010-11-01 12:22:48 +00003805 }
3806
3807 for (i = 0; i < count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003808 struct drm_i915_gem_object *obj = objects[i];
Chris Wilson13b29282010-11-01 12:22:48 +00003809 /* XXX replace with semaphores */
3810 if (obj->ring && ring != obj->ring) {
Chris Wilson05394f32010-11-08 19:18:58 +00003811 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson13b29282010-11-01 12:22:48 +00003812 if (ret)
3813 return ret;
3814 }
3815 }
3816
3817 return 0;
3818}
3819
Eric Anholt673a3942008-07-30 12:06:12 -07003820/* Throttle our rendering by waiting until the ring has completed our requests
3821 * emitted over 20 msec ago.
3822 *
Eric Anholtb9624422009-06-03 07:27:35 +00003823 * Note that if we were to use the current jiffies each time around the loop,
3824 * we wouldn't escape the function with any frames outstanding if the time to
3825 * render a frame was over 20ms.
3826 *
Eric Anholt673a3942008-07-30 12:06:12 -07003827 * This should get us reasonable parallelism between CPU and GPU but also
3828 * relatively low latency when blocking on a particular request to finish.
3829 */
3830static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003831i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003832{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003833 struct drm_i915_private *dev_priv = dev->dev_private;
3834 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003835 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003836 struct drm_i915_gem_request *request;
3837 struct intel_ring_buffer *ring = NULL;
3838 u32 seqno = 0;
3839 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003840
Chris Wilson1c255952010-09-26 11:03:27 +01003841 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003842 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003843 if (time_after_eq(request->emitted_jiffies, recent_enough))
3844 break;
3845
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003846 ring = request->ring;
3847 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003848 }
Chris Wilson1c255952010-09-26 11:03:27 +01003849 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003850
3851 if (seqno == 0)
3852 return 0;
3853
3854 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003855 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003856 /* And wait for the seqno passing without holding any locks and
3857 * causing extra latency for others. This is safe as the irq
3858 * generation is designed to be run atomically and so is
3859 * lockless.
3860 */
Chris Wilson78501ea2010-10-27 12:18:21 +01003861 ring->user_irq_get(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003862 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01003863 i915_seqno_passed(ring->get_seqno(ring), seqno)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003864 || atomic_read(&dev_priv->mm.wedged));
Chris Wilson78501ea2010-10-27 12:18:21 +01003865 ring->user_irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003866
3867 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3868 ret = -EIO;
3869 }
3870
3871 if (ret == 0)
3872 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003873
Eric Anholt673a3942008-07-30 12:06:12 -07003874 return ret;
3875}
3876
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003877static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003878i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec,
3879 uint64_t exec_offset)
Chris Wilson83d60792009-06-06 09:45:57 +01003880{
3881 uint32_t exec_start, exec_len;
3882
3883 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3884 exec_len = (uint32_t) exec->batch_len;
3885
3886 if ((exec_start | exec_len) & 0x7)
3887 return -EINVAL;
3888
3889 if (!exec_start)
3890 return -EINVAL;
3891
3892 return 0;
3893}
3894
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003895static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003896validate_exec_list(struct drm_i915_gem_exec_object2 *exec,
3897 int count)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003898{
Chris Wilson2549d6c2010-10-14 12:10:41 +01003899 int i;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003900
Chris Wilson2549d6c2010-10-14 12:10:41 +01003901 for (i = 0; i < count; i++) {
3902 char __user *ptr = (char __user *)(uintptr_t)exec[i].relocs_ptr;
Chris Wilsond1d78832010-11-21 09:23:48 +00003903 int length; /* limited by fault_in_pages_readable() */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003904
Chris Wilsond1d78832010-11-21 09:23:48 +00003905 /* First check for malicious input causing overflow */
3906 if (exec[i].relocation_count >
3907 INT_MAX / sizeof(struct drm_i915_gem_relocation_entry))
3908 return -EINVAL;
3909
3910 length = exec[i].relocation_count *
3911 sizeof(struct drm_i915_gem_relocation_entry);
Chris Wilson2549d6c2010-10-14 12:10:41 +01003912 if (!access_ok(VERIFY_READ, ptr, length))
3913 return -EFAULT;
3914
Chris Wilsonb5dc6082010-10-20 20:59:57 +01003915 /* we may also need to update the presumed offsets */
3916 if (!access_ok(VERIFY_WRITE, ptr, length))
3917 return -EFAULT;
3918
Chris Wilson2549d6c2010-10-14 12:10:41 +01003919 if (fault_in_pages_readable(ptr, length))
3920 return -EFAULT;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003921 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003922
Chris Wilson2549d6c2010-10-14 12:10:41 +01003923 return 0;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003924}
3925
Chris Wilson2549d6c2010-10-14 12:10:41 +01003926static int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003927i915_gem_do_execbuffer(struct drm_device *dev, void *data,
Chris Wilson9af90d12010-10-17 10:01:56 +01003928 struct drm_file *file,
Jesse Barnes76446ca2009-12-17 22:05:42 -05003929 struct drm_i915_gem_execbuffer2 *args,
3930 struct drm_i915_gem_exec_object2 *exec_list)
Eric Anholt673a3942008-07-30 12:06:12 -07003931{
3932 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00003933 struct drm_i915_gem_object **object_list = NULL;
3934 struct drm_i915_gem_object *batch_obj;
Eric Anholt201361a2009-03-11 12:30:04 -07003935 struct drm_clip_rect *cliprects = NULL;
Chris Wilson8dc5d142010-08-12 12:36:12 +01003936 struct drm_i915_gem_request *request = NULL;
Chris Wilson9af90d12010-10-17 10:01:56 +01003937 int ret, i, flips;
Eric Anholt673a3942008-07-30 12:06:12 -07003938 uint64_t exec_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003939
Zou Nan hai852835f2010-05-21 09:08:56 +08003940 struct intel_ring_buffer *ring = NULL;
3941
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003942 ret = i915_gem_check_is_wedged(dev);
3943 if (ret)
3944 return ret;
3945
Chris Wilson2549d6c2010-10-14 12:10:41 +01003946 ret = validate_exec_list(exec_list, args->buffer_count);
3947 if (ret)
3948 return ret;
3949
Eric Anholt673a3942008-07-30 12:06:12 -07003950#if WATCH_EXEC
3951 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3952 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3953#endif
Chris Wilson549f7362010-10-19 11:19:32 +01003954 switch (args->flags & I915_EXEC_RING_MASK) {
3955 case I915_EXEC_DEFAULT:
3956 case I915_EXEC_RENDER:
3957 ring = &dev_priv->render_ring;
3958 break;
3959 case I915_EXEC_BSD:
Zou Nan haid1b851f2010-05-21 09:08:57 +08003960 if (!HAS_BSD(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01003961 DRM_ERROR("execbuf with invalid ring (BSD)\n");
Zou Nan haid1b851f2010-05-21 09:08:57 +08003962 return -EINVAL;
3963 }
3964 ring = &dev_priv->bsd_ring;
Chris Wilson549f7362010-10-19 11:19:32 +01003965 break;
3966 case I915_EXEC_BLT:
3967 if (!HAS_BLT(dev)) {
3968 DRM_ERROR("execbuf with invalid ring (BLT)\n");
3969 return -EINVAL;
3970 }
3971 ring = &dev_priv->blt_ring;
3972 break;
3973 default:
3974 DRM_ERROR("execbuf with unknown ring: %d\n",
3975 (int)(args->flags & I915_EXEC_RING_MASK));
3976 return -EINVAL;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003977 }
3978
Eric Anholt4f481ed2008-09-10 14:22:49 -07003979 if (args->buffer_count < 1) {
3980 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3981 return -EINVAL;
3982 }
Eric Anholtc8e0f932009-11-22 03:49:37 +01003983 object_list = drm_malloc_ab(sizeof(*object_list), args->buffer_count);
Jesse Barnes76446ca2009-12-17 22:05:42 -05003984 if (object_list == NULL) {
3985 DRM_ERROR("Failed to allocate object list for %d buffers\n",
Eric Anholt673a3942008-07-30 12:06:12 -07003986 args->buffer_count);
3987 ret = -ENOMEM;
3988 goto pre_mutex_err;
3989 }
Eric Anholt673a3942008-07-30 12:06:12 -07003990
Eric Anholt201361a2009-03-11 12:30:04 -07003991 if (args->num_cliprects != 0) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003992 cliprects = kcalloc(args->num_cliprects, sizeof(*cliprects),
3993 GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003994 if (cliprects == NULL) {
3995 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -07003996 goto pre_mutex_err;
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003997 }
Eric Anholt201361a2009-03-11 12:30:04 -07003998
3999 ret = copy_from_user(cliprects,
4000 (struct drm_clip_rect __user *)
4001 (uintptr_t) args->cliprects_ptr,
4002 sizeof(*cliprects) * args->num_cliprects);
4003 if (ret != 0) {
4004 DRM_ERROR("copy %d cliprects failed: %d\n",
4005 args->num_cliprects, ret);
Dan Carpenterc877cdc2010-06-23 19:03:01 +02004006 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -07004007 goto pre_mutex_err;
4008 }
4009 }
4010
Chris Wilson8dc5d142010-08-12 12:36:12 +01004011 request = kzalloc(sizeof(*request), GFP_KERNEL);
4012 if (request == NULL) {
4013 ret = -ENOMEM;
Chris Wilsona198bc82009-02-06 16:55:20 +00004014 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07004015 }
4016
Chris Wilson76c1dec2010-09-25 11:22:51 +01004017 ret = i915_mutex_lock_interruptible(dev);
4018 if (ret)
4019 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07004020
Eric Anholt673a3942008-07-30 12:06:12 -07004021 if (dev_priv->mm.suspended) {
Eric Anholt673a3942008-07-30 12:06:12 -07004022 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00004023 ret = -EBUSY;
4024 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07004025 }
4026
Keith Packardac94a962008-11-20 23:30:27 -08004027 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07004028 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00004029 struct drm_i915_gem_object *obj;
Chris Wilson7e318e12010-10-27 13:43:39 +01004030
Chris Wilson05394f32010-11-08 19:18:58 +00004031 obj = to_intel_bo (drm_gem_object_lookup(dev, file,
4032 exec_list[i].handle));
4033 if (obj == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07004034 DRM_ERROR("Invalid object handle %d at index %d\n",
4035 exec_list[i].handle, i);
Chris Wilson0ce907f2010-01-23 20:26:35 +00004036 /* prevent error path from reading uninitialized data */
Chris Wilson05394f32010-11-08 19:18:58 +00004037 args->buffer_count = i;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01004038 ret = -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07004039 goto err;
4040 }
Chris Wilson05394f32010-11-08 19:18:58 +00004041 object_list[i] = obj;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004042
Chris Wilson05394f32010-11-08 19:18:58 +00004043 if (obj->in_execbuffer) {
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004044 DRM_ERROR("Object %p appears more than once in object list\n",
Chris Wilson05394f32010-11-08 19:18:58 +00004045 obj);
Chris Wilson0ce907f2010-01-23 20:26:35 +00004046 /* prevent error path from reading uninitialized data */
4047 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01004048 ret = -EINVAL;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004049 goto err;
4050 }
Chris Wilson05394f32010-11-08 19:18:58 +00004051 obj->in_execbuffer = true;
Chris Wilsoncaea7472010-11-12 13:53:37 +00004052 obj->pending_fenced_gpu_access = false;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004053 }
4054
Chris Wilson9af90d12010-10-17 10:01:56 +01004055 /* Move the objects en-masse into the GTT, evicting if necessary. */
Chris Wilsonbcf50e22010-11-21 22:07:12 +00004056 ret = i915_gem_execbuffer_reserve(dev, file,
4057 object_list, exec_list,
4058 args->buffer_count);
Chris Wilson9af90d12010-10-17 10:01:56 +01004059 if (ret)
4060 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07004061
Chris Wilson9af90d12010-10-17 10:01:56 +01004062 /* The objects are in their final locations, apply the relocations. */
Chris Wilsonbcf50e22010-11-21 22:07:12 +00004063 ret = i915_gem_execbuffer_relocate(dev, file,
4064 object_list, exec_list,
4065 args->buffer_count);
4066 if (ret) {
4067 if (ret == -EFAULT) {
4068 ret = i915_gem_execbuffer_relocate_slow(dev, file,
4069 object_list,
4070 exec_list,
4071 args->buffer_count);
4072 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
4073 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004074 if (ret)
4075 goto err;
4076 }
4077
Eric Anholt673a3942008-07-30 12:06:12 -07004078 /* Set the pending read domains for the batch buffer to COMMAND */
4079 batch_obj = object_list[args->buffer_count-1];
Chris Wilson05394f32010-11-08 19:18:58 +00004080 if (batch_obj->base.pending_write_domain) {
Chris Wilson5f26a2c2009-06-06 09:45:58 +01004081 DRM_ERROR("Attempting to use self-modifying batch buffer\n");
4082 ret = -EINVAL;
4083 goto err;
4084 }
Chris Wilson05394f32010-11-08 19:18:58 +00004085 batch_obj->base.pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Eric Anholt673a3942008-07-30 12:06:12 -07004086
Chris Wilson9af90d12010-10-17 10:01:56 +01004087 /* Sanity check the batch buffer */
Chris Wilson05394f32010-11-08 19:18:58 +00004088 exec_offset = batch_obj->gtt_offset;
Chris Wilson9af90d12010-10-17 10:01:56 +01004089 ret = i915_gem_check_execbuffer(args, exec_offset);
Chris Wilson83d60792009-06-06 09:45:57 +01004090 if (ret != 0) {
4091 DRM_ERROR("execbuf with invalid offset/length\n");
4092 goto err;
4093 }
4094
Chris Wilson13b29282010-11-01 12:22:48 +00004095 ret = i915_gem_execbuffer_move_to_gpu(dev, file, ring,
4096 object_list, args->buffer_count);
4097 if (ret)
4098 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07004099
Eric Anholt673a3942008-07-30 12:06:12 -07004100#if WATCH_COHERENCY
4101 for (i = 0; i < args->buffer_count; i++) {
4102 i915_gem_object_check_coherency(object_list[i],
4103 exec_list[i].handle);
4104 }
4105#endif
4106
Eric Anholt673a3942008-07-30 12:06:12 -07004107#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07004108 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07004109 args->batch_len,
4110 __func__,
4111 ~0);
4112#endif
4113
Chris Wilsone59f2ba2010-10-07 17:28:15 +01004114 /* Check for any pending flips. As we only maintain a flip queue depth
4115 * of 1, we can simply insert a WAIT for the next display flip prior
4116 * to executing the batch and avoid stalling the CPU.
4117 */
4118 flips = 0;
4119 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00004120 if (object_list[i]->base.write_domain)
4121 flips |= atomic_read(&object_list[i]->pending_flip);
Chris Wilsone59f2ba2010-10-07 17:28:15 +01004122 }
4123 if (flips) {
4124 int plane, flip_mask;
4125
4126 for (plane = 0; flips >> plane; plane++) {
4127 if (((flips >> plane) & 1) == 0)
4128 continue;
4129
4130 if (plane)
4131 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
4132 else
4133 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
4134
Chris Wilsone1f99ce2010-10-27 12:45:26 +01004135 ret = intel_ring_begin(ring, 2);
4136 if (ret)
4137 goto err;
4138
Chris Wilson78501ea2010-10-27 12:18:21 +01004139 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
4140 intel_ring_emit(ring, MI_NOOP);
4141 intel_ring_advance(ring);
Chris Wilsone59f2ba2010-10-07 17:28:15 +01004142 }
4143 }
4144
Eric Anholt673a3942008-07-30 12:06:12 -07004145 /* Exec the batchbuffer */
Chris Wilson78501ea2010-10-27 12:18:21 +01004146 ret = ring->dispatch_execbuffer(ring, args, cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07004147 if (ret) {
4148 DRM_ERROR("dispatch failed %d\n", ret);
4149 goto err;
4150 }
4151
Chris Wilson7e318e12010-10-27 13:43:39 +01004152 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00004153 struct drm_i915_gem_object *obj = object_list[i];
Chris Wilson7e318e12010-10-27 13:43:39 +01004154
Chris Wilson05394f32010-11-08 19:18:58 +00004155 obj->base.read_domains = obj->base.pending_read_domains;
4156 obj->base.write_domain = obj->base.pending_write_domain;
Chris Wilsoncaea7472010-11-12 13:53:37 +00004157 obj->fenced_gpu_access = obj->pending_fenced_gpu_access;
Chris Wilson7e318e12010-10-27 13:43:39 +01004158
4159 i915_gem_object_move_to_active(obj, ring);
Chris Wilson05394f32010-11-08 19:18:58 +00004160 if (obj->base.write_domain) {
4161 obj->dirty = 1;
4162 list_move_tail(&obj->gpu_write_list,
Chris Wilson7e318e12010-10-27 13:43:39 +01004163 &ring->gpu_write_list);
4164 intel_mark_busy(dev, obj);
4165 }
4166
4167 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00004168 obj->base.read_domains,
4169 obj->base.write_domain);
Chris Wilson7e318e12010-10-27 13:43:39 +01004170 }
4171
Eric Anholt673a3942008-07-30 12:06:12 -07004172 /*
4173 * Ensure that the commands in the batch buffer are
4174 * finished before the interrupt fires
4175 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01004176 i915_retire_commands(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07004177
Chris Wilson3cce4692010-10-27 16:11:02 +01004178 if (i915_add_request(dev, file, request, ring))
Chris Wilson5d97eb62010-11-10 20:40:02 +00004179 i915_gem_next_request_seqno(dev, ring);
Chris Wilson3cce4692010-10-27 16:11:02 +01004180 else
4181 request = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07004182
Eric Anholt673a3942008-07-30 12:06:12 -07004183err:
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004184 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00004185 object_list[i]->in_execbuffer = false;
4186 drm_gem_object_unreference(&object_list[i]->base);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004187 }
Julia Lawallaad87df2008-12-21 16:28:47 +01004188
Eric Anholt673a3942008-07-30 12:06:12 -07004189 mutex_unlock(&dev->struct_mutex);
4190
Chris Wilson93533c22010-01-31 10:40:48 +00004191pre_mutex_err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07004192 drm_free_large(object_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07004193 kfree(cliprects);
Chris Wilson8dc5d142010-08-12 12:36:12 +01004194 kfree(request);
Eric Anholt673a3942008-07-30 12:06:12 -07004195
4196 return ret;
4197}
4198
Jesse Barnes76446ca2009-12-17 22:05:42 -05004199/*
4200 * Legacy execbuffer just creates an exec2 list from the original exec object
4201 * list array and passes it to the real function.
4202 */
4203int
4204i915_gem_execbuffer(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004205 struct drm_file *file)
Jesse Barnes76446ca2009-12-17 22:05:42 -05004206{
4207 struct drm_i915_gem_execbuffer *args = data;
4208 struct drm_i915_gem_execbuffer2 exec2;
4209 struct drm_i915_gem_exec_object *exec_list = NULL;
4210 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4211 int ret, i;
4212
4213#if WATCH_EXEC
4214 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4215 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4216#endif
4217
4218 if (args->buffer_count < 1) {
4219 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
4220 return -EINVAL;
4221 }
4222
4223 /* Copy in the exec list from userland */
4224 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
4225 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4226 if (exec_list == NULL || exec2_list == NULL) {
4227 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4228 args->buffer_count);
4229 drm_free_large(exec_list);
4230 drm_free_large(exec2_list);
4231 return -ENOMEM;
4232 }
4233 ret = copy_from_user(exec_list,
4234 (struct drm_i915_relocation_entry __user *)
4235 (uintptr_t) args->buffers_ptr,
4236 sizeof(*exec_list) * args->buffer_count);
4237 if (ret != 0) {
4238 DRM_ERROR("copy %d exec entries failed %d\n",
4239 args->buffer_count, ret);
4240 drm_free_large(exec_list);
4241 drm_free_large(exec2_list);
4242 return -EFAULT;
4243 }
4244
4245 for (i = 0; i < args->buffer_count; i++) {
4246 exec2_list[i].handle = exec_list[i].handle;
4247 exec2_list[i].relocation_count = exec_list[i].relocation_count;
4248 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
4249 exec2_list[i].alignment = exec_list[i].alignment;
4250 exec2_list[i].offset = exec_list[i].offset;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004251 if (INTEL_INFO(dev)->gen < 4)
Jesse Barnes76446ca2009-12-17 22:05:42 -05004252 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
4253 else
4254 exec2_list[i].flags = 0;
4255 }
4256
4257 exec2.buffers_ptr = args->buffers_ptr;
4258 exec2.buffer_count = args->buffer_count;
4259 exec2.batch_start_offset = args->batch_start_offset;
4260 exec2.batch_len = args->batch_len;
4261 exec2.DR1 = args->DR1;
4262 exec2.DR4 = args->DR4;
4263 exec2.num_cliprects = args->num_cliprects;
4264 exec2.cliprects_ptr = args->cliprects_ptr;
Zou Nan hai852835f2010-05-21 09:08:56 +08004265 exec2.flags = I915_EXEC_RENDER;
Jesse Barnes76446ca2009-12-17 22:05:42 -05004266
Chris Wilson05394f32010-11-08 19:18:58 +00004267 ret = i915_gem_do_execbuffer(dev, data, file, &exec2, exec2_list);
Jesse Barnes76446ca2009-12-17 22:05:42 -05004268 if (!ret) {
4269 /* Copy the new buffer offsets back to the user's exec list. */
4270 for (i = 0; i < args->buffer_count; i++)
4271 exec_list[i].offset = exec2_list[i].offset;
4272 /* ... and back out to userspace */
4273 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4274 (uintptr_t) args->buffers_ptr,
4275 exec_list,
4276 sizeof(*exec_list) * args->buffer_count);
4277 if (ret) {
4278 ret = -EFAULT;
4279 DRM_ERROR("failed to copy %d exec entries "
4280 "back to user (%d)\n",
4281 args->buffer_count, ret);
4282 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004283 }
4284
4285 drm_free_large(exec_list);
4286 drm_free_large(exec2_list);
4287 return ret;
4288}
4289
4290int
4291i915_gem_execbuffer2(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004292 struct drm_file *file)
Jesse Barnes76446ca2009-12-17 22:05:42 -05004293{
4294 struct drm_i915_gem_execbuffer2 *args = data;
4295 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4296 int ret;
4297
4298#if WATCH_EXEC
4299 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4300 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4301#endif
4302
4303 if (args->buffer_count < 1) {
4304 DRM_ERROR("execbuf2 with %d buffers\n", args->buffer_count);
4305 return -EINVAL;
4306 }
4307
4308 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4309 if (exec2_list == NULL) {
4310 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4311 args->buffer_count);
4312 return -ENOMEM;
4313 }
4314 ret = copy_from_user(exec2_list,
4315 (struct drm_i915_relocation_entry __user *)
4316 (uintptr_t) args->buffers_ptr,
4317 sizeof(*exec2_list) * args->buffer_count);
4318 if (ret != 0) {
4319 DRM_ERROR("copy %d exec entries failed %d\n",
4320 args->buffer_count, ret);
4321 drm_free_large(exec2_list);
4322 return -EFAULT;
4323 }
4324
Chris Wilson05394f32010-11-08 19:18:58 +00004325 ret = i915_gem_do_execbuffer(dev, data, file, args, exec2_list);
Jesse Barnes76446ca2009-12-17 22:05:42 -05004326 if (!ret) {
4327 /* Copy the new buffer offsets back to the user's exec list. */
4328 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4329 (uintptr_t) args->buffers_ptr,
4330 exec2_list,
4331 sizeof(*exec2_list) * args->buffer_count);
4332 if (ret) {
4333 ret = -EFAULT;
4334 DRM_ERROR("failed to copy %d exec entries "
4335 "back to user (%d)\n",
4336 args->buffer_count, ret);
4337 }
4338 }
4339
4340 drm_free_large(exec2_list);
4341 return ret;
4342}
4343
Eric Anholt673a3942008-07-30 12:06:12 -07004344int
Chris Wilson05394f32010-11-08 19:18:58 +00004345i915_gem_object_pin(struct drm_i915_gem_object *obj,
4346 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004347 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07004348{
Chris Wilson05394f32010-11-08 19:18:58 +00004349 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004350 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07004351 int ret;
4352
Chris Wilson05394f32010-11-08 19:18:58 +00004353 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01004354 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004355
Chris Wilson05394f32010-11-08 19:18:58 +00004356 if (obj->gtt_space != NULL) {
4357 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
4358 (map_and_fenceable && !obj->map_and_fenceable)) {
4359 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004360 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004361 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
4362 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00004363 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004364 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00004365 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004366 ret = i915_gem_object_unbind(obj);
4367 if (ret)
4368 return ret;
4369 }
4370 }
4371
Chris Wilson05394f32010-11-08 19:18:58 +00004372 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004373 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004374 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01004375 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07004376 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00004377 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004378
Chris Wilson05394f32010-11-08 19:18:58 +00004379 if (obj->pin_count++ == 0) {
4380 i915_gem_info_add_pin(dev_priv, obj, map_and_fenceable);
4381 if (!obj->active)
4382 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004383 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004384 }
Chris Wilson05394f32010-11-08 19:18:58 +00004385 BUG_ON(!obj->pin_mappable && map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07004386
Chris Wilson23bc5982010-09-29 16:10:57 +01004387 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004388 return 0;
4389}
4390
4391void
Chris Wilson05394f32010-11-08 19:18:58 +00004392i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004393{
Chris Wilson05394f32010-11-08 19:18:58 +00004394 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07004395 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07004396
Chris Wilson23bc5982010-09-29 16:10:57 +01004397 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00004398 BUG_ON(obj->pin_count == 0);
4399 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004400
Chris Wilson05394f32010-11-08 19:18:58 +00004401 if (--obj->pin_count == 0) {
4402 if (!obj->active)
4403 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07004404 &dev_priv->mm.inactive_list);
Chris Wilson05394f32010-11-08 19:18:58 +00004405 i915_gem_info_remove_pin(dev_priv, obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004406 }
Chris Wilson23bc5982010-09-29 16:10:57 +01004407 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004408}
4409
4410int
4411i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004412 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004413{
4414 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004415 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004416 int ret;
4417
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004418 ret = i915_mutex_lock_interruptible(dev);
4419 if (ret)
4420 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004421
Chris Wilson05394f32010-11-08 19:18:58 +00004422 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07004423 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004424 ret = -ENOENT;
4425 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004426 }
Eric Anholt673a3942008-07-30 12:06:12 -07004427
Chris Wilson05394f32010-11-08 19:18:58 +00004428 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004429 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004430 ret = -EINVAL;
4431 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004432 }
4433
Chris Wilson05394f32010-11-08 19:18:58 +00004434 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004435 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
4436 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004437 ret = -EINVAL;
4438 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004439 }
4440
Chris Wilson05394f32010-11-08 19:18:58 +00004441 obj->user_pin_count++;
4442 obj->pin_filp = file;
4443 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01004444 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004445 if (ret)
4446 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004447 }
4448
4449 /* XXX - flush the CPU caches for pinned objects
4450 * as the X server doesn't manage domains yet
4451 */
Eric Anholte47c68e2008-11-14 13:35:19 -08004452 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004453 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004454out:
Chris Wilson05394f32010-11-08 19:18:58 +00004455 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004456unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004457 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004458 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004459}
4460
4461int
4462i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004463 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004464{
4465 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004466 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004467 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004468
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004469 ret = i915_mutex_lock_interruptible(dev);
4470 if (ret)
4471 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004472
Chris Wilson05394f32010-11-08 19:18:58 +00004473 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07004474 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004475 ret = -ENOENT;
4476 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004477 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004478
Chris Wilson05394f32010-11-08 19:18:58 +00004479 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004480 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
4481 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004482 ret = -EINVAL;
4483 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004484 }
Chris Wilson05394f32010-11-08 19:18:58 +00004485 obj->user_pin_count--;
4486 if (obj->user_pin_count == 0) {
4487 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004488 i915_gem_object_unpin(obj);
4489 }
Eric Anholt673a3942008-07-30 12:06:12 -07004490
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004491out:
Chris Wilson05394f32010-11-08 19:18:58 +00004492 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004493unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004494 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004495 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004496}
4497
4498int
4499i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004500 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004501{
4502 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004503 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004504 int ret;
4505
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004506 ret = i915_mutex_lock_interruptible(dev);
4507 if (ret)
4508 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004509
Chris Wilson05394f32010-11-08 19:18:58 +00004510 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07004511 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004512 ret = -ENOENT;
4513 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004514 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004515
Chris Wilson0be555b2010-08-04 15:36:30 +01004516 /* Count all active objects as busy, even if they are currently not used
4517 * by the gpu. Users of this interface expect objects to eventually
4518 * become non-busy without any further actions, therefore emit any
4519 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004520 */
Chris Wilson05394f32010-11-08 19:18:58 +00004521 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01004522 if (args->busy) {
4523 /* Unconditionally flush objects, even when the gpu still uses this
4524 * object. Userspace calling this function indicates that it wants to
4525 * use this buffer rather sooner than later, so issuing the required
4526 * flush earlier is beneficial.
4527 */
Chris Wilson05394f32010-11-08 19:18:58 +00004528 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
4529 i915_gem_flush_ring(dev, obj->ring,
4530 0, obj->base.write_domain);
Chris Wilson0be555b2010-08-04 15:36:30 +01004531
4532 /* Update the active list for the hardware's current position.
4533 * Otherwise this only updates on a delayed timer or when irqs
4534 * are actually unmasked, and our working set ends up being
4535 * larger than required.
4536 */
Chris Wilson05394f32010-11-08 19:18:58 +00004537 i915_gem_retire_requests_ring(dev, obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01004538
Chris Wilson05394f32010-11-08 19:18:58 +00004539 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01004540 }
Eric Anholt673a3942008-07-30 12:06:12 -07004541
Chris Wilson05394f32010-11-08 19:18:58 +00004542 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004543unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004544 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004545 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004546}
4547
4548int
4549i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4550 struct drm_file *file_priv)
4551{
4552 return i915_gem_ring_throttle(dev, file_priv);
4553}
4554
Chris Wilson3ef94da2009-09-14 16:50:29 +01004555int
4556i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4557 struct drm_file *file_priv)
4558{
4559 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004560 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004561 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004562
4563 switch (args->madv) {
4564 case I915_MADV_DONTNEED:
4565 case I915_MADV_WILLNEED:
4566 break;
4567 default:
4568 return -EINVAL;
4569 }
4570
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004571 ret = i915_mutex_lock_interruptible(dev);
4572 if (ret)
4573 return ret;
4574
Chris Wilson05394f32010-11-08 19:18:58 +00004575 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilson3ef94da2009-09-14 16:50:29 +01004576 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004577 ret = -ENOENT;
4578 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004579 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004580
Chris Wilson05394f32010-11-08 19:18:58 +00004581 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004582 ret = -EINVAL;
4583 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004584 }
4585
Chris Wilson05394f32010-11-08 19:18:58 +00004586 if (obj->madv != __I915_MADV_PURGED)
4587 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004588
Chris Wilson2d7ef392009-09-20 23:13:10 +01004589 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00004590 if (i915_gem_object_is_purgeable(obj) &&
4591 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004592 i915_gem_object_truncate(obj);
4593
Chris Wilson05394f32010-11-08 19:18:58 +00004594 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004595
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004596out:
Chris Wilson05394f32010-11-08 19:18:58 +00004597 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004598unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004599 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004600 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004601}
4602
Chris Wilson05394f32010-11-08 19:18:58 +00004603struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4604 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004605{
Chris Wilson73aa8082010-09-30 11:46:12 +01004606 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00004607 struct drm_i915_gem_object *obj;
4608
4609 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
4610 if (obj == NULL)
4611 return NULL;
4612
4613 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
4614 kfree(obj);
4615 return NULL;
4616 }
4617
Chris Wilson73aa8082010-09-30 11:46:12 +01004618 i915_gem_info_add_obj(dev_priv, size);
4619
Daniel Vetterc397b902010-04-09 19:05:07 +00004620 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4621 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4622
4623 obj->agp_type = AGP_USER_MEMORY;
Daniel Vetter62b8b212010-04-09 19:05:08 +00004624 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00004625 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01004626 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01004627 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01004628 INIT_LIST_HEAD(&obj->ring_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004629 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004630 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01004631 /* Avoid an unnecessary call to unbind on the first bind. */
4632 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00004633
Chris Wilson05394f32010-11-08 19:18:58 +00004634 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004635}
4636
Eric Anholt673a3942008-07-30 12:06:12 -07004637int i915_gem_init_object(struct drm_gem_object *obj)
4638{
Daniel Vetterc397b902010-04-09 19:05:07 +00004639 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004640
Eric Anholt673a3942008-07-30 12:06:12 -07004641 return 0;
4642}
4643
Chris Wilson05394f32010-11-08 19:18:58 +00004644static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004645{
Chris Wilson05394f32010-11-08 19:18:58 +00004646 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01004647 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01004648 int ret;
4649
4650 ret = i915_gem_object_unbind(obj);
4651 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00004652 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01004653 &dev_priv->mm.deferred_free_list);
4654 return;
4655 }
4656
Chris Wilson05394f32010-11-08 19:18:58 +00004657 if (obj->base.map_list.map)
Chris Wilsonbe726152010-07-23 23:18:50 +01004658 i915_gem_free_mmap_offset(obj);
4659
Chris Wilson05394f32010-11-08 19:18:58 +00004660 drm_gem_object_release(&obj->base);
4661 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004662
Chris Wilson05394f32010-11-08 19:18:58 +00004663 kfree(obj->page_cpu_valid);
4664 kfree(obj->bit_17);
4665 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004666}
4667
Chris Wilson05394f32010-11-08 19:18:58 +00004668void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004669{
Chris Wilson05394f32010-11-08 19:18:58 +00004670 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
4671 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07004672
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004673 trace_i915_gem_object_destroy(obj);
4674
Chris Wilson05394f32010-11-08 19:18:58 +00004675 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07004676 i915_gem_object_unpin(obj);
4677
Chris Wilson05394f32010-11-08 19:18:58 +00004678 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004679 i915_gem_detach_phys_object(dev, obj);
4680
Chris Wilsonbe726152010-07-23 23:18:50 +01004681 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004682}
4683
Jesse Barnes5669fca2009-02-17 15:13:31 -08004684int
Eric Anholt673a3942008-07-30 12:06:12 -07004685i915_gem_idle(struct drm_device *dev)
4686{
4687 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004688 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004689
Keith Packard6dbe2772008-10-14 21:41:13 -07004690 mutex_lock(&dev->struct_mutex);
4691
Chris Wilson87acb0a2010-10-19 10:13:00 +01004692 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004693 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004694 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004695 }
Eric Anholt673a3942008-07-30 12:06:12 -07004696
Chris Wilson29105cc2010-01-07 10:39:13 +00004697 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004698 if (ret) {
4699 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004700 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004701 }
Eric Anholt673a3942008-07-30 12:06:12 -07004702
Chris Wilson29105cc2010-01-07 10:39:13 +00004703 /* Under UMS, be paranoid and evict. */
4704 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00004705 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00004706 if (ret) {
4707 mutex_unlock(&dev->struct_mutex);
4708 return ret;
4709 }
4710 }
4711
Chris Wilson312817a2010-11-22 11:50:11 +00004712 i915_gem_reset_fences(dev);
4713
Chris Wilson29105cc2010-01-07 10:39:13 +00004714 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4715 * We need to replace this with a semaphore, or something.
4716 * And not confound mm.suspended!
4717 */
4718 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02004719 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004720
4721 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004722 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004723
Keith Packard6dbe2772008-10-14 21:41:13 -07004724 mutex_unlock(&dev->struct_mutex);
4725
Chris Wilson29105cc2010-01-07 10:39:13 +00004726 /* Cancel the retire work handler, which should be idle now. */
4727 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4728
Eric Anholt673a3942008-07-30 12:06:12 -07004729 return 0;
4730}
4731
Eric Anholt673a3942008-07-30 12:06:12 -07004732int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004733i915_gem_init_ringbuffer(struct drm_device *dev)
4734{
4735 drm_i915_private_t *dev_priv = dev->dev_private;
4736 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004737
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004738 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004739 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004740 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004741
4742 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004743 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004744 if (ret)
4745 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004746 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004747
Chris Wilson549f7362010-10-19 11:19:32 +01004748 if (HAS_BLT(dev)) {
4749 ret = intel_init_blt_ring_buffer(dev);
4750 if (ret)
4751 goto cleanup_bsd_ring;
4752 }
4753
Chris Wilson6f392d5482010-08-07 11:01:22 +01004754 dev_priv->next_seqno = 1;
4755
Chris Wilson68f95ba2010-05-27 13:18:22 +01004756 return 0;
4757
Chris Wilson549f7362010-10-19 11:19:32 +01004758cleanup_bsd_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004759 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004760cleanup_render_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004761 intel_cleanup_ring_buffer(&dev_priv->render_ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004762 return ret;
4763}
4764
4765void
4766i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4767{
4768 drm_i915_private_t *dev_priv = dev->dev_private;
4769
Chris Wilson78501ea2010-10-27 12:18:21 +01004770 intel_cleanup_ring_buffer(&dev_priv->render_ring);
4771 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
4772 intel_cleanup_ring_buffer(&dev_priv->blt_ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004773}
4774
4775int
Eric Anholt673a3942008-07-30 12:06:12 -07004776i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4777 struct drm_file *file_priv)
4778{
4779 drm_i915_private_t *dev_priv = dev->dev_private;
4780 int ret;
4781
Jesse Barnes79e53942008-11-07 14:24:08 -08004782 if (drm_core_check_feature(dev, DRIVER_MODESET))
4783 return 0;
4784
Ben Gamariba1234d2009-09-14 17:48:47 -04004785 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004786 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04004787 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004788 }
4789
Eric Anholt673a3942008-07-30 12:06:12 -07004790 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004791 dev_priv->mm.suspended = 0;
4792
4793 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004794 if (ret != 0) {
4795 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004796 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004797 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004798
Chris Wilson69dc4982010-10-19 10:36:51 +01004799 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004800 BUG_ON(!list_empty(&dev_priv->render_ring.active_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004801 BUG_ON(!list_empty(&dev_priv->bsd_ring.active_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004802 BUG_ON(!list_empty(&dev_priv->blt_ring.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004803 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4804 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004805 BUG_ON(!list_empty(&dev_priv->render_ring.request_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004806 BUG_ON(!list_empty(&dev_priv->bsd_ring.request_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004807 BUG_ON(!list_empty(&dev_priv->blt_ring.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004808 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004809
Chris Wilson5f353082010-06-07 14:03:03 +01004810 ret = drm_irq_install(dev);
4811 if (ret)
4812 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004813
Eric Anholt673a3942008-07-30 12:06:12 -07004814 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004815
4816cleanup_ringbuffer:
4817 mutex_lock(&dev->struct_mutex);
4818 i915_gem_cleanup_ringbuffer(dev);
4819 dev_priv->mm.suspended = 1;
4820 mutex_unlock(&dev->struct_mutex);
4821
4822 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004823}
4824
4825int
4826i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4827 struct drm_file *file_priv)
4828{
Jesse Barnes79e53942008-11-07 14:24:08 -08004829 if (drm_core_check_feature(dev, DRIVER_MODESET))
4830 return 0;
4831
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004832 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07004833 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004834}
4835
4836void
4837i915_gem_lastclose(struct drm_device *dev)
4838{
4839 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004840
Eric Anholte806b492009-01-22 09:56:58 -08004841 if (drm_core_check_feature(dev, DRIVER_MODESET))
4842 return;
4843
Keith Packard6dbe2772008-10-14 21:41:13 -07004844 ret = i915_gem_idle(dev);
4845 if (ret)
4846 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004847}
4848
Chris Wilson64193402010-10-24 12:38:05 +01004849static void
4850init_ring_lists(struct intel_ring_buffer *ring)
4851{
4852 INIT_LIST_HEAD(&ring->active_list);
4853 INIT_LIST_HEAD(&ring->request_list);
4854 INIT_LIST_HEAD(&ring->gpu_write_list);
4855}
4856
Eric Anholt673a3942008-07-30 12:06:12 -07004857void
4858i915_gem_load(struct drm_device *dev)
4859{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004860 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07004861 drm_i915_private_t *dev_priv = dev->dev_private;
4862
Chris Wilson69dc4982010-10-19 10:36:51 +01004863 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004864 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
4865 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004866 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004867 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01004868 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01004869 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson64193402010-10-24 12:38:05 +01004870 init_ring_lists(&dev_priv->render_ring);
4871 init_ring_lists(&dev_priv->bsd_ring);
4872 init_ring_lists(&dev_priv->blt_ring);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004873 for (i = 0; i < 16; i++)
4874 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004875 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4876 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004877 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01004878
Dave Airlie94400122010-07-20 13:15:31 +10004879 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4880 if (IS_GEN3(dev)) {
4881 u32 tmp = I915_READ(MI_ARB_STATE);
4882 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
4883 /* arb state is a masked write, so set bit + bit in mask */
4884 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
4885 I915_WRITE(MI_ARB_STATE, tmp);
4886 }
4887 }
4888
Jesse Barnesde151cf2008-11-12 10:03:55 -08004889 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004890 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4891 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004892
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004893 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004894 dev_priv->num_fence_regs = 16;
4895 else
4896 dev_priv->num_fence_regs = 8;
4897
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004898 /* Initialize fence registers to zero */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004899 switch (INTEL_INFO(dev)->gen) {
4900 case 6:
4901 for (i = 0; i < 16; i++)
4902 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (i * 8), 0);
4903 break;
4904 case 5:
4905 case 4:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004906 for (i = 0; i < 16; i++)
4907 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004908 break;
4909 case 3:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004910 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4911 for (i = 0; i < 8; i++)
4912 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004913 case 2:
4914 for (i = 0; i < 8; i++)
4915 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
4916 break;
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004917 }
Eric Anholt673a3942008-07-30 12:06:12 -07004918 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004919 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004920
4921 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4922 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4923 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004924}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004925
4926/*
4927 * Create a physically contiguous memory object for this object
4928 * e.g. for cursor + overlay regs
4929 */
Chris Wilson995b6762010-08-20 13:23:26 +01004930static int i915_gem_init_phys_object(struct drm_device *dev,
4931 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004932{
4933 drm_i915_private_t *dev_priv = dev->dev_private;
4934 struct drm_i915_gem_phys_object *phys_obj;
4935 int ret;
4936
4937 if (dev_priv->mm.phys_objs[id - 1] || !size)
4938 return 0;
4939
Eric Anholt9a298b22009-03-24 12:23:04 -07004940 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004941 if (!phys_obj)
4942 return -ENOMEM;
4943
4944 phys_obj->id = id;
4945
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004946 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004947 if (!phys_obj->handle) {
4948 ret = -ENOMEM;
4949 goto kfree_obj;
4950 }
4951#ifdef CONFIG_X86
4952 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4953#endif
4954
4955 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4956
4957 return 0;
4958kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004959 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004960 return ret;
4961}
4962
Chris Wilson995b6762010-08-20 13:23:26 +01004963static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004964{
4965 drm_i915_private_t *dev_priv = dev->dev_private;
4966 struct drm_i915_gem_phys_object *phys_obj;
4967
4968 if (!dev_priv->mm.phys_objs[id - 1])
4969 return;
4970
4971 phys_obj = dev_priv->mm.phys_objs[id - 1];
4972 if (phys_obj->cur_obj) {
4973 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4974 }
4975
4976#ifdef CONFIG_X86
4977 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4978#endif
4979 drm_pci_free(dev, phys_obj->handle);
4980 kfree(phys_obj);
4981 dev_priv->mm.phys_objs[id - 1] = NULL;
4982}
4983
4984void i915_gem_free_all_phys_object(struct drm_device *dev)
4985{
4986 int i;
4987
Dave Airlie260883c2009-01-22 17:58:49 +10004988 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004989 i915_gem_free_phys_object(dev, i);
4990}
4991
4992void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004993 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004994{
Chris Wilson05394f32010-11-08 19:18:58 +00004995 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004996 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004997 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004998 int page_count;
4999
Chris Wilson05394f32010-11-08 19:18:58 +00005000 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10005001 return;
Chris Wilson05394f32010-11-08 19:18:58 +00005002 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005003
Chris Wilson05394f32010-11-08 19:18:58 +00005004 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005005 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01005006 struct page *page = read_cache_page_gfp(mapping, i,
5007 GFP_HIGHUSER | __GFP_RECLAIMABLE);
5008 if (!IS_ERR(page)) {
5009 char *dst = kmap_atomic(page);
5010 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
5011 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005012
Chris Wilsone5281cc2010-10-28 13:45:36 +01005013 drm_clflush_pages(&page, 1);
5014
5015 set_page_dirty(page);
5016 mark_page_accessed(page);
5017 page_cache_release(page);
5018 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10005019 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01005020 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01005021
Chris Wilson05394f32010-11-08 19:18:58 +00005022 obj->phys_obj->cur_obj = NULL;
5023 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005024}
5025
5026int
5027i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00005028 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005029 int id,
5030 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10005031{
Chris Wilson05394f32010-11-08 19:18:58 +00005032 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005033 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005034 int ret = 0;
5035 int page_count;
5036 int i;
5037
5038 if (id > I915_MAX_PHYS_OBJECT)
5039 return -EINVAL;
5040
Chris Wilson05394f32010-11-08 19:18:58 +00005041 if (obj->phys_obj) {
5042 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10005043 return 0;
5044 i915_gem_detach_phys_object(dev, obj);
5045 }
5046
Dave Airlie71acb5e2008-12-30 20:31:46 +10005047 /* create a new object */
5048 if (!dev_priv->mm.phys_objs[id - 1]) {
5049 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00005050 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005051 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00005052 DRM_ERROR("failed to init phys object %d size: %zu\n",
5053 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01005054 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005055 }
5056 }
5057
5058 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00005059 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
5060 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005061
Chris Wilson05394f32010-11-08 19:18:58 +00005062 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005063
5064 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01005065 struct page *page;
5066 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005067
Chris Wilsone5281cc2010-10-28 13:45:36 +01005068 page = read_cache_page_gfp(mapping, i,
5069 GFP_HIGHUSER | __GFP_RECLAIMABLE);
5070 if (IS_ERR(page))
5071 return PTR_ERR(page);
5072
Chris Wilsonff75b9b2010-10-30 22:52:31 +01005073 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00005074 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005075 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07005076 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01005077
5078 mark_page_accessed(page);
5079 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005080 }
5081
5082 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005083}
5084
5085static int
Chris Wilson05394f32010-11-08 19:18:58 +00005086i915_gem_phys_pwrite(struct drm_device *dev,
5087 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10005088 struct drm_i915_gem_pwrite *args,
5089 struct drm_file *file_priv)
5090{
Chris Wilson05394f32010-11-08 19:18:58 +00005091 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00005092 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005093
Chris Wilsonb47b30c2010-11-08 01:12:29 +00005094 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
5095 unsigned long unwritten;
5096
5097 /* The physical object once assigned is fixed for the lifetime
5098 * of the obj, so we can safely drop the lock and continue
5099 * to access vaddr.
5100 */
5101 mutex_unlock(&dev->struct_mutex);
5102 unwritten = copy_from_user(vaddr, user_data, args->size);
5103 mutex_lock(&dev->struct_mutex);
5104 if (unwritten)
5105 return -EFAULT;
5106 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10005107
Daniel Vetter40ce6572010-11-05 18:12:18 +01005108 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10005109 return 0;
5110}
Eric Anholtb9624422009-06-03 07:27:35 +00005111
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005112void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005113{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005114 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005115
5116 /* Clean up our request list when the client is going away, so that
5117 * later retire_requests won't dereference our soon-to-be-gone
5118 * file_priv.
5119 */
Chris Wilson1c255952010-09-26 11:03:27 +01005120 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005121 while (!list_empty(&file_priv->mm.request_list)) {
5122 struct drm_i915_gem_request *request;
5123
5124 request = list_first_entry(&file_priv->mm.request_list,
5125 struct drm_i915_gem_request,
5126 client_list);
5127 list_del(&request->client_list);
5128 request->file_priv = NULL;
5129 }
Chris Wilson1c255952010-09-26 11:03:27 +01005130 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005131}
Chris Wilson31169712009-09-14 16:50:28 +01005132
Chris Wilson31169712009-09-14 16:50:28 +01005133static int
Chris Wilson1637ef42010-04-20 17:10:35 +01005134i915_gpu_is_active(struct drm_device *dev)
5135{
5136 drm_i915_private_t *dev_priv = dev->dev_private;
5137 int lists_empty;
5138
Chris Wilson1637ef42010-04-20 17:10:35 +01005139 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01005140 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01005141
5142 return !lists_empty;
5143}
5144
5145static int
Chris Wilson17250b72010-10-28 12:51:39 +01005146i915_gem_inactive_shrink(struct shrinker *shrinker,
5147 int nr_to_scan,
5148 gfp_t gfp_mask)
Chris Wilson31169712009-09-14 16:50:28 +01005149{
Chris Wilson17250b72010-10-28 12:51:39 +01005150 struct drm_i915_private *dev_priv =
5151 container_of(shrinker,
5152 struct drm_i915_private,
5153 mm.inactive_shrinker);
5154 struct drm_device *dev = dev_priv->dev;
5155 struct drm_i915_gem_object *obj, *next;
5156 int cnt;
5157
5158 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01005159 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005160
5161 /* "fast-path" to count number of available objects */
5162 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01005163 cnt = 0;
5164 list_for_each_entry(obj,
5165 &dev_priv->mm.inactive_list,
5166 mm_list)
5167 cnt++;
5168 mutex_unlock(&dev->struct_mutex);
5169 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005170 }
5171
Chris Wilson1637ef42010-04-20 17:10:35 +01005172rescan:
Chris Wilson31169712009-09-14 16:50:28 +01005173 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01005174 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01005175
Chris Wilson17250b72010-10-28 12:51:39 +01005176 list_for_each_entry_safe(obj, next,
5177 &dev_priv->mm.inactive_list,
5178 mm_list) {
5179 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson05394f32010-11-08 19:18:58 +00005180 i915_gem_object_unbind(obj);
Chris Wilson17250b72010-10-28 12:51:39 +01005181 if (--nr_to_scan == 0)
5182 break;
Chris Wilson31169712009-09-14 16:50:28 +01005183 }
Chris Wilson31169712009-09-14 16:50:28 +01005184 }
5185
5186 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01005187 cnt = 0;
5188 list_for_each_entry_safe(obj, next,
5189 &dev_priv->mm.inactive_list,
5190 mm_list) {
5191 if (nr_to_scan) {
Chris Wilson05394f32010-11-08 19:18:58 +00005192 i915_gem_object_unbind(obj);
Chris Wilson17250b72010-10-28 12:51:39 +01005193 nr_to_scan--;
5194 } else
5195 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01005196 }
5197
Chris Wilson17250b72010-10-28 12:51:39 +01005198 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01005199 /*
5200 * We are desperate for pages, so as a last resort, wait
5201 * for the GPU to finish and discard whatever we can.
5202 * This has a dramatic impact to reduce the number of
5203 * OOM-killer events whilst running the GPU aggressively.
5204 */
Chris Wilson17250b72010-10-28 12:51:39 +01005205 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01005206 goto rescan;
5207 }
Chris Wilson17250b72010-10-28 12:51:39 +01005208 mutex_unlock(&dev->struct_mutex);
5209 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005210}