blob: f2038f6df3b095872fcfc077fae278bfa5f2771f [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070035#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include <linux/pci.h>
Zhenyu Wangf8f235e2010-08-27 11:08:57 +080037#include <linux/intel-gtt.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson0f8c6d72010-11-01 12:38:44 +000039struct change_domains {
40 uint32_t invalidate_domains;
41 uint32_t flush_domains;
42 uint32_t flush_rings;
43};
44
Chris Wilsona00b10c2010-09-24 21:15:47 +010045static uint32_t i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj_priv);
46static uint32_t i915_gem_get_gtt_size(struct drm_i915_gem_object *obj_priv);
Daniel Vetterba3d8d72010-02-11 22:37:04 +010047
48static int i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj,
49 bool pipelined);
Eric Anholte47c68e2008-11-14 13:35:19 -080050static void i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj);
51static void i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj);
Eric Anholte47c68e2008-11-14 13:35:19 -080052static int i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj,
53 int write);
54static int i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
55 uint64_t offset,
56 uint64_t size);
57static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj);
Chris Wilson2cf34d72010-09-14 13:03:28 +010058static int i915_gem_object_wait_rendering(struct drm_gem_object *obj,
59 bool interruptible);
Jesse Barnesde151cf2008-11-12 10:03:55 -080060static int i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
Chris Wilsona00b10c2010-09-24 21:15:47 +010061 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +010062 bool map_and_fenceable);
Jesse Barnesde151cf2008-11-12 10:03:55 -080063static void i915_gem_clear_fence_reg(struct drm_gem_object *obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +100064static int i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
65 struct drm_i915_gem_pwrite *args,
66 struct drm_file *file_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +010067static void i915_gem_free_object_tail(struct drm_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070068
Chris Wilson17250b72010-10-28 12:51:39 +010069static int i915_gem_inactive_shrink(struct shrinker *shrinker,
70 int nr_to_scan,
71 gfp_t gfp_mask);
72
Chris Wilson31169712009-09-14 16:50:28 +010073
Chris Wilson73aa8082010-09-30 11:46:12 +010074/* some bookkeeping */
75static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
76 size_t size)
77{
78 dev_priv->mm.object_count++;
79 dev_priv->mm.object_memory += size;
80}
81
82static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
83 size_t size)
84{
85 dev_priv->mm.object_count--;
86 dev_priv->mm.object_memory -= size;
87}
88
89static void i915_gem_info_add_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +010090 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +010091{
92 dev_priv->mm.gtt_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +010093 dev_priv->mm.gtt_memory += obj->gtt_space->size;
94 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +020095 dev_priv->mm.mappable_gtt_used +=
Chris Wilsona00b10c2010-09-24 21:15:47 +010096 min_t(size_t, obj->gtt_space->size,
97 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +020098 }
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100102 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100103{
104 dev_priv->mm.gtt_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100105 dev_priv->mm.gtt_memory -= obj->gtt_space->size;
106 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200107 dev_priv->mm.mappable_gtt_used -=
Chris Wilsona00b10c2010-09-24 21:15:47 +0100108 min_t(size_t, obj->gtt_space->size,
109 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200110 }
111}
112
113/**
114 * Update the mappable working set counters. Call _only_ when there is a change
115 * in one of (pin|fault)_mappable and update *_mappable _before_ calling.
116 * @mappable: new state the changed mappable flag (either pin_ or fault_).
117 */
118static void
119i915_gem_info_update_mappable(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100120 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200121 bool mappable)
122{
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200123 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100124 if (obj->pin_mappable && obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200125 /* Combined state was already mappable. */
126 return;
127 dev_priv->mm.gtt_mappable_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100128 dev_priv->mm.gtt_mappable_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200129 } else {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100130 if (obj->pin_mappable || obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200131 /* Combined state still mappable. */
132 return;
133 dev_priv->mm.gtt_mappable_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100134 dev_priv->mm.gtt_mappable_memory -= obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200135 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100136}
137
138static void i915_gem_info_add_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100139 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200140 bool mappable)
Chris Wilson73aa8082010-09-30 11:46:12 +0100141{
142 dev_priv->mm.pin_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100143 dev_priv->mm.pin_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200144 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100145 obj->pin_mappable = true;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200146 i915_gem_info_update_mappable(dev_priv, obj, true);
147 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100148}
149
150static void i915_gem_info_remove_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100151 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100152{
153 dev_priv->mm.pin_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100154 dev_priv->mm.pin_memory -= obj->gtt_space->size;
155 if (obj->pin_mappable) {
156 obj->pin_mappable = false;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200157 i915_gem_info_update_mappable(dev_priv, obj, false);
158 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100159}
160
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100161int
162i915_gem_check_is_wedged(struct drm_device *dev)
163{
164 struct drm_i915_private *dev_priv = dev->dev_private;
165 struct completion *x = &dev_priv->error_completion;
166 unsigned long flags;
167 int ret;
168
169 if (!atomic_read(&dev_priv->mm.wedged))
170 return 0;
171
172 ret = wait_for_completion_interruptible(x);
173 if (ret)
174 return ret;
175
176 /* Success, we reset the GPU! */
177 if (!atomic_read(&dev_priv->mm.wedged))
178 return 0;
179
180 /* GPU is hung, bump the completion count to account for
181 * the token we just consumed so that we never hit zero and
182 * end up waiting upon a subsequent completion event that
183 * will never happen.
184 */
185 spin_lock_irqsave(&x->wait.lock, flags);
186 x->done++;
187 spin_unlock_irqrestore(&x->wait.lock, flags);
188 return -EIO;
189}
190
Chris Wilson76c1dec2010-09-25 11:22:51 +0100191static int i915_mutex_lock_interruptible(struct drm_device *dev)
192{
193 struct drm_i915_private *dev_priv = dev->dev_private;
194 int ret;
195
196 ret = i915_gem_check_is_wedged(dev);
197 if (ret)
198 return ret;
199
200 ret = mutex_lock_interruptible(&dev->struct_mutex);
201 if (ret)
202 return ret;
203
204 if (atomic_read(&dev_priv->mm.wedged)) {
205 mutex_unlock(&dev->struct_mutex);
206 return -EAGAIN;
207 }
208
Chris Wilson23bc5982010-09-29 16:10:57 +0100209 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100210 return 0;
211}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100212
Chris Wilson7d1c4802010-08-07 21:45:03 +0100213static inline bool
214i915_gem_object_is_inactive(struct drm_i915_gem_object *obj_priv)
215{
216 return obj_priv->gtt_space &&
217 !obj_priv->active &&
218 obj_priv->pin_count == 0;
219}
220
Chris Wilson73aa8082010-09-30 11:46:12 +0100221int i915_gem_do_init(struct drm_device *dev,
222 unsigned long start,
Daniel Vetter53984632010-09-22 23:44:24 +0200223 unsigned long mappable_end,
Jesse Barnes79e53942008-11-07 14:24:08 -0800224 unsigned long end)
225{
226 drm_i915_private_t *dev_priv = dev->dev_private;
227
228 if (start >= end ||
229 (start & (PAGE_SIZE - 1)) != 0 ||
230 (end & (PAGE_SIZE - 1)) != 0) {
231 return -EINVAL;
232 }
233
234 drm_mm_init(&dev_priv->mm.gtt_space, start,
235 end - start);
236
Chris Wilson73aa8082010-09-30 11:46:12 +0100237 dev_priv->mm.gtt_total = end - start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200238 dev_priv->mm.mappable_gtt_total = min(end, mappable_end) - start;
Daniel Vetter53984632010-09-22 23:44:24 +0200239 dev_priv->mm.gtt_mappable_end = mappable_end;
Jesse Barnes79e53942008-11-07 14:24:08 -0800240
241 return 0;
242}
Keith Packard6dbe2772008-10-14 21:41:13 -0700243
Eric Anholt673a3942008-07-30 12:06:12 -0700244int
245i915_gem_init_ioctl(struct drm_device *dev, void *data,
246 struct drm_file *file_priv)
247{
Eric Anholt673a3942008-07-30 12:06:12 -0700248 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -0800249 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700250
251 mutex_lock(&dev->struct_mutex);
Daniel Vetter53984632010-09-22 23:44:24 +0200252 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700253 mutex_unlock(&dev->struct_mutex);
254
Jesse Barnes79e53942008-11-07 14:24:08 -0800255 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700256}
257
Eric Anholt5a125c32008-10-22 21:40:13 -0700258int
259i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
260 struct drm_file *file_priv)
261{
Chris Wilson73aa8082010-09-30 11:46:12 +0100262 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700263 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -0700264
265 if (!(dev->driver->driver_features & DRIVER_GEM))
266 return -ENODEV;
267
Chris Wilson73aa8082010-09-30 11:46:12 +0100268 mutex_lock(&dev->struct_mutex);
269 args->aper_size = dev_priv->mm.gtt_total;
270 args->aper_available_size = args->aper_size - dev_priv->mm.pin_memory;
271 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700272
273 return 0;
274}
275
Eric Anholt673a3942008-07-30 12:06:12 -0700276
277/**
278 * Creates a new mm object and returns a handle to it.
279 */
280int
281i915_gem_create_ioctl(struct drm_device *dev, void *data,
282 struct drm_file *file_priv)
283{
284 struct drm_i915_gem_create *args = data;
285 struct drm_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300286 int ret;
287 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700288
289 args->size = roundup(args->size, PAGE_SIZE);
290
291 /* Allocate the new object */
Daniel Vetterac52bc52010-04-09 19:05:06 +0000292 obj = i915_gem_alloc_object(dev, args->size);
Eric Anholt673a3942008-07-30 12:06:12 -0700293 if (obj == NULL)
294 return -ENOMEM;
295
296 ret = drm_gem_handle_create(file_priv, obj, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100297 if (ret) {
Chris Wilson202f2fe2010-10-14 13:20:40 +0100298 drm_gem_object_release(obj);
299 i915_gem_info_remove_obj(dev->dev_private, obj->size);
300 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700301 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100302 }
303
Chris Wilson202f2fe2010-10-14 13:20:40 +0100304 /* drop reference from allocate - handle holds it now */
305 drm_gem_object_unreference(obj);
306 trace_i915_gem_object_create(obj);
307
Eric Anholt673a3942008-07-30 12:06:12 -0700308 args->handle = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700309 return 0;
310}
311
Eric Anholt280b7132009-03-12 16:56:27 -0700312static int i915_gem_object_needs_bit17_swizzle(struct drm_gem_object *obj)
313{
314 drm_i915_private_t *dev_priv = obj->dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +0100315 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt280b7132009-03-12 16:56:27 -0700316
317 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
318 obj_priv->tiling_mode != I915_TILING_NONE;
319}
320
Chris Wilson99a03df2010-05-27 14:15:34 +0100321static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700322slow_shmem_copy(struct page *dst_page,
323 int dst_offset,
324 struct page *src_page,
325 int src_offset,
326 int length)
327{
328 char *dst_vaddr, *src_vaddr;
329
Chris Wilson99a03df2010-05-27 14:15:34 +0100330 dst_vaddr = kmap(dst_page);
331 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700332
333 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
334
Chris Wilson99a03df2010-05-27 14:15:34 +0100335 kunmap(src_page);
336 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700337}
338
Chris Wilson99a03df2010-05-27 14:15:34 +0100339static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700340slow_shmem_bit17_copy(struct page *gpu_page,
341 int gpu_offset,
342 struct page *cpu_page,
343 int cpu_offset,
344 int length,
345 int is_read)
346{
347 char *gpu_vaddr, *cpu_vaddr;
348
349 /* Use the unswizzled path if this page isn't affected. */
350 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
351 if (is_read)
352 return slow_shmem_copy(cpu_page, cpu_offset,
353 gpu_page, gpu_offset, length);
354 else
355 return slow_shmem_copy(gpu_page, gpu_offset,
356 cpu_page, cpu_offset, length);
357 }
358
Chris Wilson99a03df2010-05-27 14:15:34 +0100359 gpu_vaddr = kmap(gpu_page);
360 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700361
362 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
363 * XORing with the other bits (A9 for Y, A9 and A10 for X)
364 */
365 while (length > 0) {
366 int cacheline_end = ALIGN(gpu_offset + 1, 64);
367 int this_length = min(cacheline_end - gpu_offset, length);
368 int swizzled_gpu_offset = gpu_offset ^ 64;
369
370 if (is_read) {
371 memcpy(cpu_vaddr + cpu_offset,
372 gpu_vaddr + swizzled_gpu_offset,
373 this_length);
374 } else {
375 memcpy(gpu_vaddr + swizzled_gpu_offset,
376 cpu_vaddr + cpu_offset,
377 this_length);
378 }
379 cpu_offset += this_length;
380 gpu_offset += this_length;
381 length -= this_length;
382 }
383
Chris Wilson99a03df2010-05-27 14:15:34 +0100384 kunmap(cpu_page);
385 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700386}
387
Eric Anholt673a3942008-07-30 12:06:12 -0700388/**
Eric Anholteb014592009-03-10 11:44:52 -0700389 * This is the fast shmem pread path, which attempts to copy_from_user directly
390 * from the backing pages of the object to the user's address space. On a
391 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
392 */
393static int
394i915_gem_shmem_pread_fast(struct drm_device *dev, struct drm_gem_object *obj,
395 struct drm_i915_gem_pread *args,
396 struct drm_file *file_priv)
397{
Daniel Vetter23010e42010-03-08 13:35:02 +0100398 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100399 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700400 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100401 loff_t offset;
Eric Anholteb014592009-03-10 11:44:52 -0700402 char __user *user_data;
403 int page_offset, page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700404
405 user_data = (char __user *) (uintptr_t) args->data_ptr;
406 remain = args->size;
407
Daniel Vetter23010e42010-03-08 13:35:02 +0100408 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700409 offset = args->offset;
410
411 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100412 struct page *page;
413 char *vaddr;
414 int ret;
415
Eric Anholteb014592009-03-10 11:44:52 -0700416 /* Operation in this page
417 *
Eric Anholteb014592009-03-10 11:44:52 -0700418 * page_offset = offset within page
419 * page_length = bytes to copy for this page
420 */
Eric Anholteb014592009-03-10 11:44:52 -0700421 page_offset = offset & (PAGE_SIZE-1);
422 page_length = remain;
423 if ((page_offset + remain) > PAGE_SIZE)
424 page_length = PAGE_SIZE - page_offset;
425
Chris Wilsone5281cc2010-10-28 13:45:36 +0100426 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
427 GFP_HIGHUSER | __GFP_RECLAIMABLE);
428 if (IS_ERR(page))
429 return PTR_ERR(page);
430
431 vaddr = kmap_atomic(page);
432 ret = __copy_to_user_inatomic(user_data,
433 vaddr + page_offset,
434 page_length);
435 kunmap_atomic(vaddr);
436
437 mark_page_accessed(page);
438 page_cache_release(page);
439 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100440 return -EFAULT;
Eric Anholteb014592009-03-10 11:44:52 -0700441
442 remain -= page_length;
443 user_data += page_length;
444 offset += page_length;
445 }
446
Chris Wilson4f27b752010-10-14 15:26:45 +0100447 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700448}
449
450/**
451 * This is the fallback shmem pread path, which allocates temporary storage
452 * in kernel space to copy_to_user into outside of the struct_mutex, so we
453 * can copy out of the object's backing pages while holding the struct mutex
454 * and not take page faults.
455 */
456static int
457i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj,
458 struct drm_i915_gem_pread *args,
459 struct drm_file *file_priv)
460{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100461 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100462 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700463 struct mm_struct *mm = current->mm;
464 struct page **user_pages;
465 ssize_t remain;
466 loff_t offset, pinned_pages, i;
467 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100468 int shmem_page_offset;
469 int data_page_index, data_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700470 int page_length;
471 int ret;
472 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700473 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700474
475 remain = args->size;
476
477 /* Pin the user pages containing the data. We can't fault while
478 * holding the struct mutex, yet we want to hold it while
479 * dereferencing the user data.
480 */
481 first_data_page = data_ptr / PAGE_SIZE;
482 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
483 num_pages = last_data_page - first_data_page + 1;
484
Chris Wilson4f27b752010-10-14 15:26:45 +0100485 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700486 if (user_pages == NULL)
487 return -ENOMEM;
488
Chris Wilson4f27b752010-10-14 15:26:45 +0100489 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700490 down_read(&mm->mmap_sem);
491 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700492 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700493 up_read(&mm->mmap_sem);
Chris Wilson4f27b752010-10-14 15:26:45 +0100494 mutex_lock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700495 if (pinned_pages < num_pages) {
496 ret = -EFAULT;
Chris Wilson4f27b752010-10-14 15:26:45 +0100497 goto out;
Eric Anholteb014592009-03-10 11:44:52 -0700498 }
499
Chris Wilson4f27b752010-10-14 15:26:45 +0100500 ret = i915_gem_object_set_cpu_read_domain_range(obj,
501 args->offset,
Eric Anholteb014592009-03-10 11:44:52 -0700502 args->size);
Chris Wilson4f27b752010-10-14 15:26:45 +0100503 if (ret)
504 goto out;
505
506 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700507
Daniel Vetter23010e42010-03-08 13:35:02 +0100508 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700509 offset = args->offset;
510
511 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100512 struct page *page;
513
Eric Anholteb014592009-03-10 11:44:52 -0700514 /* Operation in this page
515 *
Eric Anholteb014592009-03-10 11:44:52 -0700516 * shmem_page_offset = offset within page in shmem file
517 * data_page_index = page number in get_user_pages return
518 * data_page_offset = offset with data_page_index page.
519 * page_length = bytes to copy for this page
520 */
Eric Anholteb014592009-03-10 11:44:52 -0700521 shmem_page_offset = offset & ~PAGE_MASK;
522 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
523 data_page_offset = data_ptr & ~PAGE_MASK;
524
525 page_length = remain;
526 if ((shmem_page_offset + page_length) > PAGE_SIZE)
527 page_length = PAGE_SIZE - shmem_page_offset;
528 if ((data_page_offset + page_length) > PAGE_SIZE)
529 page_length = PAGE_SIZE - data_page_offset;
530
Chris Wilsone5281cc2010-10-28 13:45:36 +0100531 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
532 GFP_HIGHUSER | __GFP_RECLAIMABLE);
533 if (IS_ERR(page))
534 return PTR_ERR(page);
535
Eric Anholt280b7132009-03-12 16:56:27 -0700536 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100537 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700538 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100539 user_pages[data_page_index],
540 data_page_offset,
541 page_length,
542 1);
543 } else {
544 slow_shmem_copy(user_pages[data_page_index],
545 data_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100546 page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100547 shmem_page_offset,
548 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700549 }
Eric Anholteb014592009-03-10 11:44:52 -0700550
Chris Wilsone5281cc2010-10-28 13:45:36 +0100551 mark_page_accessed(page);
552 page_cache_release(page);
553
Eric Anholteb014592009-03-10 11:44:52 -0700554 remain -= page_length;
555 data_ptr += page_length;
556 offset += page_length;
557 }
558
Chris Wilson4f27b752010-10-14 15:26:45 +0100559out:
Eric Anholteb014592009-03-10 11:44:52 -0700560 for (i = 0; i < pinned_pages; i++) {
561 SetPageDirty(user_pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100562 mark_page_accessed(user_pages[i]);
Eric Anholteb014592009-03-10 11:44:52 -0700563 page_cache_release(user_pages[i]);
564 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700565 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700566
567 return ret;
568}
569
Eric Anholt673a3942008-07-30 12:06:12 -0700570/**
571 * Reads data from the object referenced by handle.
572 *
573 * On error, the contents of *data are undefined.
574 */
575int
576i915_gem_pread_ioctl(struct drm_device *dev, void *data,
577 struct drm_file *file_priv)
578{
579 struct drm_i915_gem_pread *args = data;
580 struct drm_gem_object *obj;
581 struct drm_i915_gem_object *obj_priv;
Chris Wilson35b62a82010-09-26 20:23:38 +0100582 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700583
Chris Wilson4f27b752010-10-14 15:26:45 +0100584 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100585 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100586 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700587
588 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100589 if (obj == NULL) {
590 ret = -ENOENT;
591 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100592 }
Daniel Vetter23010e42010-03-08 13:35:02 +0100593 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700594
Chris Wilson7dcd2492010-09-26 20:21:44 +0100595 /* Bounds check source. */
596 if (args->offset > obj->size || args->size > obj->size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100597 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100598 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100599 }
600
Chris Wilson35b62a82010-09-26 20:23:38 +0100601 if (args->size == 0)
602 goto out;
603
Chris Wilsonce9d4192010-09-26 20:50:05 +0100604 if (!access_ok(VERIFY_WRITE,
605 (char __user *)(uintptr_t)args->data_ptr,
606 args->size)) {
607 ret = -EFAULT;
Chris Wilson35b62a82010-09-26 20:23:38 +0100608 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -0700609 }
610
Chris Wilsonb5e4feb2010-10-14 13:47:43 +0100611 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
612 args->size);
613 if (ret) {
614 ret = -EFAULT;
615 goto out;
616 }
617
Chris Wilson4f27b752010-10-14 15:26:45 +0100618 ret = i915_gem_object_set_cpu_read_domain_range(obj,
619 args->offset,
620 args->size);
621 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100622 goto out;
Chris Wilson4f27b752010-10-14 15:26:45 +0100623
624 ret = -EFAULT;
625 if (!i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -0700626 ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv);
Chris Wilson4f27b752010-10-14 15:26:45 +0100627 if (ret == -EFAULT)
628 ret = i915_gem_shmem_pread_slow(dev, obj, args, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700629
Chris Wilson35b62a82010-09-26 20:23:38 +0100630out:
Chris Wilson4f27b752010-10-14 15:26:45 +0100631 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100632unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100633 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700634 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700635}
636
Keith Packard0839ccb2008-10-30 19:38:48 -0700637/* This is the fast write path which cannot handle
638 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700639 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700640
Keith Packard0839ccb2008-10-30 19:38:48 -0700641static inline int
642fast_user_write(struct io_mapping *mapping,
643 loff_t page_base, int page_offset,
644 char __user *user_data,
645 int length)
646{
647 char *vaddr_atomic;
648 unsigned long unwritten;
649
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700650 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700651 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
652 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700653 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100654 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700655}
656
657/* Here's the write path which can sleep for
658 * page faults
659 */
660
Chris Wilsonab34c222010-05-27 14:15:35 +0100661static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700662slow_kernel_write(struct io_mapping *mapping,
663 loff_t gtt_base, int gtt_offset,
664 struct page *user_page, int user_offset,
665 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700666{
Chris Wilsonab34c222010-05-27 14:15:35 +0100667 char __iomem *dst_vaddr;
668 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700669
Chris Wilsonab34c222010-05-27 14:15:35 +0100670 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
671 src_vaddr = kmap(user_page);
672
673 memcpy_toio(dst_vaddr + gtt_offset,
674 src_vaddr + user_offset,
675 length);
676
677 kunmap(user_page);
678 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700679}
680
Eric Anholt3de09aa2009-03-09 09:42:23 -0700681/**
682 * This is the fast pwrite path, where we copy the data directly from the
683 * user into the GTT, uncached.
684 */
Eric Anholt673a3942008-07-30 12:06:12 -0700685static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700686i915_gem_gtt_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
687 struct drm_i915_gem_pwrite *args,
688 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700689{
Daniel Vetter23010e42010-03-08 13:35:02 +0100690 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Keith Packard0839ccb2008-10-30 19:38:48 -0700691 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700692 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700693 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700694 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700695 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700696
697 user_data = (char __user *) (uintptr_t) args->data_ptr;
698 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700699
Daniel Vetter23010e42010-03-08 13:35:02 +0100700 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700701 offset = obj_priv->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700702
703 while (remain > 0) {
704 /* Operation in this page
705 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700706 * page_base = page offset within aperture
707 * page_offset = offset within page
708 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700709 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700710 page_base = (offset & ~(PAGE_SIZE-1));
711 page_offset = offset & (PAGE_SIZE-1);
712 page_length = remain;
713 if ((page_offset + remain) > PAGE_SIZE)
714 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700715
Keith Packard0839ccb2008-10-30 19:38:48 -0700716 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700717 * source page isn't available. Return the error and we'll
718 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700719 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100720 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
721 page_offset, user_data, page_length))
722
723 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700724
Keith Packard0839ccb2008-10-30 19:38:48 -0700725 remain -= page_length;
726 user_data += page_length;
727 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700728 }
Eric Anholt673a3942008-07-30 12:06:12 -0700729
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100730 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700731}
732
Eric Anholt3de09aa2009-03-09 09:42:23 -0700733/**
734 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
735 * the memory and maps it using kmap_atomic for copying.
736 *
737 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
738 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
739 */
Eric Anholt3043c602008-10-02 12:24:47 -0700740static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700741i915_gem_gtt_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
742 struct drm_i915_gem_pwrite *args,
743 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700744{
Daniel Vetter23010e42010-03-08 13:35:02 +0100745 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700746 drm_i915_private_t *dev_priv = dev->dev_private;
747 ssize_t remain;
748 loff_t gtt_page_base, offset;
749 loff_t first_data_page, last_data_page, num_pages;
750 loff_t pinned_pages, i;
751 struct page **user_pages;
752 struct mm_struct *mm = current->mm;
753 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700754 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700755 uint64_t data_ptr = args->data_ptr;
756
757 remain = args->size;
758
759 /* Pin the user pages containing the data. We can't fault while
760 * holding the struct mutex, and all of the pwrite implementations
761 * want to hold it while dereferencing the user data.
762 */
763 first_data_page = data_ptr / PAGE_SIZE;
764 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
765 num_pages = last_data_page - first_data_page + 1;
766
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100767 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700768 if (user_pages == NULL)
769 return -ENOMEM;
770
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100771 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700772 down_read(&mm->mmap_sem);
773 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
774 num_pages, 0, 0, user_pages, NULL);
775 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100776 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700777 if (pinned_pages < num_pages) {
778 ret = -EFAULT;
779 goto out_unpin_pages;
780 }
781
Eric Anholt3de09aa2009-03-09 09:42:23 -0700782 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
783 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100784 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700785
Daniel Vetter23010e42010-03-08 13:35:02 +0100786 obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700787 offset = obj_priv->gtt_offset + args->offset;
788
789 while (remain > 0) {
790 /* Operation in this page
791 *
792 * gtt_page_base = page offset within aperture
793 * gtt_page_offset = offset within page in aperture
794 * data_page_index = page number in get_user_pages return
795 * data_page_offset = offset with data_page_index page.
796 * page_length = bytes to copy for this page
797 */
798 gtt_page_base = offset & PAGE_MASK;
799 gtt_page_offset = offset & ~PAGE_MASK;
800 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
801 data_page_offset = data_ptr & ~PAGE_MASK;
802
803 page_length = remain;
804 if ((gtt_page_offset + page_length) > PAGE_SIZE)
805 page_length = PAGE_SIZE - gtt_page_offset;
806 if ((data_page_offset + page_length) > PAGE_SIZE)
807 page_length = PAGE_SIZE - data_page_offset;
808
Chris Wilsonab34c222010-05-27 14:15:35 +0100809 slow_kernel_write(dev_priv->mm.gtt_mapping,
810 gtt_page_base, gtt_page_offset,
811 user_pages[data_page_index],
812 data_page_offset,
813 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700814
815 remain -= page_length;
816 offset += page_length;
817 data_ptr += page_length;
818 }
819
Eric Anholt3de09aa2009-03-09 09:42:23 -0700820out_unpin_pages:
821 for (i = 0; i < pinned_pages; i++)
822 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700823 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700824
825 return ret;
826}
827
Eric Anholt40123c12009-03-09 13:42:30 -0700828/**
829 * This is the fast shmem pwrite path, which attempts to directly
830 * copy_from_user into the kmapped pages backing the object.
831 */
Eric Anholt673a3942008-07-30 12:06:12 -0700832static int
Eric Anholt40123c12009-03-09 13:42:30 -0700833i915_gem_shmem_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
834 struct drm_i915_gem_pwrite *args,
835 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700836{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100837 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100838 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700839 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100840 loff_t offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700841 char __user *user_data;
842 int page_offset, page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700843
844 user_data = (char __user *) (uintptr_t) args->data_ptr;
845 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700846
Daniel Vetter23010e42010-03-08 13:35:02 +0100847 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700848 offset = args->offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700849 obj_priv->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700850
Eric Anholt40123c12009-03-09 13:42:30 -0700851 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100852 struct page *page;
853 char *vaddr;
854 int ret;
855
Eric Anholt40123c12009-03-09 13:42:30 -0700856 /* Operation in this page
857 *
Eric Anholt40123c12009-03-09 13:42:30 -0700858 * page_offset = offset within page
859 * page_length = bytes to copy for this page
860 */
Eric Anholt40123c12009-03-09 13:42:30 -0700861 page_offset = offset & (PAGE_SIZE-1);
862 page_length = remain;
863 if ((page_offset + remain) > PAGE_SIZE)
864 page_length = PAGE_SIZE - page_offset;
865
Chris Wilsone5281cc2010-10-28 13:45:36 +0100866 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
867 GFP_HIGHUSER | __GFP_RECLAIMABLE);
868 if (IS_ERR(page))
869 return PTR_ERR(page);
870
871 vaddr = kmap_atomic(page, KM_USER0);
872 ret = __copy_from_user_inatomic(vaddr + page_offset,
873 user_data,
874 page_length);
875 kunmap_atomic(vaddr, KM_USER0);
876
877 set_page_dirty(page);
878 mark_page_accessed(page);
879 page_cache_release(page);
880
881 /* If we get a fault while copying data, then (presumably) our
882 * source page isn't available. Return the error and we'll
883 * retry in the slow path.
884 */
885 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100886 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700887
888 remain -= page_length;
889 user_data += page_length;
890 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700891 }
892
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100893 return 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700894}
895
896/**
897 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
898 * the memory and maps it using kmap_atomic for copying.
899 *
900 * This avoids taking mmap_sem for faulting on the user's address while the
901 * struct_mutex is held.
902 */
903static int
904i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
905 struct drm_i915_gem_pwrite *args,
906 struct drm_file *file_priv)
907{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100908 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100909 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700910 struct mm_struct *mm = current->mm;
911 struct page **user_pages;
912 ssize_t remain;
913 loff_t offset, pinned_pages, i;
914 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100915 int shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700916 int data_page_index, data_page_offset;
917 int page_length;
918 int ret;
919 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700920 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700921
922 remain = args->size;
923
924 /* Pin the user pages containing the data. We can't fault while
925 * holding the struct mutex, and all of the pwrite implementations
926 * want to hold it while dereferencing the user data.
927 */
928 first_data_page = data_ptr / PAGE_SIZE;
929 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
930 num_pages = last_data_page - first_data_page + 1;
931
Chris Wilson4f27b752010-10-14 15:26:45 +0100932 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700933 if (user_pages == NULL)
934 return -ENOMEM;
935
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100936 mutex_unlock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700937 down_read(&mm->mmap_sem);
938 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
939 num_pages, 0, 0, user_pages, NULL);
940 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100941 mutex_lock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700942 if (pinned_pages < num_pages) {
943 ret = -EFAULT;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100944 goto out;
Eric Anholt40123c12009-03-09 13:42:30 -0700945 }
946
Eric Anholt40123c12009-03-09 13:42:30 -0700947 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100948 if (ret)
949 goto out;
950
951 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700952
Daniel Vetter23010e42010-03-08 13:35:02 +0100953 obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700954 offset = args->offset;
955 obj_priv->dirty = 1;
956
957 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100958 struct page *page;
959
Eric Anholt40123c12009-03-09 13:42:30 -0700960 /* Operation in this page
961 *
Eric Anholt40123c12009-03-09 13:42:30 -0700962 * shmem_page_offset = offset within page in shmem file
963 * data_page_index = page number in get_user_pages return
964 * data_page_offset = offset with data_page_index page.
965 * page_length = bytes to copy for this page
966 */
Eric Anholt40123c12009-03-09 13:42:30 -0700967 shmem_page_offset = offset & ~PAGE_MASK;
968 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
969 data_page_offset = data_ptr & ~PAGE_MASK;
970
971 page_length = remain;
972 if ((shmem_page_offset + page_length) > PAGE_SIZE)
973 page_length = PAGE_SIZE - shmem_page_offset;
974 if ((data_page_offset + page_length) > PAGE_SIZE)
975 page_length = PAGE_SIZE - data_page_offset;
976
Chris Wilsone5281cc2010-10-28 13:45:36 +0100977 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
978 GFP_HIGHUSER | __GFP_RECLAIMABLE);
979 if (IS_ERR(page)) {
980 ret = PTR_ERR(page);
981 goto out;
982 }
983
Eric Anholt280b7132009-03-12 16:56:27 -0700984 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100985 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700986 shmem_page_offset,
987 user_pages[data_page_index],
988 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100989 page_length,
990 0);
991 } else {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100992 slow_shmem_copy(page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100993 shmem_page_offset,
994 user_pages[data_page_index],
995 data_page_offset,
996 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700997 }
Eric Anholt40123c12009-03-09 13:42:30 -0700998
Chris Wilsone5281cc2010-10-28 13:45:36 +0100999 set_page_dirty(page);
1000 mark_page_accessed(page);
1001 page_cache_release(page);
1002
Eric Anholt40123c12009-03-09 13:42:30 -07001003 remain -= page_length;
1004 data_ptr += page_length;
1005 offset += page_length;
1006 }
1007
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001008out:
Eric Anholt40123c12009-03-09 13:42:30 -07001009 for (i = 0; i < pinned_pages; i++)
1010 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001011 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -07001012
1013 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001014}
1015
1016/**
1017 * Writes data to the object referenced by handle.
1018 *
1019 * On error, the contents of the buffer that were to be modified are undefined.
1020 */
1021int
1022i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001023 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001024{
1025 struct drm_i915_gem_pwrite *args = data;
1026 struct drm_gem_object *obj;
1027 struct drm_i915_gem_object *obj_priv;
1028 int ret = 0;
1029
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001030 ret = i915_mutex_lock_interruptible(dev);
1031 if (ret)
1032 return ret;
1033
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001034 obj = drm_gem_object_lookup(dev, file, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001035 if (obj == NULL) {
1036 ret = -ENOENT;
1037 goto unlock;
1038 }
Daniel Vetter23010e42010-03-08 13:35:02 +01001039 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001040
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001041
Chris Wilson7dcd2492010-09-26 20:21:44 +01001042 /* Bounds check destination. */
1043 if (args->offset > obj->size || args->size > obj->size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001044 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001045 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001046 }
1047
Chris Wilson35b62a82010-09-26 20:23:38 +01001048 if (args->size == 0)
1049 goto out;
1050
Chris Wilsonce9d4192010-09-26 20:50:05 +01001051 if (!access_ok(VERIFY_READ,
1052 (char __user *)(uintptr_t)args->data_ptr,
1053 args->size)) {
1054 ret = -EFAULT;
Chris Wilson35b62a82010-09-26 20:23:38 +01001055 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07001056 }
1057
Chris Wilsonb5e4feb2010-10-14 13:47:43 +01001058 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
1059 args->size);
1060 if (ret) {
1061 ret = -EFAULT;
1062 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07001063 }
1064
1065 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1066 * it would end up going through the fenced access, and we'll get
1067 * different detiling behavior between reading and writing.
1068 * pread/pwrite currently are reading and writing from the CPU
1069 * perspective, requiring manual detiling by the client.
1070 */
Dave Airlie71acb5e2008-12-30 20:31:46 +10001071 if (obj_priv->phys_obj)
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001072 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Dave Airlie71acb5e2008-12-30 20:31:46 +10001073 else if (obj_priv->tiling_mode == I915_TILING_NONE &&
Chris Wilson5cdf5882010-09-27 15:51:07 +01001074 obj_priv->gtt_space &&
Chris Wilson9b8c4a02010-05-27 14:21:01 +01001075 obj->write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001076 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001077 if (ret)
1078 goto out;
1079
1080 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
1081 if (ret)
1082 goto out_unpin;
1083
1084 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
1085 if (ret == -EFAULT)
1086 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
1087
1088out_unpin:
1089 i915_gem_object_unpin(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001090 } else {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001091 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1092 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001093 goto out;
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001094
1095 ret = -EFAULT;
1096 if (!i915_gem_object_needs_bit17_swizzle(obj))
1097 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file);
1098 if (ret == -EFAULT)
1099 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file);
Eric Anholt40123c12009-03-09 13:42:30 -07001100 }
Eric Anholt673a3942008-07-30 12:06:12 -07001101
Chris Wilson35b62a82010-09-26 20:23:38 +01001102out:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001103 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001104unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001105 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001106 return ret;
1107}
1108
1109/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001110 * Called when user space prepares to use an object with the CPU, either
1111 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001112 */
1113int
1114i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
1115 struct drm_file *file_priv)
1116{
Eric Anholta09ba7f2009-08-29 12:49:51 -07001117 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001118 struct drm_i915_gem_set_domain *args = data;
1119 struct drm_gem_object *obj;
Jesse Barnes652c3932009-08-17 13:31:43 -07001120 struct drm_i915_gem_object *obj_priv;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001121 uint32_t read_domains = args->read_domains;
1122 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001123 int ret;
1124
1125 if (!(dev->driver->driver_features & DRIVER_GEM))
1126 return -ENODEV;
1127
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001128 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001129 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001130 return -EINVAL;
1131
Chris Wilson21d509e2009-06-06 09:46:02 +01001132 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001133 return -EINVAL;
1134
1135 /* Having something in the write domain implies it's in the read
1136 * domain, and only that read domain. Enforce that in the request.
1137 */
1138 if (write_domain != 0 && read_domains != write_domain)
1139 return -EINVAL;
1140
Chris Wilson76c1dec2010-09-25 11:22:51 +01001141 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001142 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001143 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001144
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001145 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1146 if (obj == NULL) {
1147 ret = -ENOENT;
1148 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001149 }
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001150 obj_priv = to_intel_bo(obj);
Jesse Barnes652c3932009-08-17 13:31:43 -07001151
1152 intel_mark_busy(dev, obj);
1153
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001154 if (read_domains & I915_GEM_DOMAIN_GTT) {
1155 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001156
Eric Anholta09ba7f2009-08-29 12:49:51 -07001157 /* Update the LRU on the fence for the CPU access that's
1158 * about to occur.
1159 */
1160 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001161 struct drm_i915_fence_reg *reg =
1162 &dev_priv->fence_regs[obj_priv->fence_reg];
1163 list_move_tail(&reg->lru_list,
Eric Anholta09ba7f2009-08-29 12:49:51 -07001164 &dev_priv->mm.fence_list);
1165 }
1166
Eric Anholt02354392008-11-26 13:58:13 -08001167 /* Silently promote "you're not bound, there was nothing to do"
1168 * to success, since the client was just asking us to
1169 * make sure everything was done.
1170 */
1171 if (ret == -EINVAL)
1172 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001173 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001174 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001175 }
1176
Chris Wilson7d1c4802010-08-07 21:45:03 +01001177 /* Maintain LRU order of "inactive" objects */
1178 if (ret == 0 && i915_gem_object_is_inactive(obj_priv))
Chris Wilson69dc4982010-10-19 10:36:51 +01001179 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001180
Eric Anholt673a3942008-07-30 12:06:12 -07001181 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001182unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001183 mutex_unlock(&dev->struct_mutex);
1184 return ret;
1185}
1186
1187/**
1188 * Called when user space has done writes to this buffer
1189 */
1190int
1191i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
1192 struct drm_file *file_priv)
1193{
1194 struct drm_i915_gem_sw_finish *args = data;
1195 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001196 int ret = 0;
1197
1198 if (!(dev->driver->driver_features & DRIVER_GEM))
1199 return -ENODEV;
1200
Chris Wilson76c1dec2010-09-25 11:22:51 +01001201 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001202 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001203 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001204
Eric Anholt673a3942008-07-30 12:06:12 -07001205 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1206 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001207 ret = -ENOENT;
1208 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001209 }
1210
Eric Anholt673a3942008-07-30 12:06:12 -07001211 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson3d2a8122010-09-29 11:39:53 +01001212 if (to_intel_bo(obj)->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001213 i915_gem_object_flush_cpu_write_domain(obj);
1214
Eric Anholt673a3942008-07-30 12:06:12 -07001215 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001216unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001217 mutex_unlock(&dev->struct_mutex);
1218 return ret;
1219}
1220
1221/**
1222 * Maps the contents of an object, returning the address it is mapped
1223 * into.
1224 *
1225 * While the mapping holds a reference on the contents of the object, it doesn't
1226 * imply a ref on the object itself.
1227 */
1228int
1229i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
1230 struct drm_file *file_priv)
1231{
Chris Wilsonda761a62010-10-27 17:37:08 +01001232 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001233 struct drm_i915_gem_mmap *args = data;
1234 struct drm_gem_object *obj;
1235 loff_t offset;
1236 unsigned long addr;
1237
1238 if (!(dev->driver->driver_features & DRIVER_GEM))
1239 return -ENODEV;
1240
1241 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1242 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001243 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001244
Chris Wilsonda761a62010-10-27 17:37:08 +01001245 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1246 drm_gem_object_unreference_unlocked(obj);
1247 return -E2BIG;
1248 }
1249
Eric Anholt673a3942008-07-30 12:06:12 -07001250 offset = args->offset;
1251
1252 down_write(&current->mm->mmap_sem);
1253 addr = do_mmap(obj->filp, 0, args->size,
1254 PROT_READ | PROT_WRITE, MAP_SHARED,
1255 args->offset);
1256 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001257 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001258 if (IS_ERR((void *)addr))
1259 return addr;
1260
1261 args->addr_ptr = (uint64_t) addr;
1262
1263 return 0;
1264}
1265
Jesse Barnesde151cf2008-11-12 10:03:55 -08001266/**
1267 * i915_gem_fault - fault a page into the GTT
1268 * vma: VMA in question
1269 * vmf: fault info
1270 *
1271 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1272 * from userspace. The fault handler takes care of binding the object to
1273 * the GTT (if needed), allocating and programming a fence register (again,
1274 * only if needed based on whether the old reg is still valid or the object
1275 * is tiled) and inserting a new PTE into the faulting process.
1276 *
1277 * Note that the faulting process may involve evicting existing objects
1278 * from the GTT and/or fence registers to make room. So performance may
1279 * suffer if the GTT working set is large or there are few fence registers
1280 * left.
1281 */
1282int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1283{
1284 struct drm_gem_object *obj = vma->vm_private_data;
1285 struct drm_device *dev = obj->dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001286 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001287 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001288 pgoff_t page_offset;
1289 unsigned long pfn;
1290 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001291 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001292
1293 /* We don't use vmf->pgoff since that has the fake offset */
1294 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1295 PAGE_SHIFT;
1296
1297 /* Now bind it into the GTT if needed */
1298 mutex_lock(&dev->struct_mutex);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001299 BUG_ON(obj_priv->pin_count && !obj_priv->pin_mappable);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001300
1301 if (obj_priv->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001302 if (!obj_priv->map_and_fenceable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01001303 ret = i915_gem_object_unbind(obj);
1304 if (ret)
1305 goto unlock;
1306 }
1307 }
Daniel Vetter16e809a2010-09-16 19:37:04 +02001308
Jesse Barnesde151cf2008-11-12 10:03:55 -08001309 if (!obj_priv->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001310 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001311 if (ret)
1312 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001313 }
1314
Chris Wilson4a684a42010-10-28 14:44:08 +01001315 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1316 if (ret)
1317 goto unlock;
1318
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001319 if (!obj_priv->fault_mappable) {
1320 obj_priv->fault_mappable = true;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001321 i915_gem_info_update_mappable(dev_priv, obj_priv, true);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001322 }
1323
Jesse Barnesde151cf2008-11-12 10:03:55 -08001324 /* Need a new fence register? */
Eric Anholta09ba7f2009-08-29 12:49:51 -07001325 if (obj_priv->tiling_mode != I915_TILING_NONE) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01001326 ret = i915_gem_object_get_fence_reg(obj, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001327 if (ret)
1328 goto unlock;
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001329 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001330
Chris Wilson7d1c4802010-08-07 21:45:03 +01001331 if (i915_gem_object_is_inactive(obj_priv))
Chris Wilson69dc4982010-10-19 10:36:51 +01001332 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001333
Jesse Barnesde151cf2008-11-12 10:03:55 -08001334 pfn = ((dev->agp->base + obj_priv->gtt_offset) >> PAGE_SHIFT) +
1335 page_offset;
1336
1337 /* Finally, remap it using the new GTT offset */
1338 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001339unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001340 mutex_unlock(&dev->struct_mutex);
1341
1342 switch (ret) {
Chris Wilson045e7692010-11-07 09:18:22 +00001343 case -EAGAIN:
1344 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001345 case 0:
1346 case -ERESTARTSYS:
1347 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001348 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001349 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001350 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001351 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001352 }
1353}
1354
1355/**
1356 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1357 * @obj: obj in question
1358 *
1359 * GEM memory mapping works by handing back to userspace a fake mmap offset
1360 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1361 * up the object based on the offset and sets up the various memory mapping
1362 * structures.
1363 *
1364 * This routine allocates and attaches a fake offset for @obj.
1365 */
1366static int
1367i915_gem_create_mmap_offset(struct drm_gem_object *obj)
1368{
1369 struct drm_device *dev = obj->dev;
1370 struct drm_gem_mm *mm = dev->mm_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001371 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001372 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001373 int ret = 0;
1374
1375 /* Set the object up for mmap'ing */
1376 list = &obj->map_list;
Eric Anholt9a298b22009-03-24 12:23:04 -07001377 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001378 if (!list->map)
1379 return -ENOMEM;
1380
1381 map = list->map;
1382 map->type = _DRM_GEM;
1383 map->size = obj->size;
1384 map->handle = obj;
1385
1386 /* Get a DRM GEM mmap offset allocated... */
1387 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
1388 obj->size / PAGE_SIZE, 0, 0);
1389 if (!list->file_offset_node) {
1390 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
Chris Wilson9e0ae5342010-09-21 15:05:24 +01001391 ret = -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001392 goto out_free_list;
1393 }
1394
1395 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
1396 obj->size / PAGE_SIZE, 0);
1397 if (!list->file_offset_node) {
1398 ret = -ENOMEM;
1399 goto out_free_list;
1400 }
1401
1402 list->hash.key = list->file_offset_node->start;
Chris Wilson9e0ae5342010-09-21 15:05:24 +01001403 ret = drm_ht_insert_item(&mm->offset_hash, &list->hash);
1404 if (ret) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001405 DRM_ERROR("failed to add to map hash\n");
1406 goto out_free_mm;
1407 }
1408
Jesse Barnesde151cf2008-11-12 10:03:55 -08001409 return 0;
1410
1411out_free_mm:
1412 drm_mm_put_block(list->file_offset_node);
1413out_free_list:
Eric Anholt9a298b22009-03-24 12:23:04 -07001414 kfree(list->map);
Chris Wilson39a01d12010-10-28 13:03:06 +01001415 list->map = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001416
1417 return ret;
1418}
1419
Chris Wilson901782b2009-07-10 08:18:50 +01001420/**
1421 * i915_gem_release_mmap - remove physical page mappings
1422 * @obj: obj in question
1423 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001424 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001425 * relinquish ownership of the pages back to the system.
1426 *
1427 * It is vital that we remove the page mapping if we have mapped a tiled
1428 * object through the GTT and then lose the fence register due to
1429 * resource pressure. Similarly if the object has been moved out of the
1430 * aperture, than pages mapped into userspace must be revoked. Removing the
1431 * mapping will then trigger a page fault on the next user access, allowing
1432 * fixup by i915_gem_fault().
1433 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001434void
Chris Wilson901782b2009-07-10 08:18:50 +01001435i915_gem_release_mmap(struct drm_gem_object *obj)
1436{
1437 struct drm_device *dev = obj->dev;
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001438 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001439 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson901782b2009-07-10 08:18:50 +01001440
Chris Wilson39a01d12010-10-28 13:03:06 +01001441 if (unlikely(obj->map_list.map && dev->dev_mapping))
Chris Wilson901782b2009-07-10 08:18:50 +01001442 unmap_mapping_range(dev->dev_mapping,
Chris Wilson39a01d12010-10-28 13:03:06 +01001443 (loff_t)obj->map_list.hash.key<<PAGE_SHIFT,
1444 obj->size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001445
1446 if (obj_priv->fault_mappable) {
1447 obj_priv->fault_mappable = false;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001448 i915_gem_info_update_mappable(dev_priv, obj_priv, false);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001449 }
Chris Wilson901782b2009-07-10 08:18:50 +01001450}
1451
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001452static void
1453i915_gem_free_mmap_offset(struct drm_gem_object *obj)
1454{
1455 struct drm_device *dev = obj->dev;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001456 struct drm_gem_mm *mm = dev->mm_private;
Chris Wilson39a01d12010-10-28 13:03:06 +01001457 struct drm_map_list *list = &obj->map_list;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001458
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001459 drm_ht_remove_item(&mm->offset_hash, &list->hash);
Chris Wilson39a01d12010-10-28 13:03:06 +01001460 drm_mm_put_block(list->file_offset_node);
1461 kfree(list->map);
1462 list->map = NULL;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001463}
1464
Jesse Barnesde151cf2008-11-12 10:03:55 -08001465/**
1466 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1467 * @obj: object to check
1468 *
1469 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001470 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001471 */
1472static uint32_t
Chris Wilsona00b10c2010-09-24 21:15:47 +01001473i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj_priv)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001474{
Chris Wilsona00b10c2010-09-24 21:15:47 +01001475 struct drm_device *dev = obj_priv->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001476
1477 /*
1478 * Minimum alignment is 4k (GTT page size), but might be greater
1479 * if a fence register is needed for the object.
1480 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001481 if (INTEL_INFO(dev)->gen >= 4 ||
1482 obj_priv->tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001483 return 4096;
1484
1485 /*
1486 * Previous chips need to be aligned to the size of the smallest
1487 * fence register that can contain the object.
1488 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001489 return i915_gem_get_gtt_size(obj_priv);
1490}
1491
Daniel Vetter5e783302010-11-14 22:32:36 +01001492/**
1493 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1494 * unfenced object
1495 * @obj: object to check
1496 *
1497 * Return the required GTT alignment for an object, only taking into account
1498 * unfenced tiled surface requirements.
1499 */
1500static uint32_t
1501i915_gem_get_unfenced_gtt_alignment(struct drm_i915_gem_object *obj_priv)
1502{
1503 struct drm_device *dev = obj_priv->base.dev;
1504 int tile_height;
1505
1506 /*
1507 * Minimum alignment is 4k (GTT page size) for sane hw.
1508 */
1509 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
1510 obj_priv->tiling_mode == I915_TILING_NONE)
1511 return 4096;
1512
1513 /*
1514 * Older chips need unfenced tiled buffers to be aligned to the left
1515 * edge of an even tile row (where tile rows are counted as if the bo is
1516 * placed in a fenced gtt region).
1517 */
1518 if (IS_GEN2(dev) ||
1519 (obj_priv->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev)))
1520 tile_height = 32;
1521 else
1522 tile_height = 8;
1523
1524 return tile_height * obj_priv->stride * 2;
1525}
1526
Chris Wilsona00b10c2010-09-24 21:15:47 +01001527static uint32_t
1528i915_gem_get_gtt_size(struct drm_i915_gem_object *obj_priv)
1529{
1530 struct drm_device *dev = obj_priv->base.dev;
1531 uint32_t size;
1532
1533 /*
1534 * Minimum alignment is 4k (GTT page size), but might be greater
1535 * if a fence register is needed for the object.
1536 */
1537 if (INTEL_INFO(dev)->gen >= 4)
1538 return obj_priv->base.size;
1539
1540 /*
1541 * Previous chips need to be aligned to the size of the smallest
1542 * fence register that can contain the object.
1543 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001544 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsona00b10c2010-09-24 21:15:47 +01001545 size = 1024*1024;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001546 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01001547 size = 512*1024;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001548
Chris Wilsona00b10c2010-09-24 21:15:47 +01001549 while (size < obj_priv->base.size)
1550 size <<= 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001551
Chris Wilsona00b10c2010-09-24 21:15:47 +01001552 return size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001553}
1554
1555/**
1556 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1557 * @dev: DRM device
1558 * @data: GTT mapping ioctl data
1559 * @file_priv: GEM object info
1560 *
1561 * Simply returns the fake offset to userspace so it can mmap it.
1562 * The mmap call will end up in drm_gem_mmap(), which will set things
1563 * up so we can get faults in the handler above.
1564 *
1565 * The fault handler will take care of binding the object into the GTT
1566 * (since it may have been evicted to make room for something), allocating
1567 * a fence register, and mapping the appropriate aperture address into
1568 * userspace.
1569 */
1570int
1571i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1572 struct drm_file *file_priv)
1573{
Chris Wilsonda761a62010-10-27 17:37:08 +01001574 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001575 struct drm_i915_gem_mmap_gtt *args = data;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001576 struct drm_gem_object *obj;
1577 struct drm_i915_gem_object *obj_priv;
1578 int ret;
1579
1580 if (!(dev->driver->driver_features & DRIVER_GEM))
1581 return -ENODEV;
1582
Chris Wilson76c1dec2010-09-25 11:22:51 +01001583 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001584 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001585 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001586
Jesse Barnesde151cf2008-11-12 10:03:55 -08001587 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001588 if (obj == NULL) {
1589 ret = -ENOENT;
1590 goto unlock;
1591 }
Daniel Vetter23010e42010-03-08 13:35:02 +01001592 obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001593
Chris Wilsonda761a62010-10-27 17:37:08 +01001594 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1595 ret = -E2BIG;
1596 goto unlock;
1597 }
1598
Chris Wilsonab182822009-09-22 18:46:17 +01001599 if (obj_priv->madv != I915_MADV_WILLNEED) {
1600 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001601 ret = -EINVAL;
1602 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001603 }
1604
Chris Wilson39a01d12010-10-28 13:03:06 +01001605 if (!obj->map_list.map) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001606 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001607 if (ret)
1608 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001609 }
1610
Chris Wilson39a01d12010-10-28 13:03:06 +01001611 args->offset = (u64)obj->map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001612
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001613out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001614 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001615unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001616 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001617 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001618}
1619
Chris Wilsone5281cc2010-10-28 13:45:36 +01001620static int
1621i915_gem_object_get_pages_gtt(struct drm_gem_object *obj,
1622 gfp_t gfpmask)
1623{
1624 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
1625 int page_count, i;
1626 struct address_space *mapping;
1627 struct inode *inode;
1628 struct page *page;
1629
1630 /* Get the list of pages out of our struct file. They'll be pinned
1631 * at this point until we release them.
1632 */
1633 page_count = obj->size / PAGE_SIZE;
1634 BUG_ON(obj_priv->pages != NULL);
1635 obj_priv->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1636 if (obj_priv->pages == NULL)
1637 return -ENOMEM;
1638
1639 inode = obj->filp->f_path.dentry->d_inode;
1640 mapping = inode->i_mapping;
1641 for (i = 0; i < page_count; i++) {
1642 page = read_cache_page_gfp(mapping, i,
1643 GFP_HIGHUSER |
1644 __GFP_COLD |
1645 __GFP_RECLAIMABLE |
1646 gfpmask);
1647 if (IS_ERR(page))
1648 goto err_pages;
1649
1650 obj_priv->pages[i] = page;
1651 }
1652
1653 if (obj_priv->tiling_mode != I915_TILING_NONE)
1654 i915_gem_object_do_bit_17_swizzle(obj);
1655
1656 return 0;
1657
1658err_pages:
1659 while (i--)
1660 page_cache_release(obj_priv->pages[i]);
1661
1662 drm_free_large(obj_priv->pages);
1663 obj_priv->pages = NULL;
1664 return PTR_ERR(page);
1665}
1666
Chris Wilson5cdf5882010-09-27 15:51:07 +01001667static void
Chris Wilsone5281cc2010-10-28 13:45:36 +01001668i915_gem_object_put_pages_gtt(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001669{
Daniel Vetter23010e42010-03-08 13:35:02 +01001670 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001671 int page_count = obj->size / PAGE_SIZE;
1672 int i;
1673
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001674 BUG_ON(obj_priv->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001675
Eric Anholt280b7132009-03-12 16:56:27 -07001676 if (obj_priv->tiling_mode != I915_TILING_NONE)
1677 i915_gem_object_save_bit_17_swizzle(obj);
1678
Chris Wilson3ef94da2009-09-14 16:50:29 +01001679 if (obj_priv->madv == I915_MADV_DONTNEED)
Chris Wilson13a05fd2009-09-20 23:03:19 +01001680 obj_priv->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001681
1682 for (i = 0; i < page_count; i++) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01001683 if (obj_priv->dirty)
1684 set_page_dirty(obj_priv->pages[i]);
1685
1686 if (obj_priv->madv == I915_MADV_WILLNEED)
Eric Anholt856fa192009-03-19 14:10:50 -07001687 mark_page_accessed(obj_priv->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001688
1689 page_cache_release(obj_priv->pages[i]);
1690 }
Eric Anholt673a3942008-07-30 12:06:12 -07001691 obj_priv->dirty = 0;
1692
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001693 drm_free_large(obj_priv->pages);
Eric Anholt856fa192009-03-19 14:10:50 -07001694 obj_priv->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001695}
1696
Chris Wilsona56ba562010-09-28 10:07:56 +01001697static uint32_t
1698i915_gem_next_request_seqno(struct drm_device *dev,
1699 struct intel_ring_buffer *ring)
1700{
1701 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson5d97eb62010-11-10 20:40:02 +00001702 return ring->outstanding_lazy_request = dev_priv->next_seqno;
Chris Wilsona56ba562010-09-28 10:07:56 +01001703}
1704
Eric Anholt673a3942008-07-30 12:06:12 -07001705static void
Daniel Vetter617dbe22010-02-11 22:16:02 +01001706i915_gem_object_move_to_active(struct drm_gem_object *obj,
Zou Nan hai852835f2010-05-21 09:08:56 +08001707 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001708{
1709 struct drm_device *dev = obj->dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001710 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001711 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona56ba562010-09-28 10:07:56 +01001712 uint32_t seqno = i915_gem_next_request_seqno(dev, ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001713
Zou Nan hai852835f2010-05-21 09:08:56 +08001714 BUG_ON(ring == NULL);
1715 obj_priv->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001716
1717 /* Add a reference if we're newly entering the active list. */
1718 if (!obj_priv->active) {
1719 drm_gem_object_reference(obj);
1720 obj_priv->active = 1;
1721 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001722
Eric Anholt673a3942008-07-30 12:06:12 -07001723 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson69dc4982010-10-19 10:36:51 +01001724 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.active_list);
1725 list_move_tail(&obj_priv->ring_list, &ring->active_list);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001726 obj_priv->last_rendering_seqno = seqno;
Eric Anholt673a3942008-07-30 12:06:12 -07001727}
1728
Eric Anholtce44b0e2008-11-06 16:00:31 -08001729static void
1730i915_gem_object_move_to_flushing(struct drm_gem_object *obj)
1731{
1732 struct drm_device *dev = obj->dev;
1733 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001734 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001735
1736 BUG_ON(!obj_priv->active);
Chris Wilson69dc4982010-10-19 10:36:51 +01001737 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.flushing_list);
1738 list_del_init(&obj_priv->ring_list);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001739 obj_priv->last_rendering_seqno = 0;
1740}
Eric Anholt673a3942008-07-30 12:06:12 -07001741
Chris Wilson963b4832009-09-20 23:03:54 +01001742/* Immediately discard the backing storage */
1743static void
1744i915_gem_object_truncate(struct drm_gem_object *obj)
1745{
Daniel Vetter23010e42010-03-08 13:35:02 +01001746 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001747 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001748
Chris Wilsonae9fed62010-08-07 11:01:30 +01001749 /* Our goal here is to return as much of the memory as
1750 * is possible back to the system as we are called from OOM.
1751 * To do this we must instruct the shmfs to drop all of its
1752 * backing pages, *now*. Here we mirror the actions taken
1753 * when by shmem_delete_inode() to release the backing store.
1754 */
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001755 inode = obj->filp->f_path.dentry->d_inode;
Chris Wilsonae9fed62010-08-07 11:01:30 +01001756 truncate_inode_pages(inode->i_mapping, 0);
1757 if (inode->i_op->truncate_range)
1758 inode->i_op->truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001759
1760 obj_priv->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001761}
1762
1763static inline int
1764i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj_priv)
1765{
1766 return obj_priv->madv == I915_MADV_DONTNEED;
1767}
1768
Eric Anholt673a3942008-07-30 12:06:12 -07001769static void
1770i915_gem_object_move_to_inactive(struct drm_gem_object *obj)
1771{
1772 struct drm_device *dev = obj->dev;
1773 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001774 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001775
Eric Anholt673a3942008-07-30 12:06:12 -07001776 if (obj_priv->pin_count != 0)
Chris Wilson69dc4982010-10-19 10:36:51 +01001777 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001778 else
Chris Wilson69dc4982010-10-19 10:36:51 +01001779 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
1780 list_del_init(&obj_priv->ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001781
Daniel Vetter99fcb762010-02-07 16:20:18 +01001782 BUG_ON(!list_empty(&obj_priv->gpu_write_list));
1783
Eric Anholtce44b0e2008-11-06 16:00:31 -08001784 obj_priv->last_rendering_seqno = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +08001785 obj_priv->ring = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001786 if (obj_priv->active) {
1787 obj_priv->active = 0;
1788 drm_gem_object_unreference(obj);
1789 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001790 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001791}
1792
Daniel Vetter63560392010-02-19 11:51:59 +01001793static void
1794i915_gem_process_flushing_list(struct drm_device *dev,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001795 uint32_t flush_domains,
Zou Nan hai852835f2010-05-21 09:08:56 +08001796 struct intel_ring_buffer *ring)
Daniel Vetter63560392010-02-19 11:51:59 +01001797{
1798 drm_i915_private_t *dev_priv = dev->dev_private;
1799 struct drm_i915_gem_object *obj_priv, *next;
1800
1801 list_for_each_entry_safe(obj_priv, next,
Chris Wilson64193402010-10-24 12:38:05 +01001802 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001803 gpu_write_list) {
Daniel Vettera8089e82010-04-09 19:05:09 +00001804 struct drm_gem_object *obj = &obj_priv->base;
Daniel Vetter63560392010-02-19 11:51:59 +01001805
Chris Wilson64193402010-10-24 12:38:05 +01001806 if (obj->write_domain & flush_domains) {
Daniel Vetter63560392010-02-19 11:51:59 +01001807 uint32_t old_write_domain = obj->write_domain;
1808
1809 obj->write_domain = 0;
1810 list_del_init(&obj_priv->gpu_write_list);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001811 i915_gem_object_move_to_active(obj, ring);
Daniel Vetter63560392010-02-19 11:51:59 +01001812
1813 /* update the fence lru list */
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001814 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
1815 struct drm_i915_fence_reg *reg =
1816 &dev_priv->fence_regs[obj_priv->fence_reg];
1817 list_move_tail(&reg->lru_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001818 &dev_priv->mm.fence_list);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001819 }
Daniel Vetter63560392010-02-19 11:51:59 +01001820
1821 trace_i915_gem_object_change_domain(obj,
1822 obj->read_domains,
1823 old_write_domain);
1824 }
1825 }
1826}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001827
Chris Wilson3cce4692010-10-27 16:11:02 +01001828int
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001829i915_add_request(struct drm_device *dev,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001830 struct drm_file *file,
Chris Wilson8dc5d142010-08-12 12:36:12 +01001831 struct drm_i915_gem_request *request,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001832 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001833{
1834 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001835 struct drm_i915_file_private *file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001836 uint32_t seqno;
1837 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001838 int ret;
1839
1840 BUG_ON(request == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001841
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001842 if (file != NULL)
1843 file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001844
Chris Wilson3cce4692010-10-27 16:11:02 +01001845 ret = ring->add_request(ring, &seqno);
1846 if (ret)
1847 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001848
Chris Wilsona56ba562010-09-28 10:07:56 +01001849 ring->outstanding_lazy_request = false;
Eric Anholt673a3942008-07-30 12:06:12 -07001850
1851 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001852 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001853 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001854 was_empty = list_empty(&ring->request_list);
1855 list_add_tail(&request->list, &ring->request_list);
1856
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001857 if (file_priv) {
Chris Wilson1c255952010-09-26 11:03:27 +01001858 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001859 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001860 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001861 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001862 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001863 }
Eric Anholt673a3942008-07-30 12:06:12 -07001864
Ben Gamarif65d9422009-09-14 17:48:44 -04001865 if (!dev_priv->mm.suspended) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001866 mod_timer(&dev_priv->hangcheck_timer,
1867 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001868 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001869 queue_delayed_work(dev_priv->wq,
1870 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001871 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001872 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001873}
1874
1875/**
1876 * Command execution barrier
1877 *
1878 * Ensures that all commands in the ring are finished
1879 * before signalling the CPU
1880 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001881static void
Zou Nan hai852835f2010-05-21 09:08:56 +08001882i915_retire_commands(struct drm_device *dev, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001883{
Eric Anholt673a3942008-07-30 12:06:12 -07001884 uint32_t flush_domains = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001885
1886 /* The sampler always gets flushed on i965 (sigh) */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001887 if (INTEL_INFO(dev)->gen >= 4)
Eric Anholt673a3942008-07-30 12:06:12 -07001888 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
Zou Nan hai852835f2010-05-21 09:08:56 +08001889
Chris Wilson78501ea2010-10-27 12:18:21 +01001890 ring->flush(ring, I915_GEM_DOMAIN_COMMAND, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07001891}
1892
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001893static inline void
1894i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001895{
Chris Wilson1c255952010-09-26 11:03:27 +01001896 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001897
Chris Wilson1c255952010-09-26 11:03:27 +01001898 if (!file_priv)
1899 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001900
Chris Wilson1c255952010-09-26 11:03:27 +01001901 spin_lock(&file_priv->mm.lock);
1902 list_del(&request->client_list);
1903 request->file_priv = NULL;
1904 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001905}
1906
Chris Wilsondfaae392010-09-22 10:31:52 +01001907static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1908 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001909{
Chris Wilsondfaae392010-09-22 10:31:52 +01001910 while (!list_empty(&ring->request_list)) {
1911 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001912
Chris Wilsondfaae392010-09-22 10:31:52 +01001913 request = list_first_entry(&ring->request_list,
1914 struct drm_i915_gem_request,
1915 list);
1916
1917 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001918 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001919 kfree(request);
1920 }
1921
1922 while (!list_empty(&ring->active_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001923 struct drm_i915_gem_object *obj_priv;
1924
Chris Wilsondfaae392010-09-22 10:31:52 +01001925 obj_priv = list_first_entry(&ring->active_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001926 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001927 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001928
Chris Wilsondfaae392010-09-22 10:31:52 +01001929 obj_priv->base.write_domain = 0;
1930 list_del_init(&obj_priv->gpu_write_list);
1931 i915_gem_object_move_to_inactive(&obj_priv->base);
Eric Anholt673a3942008-07-30 12:06:12 -07001932 }
Eric Anholt673a3942008-07-30 12:06:12 -07001933}
1934
Chris Wilson069efc12010-09-30 16:53:18 +01001935void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001936{
Chris Wilsondfaae392010-09-22 10:31:52 +01001937 struct drm_i915_private *dev_priv = dev->dev_private;
1938 struct drm_i915_gem_object *obj_priv;
Chris Wilson069efc12010-09-30 16:53:18 +01001939 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001940
Chris Wilsondfaae392010-09-22 10:31:52 +01001941 i915_gem_reset_ring_lists(dev_priv, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001942 i915_gem_reset_ring_lists(dev_priv, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001943 i915_gem_reset_ring_lists(dev_priv, &dev_priv->blt_ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01001944
1945 /* Remove anything from the flushing lists. The GPU cache is likely
1946 * to be lost on reset along with the data, so simply move the
1947 * lost bo to the inactive list.
1948 */
1949 while (!list_empty(&dev_priv->mm.flushing_list)) {
Chris Wilson9375e442010-09-19 12:21:28 +01001950 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
1951 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001952 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001953
1954 obj_priv->base.write_domain = 0;
Chris Wilsondfaae392010-09-22 10:31:52 +01001955 list_del_init(&obj_priv->gpu_write_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001956 i915_gem_object_move_to_inactive(&obj_priv->base);
1957 }
Chris Wilson9375e442010-09-19 12:21:28 +01001958
Chris Wilsondfaae392010-09-22 10:31:52 +01001959 /* Move everything out of the GPU domains to ensure we do any
1960 * necessary invalidation upon reuse.
1961 */
Chris Wilson77f01232010-09-19 12:31:36 +01001962 list_for_each_entry(obj_priv,
1963 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001964 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001965 {
1966 obj_priv->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
1967 }
Chris Wilson069efc12010-09-30 16:53:18 +01001968
1969 /* The fence registers are invalidated so clear them out */
1970 for (i = 0; i < 16; i++) {
1971 struct drm_i915_fence_reg *reg;
1972
1973 reg = &dev_priv->fence_regs[i];
1974 if (!reg->obj)
1975 continue;
1976
1977 i915_gem_clear_fence_reg(reg->obj);
1978 }
Eric Anholt673a3942008-07-30 12:06:12 -07001979}
1980
1981/**
1982 * This function clears the request list as sequence numbers are passed.
1983 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001984static void
1985i915_gem_retire_requests_ring(struct drm_device *dev,
1986 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001987{
1988 drm_i915_private_t *dev_priv = dev->dev_private;
1989 uint32_t seqno;
1990
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001991 if (!ring->status_page.page_addr ||
1992 list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001993 return;
1994
Chris Wilson23bc5982010-09-29 16:10:57 +01001995 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001996
Chris Wilson78501ea2010-10-27 12:18:21 +01001997 seqno = ring->get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001998 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001999 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002000
Zou Nan hai852835f2010-05-21 09:08:56 +08002001 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002002 struct drm_i915_gem_request,
2003 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002004
Chris Wilsondfaae392010-09-22 10:31:52 +01002005 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002006 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002007
2008 trace_i915_gem_request_retire(dev, request->seqno);
2009
2010 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002011 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002012 kfree(request);
2013 }
2014
2015 /* Move any buffers on the active list that are no longer referenced
2016 * by the ringbuffer to the flushing/inactive lists as appropriate.
2017 */
2018 while (!list_empty(&ring->active_list)) {
2019 struct drm_gem_object *obj;
2020 struct drm_i915_gem_object *obj_priv;
2021
2022 obj_priv = list_first_entry(&ring->active_list,
2023 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01002024 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002025
Chris Wilsondfaae392010-09-22 10:31:52 +01002026 if (!i915_seqno_passed(seqno, obj_priv->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002027 break;
2028
2029 obj = &obj_priv->base;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002030 if (obj->write_domain != 0)
2031 i915_gem_object_move_to_flushing(obj);
2032 else
2033 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002034 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002035
2036 if (unlikely (dev_priv->trace_irq_seqno &&
2037 i915_seqno_passed(dev_priv->trace_irq_seqno, seqno))) {
Chris Wilson78501ea2010-10-27 12:18:21 +01002038 ring->user_irq_put(ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002039 dev_priv->trace_irq_seqno = 0;
2040 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002041
2042 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002043}
2044
2045void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002046i915_gem_retire_requests(struct drm_device *dev)
2047{
2048 drm_i915_private_t *dev_priv = dev->dev_private;
2049
Chris Wilsonbe726152010-07-23 23:18:50 +01002050 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
2051 struct drm_i915_gem_object *obj_priv, *tmp;
2052
2053 /* We must be careful that during unbind() we do not
2054 * accidentally infinitely recurse into retire requests.
2055 * Currently:
2056 * retire -> free -> unbind -> wait -> retire_ring
2057 */
2058 list_for_each_entry_safe(obj_priv, tmp,
2059 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01002060 mm_list)
Chris Wilsonbe726152010-07-23 23:18:50 +01002061 i915_gem_free_object_tail(&obj_priv->base);
2062 }
2063
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002064 i915_gem_retire_requests_ring(dev, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01002065 i915_gem_retire_requests_ring(dev, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01002066 i915_gem_retire_requests_ring(dev, &dev_priv->blt_ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002067}
2068
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002069static void
Eric Anholt673a3942008-07-30 12:06:12 -07002070i915_gem_retire_work_handler(struct work_struct *work)
2071{
2072 drm_i915_private_t *dev_priv;
2073 struct drm_device *dev;
2074
2075 dev_priv = container_of(work, drm_i915_private_t,
2076 mm.retire_work.work);
2077 dev = dev_priv->dev;
2078
Chris Wilson891b48c2010-09-29 12:26:37 +01002079 /* Come back later if the device is busy... */
2080 if (!mutex_trylock(&dev->struct_mutex)) {
2081 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
2082 return;
2083 }
2084
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002085 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002086
Keith Packard6dbe2772008-10-14 21:41:13 -07002087 if (!dev_priv->mm.suspended &&
Zou Nan haid1b851f2010-05-21 09:08:57 +08002088 (!list_empty(&dev_priv->render_ring.request_list) ||
Chris Wilson549f7362010-10-19 11:19:32 +01002089 !list_empty(&dev_priv->bsd_ring.request_list) ||
2090 !list_empty(&dev_priv->blt_ring.request_list)))
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002091 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07002092 mutex_unlock(&dev->struct_mutex);
2093}
2094
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02002095int
Zou Nan hai852835f2010-05-21 09:08:56 +08002096i915_do_wait_request(struct drm_device *dev, uint32_t seqno,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002097 bool interruptible, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002098{
2099 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002100 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07002101 int ret = 0;
2102
2103 BUG_ON(seqno == 0);
2104
Ben Gamariba1234d2009-09-14 17:48:47 -04002105 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002106 return -EAGAIN;
Ben Gamariffed1d02009-09-14 17:48:41 -04002107
Chris Wilson5d97eb62010-11-10 20:40:02 +00002108 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01002109 struct drm_i915_gem_request *request;
2110
2111 request = kzalloc(sizeof(*request), GFP_KERNEL);
2112 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01002113 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01002114
2115 ret = i915_add_request(dev, NULL, request, ring);
2116 if (ret) {
2117 kfree(request);
2118 return ret;
2119 }
2120
2121 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01002122 }
2123
Chris Wilson78501ea2010-10-27 12:18:21 +01002124 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07002125 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002126 ier = I915_READ(DEIER) | I915_READ(GTIER);
2127 else
2128 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002129 if (!ier) {
2130 DRM_ERROR("something (likely vbetool) disabled "
2131 "interrupts, re-enabling\n");
2132 i915_driver_irq_preinstall(dev);
2133 i915_driver_irq_postinstall(dev);
2134 }
2135
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002136 trace_i915_gem_request_wait_begin(dev, seqno);
2137
Chris Wilsonb2223492010-10-27 15:27:33 +01002138 ring->waiting_seqno = seqno;
Chris Wilson78501ea2010-10-27 12:18:21 +01002139 ring->user_irq_get(ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002140 if (interruptible)
Zou Nan hai852835f2010-05-21 09:08:56 +08002141 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002142 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002143 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002144 else
Zou Nan hai852835f2010-05-21 09:08:56 +08002145 wait_event(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002146 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002147 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002148
Chris Wilson78501ea2010-10-27 12:18:21 +01002149 ring->user_irq_put(ring);
Chris Wilsonb2223492010-10-27 15:27:33 +01002150 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002151
2152 trace_i915_gem_request_wait_end(dev, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002153 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002154 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002155 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002156
2157 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002158 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002159 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002160 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002161
2162 /* Directly dispatch request retiring. While we have the work queue
2163 * to handle this, the waiter on a request often wants an associated
2164 * buffer to have made it to the inactive list, and we would need
2165 * a separate wait queue to handle that.
2166 */
2167 if (ret == 0)
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002168 i915_gem_retire_requests_ring(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002169
2170 return ret;
2171}
2172
Daniel Vetter48764bf2009-09-15 22:57:32 +02002173/**
2174 * Waits for a sequence number to be signaled, and cleans up the
2175 * request and object lists appropriately for that event.
2176 */
2177static int
Zou Nan hai852835f2010-05-21 09:08:56 +08002178i915_wait_request(struct drm_device *dev, uint32_t seqno,
Chris Wilsona56ba562010-09-28 10:07:56 +01002179 struct intel_ring_buffer *ring)
Daniel Vetter48764bf2009-09-15 22:57:32 +02002180{
Zou Nan hai852835f2010-05-21 09:08:56 +08002181 return i915_do_wait_request(dev, seqno, 1, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002182}
2183
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002184static void
Chris Wilson92204342010-09-18 11:02:01 +01002185i915_gem_flush_ring(struct drm_device *dev,
Chris Wilsonc78ec302010-09-20 12:50:23 +01002186 struct drm_file *file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002187 struct intel_ring_buffer *ring,
2188 uint32_t invalidate_domains,
2189 uint32_t flush_domains)
2190{
Chris Wilson78501ea2010-10-27 12:18:21 +01002191 ring->flush(ring, invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002192 i915_gem_process_flushing_list(dev, flush_domains, ring);
2193}
2194
2195static void
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002196i915_gem_flush(struct drm_device *dev,
Chris Wilsonc78ec302010-09-20 12:50:23 +01002197 struct drm_file *file_priv,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002198 uint32_t invalidate_domains,
Chris Wilson92204342010-09-18 11:02:01 +01002199 uint32_t flush_domains,
2200 uint32_t flush_rings)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002201{
2202 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter8bff9172010-02-11 22:19:40 +01002203
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002204 if (flush_domains & I915_GEM_DOMAIN_CPU)
2205 drm_agp_chipset_flush(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002206
Chris Wilson92204342010-09-18 11:02:01 +01002207 if ((flush_domains | invalidate_domains) & I915_GEM_GPU_DOMAINS) {
2208 if (flush_rings & RING_RENDER)
Chris Wilsonc78ec302010-09-20 12:50:23 +01002209 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002210 &dev_priv->render_ring,
2211 invalidate_domains, flush_domains);
2212 if (flush_rings & RING_BSD)
Chris Wilsonc78ec302010-09-20 12:50:23 +01002213 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002214 &dev_priv->bsd_ring,
2215 invalidate_domains, flush_domains);
Chris Wilson549f7362010-10-19 11:19:32 +01002216 if (flush_rings & RING_BLT)
2217 i915_gem_flush_ring(dev, file_priv,
2218 &dev_priv->blt_ring,
2219 invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002220 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002221}
2222
Eric Anholt673a3942008-07-30 12:06:12 -07002223/**
2224 * Ensures that all rendering to the object has completed and the object is
2225 * safe to unbind from the GTT or access from the CPU.
2226 */
2227static int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002228i915_gem_object_wait_rendering(struct drm_gem_object *obj,
2229 bool interruptible)
Eric Anholt673a3942008-07-30 12:06:12 -07002230{
2231 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01002232 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002233 int ret;
2234
Eric Anholte47c68e2008-11-14 13:35:19 -08002235 /* This function only exists to support waiting for existing rendering,
2236 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002237 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002238 BUG_ON((obj->write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002239
2240 /* If there is rendering queued on the buffer being evicted, wait for
2241 * it.
2242 */
2243 if (obj_priv->active) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002244 ret = i915_do_wait_request(dev,
2245 obj_priv->last_rendering_seqno,
2246 interruptible,
2247 obj_priv->ring);
2248 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002249 return ret;
2250 }
2251
2252 return 0;
2253}
2254
2255/**
2256 * Unbinds an object from the GTT aperture.
2257 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002258int
Eric Anholt673a3942008-07-30 12:06:12 -07002259i915_gem_object_unbind(struct drm_gem_object *obj)
2260{
2261 struct drm_device *dev = obj->dev;
Chris Wilson73aa8082010-09-30 11:46:12 +01002262 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002263 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002264 int ret = 0;
2265
Eric Anholt673a3942008-07-30 12:06:12 -07002266 if (obj_priv->gtt_space == NULL)
2267 return 0;
2268
2269 if (obj_priv->pin_count != 0) {
2270 DRM_ERROR("Attempting to unbind pinned buffer\n");
2271 return -EINVAL;
2272 }
2273
Eric Anholt5323fd02009-09-09 11:50:45 -07002274 /* blow away mappings if mapped through GTT */
2275 i915_gem_release_mmap(obj);
2276
Eric Anholt673a3942008-07-30 12:06:12 -07002277 /* Move the object to the CPU domain to ensure that
2278 * any possible CPU writes while it's not in the GTT
2279 * are flushed when we go to remap it. This will
2280 * also ensure that all pending GPU writes are finished
2281 * before we unbind.
2282 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002283 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilson8dc17752010-07-23 23:18:51 +01002284 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002285 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002286 /* Continue on if we fail due to EIO, the GPU is hung so we
2287 * should be safe and we need to cleanup or else we might
2288 * cause memory corruption through use-after-free.
2289 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002290 if (ret) {
2291 i915_gem_clflush_object(obj);
2292 obj->read_domains = obj->write_domain = I915_GEM_DOMAIN_CPU;
2293 }
Eric Anholt673a3942008-07-30 12:06:12 -07002294
Daniel Vetter96b47b62009-12-15 17:50:00 +01002295 /* release the fence reg _after_ flushing */
2296 if (obj_priv->fence_reg != I915_FENCE_REG_NONE)
2297 i915_gem_clear_fence_reg(obj);
2298
Chris Wilson73aa8082010-09-30 11:46:12 +01002299 drm_unbind_agp(obj_priv->agp_mem);
2300 drm_free_agp(obj_priv->agp_mem, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002301
Chris Wilsone5281cc2010-10-28 13:45:36 +01002302 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002303
Chris Wilsona00b10c2010-09-24 21:15:47 +01002304 i915_gem_info_remove_gtt(dev_priv, obj_priv);
Chris Wilson69dc4982010-10-19 10:36:51 +01002305 list_del_init(&obj_priv->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002306 /* Avoid an unnecessary call to unbind on rebind. */
2307 obj_priv->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002308
Chris Wilson73aa8082010-09-30 11:46:12 +01002309 drm_mm_put_block(obj_priv->gtt_space);
2310 obj_priv->gtt_space = NULL;
Chris Wilson9af90d12010-10-17 10:01:56 +01002311 obj_priv->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002312
Chris Wilson963b4832009-09-20 23:03:54 +01002313 if (i915_gem_object_is_purgeable(obj_priv))
2314 i915_gem_object_truncate(obj);
2315
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002316 trace_i915_gem_object_unbind(obj);
2317
Chris Wilson8dc17752010-07-23 23:18:51 +01002318 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002319}
2320
Chris Wilsona56ba562010-09-28 10:07:56 +01002321static int i915_ring_idle(struct drm_device *dev,
2322 struct intel_ring_buffer *ring)
2323{
Chris Wilson395b70b2010-10-28 21:28:46 +01002324 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002325 return 0;
2326
Chris Wilsona56ba562010-09-28 10:07:56 +01002327 i915_gem_flush_ring(dev, NULL, ring,
2328 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
2329 return i915_wait_request(dev,
2330 i915_gem_next_request_seqno(dev, ring),
2331 ring);
2332}
2333
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002334int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002335i915_gpu_idle(struct drm_device *dev)
2336{
2337 drm_i915_private_t *dev_priv = dev->dev_private;
2338 bool lists_empty;
Zou Nan hai852835f2010-05-21 09:08:56 +08002339 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002340
Zou Nan haid1b851f2010-05-21 09:08:57 +08002341 lists_empty = (list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson395b70b2010-10-28 21:28:46 +01002342 list_empty(&dev_priv->mm.active_list));
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002343 if (lists_empty)
2344 return 0;
2345
2346 /* Flush everything onto the inactive list. */
Chris Wilsona56ba562010-09-28 10:07:56 +01002347 ret = i915_ring_idle(dev, &dev_priv->render_ring);
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002348 if (ret)
2349 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002350
Chris Wilson87acb0a2010-10-19 10:13:00 +01002351 ret = i915_ring_idle(dev, &dev_priv->bsd_ring);
2352 if (ret)
2353 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002354
Chris Wilson549f7362010-10-19 11:19:32 +01002355 ret = i915_ring_idle(dev, &dev_priv->blt_ring);
2356 if (ret)
2357 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002358
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002359 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002360}
2361
Chris Wilsona00b10c2010-09-24 21:15:47 +01002362static void sandybridge_write_fence_reg(struct drm_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002363{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002364 struct drm_device *dev = obj->dev;
2365 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002366 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002367 u32 size = i915_gem_get_gtt_size(obj_priv);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002368 int regnum = obj_priv->fence_reg;
2369 uint64_t val;
2370
Chris Wilsona00b10c2010-09-24 21:15:47 +01002371 val = (uint64_t)((obj_priv->gtt_offset + size - 4096) &
Eric Anholt4e901fd2009-10-26 16:44:17 -07002372 0xfffff000) << 32;
2373 val |= obj_priv->gtt_offset & 0xfffff000;
2374 val |= (uint64_t)((obj_priv->stride / 128) - 1) <<
2375 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2376
2377 if (obj_priv->tiling_mode == I915_TILING_Y)
2378 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2379 val |= I965_FENCE_REG_VALID;
2380
2381 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (regnum * 8), val);
2382}
2383
Chris Wilsona00b10c2010-09-24 21:15:47 +01002384static void i965_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002385{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002386 struct drm_device *dev = obj->dev;
2387 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002388 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002389 u32 size = i915_gem_get_gtt_size(obj_priv);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002390 int regnum = obj_priv->fence_reg;
2391 uint64_t val;
2392
Chris Wilsona00b10c2010-09-24 21:15:47 +01002393 val = (uint64_t)((obj_priv->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002394 0xfffff000) << 32;
2395 val |= obj_priv->gtt_offset & 0xfffff000;
2396 val |= ((obj_priv->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2397 if (obj_priv->tiling_mode == I915_TILING_Y)
2398 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2399 val |= I965_FENCE_REG_VALID;
2400
2401 I915_WRITE64(FENCE_REG_965_0 + (regnum * 8), val);
2402}
2403
Chris Wilsona00b10c2010-09-24 21:15:47 +01002404static void i915_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002405{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002406 struct drm_device *dev = obj->dev;
2407 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002408 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002409 u32 size = i915_gem_get_gtt_size(obj_priv);
2410 uint32_t fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002411 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002412
2413 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
Chris Wilsona00b10c2010-09-24 21:15:47 +01002414 (obj_priv->gtt_offset & (size - 1))) {
2415 WARN(1, "%s: object 0x%08x [fenceable? %d] not 1M or size (0x%08x) aligned [gtt_space offset=%lx, size=%lx]\n",
Daniel Vetter75e9e912010-11-04 17:11:09 +01002416 __func__, obj_priv->gtt_offset, obj_priv->map_and_fenceable, size,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002417 obj_priv->gtt_space->start, obj_priv->gtt_space->size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002418 return;
2419 }
2420
Jesse Barnes0f973f22009-01-26 17:10:45 -08002421 if (obj_priv->tiling_mode == I915_TILING_Y &&
2422 HAS_128_BYTE_Y_TILING(dev))
2423 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002424 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002425 tile_width = 512;
2426
2427 /* Note: pitch better be a power of two tile widths */
2428 pitch_val = obj_priv->stride / tile_width;
2429 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002430
Daniel Vetterc36a2a62010-04-17 15:12:03 +02002431 if (obj_priv->tiling_mode == I915_TILING_Y &&
2432 HAS_128_BYTE_Y_TILING(dev))
2433 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2434 else
2435 WARN_ON(pitch_val > I915_FENCE_MAX_PITCH_VAL);
2436
Jesse Barnesde151cf2008-11-12 10:03:55 -08002437 val = obj_priv->gtt_offset;
2438 if (obj_priv->tiling_mode == I915_TILING_Y)
2439 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002440 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002441 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2442 val |= I830_FENCE_REG_VALID;
2443
Chris Wilsona00b10c2010-09-24 21:15:47 +01002444 fence_reg = obj_priv->fence_reg;
2445 if (fence_reg < 8)
2446 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002447 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002448 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002449 I915_WRITE(fence_reg, val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002450}
2451
Chris Wilsona00b10c2010-09-24 21:15:47 +01002452static void i830_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002453{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454 struct drm_device *dev = obj->dev;
2455 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002456 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002457 u32 size = i915_gem_get_gtt_size(obj_priv);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002458 int regnum = obj_priv->fence_reg;
2459 uint32_t val;
2460 uint32_t pitch_val;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002461 uint32_t fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002462
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002463 if ((obj_priv->gtt_offset & ~I830_FENCE_START_MASK) ||
Jesse Barnesde151cf2008-11-12 10:03:55 -08002464 (obj_priv->gtt_offset & (obj->size - 1))) {
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002465 WARN(1, "%s: object 0x%08x not 512K or size aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002466 __func__, obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002467 return;
2468 }
2469
Eric Anholte76a16d2009-05-26 17:44:56 -07002470 pitch_val = obj_priv->stride / 128;
2471 pitch_val = ffs(pitch_val) - 1;
2472 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2473
Jesse Barnesde151cf2008-11-12 10:03:55 -08002474 val = obj_priv->gtt_offset;
2475 if (obj_priv->tiling_mode == I915_TILING_Y)
2476 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002477 fence_size_bits = I830_FENCE_SIZE_BITS(size);
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002478 WARN_ON(fence_size_bits & ~0x00000f00);
2479 val |= fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002480 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2481 val |= I830_FENCE_REG_VALID;
2482
2483 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002484}
2485
Chris Wilson2cf34d72010-09-14 13:03:28 +01002486static int i915_find_fence_reg(struct drm_device *dev,
2487 bool interruptible)
Daniel Vetterae3db242010-02-19 11:51:58 +01002488{
Daniel Vetterae3db242010-02-19 11:51:58 +01002489 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002490 struct drm_i915_fence_reg *reg;
2491 struct drm_i915_gem_object *obj_priv = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002492 int i, avail, ret;
2493
2494 /* First try to find a free reg */
2495 avail = 0;
2496 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2497 reg = &dev_priv->fence_regs[i];
2498 if (!reg->obj)
2499 return i;
2500
Daniel Vetter23010e42010-03-08 13:35:02 +01002501 obj_priv = to_intel_bo(reg->obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002502 if (!obj_priv->pin_count)
2503 avail++;
2504 }
2505
2506 if (avail == 0)
2507 return -ENOSPC;
2508
2509 /* None available, try to steal one or wait for a user to finish */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002510 avail = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002511 list_for_each_entry(reg, &dev_priv->mm.fence_list,
2512 lru_list) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01002513 obj_priv = to_intel_bo(reg->obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002514 if (obj_priv->pin_count)
2515 continue;
2516
2517 /* found one! */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002518 avail = obj_priv->fence_reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002519 break;
2520 }
2521
Chris Wilsona00b10c2010-09-24 21:15:47 +01002522 BUG_ON(avail == I915_FENCE_REG_NONE);
Daniel Vetterae3db242010-02-19 11:51:58 +01002523
2524 /* We only have a reference on obj from the active list. put_fence_reg
2525 * might drop that one, causing a use-after-free in it. So hold a
2526 * private reference to obj like the other callers of put_fence_reg
2527 * (set_tiling ioctl) do. */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002528 drm_gem_object_reference(&obj_priv->base);
2529 ret = i915_gem_object_put_fence_reg(&obj_priv->base, interruptible);
2530 drm_gem_object_unreference(&obj_priv->base);
Daniel Vetterae3db242010-02-19 11:51:58 +01002531 if (ret != 0)
2532 return ret;
2533
Chris Wilsona00b10c2010-09-24 21:15:47 +01002534 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002535}
2536
Jesse Barnesde151cf2008-11-12 10:03:55 -08002537/**
2538 * i915_gem_object_get_fence_reg - set up a fence reg for an object
2539 * @obj: object to map through a fence reg
2540 *
2541 * When mapping objects through the GTT, userspace wants to be able to write
2542 * to them without having to worry about swizzling if the object is tiled.
2543 *
2544 * This function walks the fence regs looking for a free one for @obj,
2545 * stealing one if it can't find any.
2546 *
2547 * It then sets up the reg based on the object's properties: address, pitch
2548 * and tiling format.
2549 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002550int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002551i915_gem_object_get_fence_reg(struct drm_gem_object *obj,
2552 bool interruptible)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002553{
2554 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002555 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002556 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002557 struct drm_i915_fence_reg *reg = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002558 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002559
Eric Anholta09ba7f2009-08-29 12:49:51 -07002560 /* Just update our place in the LRU if our fence is getting used. */
2561 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002562 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
2563 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002564 return 0;
2565 }
2566
Jesse Barnesde151cf2008-11-12 10:03:55 -08002567 switch (obj_priv->tiling_mode) {
2568 case I915_TILING_NONE:
2569 WARN(1, "allocating a fence for non-tiled object?\n");
2570 break;
2571 case I915_TILING_X:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002572 if (!obj_priv->stride)
2573 return -EINVAL;
2574 WARN((obj_priv->stride & (512 - 1)),
2575 "object 0x%08x is X tiled but has non-512B pitch\n",
2576 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002577 break;
2578 case I915_TILING_Y:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002579 if (!obj_priv->stride)
2580 return -EINVAL;
2581 WARN((obj_priv->stride & (128 - 1)),
2582 "object 0x%08x is Y tiled but has non-128B pitch\n",
2583 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002584 break;
2585 }
2586
Chris Wilson2cf34d72010-09-14 13:03:28 +01002587 ret = i915_find_fence_reg(dev, interruptible);
Daniel Vetterae3db242010-02-19 11:51:58 +01002588 if (ret < 0)
2589 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002590
Daniel Vetterae3db242010-02-19 11:51:58 +01002591 obj_priv->fence_reg = ret;
2592 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002593 list_add_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002594
Jesse Barnesde151cf2008-11-12 10:03:55 -08002595 reg->obj = obj;
2596
Chris Wilsone259bef2010-09-17 00:32:02 +01002597 switch (INTEL_INFO(dev)->gen) {
2598 case 6:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002599 sandybridge_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002600 break;
2601 case 5:
2602 case 4:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002603 i965_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002604 break;
2605 case 3:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002606 i915_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002607 break;
2608 case 2:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002609 i830_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002610 break;
2611 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002612
Chris Wilsona00b10c2010-09-24 21:15:47 +01002613 trace_i915_gem_object_get_fence(obj,
2614 obj_priv->fence_reg,
2615 obj_priv->tiling_mode);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002616
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002617 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002618}
2619
2620/**
2621 * i915_gem_clear_fence_reg - clear out fence register info
2622 * @obj: object to clear
2623 *
2624 * Zeroes out the fence register itself and clears out the associated
2625 * data structures in dev_priv and obj_priv.
2626 */
2627static void
2628i915_gem_clear_fence_reg(struct drm_gem_object *obj)
2629{
2630 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002631 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002632 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002633 struct drm_i915_fence_reg *reg =
2634 &dev_priv->fence_regs[obj_priv->fence_reg];
Chris Wilsone259bef2010-09-17 00:32:02 +01002635 uint32_t fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002636
Chris Wilsone259bef2010-09-17 00:32:02 +01002637 switch (INTEL_INFO(dev)->gen) {
2638 case 6:
Eric Anholt4e901fd2009-10-26 16:44:17 -07002639 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 +
2640 (obj_priv->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002641 break;
2642 case 5:
2643 case 4:
Jesse Barnesde151cf2008-11-12 10:03:55 -08002644 I915_WRITE64(FENCE_REG_965_0 + (obj_priv->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002645 break;
2646 case 3:
Chris Wilson9b74f732010-09-22 19:10:44 +01002647 if (obj_priv->fence_reg >= 8)
Chris Wilsone259bef2010-09-17 00:32:02 +01002648 fence_reg = FENCE_REG_945_8 + (obj_priv->fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002649 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002650 case 2:
2651 fence_reg = FENCE_REG_830_0 + obj_priv->fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002652
2653 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002654 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002655 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002656
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002657 reg->obj = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002658 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002659 list_del_init(&reg->lru_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002660}
2661
Eric Anholt673a3942008-07-30 12:06:12 -07002662/**
Chris Wilson52dc7d32009-06-06 09:46:01 +01002663 * i915_gem_object_put_fence_reg - waits on outstanding fenced access
2664 * to the buffer to finish, and then resets the fence register.
2665 * @obj: tiled object holding a fence register.
Chris Wilson2cf34d72010-09-14 13:03:28 +01002666 * @bool: whether the wait upon the fence is interruptible
Chris Wilson52dc7d32009-06-06 09:46:01 +01002667 *
2668 * Zeroes out the fence register itself and clears out the associated
2669 * data structures in dev_priv and obj_priv.
2670 */
2671int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002672i915_gem_object_put_fence_reg(struct drm_gem_object *obj,
2673 bool interruptible)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002674{
2675 struct drm_device *dev = obj->dev;
Chris Wilson53640e12010-09-20 11:40:50 +01002676 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002677 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson53640e12010-09-20 11:40:50 +01002678 struct drm_i915_fence_reg *reg;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002679
2680 if (obj_priv->fence_reg == I915_FENCE_REG_NONE)
2681 return 0;
2682
Daniel Vetter10ae9bd2010-02-01 13:59:17 +01002683 /* If we've changed tiling, GTT-mappings of the object
2684 * need to re-fault to ensure that the correct fence register
2685 * setup is in place.
2686 */
2687 i915_gem_release_mmap(obj);
2688
Chris Wilson52dc7d32009-06-06 09:46:01 +01002689 /* On the i915, GPU access to tiled buffers is via a fence,
2690 * therefore we must wait for any outstanding access to complete
2691 * before clearing the fence.
2692 */
Chris Wilson53640e12010-09-20 11:40:50 +01002693 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
2694 if (reg->gpu) {
Chris Wilson52dc7d32009-06-06 09:46:01 +01002695 int ret;
2696
Chris Wilson2cf34d72010-09-14 13:03:28 +01002697 ret = i915_gem_object_flush_gpu_write_domain(obj, true);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002698 if (ret)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002699 return ret;
2700
Chris Wilson2cf34d72010-09-14 13:03:28 +01002701 ret = i915_gem_object_wait_rendering(obj, interruptible);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002702 if (ret)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002703 return ret;
Chris Wilson53640e12010-09-20 11:40:50 +01002704
2705 reg->gpu = false;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002706 }
2707
Daniel Vetter4a726612010-02-01 13:59:16 +01002708 i915_gem_object_flush_gtt_write_domain(obj);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002709 i915_gem_clear_fence_reg(obj);
Chris Wilson52dc7d32009-06-06 09:46:01 +01002710
2711 return 0;
2712}
2713
2714/**
Eric Anholt673a3942008-07-30 12:06:12 -07002715 * Finds free space in the GTT aperture and binds the object there.
2716 */
2717static int
Daniel Vetter920afa72010-09-16 17:54:23 +02002718i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
2719 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002720 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002721{
2722 struct drm_device *dev = obj->dev;
2723 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002724 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002725 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002726 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002727 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002728 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002729 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002730
Chris Wilsonbb6baf72009-09-22 14:24:13 +01002731 if (obj_priv->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002732 DRM_ERROR("Attempting to bind a purgeable object\n");
2733 return -EINVAL;
2734 }
2735
Chris Wilsona00b10c2010-09-24 21:15:47 +01002736 fence_size = i915_gem_get_gtt_size(obj_priv);
2737 fence_alignment = i915_gem_get_gtt_alignment(obj_priv);
Daniel Vetter5e783302010-11-14 22:32:36 +01002738 unfenced_alignment = i915_gem_get_unfenced_gtt_alignment(obj_priv);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002739
Eric Anholt673a3942008-07-30 12:06:12 -07002740 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002741 alignment = map_and_fenceable ? fence_alignment :
2742 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002743 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002744 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2745 return -EINVAL;
2746 }
2747
Daniel Vetter75e9e912010-11-04 17:11:09 +01002748 size = map_and_fenceable ? fence_size : obj->size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002749
Chris Wilson654fc602010-05-27 13:18:21 +01002750 /* If the object is bigger than the entire aperture, reject it early
2751 * before evicting everything in a vain attempt to find space.
2752 */
Daniel Vetter920afa72010-09-16 17:54:23 +02002753 if (obj->size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002754 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002755 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2756 return -E2BIG;
2757 }
2758
Eric Anholt673a3942008-07-30 12:06:12 -07002759 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002760 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002761 free_space =
2762 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002763 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002764 dev_priv->mm.gtt_mappable_end,
2765 0);
2766 else
2767 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002768 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002769
2770 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002771 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002772 obj_priv->gtt_space =
2773 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002774 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002775 dev_priv->mm.gtt_mappable_end,
2776 0);
2777 else
2778 obj_priv->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002779 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002780 }
Eric Anholt673a3942008-07-30 12:06:12 -07002781 if (obj_priv->gtt_space == NULL) {
2782 /* If the gtt is empty and we're still having trouble
2783 * fitting our object in, we're out of memory.
2784 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002785 ret = i915_gem_evict_something(dev, size, alignment,
2786 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002787 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002788 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002789
Eric Anholt673a3942008-07-30 12:06:12 -07002790 goto search_free;
2791 }
2792
Chris Wilsone5281cc2010-10-28 13:45:36 +01002793 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002794 if (ret) {
2795 drm_mm_put_block(obj_priv->gtt_space);
2796 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002797
2798 if (ret == -ENOMEM) {
2799 /* first try to clear up some space from the GTT */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002800 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002801 alignment,
2802 map_and_fenceable);
Chris Wilson07f73f62009-09-14 16:50:30 +01002803 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002804 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002805 if (gfpmask) {
2806 gfpmask = 0;
2807 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002808 }
2809
2810 return ret;
2811 }
2812
2813 goto search_free;
2814 }
2815
Eric Anholt673a3942008-07-30 12:06:12 -07002816 return ret;
2817 }
2818
Eric Anholt673a3942008-07-30 12:06:12 -07002819 /* Create an AGP memory structure pointing at our pages, and bind it
2820 * into the GTT.
2821 */
2822 obj_priv->agp_mem = drm_agp_bind_pages(dev,
Eric Anholt856fa192009-03-19 14:10:50 -07002823 obj_priv->pages,
Chris Wilson07f73f62009-09-14 16:50:30 +01002824 obj->size >> PAGE_SHIFT,
Chris Wilson9af90d12010-10-17 10:01:56 +01002825 obj_priv->gtt_space->start,
Keith Packardba1eb1d2008-10-14 19:55:10 -07002826 obj_priv->agp_type);
Eric Anholt673a3942008-07-30 12:06:12 -07002827 if (obj_priv->agp_mem == NULL) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002828 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002829 drm_mm_put_block(obj_priv->gtt_space);
2830 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002831
Chris Wilsona00b10c2010-09-24 21:15:47 +01002832 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002833 alignment, map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002834 if (ret)
Chris Wilson07f73f62009-09-14 16:50:30 +01002835 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002836
2837 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002838 }
Eric Anholt673a3942008-07-30 12:06:12 -07002839
Daniel Vetterfb7d5162010-10-01 22:05:20 +02002840 obj_priv->gtt_offset = obj_priv->gtt_space->start;
2841
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002842 /* keep track of bounds object by adding it to the inactive list */
Chris Wilson69dc4982010-10-19 10:36:51 +01002843 list_add_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002844 i915_gem_info_add_gtt(dev_priv, obj_priv);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002845
Eric Anholt673a3942008-07-30 12:06:12 -07002846 /* Assert that the object is not currently in any GPU domain. As it
2847 * wasn't in the GTT, there shouldn't be any way it could have been in
2848 * a GPU cache
2849 */
Chris Wilson21d509e2009-06-06 09:46:02 +01002850 BUG_ON(obj->read_domains & I915_GEM_GPU_DOMAINS);
2851 BUG_ON(obj->write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002852
Daniel Vetter75e9e912010-11-04 17:11:09 +01002853 trace_i915_gem_object_bind(obj, obj_priv->gtt_offset, map_and_fenceable);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002854
Daniel Vetter75e9e912010-11-04 17:11:09 +01002855 fenceable =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002856 obj_priv->gtt_space->size == fence_size &&
2857 (obj_priv->gtt_space->start & (fence_alignment -1)) == 0;
2858
Daniel Vetter75e9e912010-11-04 17:11:09 +01002859 mappable =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002860 obj_priv->gtt_offset + obj->size <= dev_priv->mm.gtt_mappable_end;
2861
Daniel Vetter75e9e912010-11-04 17:11:09 +01002862 obj_priv->map_and_fenceable = mappable && fenceable;
2863
Eric Anholt673a3942008-07-30 12:06:12 -07002864 return 0;
2865}
2866
2867void
2868i915_gem_clflush_object(struct drm_gem_object *obj)
2869{
Daniel Vetter23010e42010-03-08 13:35:02 +01002870 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002871
2872 /* If we don't have a page list set up, then we're not pinned
2873 * to GPU, and we can ignore the cache flush because it'll happen
2874 * again at bind time.
2875 */
Eric Anholt856fa192009-03-19 14:10:50 -07002876 if (obj_priv->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002877 return;
2878
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002879 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002880
Eric Anholt856fa192009-03-19 14:10:50 -07002881 drm_clflush_pages(obj_priv->pages, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002882}
2883
Eric Anholte47c68e2008-11-14 13:35:19 -08002884/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002885static int
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002886i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj,
2887 bool pipelined)
Eric Anholte47c68e2008-11-14 13:35:19 -08002888{
2889 struct drm_device *dev = obj->dev;
Eric Anholte47c68e2008-11-14 13:35:19 -08002890
2891 if ((obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002892 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002893
2894 /* Queue the GPU write cache flushing we need. */
Chris Wilsonc78ec302010-09-20 12:50:23 +01002895 i915_gem_flush_ring(dev, NULL,
Chris Wilson92204342010-09-18 11:02:01 +01002896 to_intel_bo(obj)->ring,
2897 0, obj->write_domain);
Chris Wilson48b956c2010-09-14 12:50:34 +01002898 BUG_ON(obj->write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002899
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002900 if (pipelined)
2901 return 0;
2902
Chris Wilson2cf34d72010-09-14 13:03:28 +01002903 return i915_gem_object_wait_rendering(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08002904}
2905
2906/** Flushes the GTT write domain for the object if it's dirty. */
2907static void
2908i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj)
2909{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002910 uint32_t old_write_domain;
2911
Eric Anholte47c68e2008-11-14 13:35:19 -08002912 if (obj->write_domain != I915_GEM_DOMAIN_GTT)
2913 return;
2914
2915 /* No actual flushing is required for the GTT write domain. Writes
2916 * to it immediately go to main memory as far as we know, so there's
2917 * no chipset flush. It also doesn't land in render cache.
2918 */
Chris Wilson4a684a42010-10-28 14:44:08 +01002919 i915_gem_release_mmap(obj);
2920
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002921 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002922 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002923
2924 trace_i915_gem_object_change_domain(obj,
2925 obj->read_domains,
2926 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002927}
2928
2929/** Flushes the CPU write domain for the object if it's dirty. */
2930static void
2931i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj)
2932{
2933 struct drm_device *dev = obj->dev;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002934 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002935
2936 if (obj->write_domain != I915_GEM_DOMAIN_CPU)
2937 return;
2938
2939 i915_gem_clflush_object(obj);
2940 drm_agp_chipset_flush(dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002941 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002942 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002943
2944 trace_i915_gem_object_change_domain(obj,
2945 obj->read_domains,
2946 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002947}
2948
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002949/**
2950 * Moves a single object to the GTT read, and possibly write domain.
2951 *
2952 * This function returns when the move is complete, including waiting on
2953 * flushes to occur.
2954 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002955int
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002956i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write)
2957{
Daniel Vetter23010e42010-03-08 13:35:02 +01002958 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002959 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002960 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002961
Eric Anholt02354392008-11-26 13:58:13 -08002962 /* Not valid to be called on unbound objects. */
2963 if (obj_priv->gtt_space == NULL)
2964 return -EINVAL;
2965
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002966 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002967 if (ret != 0)
2968 return ret;
2969
Chris Wilson72133422010-09-13 23:56:38 +01002970 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002971
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002972 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002973 ret = i915_gem_object_wait_rendering(obj, true);
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002974 if (ret)
2975 return ret;
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002976 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002977
2978 old_write_domain = obj->write_domain;
2979 old_read_domains = obj->read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002980
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002981 /* It should now be out of any other write domains, and we can update
2982 * the domain values for our changes.
2983 */
2984 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2985 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002986 if (write) {
Chris Wilson72133422010-09-13 23:56:38 +01002987 obj->read_domains = I915_GEM_DOMAIN_GTT;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002988 obj->write_domain = I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002989 obj_priv->dirty = 1;
2990 }
2991
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002992 trace_i915_gem_object_change_domain(obj,
2993 old_read_domains,
2994 old_write_domain);
2995
Eric Anholte47c68e2008-11-14 13:35:19 -08002996 return 0;
2997}
2998
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002999/*
3000 * Prepare buffer for display plane. Use uninterruptible for possible flush
3001 * wait, as in modesetting process we're not supposed to be interrupted.
3002 */
3003int
Chris Wilson48b956c2010-09-14 12:50:34 +01003004i915_gem_object_set_to_display_plane(struct drm_gem_object *obj,
3005 bool pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003006{
Daniel Vetter23010e42010-03-08 13:35:02 +01003007 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003008 uint32_t old_read_domains;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003009 int ret;
3010
3011 /* Not valid to be called on unbound objects. */
3012 if (obj_priv->gtt_space == NULL)
3013 return -EINVAL;
3014
Chris Wilsonced270f2010-09-26 22:47:46 +01003015 ret = i915_gem_object_flush_gpu_write_domain(obj, true);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01003016 if (ret)
3017 return ret;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003018
Chris Wilsonced270f2010-09-26 22:47:46 +01003019 /* Currently, we are always called from an non-interruptible context. */
3020 if (!pipelined) {
3021 ret = i915_gem_object_wait_rendering(obj, false);
3022 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003023 return ret;
3024 }
3025
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003026 i915_gem_object_flush_cpu_write_domain(obj);
3027
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003028 old_read_domains = obj->read_domains;
Chris Wilsonc78ec302010-09-20 12:50:23 +01003029 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003030
3031 trace_i915_gem_object_change_domain(obj,
3032 old_read_domains,
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003033 obj->write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003034
3035 return 0;
3036}
3037
Eric Anholte47c68e2008-11-14 13:35:19 -08003038/**
3039 * Moves a single object to the CPU read, and possibly write domain.
3040 *
3041 * This function returns when the move is complete, including waiting on
3042 * flushes to occur.
3043 */
3044static int
3045i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj, int write)
3046{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003047 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003048 int ret;
3049
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003050 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003051 if (ret != 0)
3052 return ret;
3053
3054 i915_gem_object_flush_gtt_write_domain(obj);
3055
3056 /* If we have a partially-valid cache of the object in the CPU,
3057 * finish invalidating it and free the per-page flags.
3058 */
3059 i915_gem_object_set_to_full_cpu_read_domain(obj);
3060
Chris Wilson72133422010-09-13 23:56:38 +01003061 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01003062 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson72133422010-09-13 23:56:38 +01003063 if (ret)
3064 return ret;
3065 }
3066
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003067 old_write_domain = obj->write_domain;
3068 old_read_domains = obj->read_domains;
3069
Eric Anholte47c68e2008-11-14 13:35:19 -08003070 /* Flush the CPU cache if it's still invalid. */
3071 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
3072 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003073
3074 obj->read_domains |= I915_GEM_DOMAIN_CPU;
3075 }
3076
3077 /* It should now be out of any other write domains, and we can update
3078 * the domain values for our changes.
3079 */
3080 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
3081
3082 /* If we're writing through the CPU, then the GPU read domains will
3083 * need to be invalidated at next use.
3084 */
3085 if (write) {
Chris Wilsonc78ec302010-09-20 12:50:23 +01003086 obj->read_domains = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003087 obj->write_domain = I915_GEM_DOMAIN_CPU;
3088 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003089
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003090 trace_i915_gem_object_change_domain(obj,
3091 old_read_domains,
3092 old_write_domain);
3093
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003094 return 0;
3095}
3096
Eric Anholt673a3942008-07-30 12:06:12 -07003097/*
3098 * Set the next domain for the specified object. This
3099 * may not actually perform the necessary flushing/invaliding though,
3100 * as that may want to be batched with other set_domain operations
3101 *
3102 * This is (we hope) the only really tricky part of gem. The goal
3103 * is fairly simple -- track which caches hold bits of the object
3104 * and make sure they remain coherent. A few concrete examples may
3105 * help to explain how it works. For shorthand, we use the notation
3106 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
3107 * a pair of read and write domain masks.
3108 *
3109 * Case 1: the batch buffer
3110 *
3111 * 1. Allocated
3112 * 2. Written by CPU
3113 * 3. Mapped to GTT
3114 * 4. Read by GPU
3115 * 5. Unmapped from GTT
3116 * 6. Freed
3117 *
3118 * Let's take these a step at a time
3119 *
3120 * 1. Allocated
3121 * Pages allocated from the kernel may still have
3122 * cache contents, so we set them to (CPU, CPU) always.
3123 * 2. Written by CPU (using pwrite)
3124 * The pwrite function calls set_domain (CPU, CPU) and
3125 * this function does nothing (as nothing changes)
3126 * 3. Mapped by GTT
3127 * This function asserts that the object is not
3128 * currently in any GPU-based read or write domains
3129 * 4. Read by GPU
3130 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
3131 * As write_domain is zero, this function adds in the
3132 * current read domains (CPU+COMMAND, 0).
3133 * flush_domains is set to CPU.
3134 * invalidate_domains is set to COMMAND
3135 * clflush is run to get data out of the CPU caches
3136 * then i915_dev_set_domain calls i915_gem_flush to
3137 * emit an MI_FLUSH and drm_agp_chipset_flush
3138 * 5. Unmapped from GTT
3139 * i915_gem_object_unbind calls set_domain (CPU, CPU)
3140 * flush_domains and invalidate_domains end up both zero
3141 * so no flushing/invalidating happens
3142 * 6. Freed
3143 * yay, done
3144 *
3145 * Case 2: The shared render buffer
3146 *
3147 * 1. Allocated
3148 * 2. Mapped to GTT
3149 * 3. Read/written by GPU
3150 * 4. set_domain to (CPU,CPU)
3151 * 5. Read/written by CPU
3152 * 6. Read/written by GPU
3153 *
3154 * 1. Allocated
3155 * Same as last example, (CPU, CPU)
3156 * 2. Mapped to GTT
3157 * Nothing changes (assertions find that it is not in the GPU)
3158 * 3. Read/written by GPU
3159 * execbuffer calls set_domain (RENDER, RENDER)
3160 * flush_domains gets CPU
3161 * invalidate_domains gets GPU
3162 * clflush (obj)
3163 * MI_FLUSH and drm_agp_chipset_flush
3164 * 4. set_domain (CPU, CPU)
3165 * flush_domains gets GPU
3166 * invalidate_domains gets CPU
3167 * wait_rendering (obj) to make sure all drawing is complete.
3168 * This will include an MI_FLUSH to get the data from GPU
3169 * to memory
3170 * clflush (obj) to invalidate the CPU cache
3171 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
3172 * 5. Read/written by CPU
3173 * cache lines are loaded and dirtied
3174 * 6. Read written by GPU
3175 * Same as last GPU access
3176 *
3177 * Case 3: The constant buffer
3178 *
3179 * 1. Allocated
3180 * 2. Written by CPU
3181 * 3. Read by GPU
3182 * 4. Updated (written) by CPU again
3183 * 5. Read by GPU
3184 *
3185 * 1. Allocated
3186 * (CPU, CPU)
3187 * 2. Written by CPU
3188 * (CPU, CPU)
3189 * 3. Read by GPU
3190 * (CPU+RENDER, 0)
3191 * flush_domains = CPU
3192 * invalidate_domains = RENDER
3193 * clflush (obj)
3194 * MI_FLUSH
3195 * drm_agp_chipset_flush
3196 * 4. Updated (written) by CPU again
3197 * (CPU, CPU)
3198 * flush_domains = 0 (no previous write domain)
3199 * invalidate_domains = 0 (no new read domains)
3200 * 5. Read by GPU
3201 * (CPU+RENDER, 0)
3202 * flush_domains = CPU
3203 * invalidate_domains = RENDER
3204 * clflush (obj)
3205 * MI_FLUSH
3206 * drm_agp_chipset_flush
3207 */
Keith Packardc0d90822008-11-20 23:11:08 -08003208static void
Chris Wilsonb6651452010-10-23 10:15:06 +01003209i915_gem_object_set_to_gpu_domain(struct drm_gem_object *obj,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003210 struct intel_ring_buffer *ring,
3211 struct change_domains *cd)
Eric Anholt673a3942008-07-30 12:06:12 -07003212{
Daniel Vetter23010e42010-03-08 13:35:02 +01003213 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003214 uint32_t invalidate_domains = 0;
3215 uint32_t flush_domains = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003216
Eric Anholt673a3942008-07-30 12:06:12 -07003217 /*
3218 * If the object isn't moving to a new write domain,
3219 * let the object stay in multiple read domains
3220 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003221 if (obj->pending_write_domain == 0)
3222 obj->pending_read_domains |= obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07003223
3224 /*
3225 * Flush the current write domain if
3226 * the new read domains don't match. Invalidate
3227 * any read domains which differ from the old
3228 * write domain
3229 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003230 if (obj->write_domain &&
Chris Wilson13b29282010-11-01 12:22:48 +00003231 (obj->write_domain != obj->pending_read_domains ||
3232 obj_priv->ring != ring)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003233 flush_domains |= obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08003234 invalidate_domains |=
3235 obj->pending_read_domains & ~obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003236 }
3237 /*
3238 * Invalidate any read caches which may have
3239 * stale data. That is, any new read domains.
3240 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003241 invalidate_domains |= obj->pending_read_domains & ~obj->read_domains;
Chris Wilson3d2a8122010-09-29 11:39:53 +01003242 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU)
Eric Anholt673a3942008-07-30 12:06:12 -07003243 i915_gem_clflush_object(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003244
Chris Wilson4a684a42010-10-28 14:44:08 +01003245 /* blow away mappings if mapped through GTT */
3246 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_GTT)
3247 i915_gem_release_mmap(obj);
3248
Eric Anholtefbeed92009-02-19 14:54:51 -08003249 /* The actual obj->write_domain will be updated with
3250 * pending_write_domain after we emit the accumulated flush for all
3251 * of our domain changes in execbuffers (which clears objects'
3252 * write_domains). So if we have a current write domain that we
3253 * aren't changing, set pending_write_domain to that.
3254 */
3255 if (flush_domains == 0 && obj->pending_write_domain == 0)
3256 obj->pending_write_domain = obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003257
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003258 cd->invalidate_domains |= invalidate_domains;
3259 cd->flush_domains |= flush_domains;
Chris Wilsonb6651452010-10-23 10:15:06 +01003260 if (flush_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003261 cd->flush_rings |= obj_priv->ring->id;
Chris Wilsonb6651452010-10-23 10:15:06 +01003262 if (invalidate_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003263 cd->flush_rings |= ring->id;
Eric Anholt673a3942008-07-30 12:06:12 -07003264}
3265
3266/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003267 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003268 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003269 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3270 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3271 */
3272static void
3273i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj)
3274{
Daniel Vetter23010e42010-03-08 13:35:02 +01003275 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003276
3277 if (!obj_priv->page_cpu_valid)
3278 return;
3279
3280 /* If we're partially in the CPU read domain, finish moving it in.
3281 */
3282 if (obj->read_domains & I915_GEM_DOMAIN_CPU) {
3283 int i;
3284
3285 for (i = 0; i <= (obj->size - 1) / PAGE_SIZE; i++) {
3286 if (obj_priv->page_cpu_valid[i])
3287 continue;
Eric Anholt856fa192009-03-19 14:10:50 -07003288 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003289 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003290 }
3291
3292 /* Free the page_cpu_valid mappings which are now stale, whether
3293 * or not we've got I915_GEM_DOMAIN_CPU.
3294 */
Eric Anholt9a298b22009-03-24 12:23:04 -07003295 kfree(obj_priv->page_cpu_valid);
Eric Anholte47c68e2008-11-14 13:35:19 -08003296 obj_priv->page_cpu_valid = NULL;
3297}
3298
3299/**
3300 * Set the CPU read domain on a range of the object.
3301 *
3302 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3303 * not entirely valid. The page_cpu_valid member of the object flags which
3304 * pages have been flushed, and will be respected by
3305 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3306 * of the whole object.
3307 *
3308 * This function returns when the move is complete, including waiting on
3309 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003310 */
3311static int
Eric Anholte47c68e2008-11-14 13:35:19 -08003312i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
3313 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003314{
Daniel Vetter23010e42010-03-08 13:35:02 +01003315 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003316 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003317 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003318
Eric Anholte47c68e2008-11-14 13:35:19 -08003319 if (offset == 0 && size == obj->size)
3320 return i915_gem_object_set_to_cpu_domain(obj, 0);
3321
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003322 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003323 if (ret != 0)
3324 return ret;
3325 i915_gem_object_flush_gtt_write_domain(obj);
3326
3327 /* If we're already fully in the CPU read domain, we're done. */
3328 if (obj_priv->page_cpu_valid == NULL &&
3329 (obj->read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003330 return 0;
3331
Eric Anholte47c68e2008-11-14 13:35:19 -08003332 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3333 * newly adding I915_GEM_DOMAIN_CPU
3334 */
Eric Anholt673a3942008-07-30 12:06:12 -07003335 if (obj_priv->page_cpu_valid == NULL) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003336 obj_priv->page_cpu_valid = kzalloc(obj->size / PAGE_SIZE,
3337 GFP_KERNEL);
Eric Anholte47c68e2008-11-14 13:35:19 -08003338 if (obj_priv->page_cpu_valid == NULL)
3339 return -ENOMEM;
3340 } else if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0)
3341 memset(obj_priv->page_cpu_valid, 0, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003342
3343 /* Flush the cache on any pages that are still invalid from the CPU's
3344 * perspective.
3345 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003346 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3347 i++) {
Eric Anholt673a3942008-07-30 12:06:12 -07003348 if (obj_priv->page_cpu_valid[i])
3349 continue;
3350
Eric Anholt856fa192009-03-19 14:10:50 -07003351 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003352
3353 obj_priv->page_cpu_valid[i] = 1;
3354 }
3355
Eric Anholte47c68e2008-11-14 13:35:19 -08003356 /* It should now be out of any other write domains, and we can update
3357 * the domain values for our changes.
3358 */
3359 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
3360
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003361 old_read_domains = obj->read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003362 obj->read_domains |= I915_GEM_DOMAIN_CPU;
3363
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003364 trace_i915_gem_object_change_domain(obj,
3365 old_read_domains,
3366 obj->write_domain);
3367
Eric Anholt673a3942008-07-30 12:06:12 -07003368 return 0;
3369}
3370
3371/**
Eric Anholt673a3942008-07-30 12:06:12 -07003372 * Pin an object to the GTT and evaluate the relocations landing in it.
3373 */
3374static int
Chris Wilson9af90d12010-10-17 10:01:56 +01003375i915_gem_execbuffer_relocate(struct drm_i915_gem_object *obj,
3376 struct drm_file *file_priv,
3377 struct drm_i915_gem_exec_object2 *entry)
Eric Anholt673a3942008-07-30 12:06:12 -07003378{
Chris Wilson9af90d12010-10-17 10:01:56 +01003379 struct drm_device *dev = obj->base.dev;
Keith Packard0839ccb2008-10-30 19:38:48 -07003380 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson2549d6c2010-10-14 12:10:41 +01003381 struct drm_i915_gem_relocation_entry __user *user_relocs;
Chris Wilson9af90d12010-10-17 10:01:56 +01003382 struct drm_gem_object *target_obj = NULL;
3383 uint32_t target_handle = 0;
3384 int i, ret = 0;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003385
Chris Wilson2549d6c2010-10-14 12:10:41 +01003386 user_relocs = (void __user *)(uintptr_t)entry->relocs_ptr;
Eric Anholt673a3942008-07-30 12:06:12 -07003387 for (i = 0; i < entry->relocation_count; i++) {
Chris Wilson2549d6c2010-10-14 12:10:41 +01003388 struct drm_i915_gem_relocation_entry reloc;
Chris Wilson9af90d12010-10-17 10:01:56 +01003389 uint32_t target_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003390
Chris Wilson9af90d12010-10-17 10:01:56 +01003391 if (__copy_from_user_inatomic(&reloc,
3392 user_relocs+i,
3393 sizeof(reloc))) {
3394 ret = -EFAULT;
3395 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003396 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003397
Chris Wilson9af90d12010-10-17 10:01:56 +01003398 if (reloc.target_handle != target_handle) {
3399 drm_gem_object_unreference(target_obj);
3400
3401 target_obj = drm_gem_object_lookup(dev, file_priv,
3402 reloc.target_handle);
3403 if (target_obj == NULL) {
3404 ret = -ENOENT;
3405 break;
3406 }
3407
3408 target_handle = reloc.target_handle;
Eric Anholt673a3942008-07-30 12:06:12 -07003409 }
Chris Wilson9af90d12010-10-17 10:01:56 +01003410 target_offset = to_intel_bo(target_obj)->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003411
Chris Wilson8542a0b2009-09-09 21:15:15 +01003412#if WATCH_RELOC
3413 DRM_INFO("%s: obj %p offset %08x target %d "
3414 "read %08x write %08x gtt %08x "
3415 "presumed %08x delta %08x\n",
3416 __func__,
3417 obj,
Chris Wilson2549d6c2010-10-14 12:10:41 +01003418 (int) reloc.offset,
3419 (int) reloc.target_handle,
3420 (int) reloc.read_domains,
3421 (int) reloc.write_domain,
Chris Wilson9af90d12010-10-17 10:01:56 +01003422 (int) target_offset,
Chris Wilson2549d6c2010-10-14 12:10:41 +01003423 (int) reloc.presumed_offset,
3424 reloc.delta);
Chris Wilson8542a0b2009-09-09 21:15:15 +01003425#endif
3426
Eric Anholt673a3942008-07-30 12:06:12 -07003427 /* The target buffer should have appeared before us in the
3428 * exec_object list, so it should have a GTT space bound by now.
3429 */
Chris Wilson9af90d12010-10-17 10:01:56 +01003430 if (target_offset == 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07003431 DRM_ERROR("No GTT space found for object %d\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003432 reloc.target_handle);
Chris Wilson9af90d12010-10-17 10:01:56 +01003433 ret = -EINVAL;
3434 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003435 }
3436
Chris Wilson8542a0b2009-09-09 21:15:15 +01003437 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilson2549d6c2010-10-14 12:10:41 +01003438 if (reloc.write_domain & (reloc.write_domain - 1)) {
Daniel Vetter16edd552010-02-19 11:52:02 +01003439 DRM_ERROR("reloc with multiple write domains: "
3440 "obj %p target %d offset %d "
3441 "read %08x write %08x",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003442 obj, reloc.target_handle,
3443 (int) reloc.offset,
3444 reloc.read_domains,
3445 reloc.write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003446 ret = -EINVAL;
3447 break;
Daniel Vetter16edd552010-02-19 11:52:02 +01003448 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003449 if (reloc.write_domain & I915_GEM_DOMAIN_CPU ||
3450 reloc.read_domains & I915_GEM_DOMAIN_CPU) {
Chris Wilson8542a0b2009-09-09 21:15:15 +01003451 DRM_ERROR("reloc with read/write CPU domains: "
3452 "obj %p target %d offset %d "
3453 "read %08x write %08x",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003454 obj, reloc.target_handle,
3455 (int) reloc.offset,
3456 reloc.read_domains,
3457 reloc.write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003458 ret = -EINVAL;
3459 break;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003460 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003461 if (reloc.write_domain && target_obj->pending_write_domain &&
3462 reloc.write_domain != target_obj->pending_write_domain) {
Chris Wilson8542a0b2009-09-09 21:15:15 +01003463 DRM_ERROR("Write domain conflict: "
3464 "obj %p target %d offset %d "
3465 "new %08x old %08x\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003466 obj, reloc.target_handle,
3467 (int) reloc.offset,
3468 reloc.write_domain,
Chris Wilson8542a0b2009-09-09 21:15:15 +01003469 target_obj->pending_write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003470 ret = -EINVAL;
3471 break;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003472 }
3473
Chris Wilson2549d6c2010-10-14 12:10:41 +01003474 target_obj->pending_read_domains |= reloc.read_domains;
Chris Wilson878a3c32010-10-22 10:48:12 +01003475 target_obj->pending_write_domain |= reloc.write_domain;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003476
3477 /* If the relocation already has the right value in it, no
3478 * more work needs to be done.
3479 */
Chris Wilson9af90d12010-10-17 10:01:56 +01003480 if (target_offset == reloc.presumed_offset)
Chris Wilson8542a0b2009-09-09 21:15:15 +01003481 continue;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003482
3483 /* Check that the relocation address is valid... */
Chris Wilson9af90d12010-10-17 10:01:56 +01003484 if (reloc.offset > obj->base.size - 4) {
Eric Anholt673a3942008-07-30 12:06:12 -07003485 DRM_ERROR("Relocation beyond object bounds: "
3486 "obj %p target %d offset %d size %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003487 obj, reloc.target_handle,
Chris Wilson9af90d12010-10-17 10:01:56 +01003488 (int) reloc.offset, (int) obj->base.size);
3489 ret = -EINVAL;
3490 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003491 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003492 if (reloc.offset & 3) {
Eric Anholt673a3942008-07-30 12:06:12 -07003493 DRM_ERROR("Relocation not 4-byte aligned: "
3494 "obj %p target %d offset %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003495 obj, reloc.target_handle,
3496 (int) reloc.offset);
Chris Wilson9af90d12010-10-17 10:01:56 +01003497 ret = -EINVAL;
3498 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003499 }
3500
Chris Wilson8542a0b2009-09-09 21:15:15 +01003501 /* and points to somewhere within the target object. */
Chris Wilson2549d6c2010-10-14 12:10:41 +01003502 if (reloc.delta >= target_obj->size) {
Chris Wilsoncd0b9fb2009-09-15 23:23:18 +01003503 DRM_ERROR("Relocation beyond target object bounds: "
3504 "obj %p target %d delta %d size %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003505 obj, reloc.target_handle,
3506 (int) reloc.delta, (int) target_obj->size);
Chris Wilson9af90d12010-10-17 10:01:56 +01003507 ret = -EINVAL;
3508 break;
Eric Anholte47c68e2008-11-14 13:35:19 -08003509 }
3510
Chris Wilson9af90d12010-10-17 10:01:56 +01003511 reloc.delta += target_offset;
3512 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU) {
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003513 uint32_t page_offset = reloc.offset & ~PAGE_MASK;
3514 char *vaddr;
3515
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003516 vaddr = kmap_atomic(obj->pages[reloc.offset >> PAGE_SHIFT]);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003517 *(uint32_t *)(vaddr + page_offset) = reloc.delta;
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003518 kunmap_atomic(vaddr);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003519 } else {
3520 uint32_t __iomem *reloc_entry;
3521 void __iomem *reloc_page;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003522
Chris Wilson9af90d12010-10-17 10:01:56 +01003523 ret = i915_gem_object_set_to_gtt_domain(&obj->base, 1);
3524 if (ret)
3525 break;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003526
3527 /* Map the page containing the relocation we're going to perform. */
Chris Wilson9af90d12010-10-17 10:01:56 +01003528 reloc.offset += obj->gtt_offset;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003529 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003530 reloc.offset & PAGE_MASK);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003531 reloc_entry = (uint32_t __iomem *)
3532 (reloc_page + (reloc.offset & ~PAGE_MASK));
3533 iowrite32(reloc.delta, reloc_entry);
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003534 io_mapping_unmap_atomic(reloc_page);
Eric Anholt673a3942008-07-30 12:06:12 -07003535 }
3536
Chris Wilsonb5dc6082010-10-20 20:59:57 +01003537 /* and update the user's relocation entry */
3538 reloc.presumed_offset = target_offset;
3539 if (__copy_to_user_inatomic(&user_relocs[i].presumed_offset,
3540 &reloc.presumed_offset,
3541 sizeof(reloc.presumed_offset))) {
3542 ret = -EFAULT;
3543 break;
3544 }
Eric Anholt673a3942008-07-30 12:06:12 -07003545 }
3546
Chris Wilson9af90d12010-10-17 10:01:56 +01003547 drm_gem_object_unreference(target_obj);
3548 return ret;
3549}
3550
3551static int
3552i915_gem_execbuffer_pin(struct drm_device *dev,
3553 struct drm_file *file,
3554 struct drm_gem_object **object_list,
3555 struct drm_i915_gem_exec_object2 *exec_list,
3556 int count)
3557{
3558 struct drm_i915_private *dev_priv = dev->dev_private;
3559 int ret, i, retry;
3560
3561 /* attempt to pin all of the buffers into the GTT */
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003562 retry = 0;
3563 do {
Chris Wilson9af90d12010-10-17 10:01:56 +01003564 ret = 0;
3565 for (i = 0; i < count; i++) {
3566 struct drm_i915_gem_exec_object2 *entry = &exec_list[i];
Daniel Vetter16e809a2010-09-16 19:37:04 +02003567 struct drm_i915_gem_object *obj = to_intel_bo(object_list[i]);
Chris Wilson9af90d12010-10-17 10:01:56 +01003568 bool need_fence =
3569 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
3570 obj->tiling_mode != I915_TILING_NONE;
3571
Daniel Vetter16e809a2010-09-16 19:37:04 +02003572 /* g33/pnv can't fence buffers in the unmappable part */
3573 bool need_mappable =
3574 entry->relocation_count ? true : need_fence;
3575
Chris Wilson9af90d12010-10-17 10:01:56 +01003576 /* Check fence reg constraints and rebind if necessary */
Daniel Vetter75e9e912010-11-04 17:11:09 +01003577 if (need_mappable && !obj->map_and_fenceable) {
Chris Wilson9af90d12010-10-17 10:01:56 +01003578 ret = i915_gem_object_unbind(&obj->base);
3579 if (ret)
3580 break;
3581 }
3582
Daniel Vetter920afa72010-09-16 17:54:23 +02003583 ret = i915_gem_object_pin(&obj->base,
Daniel Vetter16e809a2010-09-16 19:37:04 +02003584 entry->alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003585 need_mappable);
Chris Wilson9af90d12010-10-17 10:01:56 +01003586 if (ret)
3587 break;
3588
3589 /*
3590 * Pre-965 chips need a fence register set up in order
3591 * to properly handle blits to/from tiled surfaces.
3592 */
3593 if (need_fence) {
3594 ret = i915_gem_object_get_fence_reg(&obj->base, true);
3595 if (ret) {
3596 i915_gem_object_unpin(&obj->base);
3597 break;
3598 }
3599
3600 dev_priv->fence_regs[obj->fence_reg].gpu = true;
3601 }
3602
3603 entry->offset = obj->gtt_offset;
3604 }
3605
3606 while (i--)
3607 i915_gem_object_unpin(object_list[i]);
3608
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003609 if (ret != -ENOSPC || retry > 1)
Chris Wilson9af90d12010-10-17 10:01:56 +01003610 return ret;
3611
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003612 /* First attempt, just clear anything that is purgeable.
3613 * Second attempt, clear the entire GTT.
3614 */
3615 ret = i915_gem_evict_everything(dev, retry == 0);
Chris Wilson9af90d12010-10-17 10:01:56 +01003616 if (ret)
3617 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003618
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003619 retry++;
3620 } while (1);
Eric Anholt673a3942008-07-30 12:06:12 -07003621}
3622
Chris Wilson13b29282010-11-01 12:22:48 +00003623static int
3624i915_gem_execbuffer_move_to_gpu(struct drm_device *dev,
3625 struct drm_file *file,
3626 struct intel_ring_buffer *ring,
3627 struct drm_gem_object **objects,
3628 int count)
3629{
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003630 struct change_domains cd;
Chris Wilson13b29282010-11-01 12:22:48 +00003631 int ret, i;
3632
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003633 cd.invalidate_domains = 0;
3634 cd.flush_domains = 0;
3635 cd.flush_rings = 0;
Chris Wilson13b29282010-11-01 12:22:48 +00003636 for (i = 0; i < count; i++)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003637 i915_gem_object_set_to_gpu_domain(objects[i], ring, &cd);
Chris Wilson13b29282010-11-01 12:22:48 +00003638
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003639 if (cd.invalidate_domains | cd.flush_domains) {
Chris Wilson13b29282010-11-01 12:22:48 +00003640#if WATCH_EXEC
3641 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3642 __func__,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003643 cd.invalidate_domains,
3644 cd.flush_domains);
Chris Wilson13b29282010-11-01 12:22:48 +00003645#endif
3646 i915_gem_flush(dev, file,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003647 cd.invalidate_domains,
3648 cd.flush_domains,
3649 cd.flush_rings);
Chris Wilson13b29282010-11-01 12:22:48 +00003650 }
3651
3652 for (i = 0; i < count; i++) {
3653 struct drm_i915_gem_object *obj = to_intel_bo(objects[i]);
3654 /* XXX replace with semaphores */
3655 if (obj->ring && ring != obj->ring) {
3656 ret = i915_gem_object_wait_rendering(&obj->base, true);
3657 if (ret)
3658 return ret;
3659 }
3660 }
3661
3662 return 0;
3663}
3664
Eric Anholt673a3942008-07-30 12:06:12 -07003665/* Throttle our rendering by waiting until the ring has completed our requests
3666 * emitted over 20 msec ago.
3667 *
Eric Anholtb9624422009-06-03 07:27:35 +00003668 * Note that if we were to use the current jiffies each time around the loop,
3669 * we wouldn't escape the function with any frames outstanding if the time to
3670 * render a frame was over 20ms.
3671 *
Eric Anholt673a3942008-07-30 12:06:12 -07003672 * This should get us reasonable parallelism between CPU and GPU but also
3673 * relatively low latency when blocking on a particular request to finish.
3674 */
3675static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003676i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003677{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003678 struct drm_i915_private *dev_priv = dev->dev_private;
3679 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003680 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003681 struct drm_i915_gem_request *request;
3682 struct intel_ring_buffer *ring = NULL;
3683 u32 seqno = 0;
3684 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003685
Chris Wilson1c255952010-09-26 11:03:27 +01003686 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003687 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003688 if (time_after_eq(request->emitted_jiffies, recent_enough))
3689 break;
3690
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003691 ring = request->ring;
3692 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003693 }
Chris Wilson1c255952010-09-26 11:03:27 +01003694 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003695
3696 if (seqno == 0)
3697 return 0;
3698
3699 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003700 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003701 /* And wait for the seqno passing without holding any locks and
3702 * causing extra latency for others. This is safe as the irq
3703 * generation is designed to be run atomically and so is
3704 * lockless.
3705 */
Chris Wilson78501ea2010-10-27 12:18:21 +01003706 ring->user_irq_get(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003707 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01003708 i915_seqno_passed(ring->get_seqno(ring), seqno)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003709 || atomic_read(&dev_priv->mm.wedged));
Chris Wilson78501ea2010-10-27 12:18:21 +01003710 ring->user_irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003711
3712 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3713 ret = -EIO;
3714 }
3715
3716 if (ret == 0)
3717 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003718
Eric Anholt673a3942008-07-30 12:06:12 -07003719 return ret;
3720}
3721
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003722static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003723i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec,
3724 uint64_t exec_offset)
Chris Wilson83d60792009-06-06 09:45:57 +01003725{
3726 uint32_t exec_start, exec_len;
3727
3728 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3729 exec_len = (uint32_t) exec->batch_len;
3730
3731 if ((exec_start | exec_len) & 0x7)
3732 return -EINVAL;
3733
3734 if (!exec_start)
3735 return -EINVAL;
3736
3737 return 0;
3738}
3739
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003740static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003741validate_exec_list(struct drm_i915_gem_exec_object2 *exec,
3742 int count)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003743{
Chris Wilson2549d6c2010-10-14 12:10:41 +01003744 int i;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003745
Chris Wilson2549d6c2010-10-14 12:10:41 +01003746 for (i = 0; i < count; i++) {
3747 char __user *ptr = (char __user *)(uintptr_t)exec[i].relocs_ptr;
3748 size_t length = exec[i].relocation_count * sizeof(struct drm_i915_gem_relocation_entry);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003749
Chris Wilson2549d6c2010-10-14 12:10:41 +01003750 if (!access_ok(VERIFY_READ, ptr, length))
3751 return -EFAULT;
3752
Chris Wilsonb5dc6082010-10-20 20:59:57 +01003753 /* we may also need to update the presumed offsets */
3754 if (!access_ok(VERIFY_WRITE, ptr, length))
3755 return -EFAULT;
3756
Chris Wilson2549d6c2010-10-14 12:10:41 +01003757 if (fault_in_pages_readable(ptr, length))
3758 return -EFAULT;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003759 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003760
Chris Wilson2549d6c2010-10-14 12:10:41 +01003761 return 0;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003762}
3763
Chris Wilson2549d6c2010-10-14 12:10:41 +01003764static int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003765i915_gem_do_execbuffer(struct drm_device *dev, void *data,
Chris Wilson9af90d12010-10-17 10:01:56 +01003766 struct drm_file *file,
Jesse Barnes76446ca2009-12-17 22:05:42 -05003767 struct drm_i915_gem_execbuffer2 *args,
3768 struct drm_i915_gem_exec_object2 *exec_list)
Eric Anholt673a3942008-07-30 12:06:12 -07003769{
3770 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003771 struct drm_gem_object **object_list = NULL;
3772 struct drm_gem_object *batch_obj;
Eric Anholt201361a2009-03-11 12:30:04 -07003773 struct drm_clip_rect *cliprects = NULL;
Chris Wilson8dc5d142010-08-12 12:36:12 +01003774 struct drm_i915_gem_request *request = NULL;
Chris Wilson9af90d12010-10-17 10:01:56 +01003775 int ret, i, flips;
Eric Anholt673a3942008-07-30 12:06:12 -07003776 uint64_t exec_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003777
Zou Nan hai852835f2010-05-21 09:08:56 +08003778 struct intel_ring_buffer *ring = NULL;
3779
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003780 ret = i915_gem_check_is_wedged(dev);
3781 if (ret)
3782 return ret;
3783
Chris Wilson2549d6c2010-10-14 12:10:41 +01003784 ret = validate_exec_list(exec_list, args->buffer_count);
3785 if (ret)
3786 return ret;
3787
Eric Anholt673a3942008-07-30 12:06:12 -07003788#if WATCH_EXEC
3789 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3790 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3791#endif
Chris Wilson549f7362010-10-19 11:19:32 +01003792 switch (args->flags & I915_EXEC_RING_MASK) {
3793 case I915_EXEC_DEFAULT:
3794 case I915_EXEC_RENDER:
3795 ring = &dev_priv->render_ring;
3796 break;
3797 case I915_EXEC_BSD:
Zou Nan haid1b851f2010-05-21 09:08:57 +08003798 if (!HAS_BSD(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01003799 DRM_ERROR("execbuf with invalid ring (BSD)\n");
Zou Nan haid1b851f2010-05-21 09:08:57 +08003800 return -EINVAL;
3801 }
3802 ring = &dev_priv->bsd_ring;
Chris Wilson549f7362010-10-19 11:19:32 +01003803 break;
3804 case I915_EXEC_BLT:
3805 if (!HAS_BLT(dev)) {
3806 DRM_ERROR("execbuf with invalid ring (BLT)\n");
3807 return -EINVAL;
3808 }
3809 ring = &dev_priv->blt_ring;
3810 break;
3811 default:
3812 DRM_ERROR("execbuf with unknown ring: %d\n",
3813 (int)(args->flags & I915_EXEC_RING_MASK));
3814 return -EINVAL;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003815 }
3816
Eric Anholt4f481ed2008-09-10 14:22:49 -07003817 if (args->buffer_count < 1) {
3818 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3819 return -EINVAL;
3820 }
Eric Anholtc8e0f932009-11-22 03:49:37 +01003821 object_list = drm_malloc_ab(sizeof(*object_list), args->buffer_count);
Jesse Barnes76446ca2009-12-17 22:05:42 -05003822 if (object_list == NULL) {
3823 DRM_ERROR("Failed to allocate object list for %d buffers\n",
Eric Anholt673a3942008-07-30 12:06:12 -07003824 args->buffer_count);
3825 ret = -ENOMEM;
3826 goto pre_mutex_err;
3827 }
Eric Anholt673a3942008-07-30 12:06:12 -07003828
Eric Anholt201361a2009-03-11 12:30:04 -07003829 if (args->num_cliprects != 0) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003830 cliprects = kcalloc(args->num_cliprects, sizeof(*cliprects),
3831 GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003832 if (cliprects == NULL) {
3833 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -07003834 goto pre_mutex_err;
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003835 }
Eric Anholt201361a2009-03-11 12:30:04 -07003836
3837 ret = copy_from_user(cliprects,
3838 (struct drm_clip_rect __user *)
3839 (uintptr_t) args->cliprects_ptr,
3840 sizeof(*cliprects) * args->num_cliprects);
3841 if (ret != 0) {
3842 DRM_ERROR("copy %d cliprects failed: %d\n",
3843 args->num_cliprects, ret);
Dan Carpenterc877cdc2010-06-23 19:03:01 +02003844 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -07003845 goto pre_mutex_err;
3846 }
3847 }
3848
Chris Wilson8dc5d142010-08-12 12:36:12 +01003849 request = kzalloc(sizeof(*request), GFP_KERNEL);
3850 if (request == NULL) {
3851 ret = -ENOMEM;
Chris Wilsona198bc82009-02-06 16:55:20 +00003852 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003853 }
3854
Chris Wilson76c1dec2010-09-25 11:22:51 +01003855 ret = i915_mutex_lock_interruptible(dev);
3856 if (ret)
3857 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003858
Eric Anholt673a3942008-07-30 12:06:12 -07003859 if (dev_priv->mm.suspended) {
Eric Anholt673a3942008-07-30 12:06:12 -07003860 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003861 ret = -EBUSY;
3862 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003863 }
3864
Keith Packardac94a962008-11-20 23:30:27 -08003865 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07003866 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson7e318e12010-10-27 13:43:39 +01003867 struct drm_i915_gem_object *obj_priv;
3868
Chris Wilson9af90d12010-10-17 10:01:56 +01003869 object_list[i] = drm_gem_object_lookup(dev, file,
Eric Anholt673a3942008-07-30 12:06:12 -07003870 exec_list[i].handle);
3871 if (object_list[i] == NULL) {
3872 DRM_ERROR("Invalid object handle %d at index %d\n",
3873 exec_list[i].handle, i);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003874 /* prevent error path from reading uninitialized data */
3875 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003876 ret = -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07003877 goto err;
3878 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003879
Daniel Vetter23010e42010-03-08 13:35:02 +01003880 obj_priv = to_intel_bo(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003881 if (obj_priv->in_execbuffer) {
3882 DRM_ERROR("Object %p appears more than once in object list\n",
3883 object_list[i]);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003884 /* prevent error path from reading uninitialized data */
3885 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003886 ret = -EINVAL;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003887 goto err;
3888 }
3889 obj_priv->in_execbuffer = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003890 }
3891
Chris Wilson9af90d12010-10-17 10:01:56 +01003892 /* Move the objects en-masse into the GTT, evicting if necessary. */
3893 ret = i915_gem_execbuffer_pin(dev, file,
3894 object_list, exec_list,
3895 args->buffer_count);
3896 if (ret)
3897 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003898
Chris Wilson9af90d12010-10-17 10:01:56 +01003899 /* The objects are in their final locations, apply the relocations. */
3900 for (i = 0; i < args->buffer_count; i++) {
3901 struct drm_i915_gem_object *obj = to_intel_bo(object_list[i]);
3902 obj->base.pending_read_domains = 0;
3903 obj->base.pending_write_domain = 0;
3904 ret = i915_gem_execbuffer_relocate(obj, file, &exec_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07003905 if (ret)
3906 goto err;
3907 }
3908
Eric Anholt673a3942008-07-30 12:06:12 -07003909 /* Set the pending read domains for the batch buffer to COMMAND */
3910 batch_obj = object_list[args->buffer_count-1];
Chris Wilson5f26a2c2009-06-06 09:45:58 +01003911 if (batch_obj->pending_write_domain) {
3912 DRM_ERROR("Attempting to use self-modifying batch buffer\n");
3913 ret = -EINVAL;
3914 goto err;
3915 }
3916 batch_obj->pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Eric Anholt673a3942008-07-30 12:06:12 -07003917
Chris Wilson9af90d12010-10-17 10:01:56 +01003918 /* Sanity check the batch buffer */
3919 exec_offset = to_intel_bo(batch_obj)->gtt_offset;
3920 ret = i915_gem_check_execbuffer(args, exec_offset);
Chris Wilson83d60792009-06-06 09:45:57 +01003921 if (ret != 0) {
3922 DRM_ERROR("execbuf with invalid offset/length\n");
3923 goto err;
3924 }
3925
Chris Wilson13b29282010-11-01 12:22:48 +00003926 ret = i915_gem_execbuffer_move_to_gpu(dev, file, ring,
3927 object_list, args->buffer_count);
3928 if (ret)
3929 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003930
Eric Anholt673a3942008-07-30 12:06:12 -07003931#if WATCH_COHERENCY
3932 for (i = 0; i < args->buffer_count; i++) {
3933 i915_gem_object_check_coherency(object_list[i],
3934 exec_list[i].handle);
3935 }
3936#endif
3937
Eric Anholt673a3942008-07-30 12:06:12 -07003938#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07003939 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07003940 args->batch_len,
3941 __func__,
3942 ~0);
3943#endif
3944
Chris Wilsone59f2ba2010-10-07 17:28:15 +01003945 /* Check for any pending flips. As we only maintain a flip queue depth
3946 * of 1, we can simply insert a WAIT for the next display flip prior
3947 * to executing the batch and avoid stalling the CPU.
3948 */
3949 flips = 0;
3950 for (i = 0; i < args->buffer_count; i++) {
3951 if (object_list[i]->write_domain)
3952 flips |= atomic_read(&to_intel_bo(object_list[i])->pending_flip);
3953 }
3954 if (flips) {
3955 int plane, flip_mask;
3956
3957 for (plane = 0; flips >> plane; plane++) {
3958 if (((flips >> plane) & 1) == 0)
3959 continue;
3960
3961 if (plane)
3962 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
3963 else
3964 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
3965
Chris Wilsone1f99ce2010-10-27 12:45:26 +01003966 ret = intel_ring_begin(ring, 2);
3967 if (ret)
3968 goto err;
3969
Chris Wilson78501ea2010-10-27 12:18:21 +01003970 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
3971 intel_ring_emit(ring, MI_NOOP);
3972 intel_ring_advance(ring);
Chris Wilsone59f2ba2010-10-07 17:28:15 +01003973 }
3974 }
3975
Eric Anholt673a3942008-07-30 12:06:12 -07003976 /* Exec the batchbuffer */
Chris Wilson78501ea2010-10-27 12:18:21 +01003977 ret = ring->dispatch_execbuffer(ring, args, cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003978 if (ret) {
3979 DRM_ERROR("dispatch failed %d\n", ret);
3980 goto err;
3981 }
3982
Chris Wilson7e318e12010-10-27 13:43:39 +01003983 for (i = 0; i < args->buffer_count; i++) {
3984 struct drm_gem_object *obj = object_list[i];
3985
3986 obj->read_domains = obj->pending_read_domains;
3987 obj->write_domain = obj->pending_write_domain;
3988
3989 i915_gem_object_move_to_active(obj, ring);
3990 if (obj->write_domain) {
3991 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
3992 obj_priv->dirty = 1;
3993 list_move_tail(&obj_priv->gpu_write_list,
3994 &ring->gpu_write_list);
3995 intel_mark_busy(dev, obj);
3996 }
3997
3998 trace_i915_gem_object_change_domain(obj,
3999 obj->read_domains,
4000 obj->write_domain);
4001 }
4002
Eric Anholt673a3942008-07-30 12:06:12 -07004003 /*
4004 * Ensure that the commands in the batch buffer are
4005 * finished before the interrupt fires
4006 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01004007 i915_retire_commands(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07004008
Chris Wilson3cce4692010-10-27 16:11:02 +01004009 if (i915_add_request(dev, file, request, ring))
Chris Wilson5d97eb62010-11-10 20:40:02 +00004010 i915_gem_next_request_seqno(dev, ring);
Chris Wilson3cce4692010-10-27 16:11:02 +01004011 else
4012 request = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07004013
Eric Anholt673a3942008-07-30 12:06:12 -07004014err:
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004015 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson7e318e12010-10-27 13:43:39 +01004016 if (object_list[i] == NULL)
4017 break;
4018
4019 to_intel_bo(object_list[i])->in_execbuffer = false;
Julia Lawallaad87df2008-12-21 16:28:47 +01004020 drm_gem_object_unreference(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05004021 }
Julia Lawallaad87df2008-12-21 16:28:47 +01004022
Eric Anholt673a3942008-07-30 12:06:12 -07004023 mutex_unlock(&dev->struct_mutex);
4024
Chris Wilson93533c22010-01-31 10:40:48 +00004025pre_mutex_err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07004026 drm_free_large(object_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07004027 kfree(cliprects);
Chris Wilson8dc5d142010-08-12 12:36:12 +01004028 kfree(request);
Eric Anholt673a3942008-07-30 12:06:12 -07004029
4030 return ret;
4031}
4032
Jesse Barnes76446ca2009-12-17 22:05:42 -05004033/*
4034 * Legacy execbuffer just creates an exec2 list from the original exec object
4035 * list array and passes it to the real function.
4036 */
4037int
4038i915_gem_execbuffer(struct drm_device *dev, void *data,
4039 struct drm_file *file_priv)
4040{
4041 struct drm_i915_gem_execbuffer *args = data;
4042 struct drm_i915_gem_execbuffer2 exec2;
4043 struct drm_i915_gem_exec_object *exec_list = NULL;
4044 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4045 int ret, i;
4046
4047#if WATCH_EXEC
4048 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4049 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4050#endif
4051
4052 if (args->buffer_count < 1) {
4053 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
4054 return -EINVAL;
4055 }
4056
4057 /* Copy in the exec list from userland */
4058 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
4059 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4060 if (exec_list == NULL || exec2_list == NULL) {
4061 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4062 args->buffer_count);
4063 drm_free_large(exec_list);
4064 drm_free_large(exec2_list);
4065 return -ENOMEM;
4066 }
4067 ret = copy_from_user(exec_list,
4068 (struct drm_i915_relocation_entry __user *)
4069 (uintptr_t) args->buffers_ptr,
4070 sizeof(*exec_list) * args->buffer_count);
4071 if (ret != 0) {
4072 DRM_ERROR("copy %d exec entries failed %d\n",
4073 args->buffer_count, ret);
4074 drm_free_large(exec_list);
4075 drm_free_large(exec2_list);
4076 return -EFAULT;
4077 }
4078
4079 for (i = 0; i < args->buffer_count; i++) {
4080 exec2_list[i].handle = exec_list[i].handle;
4081 exec2_list[i].relocation_count = exec_list[i].relocation_count;
4082 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
4083 exec2_list[i].alignment = exec_list[i].alignment;
4084 exec2_list[i].offset = exec_list[i].offset;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004085 if (INTEL_INFO(dev)->gen < 4)
Jesse Barnes76446ca2009-12-17 22:05:42 -05004086 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
4087 else
4088 exec2_list[i].flags = 0;
4089 }
4090
4091 exec2.buffers_ptr = args->buffers_ptr;
4092 exec2.buffer_count = args->buffer_count;
4093 exec2.batch_start_offset = args->batch_start_offset;
4094 exec2.batch_len = args->batch_len;
4095 exec2.DR1 = args->DR1;
4096 exec2.DR4 = args->DR4;
4097 exec2.num_cliprects = args->num_cliprects;
4098 exec2.cliprects_ptr = args->cliprects_ptr;
Zou Nan hai852835f2010-05-21 09:08:56 +08004099 exec2.flags = I915_EXEC_RENDER;
Jesse Barnes76446ca2009-12-17 22:05:42 -05004100
4101 ret = i915_gem_do_execbuffer(dev, data, file_priv, &exec2, exec2_list);
4102 if (!ret) {
4103 /* Copy the new buffer offsets back to the user's exec list. */
4104 for (i = 0; i < args->buffer_count; i++)
4105 exec_list[i].offset = exec2_list[i].offset;
4106 /* ... and back out to userspace */
4107 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4108 (uintptr_t) args->buffers_ptr,
4109 exec_list,
4110 sizeof(*exec_list) * args->buffer_count);
4111 if (ret) {
4112 ret = -EFAULT;
4113 DRM_ERROR("failed to copy %d exec entries "
4114 "back to user (%d)\n",
4115 args->buffer_count, ret);
4116 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004117 }
4118
4119 drm_free_large(exec_list);
4120 drm_free_large(exec2_list);
4121 return ret;
4122}
4123
4124int
4125i915_gem_execbuffer2(struct drm_device *dev, void *data,
4126 struct drm_file *file_priv)
4127{
4128 struct drm_i915_gem_execbuffer2 *args = data;
4129 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4130 int ret;
4131
4132#if WATCH_EXEC
4133 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4134 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4135#endif
4136
4137 if (args->buffer_count < 1) {
4138 DRM_ERROR("execbuf2 with %d buffers\n", args->buffer_count);
4139 return -EINVAL;
4140 }
4141
4142 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4143 if (exec2_list == NULL) {
4144 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4145 args->buffer_count);
4146 return -ENOMEM;
4147 }
4148 ret = copy_from_user(exec2_list,
4149 (struct drm_i915_relocation_entry __user *)
4150 (uintptr_t) args->buffers_ptr,
4151 sizeof(*exec2_list) * args->buffer_count);
4152 if (ret != 0) {
4153 DRM_ERROR("copy %d exec entries failed %d\n",
4154 args->buffer_count, ret);
4155 drm_free_large(exec2_list);
4156 return -EFAULT;
4157 }
4158
4159 ret = i915_gem_do_execbuffer(dev, data, file_priv, args, exec2_list);
4160 if (!ret) {
4161 /* Copy the new buffer offsets back to the user's exec list. */
4162 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4163 (uintptr_t) args->buffers_ptr,
4164 exec2_list,
4165 sizeof(*exec2_list) * args->buffer_count);
4166 if (ret) {
4167 ret = -EFAULT;
4168 DRM_ERROR("failed to copy %d exec entries "
4169 "back to user (%d)\n",
4170 args->buffer_count, ret);
4171 }
4172 }
4173
4174 drm_free_large(exec2_list);
4175 return ret;
4176}
4177
Eric Anholt673a3942008-07-30 12:06:12 -07004178int
Daniel Vetter920afa72010-09-16 17:54:23 +02004179i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004180 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07004181{
4182 struct drm_device *dev = obj->dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004183 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01004184 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004185 int ret;
4186
Daniel Vetter778c3542010-05-13 11:49:44 +02004187 BUG_ON(obj_priv->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Daniel Vetter75e9e912010-11-04 17:11:09 +01004188 BUG_ON(map_and_fenceable && !map_and_fenceable);
Chris Wilson23bc5982010-09-29 16:10:57 +01004189 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004190
4191 if (obj_priv->gtt_space != NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004192 if ((alignment && obj_priv->gtt_offset & (alignment - 1)) ||
Daniel Vetter75e9e912010-11-04 17:11:09 +01004193 (map_and_fenceable && !obj_priv->map_and_fenceable)) {
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004194 WARN(obj_priv->pin_count,
4195 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004196 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
4197 " obj->map_and_fenceable=%d\n",
Chris Wilsona00b10c2010-09-24 21:15:47 +01004198 obj_priv->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004199 map_and_fenceable,
4200 obj_priv->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004201 ret = i915_gem_object_unbind(obj);
4202 if (ret)
4203 return ret;
4204 }
4205 }
4206
Eric Anholt673a3942008-07-30 12:06:12 -07004207 if (obj_priv->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004208 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004209 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01004210 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07004211 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00004212 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004213
Chris Wilson74653782010-10-29 10:41:23 +01004214 if (obj_priv->pin_count++ == 0) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01004215 i915_gem_info_add_pin(dev_priv, obj_priv, map_and_fenceable);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004216 if (!obj_priv->active)
Chris Wilson69dc4982010-10-19 10:36:51 +01004217 list_move_tail(&obj_priv->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004218 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004219 }
Daniel Vetter75e9e912010-11-04 17:11:09 +01004220 BUG_ON(!obj_priv->pin_mappable && map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07004221
Chris Wilson23bc5982010-09-29 16:10:57 +01004222 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004223 return 0;
4224}
4225
4226void
4227i915_gem_object_unpin(struct drm_gem_object *obj)
4228{
4229 struct drm_device *dev = obj->dev;
4230 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01004231 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004232
Chris Wilson23bc5982010-09-29 16:10:57 +01004233 WARN_ON(i915_verify_lists(dev));
Chris Wilson74653782010-10-29 10:41:23 +01004234 BUG_ON(obj_priv->pin_count == 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004235 BUG_ON(obj_priv->gtt_space == NULL);
4236
Chris Wilson74653782010-10-29 10:41:23 +01004237 if (--obj_priv->pin_count == 0) {
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004238 if (!obj_priv->active)
Chris Wilson69dc4982010-10-19 10:36:51 +01004239 list_move_tail(&obj_priv->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07004240 &dev_priv->mm.inactive_list);
Chris Wilsona00b10c2010-09-24 21:15:47 +01004241 i915_gem_info_remove_pin(dev_priv, obj_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004242 }
Chris Wilson23bc5982010-09-29 16:10:57 +01004243 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004244}
4245
4246int
4247i915_gem_pin_ioctl(struct drm_device *dev, void *data,
4248 struct drm_file *file_priv)
4249{
4250 struct drm_i915_gem_pin *args = data;
4251 struct drm_gem_object *obj;
4252 struct drm_i915_gem_object *obj_priv;
4253 int ret;
4254
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004255 ret = i915_mutex_lock_interruptible(dev);
4256 if (ret)
4257 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004258
4259 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4260 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004261 ret = -ENOENT;
4262 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004263 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004264 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004265
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004266 if (obj_priv->madv != I915_MADV_WILLNEED) {
4267 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004268 ret = -EINVAL;
4269 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004270 }
4271
Jesse Barnes79e53942008-11-07 14:24:08 -08004272 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
4273 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
4274 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004275 ret = -EINVAL;
4276 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004277 }
4278
4279 obj_priv->user_pin_count++;
4280 obj_priv->pin_filp = file_priv;
4281 if (obj_priv->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01004282 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004283 if (ret)
4284 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004285 }
4286
4287 /* XXX - flush the CPU caches for pinned objects
4288 * as the X server doesn't manage domains yet
4289 */
Eric Anholte47c68e2008-11-14 13:35:19 -08004290 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004291 args->offset = obj_priv->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004292out:
Eric Anholt673a3942008-07-30 12:06:12 -07004293 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004294unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004295 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004296 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004297}
4298
4299int
4300i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
4301 struct drm_file *file_priv)
4302{
4303 struct drm_i915_gem_pin *args = data;
4304 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08004305 struct drm_i915_gem_object *obj_priv;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004306 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004307
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004308 ret = i915_mutex_lock_interruptible(dev);
4309 if (ret)
4310 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004311
4312 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4313 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004314 ret = -ENOENT;
4315 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004316 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004317 obj_priv = to_intel_bo(obj);
Chris Wilson76c1dec2010-09-25 11:22:51 +01004318
Jesse Barnes79e53942008-11-07 14:24:08 -08004319 if (obj_priv->pin_filp != file_priv) {
4320 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
4321 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004322 ret = -EINVAL;
4323 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004324 }
4325 obj_priv->user_pin_count--;
4326 if (obj_priv->user_pin_count == 0) {
4327 obj_priv->pin_filp = NULL;
4328 i915_gem_object_unpin(obj);
4329 }
Eric Anholt673a3942008-07-30 12:06:12 -07004330
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004331out:
Eric Anholt673a3942008-07-30 12:06:12 -07004332 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004333unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004334 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004335 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004336}
4337
4338int
4339i915_gem_busy_ioctl(struct drm_device *dev, void *data,
4340 struct drm_file *file_priv)
4341{
4342 struct drm_i915_gem_busy *args = data;
4343 struct drm_gem_object *obj;
4344 struct drm_i915_gem_object *obj_priv;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004345 int ret;
4346
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004347 ret = i915_mutex_lock_interruptible(dev);
4348 if (ret)
4349 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004350
Eric Anholt673a3942008-07-30 12:06:12 -07004351 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4352 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004353 ret = -ENOENT;
4354 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004355 }
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004356 obj_priv = to_intel_bo(obj);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004357
Chris Wilson0be555b2010-08-04 15:36:30 +01004358 /* Count all active objects as busy, even if they are currently not used
4359 * by the gpu. Users of this interface expect objects to eventually
4360 * become non-busy without any further actions, therefore emit any
4361 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004362 */
Chris Wilson0be555b2010-08-04 15:36:30 +01004363 args->busy = obj_priv->active;
4364 if (args->busy) {
4365 /* Unconditionally flush objects, even when the gpu still uses this
4366 * object. Userspace calling this function indicates that it wants to
4367 * use this buffer rather sooner than later, so issuing the required
4368 * flush earlier is beneficial.
4369 */
Chris Wilsonc78ec302010-09-20 12:50:23 +01004370 if (obj->write_domain & I915_GEM_GPU_DOMAINS)
4371 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01004372 obj_priv->ring,
4373 0, obj->write_domain);
Chris Wilson0be555b2010-08-04 15:36:30 +01004374
4375 /* Update the active list for the hardware's current position.
4376 * Otherwise this only updates on a delayed timer or when irqs
4377 * are actually unmasked, and our working set ends up being
4378 * larger than required.
4379 */
4380 i915_gem_retire_requests_ring(dev, obj_priv->ring);
4381
4382 args->busy = obj_priv->active;
4383 }
Eric Anholt673a3942008-07-30 12:06:12 -07004384
4385 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004386unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004387 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004388 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004389}
4390
4391int
4392i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4393 struct drm_file *file_priv)
4394{
4395 return i915_gem_ring_throttle(dev, file_priv);
4396}
4397
Chris Wilson3ef94da2009-09-14 16:50:29 +01004398int
4399i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4400 struct drm_file *file_priv)
4401{
4402 struct drm_i915_gem_madvise *args = data;
4403 struct drm_gem_object *obj;
4404 struct drm_i915_gem_object *obj_priv;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004405 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004406
4407 switch (args->madv) {
4408 case I915_MADV_DONTNEED:
4409 case I915_MADV_WILLNEED:
4410 break;
4411 default:
4412 return -EINVAL;
4413 }
4414
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004415 ret = i915_mutex_lock_interruptible(dev);
4416 if (ret)
4417 return ret;
4418
Chris Wilson3ef94da2009-09-14 16:50:29 +01004419 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4420 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004421 ret = -ENOENT;
4422 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004423 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004424 obj_priv = to_intel_bo(obj);
Chris Wilson3ef94da2009-09-14 16:50:29 +01004425
4426 if (obj_priv->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004427 ret = -EINVAL;
4428 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004429 }
4430
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004431 if (obj_priv->madv != __I915_MADV_PURGED)
4432 obj_priv->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004433
Chris Wilson2d7ef392009-09-20 23:13:10 +01004434 /* if the object is no longer bound, discard its backing storage */
4435 if (i915_gem_object_is_purgeable(obj_priv) &&
4436 obj_priv->gtt_space == NULL)
4437 i915_gem_object_truncate(obj);
4438
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004439 args->retained = obj_priv->madv != __I915_MADV_PURGED;
4440
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004441out:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004442 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004443unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004444 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004445 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004446}
4447
Daniel Vetterac52bc52010-04-09 19:05:06 +00004448struct drm_gem_object * i915_gem_alloc_object(struct drm_device *dev,
4449 size_t size)
4450{
Chris Wilson73aa8082010-09-30 11:46:12 +01004451 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00004452 struct drm_i915_gem_object *obj;
4453
4454 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
4455 if (obj == NULL)
4456 return NULL;
4457
4458 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
4459 kfree(obj);
4460 return NULL;
4461 }
4462
Chris Wilson73aa8082010-09-30 11:46:12 +01004463 i915_gem_info_add_obj(dev_priv, size);
4464
Daniel Vetterc397b902010-04-09 19:05:07 +00004465 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4466 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4467
4468 obj->agp_type = AGP_USER_MEMORY;
Daniel Vetter62b8b212010-04-09 19:05:08 +00004469 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00004470 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01004471 INIT_LIST_HEAD(&obj->mm_list);
4472 INIT_LIST_HEAD(&obj->ring_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004473 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004474 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01004475 /* Avoid an unnecessary call to unbind on the first bind. */
4476 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00004477
Daniel Vetterc397b902010-04-09 19:05:07 +00004478 return &obj->base;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004479}
4480
Eric Anholt673a3942008-07-30 12:06:12 -07004481int i915_gem_init_object(struct drm_gem_object *obj)
4482{
Daniel Vetterc397b902010-04-09 19:05:07 +00004483 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004484
Eric Anholt673a3942008-07-30 12:06:12 -07004485 return 0;
4486}
4487
Chris Wilsonbe726152010-07-23 23:18:50 +01004488static void i915_gem_free_object_tail(struct drm_gem_object *obj)
4489{
4490 struct drm_device *dev = obj->dev;
4491 drm_i915_private_t *dev_priv = dev->dev_private;
4492 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
4493 int ret;
4494
4495 ret = i915_gem_object_unbind(obj);
4496 if (ret == -ERESTARTSYS) {
Chris Wilson69dc4982010-10-19 10:36:51 +01004497 list_move(&obj_priv->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01004498 &dev_priv->mm.deferred_free_list);
4499 return;
4500 }
4501
Chris Wilson39a01d12010-10-28 13:03:06 +01004502 if (obj->map_list.map)
Chris Wilsonbe726152010-07-23 23:18:50 +01004503 i915_gem_free_mmap_offset(obj);
4504
4505 drm_gem_object_release(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +01004506 i915_gem_info_remove_obj(dev_priv, obj->size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004507
4508 kfree(obj_priv->page_cpu_valid);
4509 kfree(obj_priv->bit_17);
4510 kfree(obj_priv);
4511}
4512
Eric Anholt673a3942008-07-30 12:06:12 -07004513void i915_gem_free_object(struct drm_gem_object *obj)
4514{
Jesse Barnesde151cf2008-11-12 10:03:55 -08004515 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01004516 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004517
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004518 trace_i915_gem_object_destroy(obj);
4519
Eric Anholt673a3942008-07-30 12:06:12 -07004520 while (obj_priv->pin_count > 0)
4521 i915_gem_object_unpin(obj);
4522
Dave Airlie71acb5e2008-12-30 20:31:46 +10004523 if (obj_priv->phys_obj)
4524 i915_gem_detach_phys_object(dev, obj);
4525
Chris Wilsonbe726152010-07-23 23:18:50 +01004526 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004527}
4528
Jesse Barnes5669fca2009-02-17 15:13:31 -08004529int
Eric Anholt673a3942008-07-30 12:06:12 -07004530i915_gem_idle(struct drm_device *dev)
4531{
4532 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004533 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004534
Keith Packard6dbe2772008-10-14 21:41:13 -07004535 mutex_lock(&dev->struct_mutex);
4536
Chris Wilson87acb0a2010-10-19 10:13:00 +01004537 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004538 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004539 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004540 }
Eric Anholt673a3942008-07-30 12:06:12 -07004541
Chris Wilson29105cc2010-01-07 10:39:13 +00004542 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004543 if (ret) {
4544 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004545 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004546 }
Eric Anholt673a3942008-07-30 12:06:12 -07004547
Chris Wilson29105cc2010-01-07 10:39:13 +00004548 /* Under UMS, be paranoid and evict. */
4549 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00004550 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00004551 if (ret) {
4552 mutex_unlock(&dev->struct_mutex);
4553 return ret;
4554 }
4555 }
4556
4557 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4558 * We need to replace this with a semaphore, or something.
4559 * And not confound mm.suspended!
4560 */
4561 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02004562 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004563
4564 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004565 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004566
Keith Packard6dbe2772008-10-14 21:41:13 -07004567 mutex_unlock(&dev->struct_mutex);
4568
Chris Wilson29105cc2010-01-07 10:39:13 +00004569 /* Cancel the retire work handler, which should be idle now. */
4570 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4571
Eric Anholt673a3942008-07-30 12:06:12 -07004572 return 0;
4573}
4574
Jesse Barnese552eb72010-04-21 11:39:23 -07004575/*
4576 * 965+ support PIPE_CONTROL commands, which provide finer grained control
4577 * over cache flushing.
4578 */
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004579static int
Jesse Barnese552eb72010-04-21 11:39:23 -07004580i915_gem_init_pipe_control(struct drm_device *dev)
4581{
4582 drm_i915_private_t *dev_priv = dev->dev_private;
4583 struct drm_gem_object *obj;
4584 struct drm_i915_gem_object *obj_priv;
4585 int ret;
4586
Eric Anholt34dc4d42010-05-07 14:30:03 -07004587 obj = i915_gem_alloc_object(dev, 4096);
Jesse Barnese552eb72010-04-21 11:39:23 -07004588 if (obj == NULL) {
4589 DRM_ERROR("Failed to allocate seqno page\n");
4590 ret = -ENOMEM;
4591 goto err;
4592 }
4593 obj_priv = to_intel_bo(obj);
4594 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
4595
Daniel Vetter75e9e912010-11-04 17:11:09 +01004596 ret = i915_gem_object_pin(obj, 4096, true);
Jesse Barnese552eb72010-04-21 11:39:23 -07004597 if (ret)
4598 goto err_unref;
4599
4600 dev_priv->seqno_gfx_addr = obj_priv->gtt_offset;
4601 dev_priv->seqno_page = kmap(obj_priv->pages[0]);
4602 if (dev_priv->seqno_page == NULL)
4603 goto err_unpin;
4604
4605 dev_priv->seqno_obj = obj;
4606 memset(dev_priv->seqno_page, 0, PAGE_SIZE);
4607
4608 return 0;
4609
4610err_unpin:
4611 i915_gem_object_unpin(obj);
4612err_unref:
4613 drm_gem_object_unreference(obj);
4614err:
4615 return ret;
4616}
4617
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004618
4619static void
Jesse Barnese552eb72010-04-21 11:39:23 -07004620i915_gem_cleanup_pipe_control(struct drm_device *dev)
4621{
4622 drm_i915_private_t *dev_priv = dev->dev_private;
4623 struct drm_gem_object *obj;
4624 struct drm_i915_gem_object *obj_priv;
4625
4626 obj = dev_priv->seqno_obj;
4627 obj_priv = to_intel_bo(obj);
4628 kunmap(obj_priv->pages[0]);
4629 i915_gem_object_unpin(obj);
4630 drm_gem_object_unreference(obj);
4631 dev_priv->seqno_obj = NULL;
4632
4633 dev_priv->seqno_page = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07004634}
4635
Eric Anholt673a3942008-07-30 12:06:12 -07004636int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004637i915_gem_init_ringbuffer(struct drm_device *dev)
4638{
4639 drm_i915_private_t *dev_priv = dev->dev_private;
4640 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004641
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004642 if (HAS_PIPE_CONTROL(dev)) {
4643 ret = i915_gem_init_pipe_control(dev);
4644 if (ret)
4645 return ret;
4646 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004647
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004648 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004649 if (ret)
4650 goto cleanup_pipe_control;
4651
4652 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004653 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004654 if (ret)
4655 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004656 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004657
Chris Wilson549f7362010-10-19 11:19:32 +01004658 if (HAS_BLT(dev)) {
4659 ret = intel_init_blt_ring_buffer(dev);
4660 if (ret)
4661 goto cleanup_bsd_ring;
4662 }
4663
Chris Wilson6f392d5482010-08-07 11:01:22 +01004664 dev_priv->next_seqno = 1;
4665
Chris Wilson68f95ba2010-05-27 13:18:22 +01004666 return 0;
4667
Chris Wilson549f7362010-10-19 11:19:32 +01004668cleanup_bsd_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004669 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004670cleanup_render_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004671 intel_cleanup_ring_buffer(&dev_priv->render_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004672cleanup_pipe_control:
4673 if (HAS_PIPE_CONTROL(dev))
4674 i915_gem_cleanup_pipe_control(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004675 return ret;
4676}
4677
4678void
4679i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4680{
4681 drm_i915_private_t *dev_priv = dev->dev_private;
4682
Chris Wilson78501ea2010-10-27 12:18:21 +01004683 intel_cleanup_ring_buffer(&dev_priv->render_ring);
4684 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
4685 intel_cleanup_ring_buffer(&dev_priv->blt_ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004686 if (HAS_PIPE_CONTROL(dev))
4687 i915_gem_cleanup_pipe_control(dev);
4688}
4689
4690int
Eric Anholt673a3942008-07-30 12:06:12 -07004691i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4692 struct drm_file *file_priv)
4693{
4694 drm_i915_private_t *dev_priv = dev->dev_private;
4695 int ret;
4696
Jesse Barnes79e53942008-11-07 14:24:08 -08004697 if (drm_core_check_feature(dev, DRIVER_MODESET))
4698 return 0;
4699
Ben Gamariba1234d2009-09-14 17:48:47 -04004700 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004701 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04004702 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004703 }
4704
Eric Anholt673a3942008-07-30 12:06:12 -07004705 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004706 dev_priv->mm.suspended = 0;
4707
4708 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004709 if (ret != 0) {
4710 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004711 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004712 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004713
Chris Wilson69dc4982010-10-19 10:36:51 +01004714 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004715 BUG_ON(!list_empty(&dev_priv->render_ring.active_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004716 BUG_ON(!list_empty(&dev_priv->bsd_ring.active_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004717 BUG_ON(!list_empty(&dev_priv->blt_ring.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004718 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4719 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004720 BUG_ON(!list_empty(&dev_priv->render_ring.request_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004721 BUG_ON(!list_empty(&dev_priv->bsd_ring.request_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004722 BUG_ON(!list_empty(&dev_priv->blt_ring.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004723 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004724
Chris Wilson5f353082010-06-07 14:03:03 +01004725 ret = drm_irq_install(dev);
4726 if (ret)
4727 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004728
Eric Anholt673a3942008-07-30 12:06:12 -07004729 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004730
4731cleanup_ringbuffer:
4732 mutex_lock(&dev->struct_mutex);
4733 i915_gem_cleanup_ringbuffer(dev);
4734 dev_priv->mm.suspended = 1;
4735 mutex_unlock(&dev->struct_mutex);
4736
4737 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004738}
4739
4740int
4741i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4742 struct drm_file *file_priv)
4743{
Jesse Barnes79e53942008-11-07 14:24:08 -08004744 if (drm_core_check_feature(dev, DRIVER_MODESET))
4745 return 0;
4746
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004747 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07004748 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004749}
4750
4751void
4752i915_gem_lastclose(struct drm_device *dev)
4753{
4754 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004755
Eric Anholte806b492009-01-22 09:56:58 -08004756 if (drm_core_check_feature(dev, DRIVER_MODESET))
4757 return;
4758
Keith Packard6dbe2772008-10-14 21:41:13 -07004759 ret = i915_gem_idle(dev);
4760 if (ret)
4761 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004762}
4763
Chris Wilson64193402010-10-24 12:38:05 +01004764static void
4765init_ring_lists(struct intel_ring_buffer *ring)
4766{
4767 INIT_LIST_HEAD(&ring->active_list);
4768 INIT_LIST_HEAD(&ring->request_list);
4769 INIT_LIST_HEAD(&ring->gpu_write_list);
4770}
4771
Eric Anholt673a3942008-07-30 12:06:12 -07004772void
4773i915_gem_load(struct drm_device *dev)
4774{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004775 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07004776 drm_i915_private_t *dev_priv = dev->dev_private;
4777
Chris Wilson69dc4982010-10-19 10:36:51 +01004778 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004779 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
4780 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004781 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004782 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01004783 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Chris Wilson64193402010-10-24 12:38:05 +01004784 init_ring_lists(&dev_priv->render_ring);
4785 init_ring_lists(&dev_priv->bsd_ring);
4786 init_ring_lists(&dev_priv->blt_ring);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004787 for (i = 0; i < 16; i++)
4788 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004789 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4790 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004791 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01004792
Dave Airlie94400122010-07-20 13:15:31 +10004793 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4794 if (IS_GEN3(dev)) {
4795 u32 tmp = I915_READ(MI_ARB_STATE);
4796 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
4797 /* arb state is a masked write, so set bit + bit in mask */
4798 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
4799 I915_WRITE(MI_ARB_STATE, tmp);
4800 }
4801 }
4802
Jesse Barnesde151cf2008-11-12 10:03:55 -08004803 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004804 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4805 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004806
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004807 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004808 dev_priv->num_fence_regs = 16;
4809 else
4810 dev_priv->num_fence_regs = 8;
4811
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004812 /* Initialize fence registers to zero */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004813 switch (INTEL_INFO(dev)->gen) {
4814 case 6:
4815 for (i = 0; i < 16; i++)
4816 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (i * 8), 0);
4817 break;
4818 case 5:
4819 case 4:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004820 for (i = 0; i < 16; i++)
4821 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004822 break;
4823 case 3:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004824 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4825 for (i = 0; i < 8; i++)
4826 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004827 case 2:
4828 for (i = 0; i < 8; i++)
4829 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
4830 break;
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004831 }
Eric Anholt673a3942008-07-30 12:06:12 -07004832 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004833 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004834
4835 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4836 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4837 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004838}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004839
4840/*
4841 * Create a physically contiguous memory object for this object
4842 * e.g. for cursor + overlay regs
4843 */
Chris Wilson995b6762010-08-20 13:23:26 +01004844static int i915_gem_init_phys_object(struct drm_device *dev,
4845 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004846{
4847 drm_i915_private_t *dev_priv = dev->dev_private;
4848 struct drm_i915_gem_phys_object *phys_obj;
4849 int ret;
4850
4851 if (dev_priv->mm.phys_objs[id - 1] || !size)
4852 return 0;
4853
Eric Anholt9a298b22009-03-24 12:23:04 -07004854 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004855 if (!phys_obj)
4856 return -ENOMEM;
4857
4858 phys_obj->id = id;
4859
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004860 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004861 if (!phys_obj->handle) {
4862 ret = -ENOMEM;
4863 goto kfree_obj;
4864 }
4865#ifdef CONFIG_X86
4866 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4867#endif
4868
4869 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4870
4871 return 0;
4872kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004873 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004874 return ret;
4875}
4876
Chris Wilson995b6762010-08-20 13:23:26 +01004877static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004878{
4879 drm_i915_private_t *dev_priv = dev->dev_private;
4880 struct drm_i915_gem_phys_object *phys_obj;
4881
4882 if (!dev_priv->mm.phys_objs[id - 1])
4883 return;
4884
4885 phys_obj = dev_priv->mm.phys_objs[id - 1];
4886 if (phys_obj->cur_obj) {
4887 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4888 }
4889
4890#ifdef CONFIG_X86
4891 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4892#endif
4893 drm_pci_free(dev, phys_obj->handle);
4894 kfree(phys_obj);
4895 dev_priv->mm.phys_objs[id - 1] = NULL;
4896}
4897
4898void i915_gem_free_all_phys_object(struct drm_device *dev)
4899{
4900 int i;
4901
Dave Airlie260883c2009-01-22 17:58:49 +10004902 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004903 i915_gem_free_phys_object(dev, i);
4904}
4905
4906void i915_gem_detach_phys_object(struct drm_device *dev,
4907 struct drm_gem_object *obj)
4908{
Chris Wilsone5281cc2010-10-28 13:45:36 +01004909 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
4910 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
4911 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004912 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004913 int page_count;
4914
Dave Airlie71acb5e2008-12-30 20:31:46 +10004915 if (!obj_priv->phys_obj)
4916 return;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004917 vaddr = obj_priv->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004918
4919 page_count = obj->size / PAGE_SIZE;
4920
4921 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004922 struct page *page = read_cache_page_gfp(mapping, i,
4923 GFP_HIGHUSER | __GFP_RECLAIMABLE);
4924 if (!IS_ERR(page)) {
4925 char *dst = kmap_atomic(page);
4926 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4927 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004928
Chris Wilsone5281cc2010-10-28 13:45:36 +01004929 drm_clflush_pages(&page, 1);
4930
4931 set_page_dirty(page);
4932 mark_page_accessed(page);
4933 page_cache_release(page);
4934 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004935 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004936 drm_agp_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004937
Dave Airlie71acb5e2008-12-30 20:31:46 +10004938 obj_priv->phys_obj->cur_obj = NULL;
4939 obj_priv->phys_obj = NULL;
4940}
4941
4942int
4943i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004944 struct drm_gem_object *obj,
4945 int id,
4946 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004947{
Chris Wilsone5281cc2010-10-28 13:45:36 +01004948 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004949 drm_i915_private_t *dev_priv = dev->dev_private;
4950 struct drm_i915_gem_object *obj_priv;
4951 int ret = 0;
4952 int page_count;
4953 int i;
4954
4955 if (id > I915_MAX_PHYS_OBJECT)
4956 return -EINVAL;
4957
Daniel Vetter23010e42010-03-08 13:35:02 +01004958 obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004959
4960 if (obj_priv->phys_obj) {
4961 if (obj_priv->phys_obj->id == id)
4962 return 0;
4963 i915_gem_detach_phys_object(dev, obj);
4964 }
4965
Dave Airlie71acb5e2008-12-30 20:31:46 +10004966 /* create a new object */
4967 if (!dev_priv->mm.phys_objs[id - 1]) {
4968 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004969 obj->size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004970 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08004971 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004972 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004973 }
4974 }
4975
4976 /* bind to the object */
4977 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
4978 obj_priv->phys_obj->cur_obj = obj;
4979
Dave Airlie71acb5e2008-12-30 20:31:46 +10004980 page_count = obj->size / PAGE_SIZE;
4981
4982 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004983 struct page *page;
4984 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004985
Chris Wilsone5281cc2010-10-28 13:45:36 +01004986 page = read_cache_page_gfp(mapping, i,
4987 GFP_HIGHUSER | __GFP_RECLAIMABLE);
4988 if (IS_ERR(page))
4989 return PTR_ERR(page);
4990
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004991 src = kmap_atomic(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004992 dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004993 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004994 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004995
4996 mark_page_accessed(page);
4997 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004998 }
4999
5000 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005001}
5002
5003static int
5004i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
5005 struct drm_i915_gem_pwrite *args,
5006 struct drm_file *file_priv)
5007{
Daniel Vetter23010e42010-03-08 13:35:02 +01005008 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005009 void *obj_addr;
5010 int ret;
5011 char __user *user_data;
5012
5013 user_data = (char __user *) (uintptr_t) args->data_ptr;
5014 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
5015
Zhao Yakui44d98a62009-10-09 11:39:40 +08005016 DRM_DEBUG_DRIVER("obj_addr %p, %lld\n", obj_addr, args->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005017 ret = copy_from_user(obj_addr, user_data, args->size);
5018 if (ret)
5019 return -EFAULT;
5020
5021 drm_agp_chipset_flush(dev);
5022 return 0;
5023}
Eric Anholtb9624422009-06-03 07:27:35 +00005024
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005025void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005026{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005027 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005028
5029 /* Clean up our request list when the client is going away, so that
5030 * later retire_requests won't dereference our soon-to-be-gone
5031 * file_priv.
5032 */
Chris Wilson1c255952010-09-26 11:03:27 +01005033 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005034 while (!list_empty(&file_priv->mm.request_list)) {
5035 struct drm_i915_gem_request *request;
5036
5037 request = list_first_entry(&file_priv->mm.request_list,
5038 struct drm_i915_gem_request,
5039 client_list);
5040 list_del(&request->client_list);
5041 request->file_priv = NULL;
5042 }
Chris Wilson1c255952010-09-26 11:03:27 +01005043 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005044}
Chris Wilson31169712009-09-14 16:50:28 +01005045
Chris Wilson31169712009-09-14 16:50:28 +01005046static int
Chris Wilson1637ef42010-04-20 17:10:35 +01005047i915_gpu_is_active(struct drm_device *dev)
5048{
5049 drm_i915_private_t *dev_priv = dev->dev_private;
5050 int lists_empty;
5051
Chris Wilson1637ef42010-04-20 17:10:35 +01005052 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01005053 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01005054
5055 return !lists_empty;
5056}
5057
5058static int
Chris Wilson17250b72010-10-28 12:51:39 +01005059i915_gem_inactive_shrink(struct shrinker *shrinker,
5060 int nr_to_scan,
5061 gfp_t gfp_mask)
Chris Wilson31169712009-09-14 16:50:28 +01005062{
Chris Wilson17250b72010-10-28 12:51:39 +01005063 struct drm_i915_private *dev_priv =
5064 container_of(shrinker,
5065 struct drm_i915_private,
5066 mm.inactive_shrinker);
5067 struct drm_device *dev = dev_priv->dev;
5068 struct drm_i915_gem_object *obj, *next;
5069 int cnt;
5070
5071 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01005072 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005073
5074 /* "fast-path" to count number of available objects */
5075 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01005076 cnt = 0;
5077 list_for_each_entry(obj,
5078 &dev_priv->mm.inactive_list,
5079 mm_list)
5080 cnt++;
5081 mutex_unlock(&dev->struct_mutex);
5082 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005083 }
5084
Chris Wilson1637ef42010-04-20 17:10:35 +01005085rescan:
Chris Wilson31169712009-09-14 16:50:28 +01005086 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01005087 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01005088
Chris Wilson17250b72010-10-28 12:51:39 +01005089 list_for_each_entry_safe(obj, next,
5090 &dev_priv->mm.inactive_list,
5091 mm_list) {
5092 if (i915_gem_object_is_purgeable(obj)) {
5093 i915_gem_object_unbind(&obj->base);
5094 if (--nr_to_scan == 0)
5095 break;
Chris Wilson31169712009-09-14 16:50:28 +01005096 }
Chris Wilson31169712009-09-14 16:50:28 +01005097 }
5098
5099 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01005100 cnt = 0;
5101 list_for_each_entry_safe(obj, next,
5102 &dev_priv->mm.inactive_list,
5103 mm_list) {
5104 if (nr_to_scan) {
5105 i915_gem_object_unbind(&obj->base);
5106 nr_to_scan--;
5107 } else
5108 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01005109 }
5110
Chris Wilson17250b72010-10-28 12:51:39 +01005111 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01005112 /*
5113 * We are desperate for pages, so as a last resort, wait
5114 * for the GPU to finish and discard whatever we can.
5115 * This has a dramatic impact to reduce the number of
5116 * OOM-killer events whilst running the GPU aggressively.
5117 */
Chris Wilson17250b72010-10-28 12:51:39 +01005118 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01005119 goto rescan;
5120 }
Chris Wilson17250b72010-10-28 12:51:39 +01005121 mutex_unlock(&dev->struct_mutex);
5122 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005123}