blob: eea8232928bc8d3ebb985bcd72c4b0914ad3fdf1 [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
Daniel Vetter0108a3e2010-08-07 11:01:21 +010039static uint32_t i915_gem_get_gtt_alignment(struct drm_gem_object *obj);
Chris Wilson2dafb1e2010-06-07 14:03:05 +010040static int i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj);
Eric Anholte47c68e2008-11-14 13:35:19 -080041static void i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj);
42static void i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj);
Eric Anholte47c68e2008-11-14 13:35:19 -080043static int i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj,
44 int write);
45static int i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
46 uint64_t offset,
47 uint64_t size);
48static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj);
Daniel Vettere35a41d2010-02-11 22:13:59 +010049static int i915_gem_object_wait_rendering(struct drm_gem_object *obj,
50 bool interruptible);
Jesse Barnesde151cf2008-11-12 10:03:55 -080051static int i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
52 unsigned alignment);
Jesse Barnesde151cf2008-11-12 10:03:55 -080053static void i915_gem_clear_fence_reg(struct drm_gem_object *obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +100054static int i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
55 struct drm_i915_gem_pwrite *args,
56 struct drm_file *file_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +010057static void i915_gem_free_object_tail(struct drm_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070058
Chris Wilson31169712009-09-14 16:50:28 +010059static LIST_HEAD(shrink_list);
60static DEFINE_SPINLOCK(shrink_list_lock);
61
Chris Wilson7d1c4802010-08-07 21:45:03 +010062static inline bool
63i915_gem_object_is_inactive(struct drm_i915_gem_object *obj_priv)
64{
65 return obj_priv->gtt_space &&
66 !obj_priv->active &&
67 obj_priv->pin_count == 0;
68}
69
Jesse Barnes79e53942008-11-07 14:24:08 -080070int i915_gem_do_init(struct drm_device *dev, unsigned long start,
71 unsigned long end)
72{
73 drm_i915_private_t *dev_priv = dev->dev_private;
74
75 if (start >= end ||
76 (start & (PAGE_SIZE - 1)) != 0 ||
77 (end & (PAGE_SIZE - 1)) != 0) {
78 return -EINVAL;
79 }
80
81 drm_mm_init(&dev_priv->mm.gtt_space, start,
82 end - start);
83
84 dev->gtt_total = (uint32_t) (end - start);
85
86 return 0;
87}
Keith Packard6dbe2772008-10-14 21:41:13 -070088
Eric Anholt673a3942008-07-30 12:06:12 -070089int
90i915_gem_init_ioctl(struct drm_device *dev, void *data,
91 struct drm_file *file_priv)
92{
Eric Anholt673a3942008-07-30 12:06:12 -070093 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -080094 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -070095
96 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080097 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -070098 mutex_unlock(&dev->struct_mutex);
99
Jesse Barnes79e53942008-11-07 14:24:08 -0800100 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700101}
102
Eric Anholt5a125c32008-10-22 21:40:13 -0700103int
104i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
105 struct drm_file *file_priv)
106{
Eric Anholt5a125c32008-10-22 21:40:13 -0700107 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -0700108
109 if (!(dev->driver->driver_features & DRIVER_GEM))
110 return -ENODEV;
111
112 args->aper_size = dev->gtt_total;
Keith Packard2678d9d2008-11-20 22:54:54 -0800113 args->aper_available_size = (args->aper_size -
114 atomic_read(&dev->pin_memory));
Eric Anholt5a125c32008-10-22 21:40:13 -0700115
116 return 0;
117}
118
Eric Anholt673a3942008-07-30 12:06:12 -0700119
120/**
121 * Creates a new mm object and returns a handle to it.
122 */
123int
124i915_gem_create_ioctl(struct drm_device *dev, void *data,
125 struct drm_file *file_priv)
126{
127 struct drm_i915_gem_create *args = data;
128 struct drm_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300129 int ret;
130 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700131
132 args->size = roundup(args->size, PAGE_SIZE);
133
134 /* Allocate the new object */
Daniel Vetterac52bc52010-04-09 19:05:06 +0000135 obj = i915_gem_alloc_object(dev, args->size);
Eric Anholt673a3942008-07-30 12:06:12 -0700136 if (obj == NULL)
137 return -ENOMEM;
138
139 ret = drm_gem_handle_create(file_priv, obj, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100140 if (ret) {
141 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700142 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100143 }
144
145 /* Sink the floating reference from kref_init(handlecount) */
146 drm_gem_object_handle_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700147
148 args->handle = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700149 return 0;
150}
151
Eric Anholt40123c12009-03-09 13:42:30 -0700152static inline int
Eric Anholteb014592009-03-10 11:44:52 -0700153fast_shmem_read(struct page **pages,
154 loff_t page_base, int page_offset,
155 char __user *data,
156 int length)
157{
158 char __iomem *vaddr;
Florian Mickler2bc43b52009-04-06 22:55:41 +0200159 int unwritten;
Eric Anholteb014592009-03-10 11:44:52 -0700160
161 vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0);
162 if (vaddr == NULL)
163 return -ENOMEM;
Florian Mickler2bc43b52009-04-06 22:55:41 +0200164 unwritten = __copy_to_user_inatomic(data, vaddr + page_offset, length);
Eric Anholteb014592009-03-10 11:44:52 -0700165 kunmap_atomic(vaddr, KM_USER0);
166
Florian Mickler2bc43b52009-04-06 22:55:41 +0200167 if (unwritten)
168 return -EFAULT;
169
170 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700171}
172
Eric Anholt280b7132009-03-12 16:56:27 -0700173static int i915_gem_object_needs_bit17_swizzle(struct drm_gem_object *obj)
174{
175 drm_i915_private_t *dev_priv = obj->dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +0100176 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt280b7132009-03-12 16:56:27 -0700177
178 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
179 obj_priv->tiling_mode != I915_TILING_NONE;
180}
181
Chris Wilson99a03df2010-05-27 14:15:34 +0100182static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700183slow_shmem_copy(struct page *dst_page,
184 int dst_offset,
185 struct page *src_page,
186 int src_offset,
187 int length)
188{
189 char *dst_vaddr, *src_vaddr;
190
Chris Wilson99a03df2010-05-27 14:15:34 +0100191 dst_vaddr = kmap(dst_page);
192 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700193
194 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
195
Chris Wilson99a03df2010-05-27 14:15:34 +0100196 kunmap(src_page);
197 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700198}
199
Chris Wilson99a03df2010-05-27 14:15:34 +0100200static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700201slow_shmem_bit17_copy(struct page *gpu_page,
202 int gpu_offset,
203 struct page *cpu_page,
204 int cpu_offset,
205 int length,
206 int is_read)
207{
208 char *gpu_vaddr, *cpu_vaddr;
209
210 /* Use the unswizzled path if this page isn't affected. */
211 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
212 if (is_read)
213 return slow_shmem_copy(cpu_page, cpu_offset,
214 gpu_page, gpu_offset, length);
215 else
216 return slow_shmem_copy(gpu_page, gpu_offset,
217 cpu_page, cpu_offset, length);
218 }
219
Chris Wilson99a03df2010-05-27 14:15:34 +0100220 gpu_vaddr = kmap(gpu_page);
221 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700222
223 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
224 * XORing with the other bits (A9 for Y, A9 and A10 for X)
225 */
226 while (length > 0) {
227 int cacheline_end = ALIGN(gpu_offset + 1, 64);
228 int this_length = min(cacheline_end - gpu_offset, length);
229 int swizzled_gpu_offset = gpu_offset ^ 64;
230
231 if (is_read) {
232 memcpy(cpu_vaddr + cpu_offset,
233 gpu_vaddr + swizzled_gpu_offset,
234 this_length);
235 } else {
236 memcpy(gpu_vaddr + swizzled_gpu_offset,
237 cpu_vaddr + cpu_offset,
238 this_length);
239 }
240 cpu_offset += this_length;
241 gpu_offset += this_length;
242 length -= this_length;
243 }
244
Chris Wilson99a03df2010-05-27 14:15:34 +0100245 kunmap(cpu_page);
246 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700247}
248
Eric Anholt673a3942008-07-30 12:06:12 -0700249/**
Eric Anholteb014592009-03-10 11:44:52 -0700250 * This is the fast shmem pread path, which attempts to copy_from_user directly
251 * from the backing pages of the object to the user's address space. On a
252 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
253 */
254static int
255i915_gem_shmem_pread_fast(struct drm_device *dev, struct drm_gem_object *obj,
256 struct drm_i915_gem_pread *args,
257 struct drm_file *file_priv)
258{
Daniel Vetter23010e42010-03-08 13:35:02 +0100259 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700260 ssize_t remain;
261 loff_t offset, page_base;
262 char __user *user_data;
263 int page_offset, page_length;
264 int ret;
265
266 user_data = (char __user *) (uintptr_t) args->data_ptr;
267 remain = args->size;
268
269 mutex_lock(&dev->struct_mutex);
270
Chris Wilson4bdadb92010-01-27 13:36:32 +0000271 ret = i915_gem_object_get_pages(obj, 0);
Eric Anholteb014592009-03-10 11:44:52 -0700272 if (ret != 0)
273 goto fail_unlock;
274
275 ret = i915_gem_object_set_cpu_read_domain_range(obj, args->offset,
276 args->size);
277 if (ret != 0)
278 goto fail_put_pages;
279
Daniel Vetter23010e42010-03-08 13:35:02 +0100280 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700281 offset = args->offset;
282
283 while (remain > 0) {
284 /* Operation in this page
285 *
286 * page_base = page offset within aperture
287 * page_offset = offset within page
288 * page_length = bytes to copy for this page
289 */
290 page_base = (offset & ~(PAGE_SIZE-1));
291 page_offset = offset & (PAGE_SIZE-1);
292 page_length = remain;
293 if ((page_offset + remain) > PAGE_SIZE)
294 page_length = PAGE_SIZE - page_offset;
295
296 ret = fast_shmem_read(obj_priv->pages,
297 page_base, page_offset,
298 user_data, page_length);
299 if (ret)
300 goto fail_put_pages;
301
302 remain -= page_length;
303 user_data += page_length;
304 offset += page_length;
305 }
306
307fail_put_pages:
308 i915_gem_object_put_pages(obj);
309fail_unlock:
310 mutex_unlock(&dev->struct_mutex);
311
312 return ret;
313}
314
Chris Wilson07f73f62009-09-14 16:50:30 +0100315static int
316i915_gem_object_get_pages_or_evict(struct drm_gem_object *obj)
317{
318 int ret;
319
Chris Wilson4bdadb92010-01-27 13:36:32 +0000320 ret = i915_gem_object_get_pages(obj, __GFP_NORETRY | __GFP_NOWARN);
Chris Wilson07f73f62009-09-14 16:50:30 +0100321
322 /* If we've insufficient memory to map in the pages, attempt
323 * to make some space by throwing out some old buffers.
324 */
325 if (ret == -ENOMEM) {
326 struct drm_device *dev = obj->dev;
Chris Wilson07f73f62009-09-14 16:50:30 +0100327
Daniel Vetter0108a3e2010-08-07 11:01:21 +0100328 ret = i915_gem_evict_something(dev, obj->size,
329 i915_gem_get_gtt_alignment(obj));
Chris Wilson07f73f62009-09-14 16:50:30 +0100330 if (ret)
331 return ret;
332
Chris Wilson4bdadb92010-01-27 13:36:32 +0000333 ret = i915_gem_object_get_pages(obj, 0);
Chris Wilson07f73f62009-09-14 16:50:30 +0100334 }
335
336 return ret;
337}
338
Eric Anholteb014592009-03-10 11:44:52 -0700339/**
340 * This is the fallback shmem pread path, which allocates temporary storage
341 * in kernel space to copy_to_user into outside of the struct_mutex, so we
342 * can copy out of the object's backing pages while holding the struct mutex
343 * and not take page faults.
344 */
345static int
346i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj,
347 struct drm_i915_gem_pread *args,
348 struct drm_file *file_priv)
349{
Daniel Vetter23010e42010-03-08 13:35:02 +0100350 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700351 struct mm_struct *mm = current->mm;
352 struct page **user_pages;
353 ssize_t remain;
354 loff_t offset, pinned_pages, i;
355 loff_t first_data_page, last_data_page, num_pages;
356 int shmem_page_index, shmem_page_offset;
357 int data_page_index, data_page_offset;
358 int page_length;
359 int ret;
360 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700361 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700362
363 remain = args->size;
364
365 /* Pin the user pages containing the data. We can't fault while
366 * holding the struct mutex, yet we want to hold it while
367 * dereferencing the user data.
368 */
369 first_data_page = data_ptr / PAGE_SIZE;
370 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
371 num_pages = last_data_page - first_data_page + 1;
372
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700373 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700374 if (user_pages == NULL)
375 return -ENOMEM;
376
377 down_read(&mm->mmap_sem);
378 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700379 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700380 up_read(&mm->mmap_sem);
381 if (pinned_pages < num_pages) {
382 ret = -EFAULT;
383 goto fail_put_user_pages;
384 }
385
Eric Anholt280b7132009-03-12 16:56:27 -0700386 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
387
Eric Anholteb014592009-03-10 11:44:52 -0700388 mutex_lock(&dev->struct_mutex);
389
Chris Wilson07f73f62009-09-14 16:50:30 +0100390 ret = i915_gem_object_get_pages_or_evict(obj);
391 if (ret)
Eric Anholteb014592009-03-10 11:44:52 -0700392 goto fail_unlock;
393
394 ret = i915_gem_object_set_cpu_read_domain_range(obj, args->offset,
395 args->size);
396 if (ret != 0)
397 goto fail_put_pages;
398
Daniel Vetter23010e42010-03-08 13:35:02 +0100399 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700400 offset = args->offset;
401
402 while (remain > 0) {
403 /* Operation in this page
404 *
405 * shmem_page_index = page number within shmem file
406 * shmem_page_offset = offset within page in shmem file
407 * data_page_index = page number in get_user_pages return
408 * data_page_offset = offset with data_page_index page.
409 * page_length = bytes to copy for this page
410 */
411 shmem_page_index = offset / PAGE_SIZE;
412 shmem_page_offset = offset & ~PAGE_MASK;
413 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
414 data_page_offset = data_ptr & ~PAGE_MASK;
415
416 page_length = remain;
417 if ((shmem_page_offset + page_length) > PAGE_SIZE)
418 page_length = PAGE_SIZE - shmem_page_offset;
419 if ((data_page_offset + page_length) > PAGE_SIZE)
420 page_length = PAGE_SIZE - data_page_offset;
421
Eric Anholt280b7132009-03-12 16:56:27 -0700422 if (do_bit17_swizzling) {
Chris Wilson99a03df2010-05-27 14:15:34 +0100423 slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index],
Eric Anholt280b7132009-03-12 16:56:27 -0700424 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100425 user_pages[data_page_index],
426 data_page_offset,
427 page_length,
428 1);
429 } else {
430 slow_shmem_copy(user_pages[data_page_index],
431 data_page_offset,
432 obj_priv->pages[shmem_page_index],
433 shmem_page_offset,
434 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700435 }
Eric Anholteb014592009-03-10 11:44:52 -0700436
437 remain -= page_length;
438 data_ptr += page_length;
439 offset += page_length;
440 }
441
442fail_put_pages:
443 i915_gem_object_put_pages(obj);
444fail_unlock:
445 mutex_unlock(&dev->struct_mutex);
446fail_put_user_pages:
447 for (i = 0; i < pinned_pages; i++) {
448 SetPageDirty(user_pages[i]);
449 page_cache_release(user_pages[i]);
450 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700451 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700452
453 return ret;
454}
455
Eric Anholt673a3942008-07-30 12:06:12 -0700456/**
457 * Reads data from the object referenced by handle.
458 *
459 * On error, the contents of *data are undefined.
460 */
461int
462i915_gem_pread_ioctl(struct drm_device *dev, void *data,
463 struct drm_file *file_priv)
464{
465 struct drm_i915_gem_pread *args = data;
466 struct drm_gem_object *obj;
467 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -0700468 int ret;
469
470 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
471 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100472 return -ENOENT;
Daniel Vetter23010e42010-03-08 13:35:02 +0100473 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700474
475 /* Bounds check source.
476 *
477 * XXX: This could use review for overflow issues...
478 */
479 if (args->offset > obj->size || args->size > obj->size ||
480 args->offset + args->size > obj->size) {
Luca Barbieribc9025b2010-02-09 05:49:12 +0000481 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700482 return -EINVAL;
483 }
484
Eric Anholt280b7132009-03-12 16:56:27 -0700485 if (i915_gem_object_needs_bit17_swizzle(obj)) {
Eric Anholteb014592009-03-10 11:44:52 -0700486 ret = i915_gem_shmem_pread_slow(dev, obj, args, file_priv);
Eric Anholt280b7132009-03-12 16:56:27 -0700487 } else {
488 ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv);
489 if (ret != 0)
490 ret = i915_gem_shmem_pread_slow(dev, obj, args,
491 file_priv);
492 }
Eric Anholt673a3942008-07-30 12:06:12 -0700493
Luca Barbieribc9025b2010-02-09 05:49:12 +0000494 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700495
Eric Anholteb014592009-03-10 11:44:52 -0700496 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700497}
498
Keith Packard0839ccb2008-10-30 19:38:48 -0700499/* This is the fast write path which cannot handle
500 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700501 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700502
Keith Packard0839ccb2008-10-30 19:38:48 -0700503static inline int
504fast_user_write(struct io_mapping *mapping,
505 loff_t page_base, int page_offset,
506 char __user *user_data,
507 int length)
508{
509 char *vaddr_atomic;
510 unsigned long unwritten;
511
Chris Wilsonfca3ec02010-08-04 14:34:24 +0100512 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base, KM_USER0);
Keith Packard0839ccb2008-10-30 19:38:48 -0700513 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
514 user_data, length);
Chris Wilsonfca3ec02010-08-04 14:34:24 +0100515 io_mapping_unmap_atomic(vaddr_atomic, KM_USER0);
Keith Packard0839ccb2008-10-30 19:38:48 -0700516 if (unwritten)
517 return -EFAULT;
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700518 return 0;
Keith Packard0839ccb2008-10-30 19:38:48 -0700519}
520
521/* Here's the write path which can sleep for
522 * page faults
523 */
524
Chris Wilsonab34c222010-05-27 14:15:35 +0100525static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700526slow_kernel_write(struct io_mapping *mapping,
527 loff_t gtt_base, int gtt_offset,
528 struct page *user_page, int user_offset,
529 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700530{
Chris Wilsonab34c222010-05-27 14:15:35 +0100531 char __iomem *dst_vaddr;
532 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700533
Chris Wilsonab34c222010-05-27 14:15:35 +0100534 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
535 src_vaddr = kmap(user_page);
536
537 memcpy_toio(dst_vaddr + gtt_offset,
538 src_vaddr + user_offset,
539 length);
540
541 kunmap(user_page);
542 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700543}
544
Eric Anholt40123c12009-03-09 13:42:30 -0700545static inline int
546fast_shmem_write(struct page **pages,
547 loff_t page_base, int page_offset,
548 char __user *data,
549 int length)
550{
551 char __iomem *vaddr;
Dave Airlied0088772009-03-28 20:29:48 -0400552 unsigned long unwritten;
Eric Anholt40123c12009-03-09 13:42:30 -0700553
554 vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0);
555 if (vaddr == NULL)
556 return -ENOMEM;
Dave Airlied0088772009-03-28 20:29:48 -0400557 unwritten = __copy_from_user_inatomic(vaddr + page_offset, data, length);
Eric Anholt40123c12009-03-09 13:42:30 -0700558 kunmap_atomic(vaddr, KM_USER0);
559
Dave Airlied0088772009-03-28 20:29:48 -0400560 if (unwritten)
561 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700562 return 0;
563}
564
Eric Anholt3de09aa2009-03-09 09:42:23 -0700565/**
566 * This is the fast pwrite path, where we copy the data directly from the
567 * user into the GTT, uncached.
568 */
Eric Anholt673a3942008-07-30 12:06:12 -0700569static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700570i915_gem_gtt_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
571 struct drm_i915_gem_pwrite *args,
572 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700573{
Daniel Vetter23010e42010-03-08 13:35:02 +0100574 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Keith Packard0839ccb2008-10-30 19:38:48 -0700575 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700576 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700577 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700578 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700579 int page_offset, page_length;
580 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700581
582 user_data = (char __user *) (uintptr_t) args->data_ptr;
583 remain = args->size;
584 if (!access_ok(VERIFY_READ, user_data, remain))
585 return -EFAULT;
586
587
588 mutex_lock(&dev->struct_mutex);
589 ret = i915_gem_object_pin(obj, 0);
590 if (ret) {
591 mutex_unlock(&dev->struct_mutex);
592 return ret;
593 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800594 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -0700595 if (ret)
596 goto fail;
597
Daniel Vetter23010e42010-03-08 13:35:02 +0100598 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700599 offset = obj_priv->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700600
601 while (remain > 0) {
602 /* Operation in this page
603 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700604 * page_base = page offset within aperture
605 * page_offset = offset within page
606 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700607 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700608 page_base = (offset & ~(PAGE_SIZE-1));
609 page_offset = offset & (PAGE_SIZE-1);
610 page_length = remain;
611 if ((page_offset + remain) > PAGE_SIZE)
612 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700613
Keith Packard0839ccb2008-10-30 19:38:48 -0700614 ret = fast_user_write (dev_priv->mm.gtt_mapping, page_base,
615 page_offset, user_data, page_length);
Eric Anholt673a3942008-07-30 12:06:12 -0700616
Keith Packard0839ccb2008-10-30 19:38:48 -0700617 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700618 * source page isn't available. Return the error and we'll
619 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700620 */
Eric Anholt3de09aa2009-03-09 09:42:23 -0700621 if (ret)
622 goto fail;
Eric Anholt673a3942008-07-30 12:06:12 -0700623
Keith Packard0839ccb2008-10-30 19:38:48 -0700624 remain -= page_length;
625 user_data += page_length;
626 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700627 }
Eric Anholt673a3942008-07-30 12:06:12 -0700628
629fail:
630 i915_gem_object_unpin(obj);
631 mutex_unlock(&dev->struct_mutex);
632
633 return ret;
634}
635
Eric Anholt3de09aa2009-03-09 09:42:23 -0700636/**
637 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
638 * the memory and maps it using kmap_atomic for copying.
639 *
640 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
641 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
642 */
Eric Anholt3043c602008-10-02 12:24:47 -0700643static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700644i915_gem_gtt_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
645 struct drm_i915_gem_pwrite *args,
646 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700647{
Daniel Vetter23010e42010-03-08 13:35:02 +0100648 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700649 drm_i915_private_t *dev_priv = dev->dev_private;
650 ssize_t remain;
651 loff_t gtt_page_base, offset;
652 loff_t first_data_page, last_data_page, num_pages;
653 loff_t pinned_pages, i;
654 struct page **user_pages;
655 struct mm_struct *mm = current->mm;
656 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700657 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700658 uint64_t data_ptr = args->data_ptr;
659
660 remain = args->size;
661
662 /* Pin the user pages containing the data. We can't fault while
663 * holding the struct mutex, and all of the pwrite implementations
664 * want to hold it while dereferencing the user data.
665 */
666 first_data_page = data_ptr / PAGE_SIZE;
667 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
668 num_pages = last_data_page - first_data_page + 1;
669
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700670 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700671 if (user_pages == NULL)
672 return -ENOMEM;
673
674 down_read(&mm->mmap_sem);
675 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
676 num_pages, 0, 0, user_pages, NULL);
677 up_read(&mm->mmap_sem);
678 if (pinned_pages < num_pages) {
679 ret = -EFAULT;
680 goto out_unpin_pages;
681 }
682
683 mutex_lock(&dev->struct_mutex);
684 ret = i915_gem_object_pin(obj, 0);
685 if (ret)
686 goto out_unlock;
687
688 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
689 if (ret)
690 goto out_unpin_object;
691
Daniel Vetter23010e42010-03-08 13:35:02 +0100692 obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700693 offset = obj_priv->gtt_offset + args->offset;
694
695 while (remain > 0) {
696 /* Operation in this page
697 *
698 * gtt_page_base = page offset within aperture
699 * gtt_page_offset = offset within page in aperture
700 * data_page_index = page number in get_user_pages return
701 * data_page_offset = offset with data_page_index page.
702 * page_length = bytes to copy for this page
703 */
704 gtt_page_base = offset & PAGE_MASK;
705 gtt_page_offset = offset & ~PAGE_MASK;
706 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
707 data_page_offset = data_ptr & ~PAGE_MASK;
708
709 page_length = remain;
710 if ((gtt_page_offset + page_length) > PAGE_SIZE)
711 page_length = PAGE_SIZE - gtt_page_offset;
712 if ((data_page_offset + page_length) > PAGE_SIZE)
713 page_length = PAGE_SIZE - data_page_offset;
714
Chris Wilsonab34c222010-05-27 14:15:35 +0100715 slow_kernel_write(dev_priv->mm.gtt_mapping,
716 gtt_page_base, gtt_page_offset,
717 user_pages[data_page_index],
718 data_page_offset,
719 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700720
721 remain -= page_length;
722 offset += page_length;
723 data_ptr += page_length;
724 }
725
726out_unpin_object:
727 i915_gem_object_unpin(obj);
728out_unlock:
729 mutex_unlock(&dev->struct_mutex);
730out_unpin_pages:
731 for (i = 0; i < pinned_pages; i++)
732 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700733 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700734
735 return ret;
736}
737
Eric Anholt40123c12009-03-09 13:42:30 -0700738/**
739 * This is the fast shmem pwrite path, which attempts to directly
740 * copy_from_user into the kmapped pages backing the object.
741 */
Eric Anholt673a3942008-07-30 12:06:12 -0700742static int
Eric Anholt40123c12009-03-09 13:42:30 -0700743i915_gem_shmem_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
744 struct drm_i915_gem_pwrite *args,
745 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700746{
Daniel Vetter23010e42010-03-08 13:35:02 +0100747 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700748 ssize_t remain;
749 loff_t offset, page_base;
750 char __user *user_data;
751 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700752 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700753
754 user_data = (char __user *) (uintptr_t) args->data_ptr;
755 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700756
757 mutex_lock(&dev->struct_mutex);
758
Chris Wilson4bdadb92010-01-27 13:36:32 +0000759 ret = i915_gem_object_get_pages(obj, 0);
Eric Anholt40123c12009-03-09 13:42:30 -0700760 if (ret != 0)
761 goto fail_unlock;
762
Eric Anholte47c68e2008-11-14 13:35:19 -0800763 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Eric Anholt40123c12009-03-09 13:42:30 -0700764 if (ret != 0)
765 goto fail_put_pages;
Eric Anholt673a3942008-07-30 12:06:12 -0700766
Daniel Vetter23010e42010-03-08 13:35:02 +0100767 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700768 offset = args->offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700769 obj_priv->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700770
Eric Anholt40123c12009-03-09 13:42:30 -0700771 while (remain > 0) {
772 /* Operation in this page
773 *
774 * page_base = page offset within aperture
775 * page_offset = offset within page
776 * page_length = bytes to copy for this page
777 */
778 page_base = (offset & ~(PAGE_SIZE-1));
779 page_offset = offset & (PAGE_SIZE-1);
780 page_length = remain;
781 if ((page_offset + remain) > PAGE_SIZE)
782 page_length = PAGE_SIZE - page_offset;
783
784 ret = fast_shmem_write(obj_priv->pages,
785 page_base, page_offset,
786 user_data, page_length);
787 if (ret)
788 goto fail_put_pages;
789
790 remain -= page_length;
791 user_data += page_length;
792 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700793 }
794
Eric Anholt40123c12009-03-09 13:42:30 -0700795fail_put_pages:
796 i915_gem_object_put_pages(obj);
797fail_unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700798 mutex_unlock(&dev->struct_mutex);
799
Eric Anholt40123c12009-03-09 13:42:30 -0700800 return ret;
801}
802
803/**
804 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
805 * the memory and maps it using kmap_atomic for copying.
806 *
807 * This avoids taking mmap_sem for faulting on the user's address while the
808 * struct_mutex is held.
809 */
810static int
811i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
812 struct drm_i915_gem_pwrite *args,
813 struct drm_file *file_priv)
814{
Daniel Vetter23010e42010-03-08 13:35:02 +0100815 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700816 struct mm_struct *mm = current->mm;
817 struct page **user_pages;
818 ssize_t remain;
819 loff_t offset, pinned_pages, i;
820 loff_t first_data_page, last_data_page, num_pages;
821 int shmem_page_index, shmem_page_offset;
822 int data_page_index, data_page_offset;
823 int page_length;
824 int ret;
825 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700826 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700827
828 remain = args->size;
829
830 /* Pin the user pages containing the data. We can't fault while
831 * holding the struct mutex, and all of the pwrite implementations
832 * want to hold it while dereferencing the user data.
833 */
834 first_data_page = data_ptr / PAGE_SIZE;
835 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
836 num_pages = last_data_page - first_data_page + 1;
837
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700838 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700839 if (user_pages == NULL)
840 return -ENOMEM;
841
842 down_read(&mm->mmap_sem);
843 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
844 num_pages, 0, 0, user_pages, NULL);
845 up_read(&mm->mmap_sem);
846 if (pinned_pages < num_pages) {
847 ret = -EFAULT;
848 goto fail_put_user_pages;
849 }
850
Eric Anholt280b7132009-03-12 16:56:27 -0700851 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
852
Eric Anholt40123c12009-03-09 13:42:30 -0700853 mutex_lock(&dev->struct_mutex);
854
Chris Wilson07f73f62009-09-14 16:50:30 +0100855 ret = i915_gem_object_get_pages_or_evict(obj);
856 if (ret)
Eric Anholt40123c12009-03-09 13:42:30 -0700857 goto fail_unlock;
858
859 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
860 if (ret != 0)
861 goto fail_put_pages;
862
Daniel Vetter23010e42010-03-08 13:35:02 +0100863 obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700864 offset = args->offset;
865 obj_priv->dirty = 1;
866
867 while (remain > 0) {
868 /* Operation in this page
869 *
870 * shmem_page_index = page number within shmem file
871 * shmem_page_offset = offset within page in shmem file
872 * data_page_index = page number in get_user_pages return
873 * data_page_offset = offset with data_page_index page.
874 * page_length = bytes to copy for this page
875 */
876 shmem_page_index = offset / PAGE_SIZE;
877 shmem_page_offset = offset & ~PAGE_MASK;
878 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
879 data_page_offset = data_ptr & ~PAGE_MASK;
880
881 page_length = remain;
882 if ((shmem_page_offset + page_length) > PAGE_SIZE)
883 page_length = PAGE_SIZE - shmem_page_offset;
884 if ((data_page_offset + page_length) > PAGE_SIZE)
885 page_length = PAGE_SIZE - data_page_offset;
886
Eric Anholt280b7132009-03-12 16:56:27 -0700887 if (do_bit17_swizzling) {
Chris Wilson99a03df2010-05-27 14:15:34 +0100888 slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index],
Eric Anholt280b7132009-03-12 16:56:27 -0700889 shmem_page_offset,
890 user_pages[data_page_index],
891 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100892 page_length,
893 0);
894 } else {
895 slow_shmem_copy(obj_priv->pages[shmem_page_index],
896 shmem_page_offset,
897 user_pages[data_page_index],
898 data_page_offset,
899 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700900 }
Eric Anholt40123c12009-03-09 13:42:30 -0700901
902 remain -= page_length;
903 data_ptr += page_length;
904 offset += page_length;
905 }
906
907fail_put_pages:
908 i915_gem_object_put_pages(obj);
909fail_unlock:
910 mutex_unlock(&dev->struct_mutex);
911fail_put_user_pages:
912 for (i = 0; i < pinned_pages; i++)
913 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700914 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -0700915
916 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700917}
918
919/**
920 * Writes data to the object referenced by handle.
921 *
922 * On error, the contents of the buffer that were to be modified are undefined.
923 */
924int
925i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
926 struct drm_file *file_priv)
927{
928 struct drm_i915_gem_pwrite *args = data;
929 struct drm_gem_object *obj;
930 struct drm_i915_gem_object *obj_priv;
931 int ret = 0;
932
933 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
934 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100935 return -ENOENT;
Daniel Vetter23010e42010-03-08 13:35:02 +0100936 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700937
938 /* Bounds check destination.
939 *
940 * XXX: This could use review for overflow issues...
941 */
942 if (args->offset > obj->size || args->size > obj->size ||
943 args->offset + args->size > obj->size) {
Luca Barbieribc9025b2010-02-09 05:49:12 +0000944 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700945 return -EINVAL;
946 }
947
948 /* We can only do the GTT pwrite on untiled buffers, as otherwise
949 * it would end up going through the fenced access, and we'll get
950 * different detiling behavior between reading and writing.
951 * pread/pwrite currently are reading and writing from the CPU
952 * perspective, requiring manual detiling by the client.
953 */
Dave Airlie71acb5e2008-12-30 20:31:46 +1000954 if (obj_priv->phys_obj)
955 ret = i915_gem_phys_pwrite(dev, obj, args, file_priv);
956 else if (obj_priv->tiling_mode == I915_TILING_NONE &&
Chris Wilson9b8c4a02010-05-27 14:21:01 +0100957 dev->gtt_total != 0 &&
958 obj->write_domain != I915_GEM_DOMAIN_CPU) {
Eric Anholt3de09aa2009-03-09 09:42:23 -0700959 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file_priv);
960 if (ret == -EFAULT) {
961 ret = i915_gem_gtt_pwrite_slow(dev, obj, args,
962 file_priv);
963 }
Eric Anholt280b7132009-03-12 16:56:27 -0700964 } else if (i915_gem_object_needs_bit17_swizzle(obj)) {
965 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file_priv);
Eric Anholt40123c12009-03-09 13:42:30 -0700966 } else {
967 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file_priv);
968 if (ret == -EFAULT) {
969 ret = i915_gem_shmem_pwrite_slow(dev, obj, args,
970 file_priv);
971 }
972 }
Eric Anholt673a3942008-07-30 12:06:12 -0700973
974#if WATCH_PWRITE
975 if (ret)
976 DRM_INFO("pwrite failed %d\n", ret);
977#endif
978
Luca Barbieribc9025b2010-02-09 05:49:12 +0000979 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700980
981 return ret;
982}
983
984/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800985 * Called when user space prepares to use an object with the CPU, either
986 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700987 */
988int
989i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
990 struct drm_file *file_priv)
991{
Eric Anholta09ba7f2009-08-29 12:49:51 -0700992 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700993 struct drm_i915_gem_set_domain *args = data;
994 struct drm_gem_object *obj;
Jesse Barnes652c3932009-08-17 13:31:43 -0700995 struct drm_i915_gem_object *obj_priv;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800996 uint32_t read_domains = args->read_domains;
997 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700998 int ret;
999
1000 if (!(dev->driver->driver_features & DRIVER_GEM))
1001 return -ENODEV;
1002
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001003 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001004 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001005 return -EINVAL;
1006
Chris Wilson21d509e2009-06-06 09:46:02 +01001007 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001008 return -EINVAL;
1009
1010 /* Having something in the write domain implies it's in the read
1011 * domain, and only that read domain. Enforce that in the request.
1012 */
1013 if (write_domain != 0 && read_domains != write_domain)
1014 return -EINVAL;
1015
Eric Anholt673a3942008-07-30 12:06:12 -07001016 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1017 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001018 return -ENOENT;
Daniel Vetter23010e42010-03-08 13:35:02 +01001019 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001020
1021 mutex_lock(&dev->struct_mutex);
Jesse Barnes652c3932009-08-17 13:31:43 -07001022
1023 intel_mark_busy(dev, obj);
1024
Eric Anholt673a3942008-07-30 12:06:12 -07001025#if WATCH_BUF
Krzysztof Halasacfd43c02009-06-20 00:31:28 +02001026 DRM_INFO("set_domain_ioctl %p(%zd), %08x %08x\n",
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001027 obj, obj->size, read_domains, write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07001028#endif
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001029 if (read_domains & I915_GEM_DOMAIN_GTT) {
1030 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001031
Eric Anholta09ba7f2009-08-29 12:49:51 -07001032 /* Update the LRU on the fence for the CPU access that's
1033 * about to occur.
1034 */
1035 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001036 struct drm_i915_fence_reg *reg =
1037 &dev_priv->fence_regs[obj_priv->fence_reg];
1038 list_move_tail(&reg->lru_list,
Eric Anholta09ba7f2009-08-29 12:49:51 -07001039 &dev_priv->mm.fence_list);
1040 }
1041
Eric Anholt02354392008-11-26 13:58:13 -08001042 /* Silently promote "you're not bound, there was nothing to do"
1043 * to success, since the client was just asking us to
1044 * make sure everything was done.
1045 */
1046 if (ret == -EINVAL)
1047 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001048 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001049 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001050 }
1051
Chris Wilson7d1c4802010-08-07 21:45:03 +01001052
1053 /* Maintain LRU order of "inactive" objects */
1054 if (ret == 0 && i915_gem_object_is_inactive(obj_priv))
1055 list_move_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
1056
Eric Anholt673a3942008-07-30 12:06:12 -07001057 drm_gem_object_unreference(obj);
1058 mutex_unlock(&dev->struct_mutex);
1059 return ret;
1060}
1061
1062/**
1063 * Called when user space has done writes to this buffer
1064 */
1065int
1066i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
1067 struct drm_file *file_priv)
1068{
1069 struct drm_i915_gem_sw_finish *args = data;
1070 struct drm_gem_object *obj;
1071 struct drm_i915_gem_object *obj_priv;
1072 int ret = 0;
1073
1074 if (!(dev->driver->driver_features & DRIVER_GEM))
1075 return -ENODEV;
1076
1077 mutex_lock(&dev->struct_mutex);
1078 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1079 if (obj == NULL) {
1080 mutex_unlock(&dev->struct_mutex);
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001081 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001082 }
1083
1084#if WATCH_BUF
Krzysztof Halasacfd43c02009-06-20 00:31:28 +02001085 DRM_INFO("%s: sw_finish %d (%p %zd)\n",
Eric Anholt673a3942008-07-30 12:06:12 -07001086 __func__, args->handle, obj, obj->size);
1087#endif
Daniel Vetter23010e42010-03-08 13:35:02 +01001088 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001089
1090 /* Pinned buffers may be scanout, so flush the cache */
Eric Anholte47c68e2008-11-14 13:35:19 -08001091 if (obj_priv->pin_count)
1092 i915_gem_object_flush_cpu_write_domain(obj);
1093
Eric Anholt673a3942008-07-30 12:06:12 -07001094 drm_gem_object_unreference(obj);
1095 mutex_unlock(&dev->struct_mutex);
1096 return ret;
1097}
1098
1099/**
1100 * Maps the contents of an object, returning the address it is mapped
1101 * into.
1102 *
1103 * While the mapping holds a reference on the contents of the object, it doesn't
1104 * imply a ref on the object itself.
1105 */
1106int
1107i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
1108 struct drm_file *file_priv)
1109{
1110 struct drm_i915_gem_mmap *args = data;
1111 struct drm_gem_object *obj;
1112 loff_t offset;
1113 unsigned long addr;
1114
1115 if (!(dev->driver->driver_features & DRIVER_GEM))
1116 return -ENODEV;
1117
1118 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1119 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001120 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001121
1122 offset = args->offset;
1123
1124 down_write(&current->mm->mmap_sem);
1125 addr = do_mmap(obj->filp, 0, args->size,
1126 PROT_READ | PROT_WRITE, MAP_SHARED,
1127 args->offset);
1128 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001129 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001130 if (IS_ERR((void *)addr))
1131 return addr;
1132
1133 args->addr_ptr = (uint64_t) addr;
1134
1135 return 0;
1136}
1137
Jesse Barnesde151cf2008-11-12 10:03:55 -08001138/**
1139 * i915_gem_fault - fault a page into the GTT
1140 * vma: VMA in question
1141 * vmf: fault info
1142 *
1143 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1144 * from userspace. The fault handler takes care of binding the object to
1145 * the GTT (if needed), allocating and programming a fence register (again,
1146 * only if needed based on whether the old reg is still valid or the object
1147 * is tiled) and inserting a new PTE into the faulting process.
1148 *
1149 * Note that the faulting process may involve evicting existing objects
1150 * from the GTT and/or fence registers to make room. So performance may
1151 * suffer if the GTT working set is large or there are few fence registers
1152 * left.
1153 */
1154int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1155{
1156 struct drm_gem_object *obj = vma->vm_private_data;
1157 struct drm_device *dev = obj->dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001158 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001159 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001160 pgoff_t page_offset;
1161 unsigned long pfn;
1162 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001163 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001164
1165 /* We don't use vmf->pgoff since that has the fake offset */
1166 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1167 PAGE_SHIFT;
1168
1169 /* Now bind it into the GTT if needed */
1170 mutex_lock(&dev->struct_mutex);
1171 if (!obj_priv->gtt_space) {
Chris Wilsone67b8ce2009-09-14 16:50:26 +01001172 ret = i915_gem_object_bind_to_gtt(obj, 0);
Chris Wilsonc7150892009-09-23 00:43:56 +01001173 if (ret)
1174 goto unlock;
Kristian Høgsberg07f4f3e2009-05-27 14:37:28 -04001175
Jesse Barnesde151cf2008-11-12 10:03:55 -08001176 ret = i915_gem_object_set_to_gtt_domain(obj, write);
Chris Wilsonc7150892009-09-23 00:43:56 +01001177 if (ret)
1178 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001179 }
1180
1181 /* Need a new fence register? */
Eric Anholta09ba7f2009-08-29 12:49:51 -07001182 if (obj_priv->tiling_mode != I915_TILING_NONE) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001183 ret = i915_gem_object_get_fence_reg(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001184 if (ret)
1185 goto unlock;
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001186 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001187
Chris Wilson7d1c4802010-08-07 21:45:03 +01001188 if (i915_gem_object_is_inactive(obj_priv))
1189 list_move_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
1190
Jesse Barnesde151cf2008-11-12 10:03:55 -08001191 pfn = ((dev->agp->base + obj_priv->gtt_offset) >> PAGE_SHIFT) +
1192 page_offset;
1193
1194 /* Finally, remap it using the new GTT offset */
1195 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001196unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001197 mutex_unlock(&dev->struct_mutex);
1198
1199 switch (ret) {
Chris Wilsonc7150892009-09-23 00:43:56 +01001200 case 0:
1201 case -ERESTARTSYS:
1202 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001203 case -ENOMEM:
1204 case -EAGAIN:
1205 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001206 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001207 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001208 }
1209}
1210
1211/**
1212 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1213 * @obj: obj in question
1214 *
1215 * GEM memory mapping works by handing back to userspace a fake mmap offset
1216 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1217 * up the object based on the offset and sets up the various memory mapping
1218 * structures.
1219 *
1220 * This routine allocates and attaches a fake offset for @obj.
1221 */
1222static int
1223i915_gem_create_mmap_offset(struct drm_gem_object *obj)
1224{
1225 struct drm_device *dev = obj->dev;
1226 struct drm_gem_mm *mm = dev->mm_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001227 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001228 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001229 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001230 int ret = 0;
1231
1232 /* Set the object up for mmap'ing */
1233 list = &obj->map_list;
Eric Anholt9a298b22009-03-24 12:23:04 -07001234 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001235 if (!list->map)
1236 return -ENOMEM;
1237
1238 map = list->map;
1239 map->type = _DRM_GEM;
1240 map->size = obj->size;
1241 map->handle = obj;
1242
1243 /* Get a DRM GEM mmap offset allocated... */
1244 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
1245 obj->size / PAGE_SIZE, 0, 0);
1246 if (!list->file_offset_node) {
1247 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
1248 ret = -ENOMEM;
1249 goto out_free_list;
1250 }
1251
1252 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
1253 obj->size / PAGE_SIZE, 0);
1254 if (!list->file_offset_node) {
1255 ret = -ENOMEM;
1256 goto out_free_list;
1257 }
1258
1259 list->hash.key = list->file_offset_node->start;
1260 if (drm_ht_insert_item(&mm->offset_hash, &list->hash)) {
1261 DRM_ERROR("failed to add to map hash\n");
Chris Wilson5618ca62009-12-02 15:15:30 +00001262 ret = -ENOMEM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001263 goto out_free_mm;
1264 }
1265
1266 /* By now we should be all set, any drm_mmap request on the offset
1267 * below will get to our mmap & fault handler */
1268 obj_priv->mmap_offset = ((uint64_t) list->hash.key) << PAGE_SHIFT;
1269
1270 return 0;
1271
1272out_free_mm:
1273 drm_mm_put_block(list->file_offset_node);
1274out_free_list:
Eric Anholt9a298b22009-03-24 12:23:04 -07001275 kfree(list->map);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001276
1277 return ret;
1278}
1279
Chris Wilson901782b2009-07-10 08:18:50 +01001280/**
1281 * i915_gem_release_mmap - remove physical page mappings
1282 * @obj: obj in question
1283 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001284 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001285 * relinquish ownership of the pages back to the system.
1286 *
1287 * It is vital that we remove the page mapping if we have mapped a tiled
1288 * object through the GTT and then lose the fence register due to
1289 * resource pressure. Similarly if the object has been moved out of the
1290 * aperture, than pages mapped into userspace must be revoked. Removing the
1291 * mapping will then trigger a page fault on the next user access, allowing
1292 * fixup by i915_gem_fault().
1293 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001294void
Chris Wilson901782b2009-07-10 08:18:50 +01001295i915_gem_release_mmap(struct drm_gem_object *obj)
1296{
1297 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01001298 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson901782b2009-07-10 08:18:50 +01001299
1300 if (dev->dev_mapping)
1301 unmap_mapping_range(dev->dev_mapping,
1302 obj_priv->mmap_offset, obj->size, 1);
1303}
1304
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001305static void
1306i915_gem_free_mmap_offset(struct drm_gem_object *obj)
1307{
1308 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01001309 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001310 struct drm_gem_mm *mm = dev->mm_private;
1311 struct drm_map_list *list;
1312
1313 list = &obj->map_list;
1314 drm_ht_remove_item(&mm->offset_hash, &list->hash);
1315
1316 if (list->file_offset_node) {
1317 drm_mm_put_block(list->file_offset_node);
1318 list->file_offset_node = NULL;
1319 }
1320
1321 if (list->map) {
Eric Anholt9a298b22009-03-24 12:23:04 -07001322 kfree(list->map);
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001323 list->map = NULL;
1324 }
1325
1326 obj_priv->mmap_offset = 0;
1327}
1328
Jesse Barnesde151cf2008-11-12 10:03:55 -08001329/**
1330 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1331 * @obj: object to check
1332 *
1333 * Return the required GTT alignment for an object, taking into account
1334 * potential fence register mapping if needed.
1335 */
1336static uint32_t
1337i915_gem_get_gtt_alignment(struct drm_gem_object *obj)
1338{
1339 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01001340 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001341 int start, i;
1342
1343 /*
1344 * Minimum alignment is 4k (GTT page size), but might be greater
1345 * if a fence register is needed for the object.
1346 */
1347 if (IS_I965G(dev) || obj_priv->tiling_mode == I915_TILING_NONE)
1348 return 4096;
1349
1350 /*
1351 * Previous chips need to be aligned to the size of the smallest
1352 * fence register that can contain the object.
1353 */
1354 if (IS_I9XX(dev))
1355 start = 1024*1024;
1356 else
1357 start = 512*1024;
1358
1359 for (i = start; i < obj->size; i <<= 1)
1360 ;
1361
1362 return i;
1363}
1364
1365/**
1366 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1367 * @dev: DRM device
1368 * @data: GTT mapping ioctl data
1369 * @file_priv: GEM object info
1370 *
1371 * Simply returns the fake offset to userspace so it can mmap it.
1372 * The mmap call will end up in drm_gem_mmap(), which will set things
1373 * up so we can get faults in the handler above.
1374 *
1375 * The fault handler will take care of binding the object into the GTT
1376 * (since it may have been evicted to make room for something), allocating
1377 * a fence register, and mapping the appropriate aperture address into
1378 * userspace.
1379 */
1380int
1381i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1382 struct drm_file *file_priv)
1383{
1384 struct drm_i915_gem_mmap_gtt *args = data;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001385 struct drm_gem_object *obj;
1386 struct drm_i915_gem_object *obj_priv;
1387 int ret;
1388
1389 if (!(dev->driver->driver_features & DRIVER_GEM))
1390 return -ENODEV;
1391
1392 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1393 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001394 return -ENOENT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001395
1396 mutex_lock(&dev->struct_mutex);
1397
Daniel Vetter23010e42010-03-08 13:35:02 +01001398 obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001399
Chris Wilsonab182822009-09-22 18:46:17 +01001400 if (obj_priv->madv != I915_MADV_WILLNEED) {
1401 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
1402 drm_gem_object_unreference(obj);
1403 mutex_unlock(&dev->struct_mutex);
1404 return -EINVAL;
1405 }
1406
1407
Jesse Barnesde151cf2008-11-12 10:03:55 -08001408 if (!obj_priv->mmap_offset) {
1409 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson13af1062009-02-11 14:26:31 +00001410 if (ret) {
1411 drm_gem_object_unreference(obj);
1412 mutex_unlock(&dev->struct_mutex);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001413 return ret;
Chris Wilson13af1062009-02-11 14:26:31 +00001414 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001415 }
1416
1417 args->offset = obj_priv->mmap_offset;
1418
Jesse Barnesde151cf2008-11-12 10:03:55 -08001419 /*
1420 * Pull it into the GTT so that we have a page list (makes the
1421 * initial fault faster and any subsequent flushing possible).
1422 */
1423 if (!obj_priv->agp_mem) {
Chris Wilsone67b8ce2009-09-14 16:50:26 +01001424 ret = i915_gem_object_bind_to_gtt(obj, 0);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001425 if (ret) {
1426 drm_gem_object_unreference(obj);
1427 mutex_unlock(&dev->struct_mutex);
1428 return ret;
1429 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001430 }
1431
1432 drm_gem_object_unreference(obj);
1433 mutex_unlock(&dev->struct_mutex);
1434
1435 return 0;
1436}
1437
Ben Gamari6911a9b2009-04-02 11:24:54 -07001438void
Eric Anholt856fa192009-03-19 14:10:50 -07001439i915_gem_object_put_pages(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001440{
Daniel Vetter23010e42010-03-08 13:35:02 +01001441 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001442 int page_count = obj->size / PAGE_SIZE;
1443 int i;
1444
Eric Anholt856fa192009-03-19 14:10:50 -07001445 BUG_ON(obj_priv->pages_refcount == 0);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001446 BUG_ON(obj_priv->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001447
1448 if (--obj_priv->pages_refcount != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07001449 return;
1450
Eric Anholt280b7132009-03-12 16:56:27 -07001451 if (obj_priv->tiling_mode != I915_TILING_NONE)
1452 i915_gem_object_save_bit_17_swizzle(obj);
1453
Chris Wilson3ef94da2009-09-14 16:50:29 +01001454 if (obj_priv->madv == I915_MADV_DONTNEED)
Chris Wilson13a05fd2009-09-20 23:03:19 +01001455 obj_priv->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001456
1457 for (i = 0; i < page_count; i++) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01001458 if (obj_priv->dirty)
1459 set_page_dirty(obj_priv->pages[i]);
1460
1461 if (obj_priv->madv == I915_MADV_WILLNEED)
Eric Anholt856fa192009-03-19 14:10:50 -07001462 mark_page_accessed(obj_priv->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001463
1464 page_cache_release(obj_priv->pages[i]);
1465 }
Eric Anholt673a3942008-07-30 12:06:12 -07001466 obj_priv->dirty = 0;
1467
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001468 drm_free_large(obj_priv->pages);
Eric Anholt856fa192009-03-19 14:10:50 -07001469 obj_priv->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001470}
1471
Daniel Vettere35a41d2010-02-11 22:13:59 +01001472static uint32_t
1473i915_gem_next_request_seqno(struct drm_device *dev)
1474{
1475 drm_i915_private_t *dev_priv = dev->dev_private;
1476
1477 return dev_priv->next_seqno;
1478}
1479
Eric Anholt673a3942008-07-30 12:06:12 -07001480static void
Zou Nan hai852835f2010-05-21 09:08:56 +08001481i915_gem_object_move_to_active(struct drm_gem_object *obj, uint32_t seqno,
1482 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001483{
1484 struct drm_device *dev = obj->dev;
1485 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001486 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Zou Nan hai852835f2010-05-21 09:08:56 +08001487 BUG_ON(ring == NULL);
1488 obj_priv->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001489
1490 /* Add a reference if we're newly entering the active list. */
1491 if (!obj_priv->active) {
1492 drm_gem_object_reference(obj);
1493 obj_priv->active = 1;
1494 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001495
1496 /* Take the seqno of the next request if none is given */
1497 if (seqno == 0)
1498 seqno = i915_gem_next_request_seqno(dev);
1499
Eric Anholt673a3942008-07-30 12:06:12 -07001500 /* Move from whatever list we were on to the tail of execution. */
Carl Worth5e118f42009-03-20 11:54:25 -07001501 spin_lock(&dev_priv->mm.active_list_lock);
Zou Nan hai852835f2010-05-21 09:08:56 +08001502 list_move_tail(&obj_priv->list, &ring->active_list);
Carl Worth5e118f42009-03-20 11:54:25 -07001503 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001504 obj_priv->last_rendering_seqno = seqno;
Eric Anholt673a3942008-07-30 12:06:12 -07001505}
1506
Eric Anholtce44b0e2008-11-06 16:00:31 -08001507static void
1508i915_gem_object_move_to_flushing(struct drm_gem_object *obj)
1509{
1510 struct drm_device *dev = obj->dev;
1511 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001512 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001513
1514 BUG_ON(!obj_priv->active);
1515 list_move_tail(&obj_priv->list, &dev_priv->mm.flushing_list);
1516 obj_priv->last_rendering_seqno = 0;
1517}
Eric Anholt673a3942008-07-30 12:06:12 -07001518
Chris Wilson963b4832009-09-20 23:03:54 +01001519/* Immediately discard the backing storage */
1520static void
1521i915_gem_object_truncate(struct drm_gem_object *obj)
1522{
Daniel Vetter23010e42010-03-08 13:35:02 +01001523 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001524 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001525
Chris Wilsonae9fed62010-08-07 11:01:30 +01001526 /* Our goal here is to return as much of the memory as
1527 * is possible back to the system as we are called from OOM.
1528 * To do this we must instruct the shmfs to drop all of its
1529 * backing pages, *now*. Here we mirror the actions taken
1530 * when by shmem_delete_inode() to release the backing store.
1531 */
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001532 inode = obj->filp->f_path.dentry->d_inode;
Chris Wilsonae9fed62010-08-07 11:01:30 +01001533 truncate_inode_pages(inode->i_mapping, 0);
1534 if (inode->i_op->truncate_range)
1535 inode->i_op->truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001536
1537 obj_priv->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001538}
1539
1540static inline int
1541i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj_priv)
1542{
1543 return obj_priv->madv == I915_MADV_DONTNEED;
1544}
1545
Eric Anholt673a3942008-07-30 12:06:12 -07001546static void
1547i915_gem_object_move_to_inactive(struct drm_gem_object *obj)
1548{
1549 struct drm_device *dev = obj->dev;
1550 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001551 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001552
1553 i915_verify_inactive(dev, __FILE__, __LINE__);
1554 if (obj_priv->pin_count != 0)
1555 list_del_init(&obj_priv->list);
1556 else
1557 list_move_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
1558
Daniel Vetter99fcb762010-02-07 16:20:18 +01001559 BUG_ON(!list_empty(&obj_priv->gpu_write_list));
1560
Eric Anholtce44b0e2008-11-06 16:00:31 -08001561 obj_priv->last_rendering_seqno = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +08001562 obj_priv->ring = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001563 if (obj_priv->active) {
1564 obj_priv->active = 0;
1565 drm_gem_object_unreference(obj);
1566 }
1567 i915_verify_inactive(dev, __FILE__, __LINE__);
1568}
1569
Daniel Vetter63560392010-02-19 11:51:59 +01001570static void
1571i915_gem_process_flushing_list(struct drm_device *dev,
Zou Nan hai852835f2010-05-21 09:08:56 +08001572 uint32_t flush_domains, uint32_t seqno,
1573 struct intel_ring_buffer *ring)
Daniel Vetter63560392010-02-19 11:51:59 +01001574{
1575 drm_i915_private_t *dev_priv = dev->dev_private;
1576 struct drm_i915_gem_object *obj_priv, *next;
1577
1578 list_for_each_entry_safe(obj_priv, next,
1579 &dev_priv->mm.gpu_write_list,
1580 gpu_write_list) {
Daniel Vettera8089e82010-04-09 19:05:09 +00001581 struct drm_gem_object *obj = &obj_priv->base;
Daniel Vetter63560392010-02-19 11:51:59 +01001582
1583 if ((obj->write_domain & flush_domains) ==
Zou Nan hai852835f2010-05-21 09:08:56 +08001584 obj->write_domain &&
1585 obj_priv->ring->ring_flag == ring->ring_flag) {
Daniel Vetter63560392010-02-19 11:51:59 +01001586 uint32_t old_write_domain = obj->write_domain;
1587
1588 obj->write_domain = 0;
1589 list_del_init(&obj_priv->gpu_write_list);
Zou Nan hai852835f2010-05-21 09:08:56 +08001590 i915_gem_object_move_to_active(obj, seqno, ring);
Daniel Vetter63560392010-02-19 11:51:59 +01001591
1592 /* update the fence lru list */
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001593 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
1594 struct drm_i915_fence_reg *reg =
1595 &dev_priv->fence_regs[obj_priv->fence_reg];
1596 list_move_tail(&reg->lru_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001597 &dev_priv->mm.fence_list);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001598 }
Daniel Vetter63560392010-02-19 11:51:59 +01001599
1600 trace_i915_gem_object_change_domain(obj,
1601 obj->read_domains,
1602 old_write_domain);
1603 }
1604 }
1605}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001606
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001607uint32_t
Eric Anholtb9624422009-06-03 07:27:35 +00001608i915_add_request(struct drm_device *dev, struct drm_file *file_priv,
Zou Nan hai852835f2010-05-21 09:08:56 +08001609 uint32_t flush_domains, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001610{
1611 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00001612 struct drm_i915_file_private *i915_file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001613 struct drm_i915_gem_request *request;
1614 uint32_t seqno;
1615 int was_empty;
Eric Anholt673a3942008-07-30 12:06:12 -07001616
Eric Anholtb9624422009-06-03 07:27:35 +00001617 if (file_priv != NULL)
1618 i915_file_priv = file_priv->driver_priv;
1619
Eric Anholt9a298b22009-03-24 12:23:04 -07001620 request = kzalloc(sizeof(*request), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07001621 if (request == NULL)
1622 return 0;
1623
Zou Nan hai852835f2010-05-21 09:08:56 +08001624 seqno = ring->add_request(dev, ring, file_priv, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07001625
1626 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001627 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001628 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001629 was_empty = list_empty(&ring->request_list);
1630 list_add_tail(&request->list, &ring->request_list);
1631
Eric Anholtb9624422009-06-03 07:27:35 +00001632 if (i915_file_priv) {
1633 list_add_tail(&request->client_list,
1634 &i915_file_priv->mm.request_list);
1635 } else {
1636 INIT_LIST_HEAD(&request->client_list);
1637 }
Eric Anholt673a3942008-07-30 12:06:12 -07001638
Eric Anholtce44b0e2008-11-06 16:00:31 -08001639 /* Associate any objects on the flushing list matching the write
Daniel Vetter8bff9172010-02-11 22:19:40 +01001640 * domain we're flushing with our request.
Eric Anholtce44b0e2008-11-06 16:00:31 -08001641 */
Daniel Vetter63560392010-02-19 11:51:59 +01001642 if (flush_domains != 0)
Zou Nan hai852835f2010-05-21 09:08:56 +08001643 i915_gem_process_flushing_list(dev, flush_domains, seqno, ring);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001644
Ben Gamarif65d9422009-09-14 17:48:44 -04001645 if (!dev_priv->mm.suspended) {
1646 mod_timer(&dev_priv->hangcheck_timer, jiffies + DRM_I915_HANGCHECK_PERIOD);
1647 if (was_empty)
1648 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1649 }
Eric Anholt673a3942008-07-30 12:06:12 -07001650 return seqno;
1651}
1652
1653/**
1654 * Command execution barrier
1655 *
1656 * Ensures that all commands in the ring are finished
1657 * before signalling the CPU
1658 */
Eric Anholt3043c602008-10-02 12:24:47 -07001659static uint32_t
Zou Nan hai852835f2010-05-21 09:08:56 +08001660i915_retire_commands(struct drm_device *dev, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001661{
Eric Anholt673a3942008-07-30 12:06:12 -07001662 uint32_t flush_domains = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001663
1664 /* The sampler always gets flushed on i965 (sigh) */
1665 if (IS_I965G(dev))
1666 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
Zou Nan hai852835f2010-05-21 09:08:56 +08001667
1668 ring->flush(dev, ring,
1669 I915_GEM_DOMAIN_COMMAND, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07001670 return flush_domains;
1671}
1672
1673/**
1674 * Moves buffers associated only with the given active seqno from the active
1675 * to inactive list, potentially freeing them.
1676 */
1677static void
1678i915_gem_retire_request(struct drm_device *dev,
1679 struct drm_i915_gem_request *request)
1680{
1681 drm_i915_private_t *dev_priv = dev->dev_private;
1682
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001683 trace_i915_gem_request_retire(dev, request->seqno);
1684
Eric Anholt673a3942008-07-30 12:06:12 -07001685 /* Move any buffers on the active list that are no longer referenced
1686 * by the ringbuffer to the flushing/inactive lists as appropriate.
1687 */
Carl Worth5e118f42009-03-20 11:54:25 -07001688 spin_lock(&dev_priv->mm.active_list_lock);
Zou Nan hai852835f2010-05-21 09:08:56 +08001689 while (!list_empty(&request->ring->active_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001690 struct drm_gem_object *obj;
1691 struct drm_i915_gem_object *obj_priv;
1692
Zou Nan hai852835f2010-05-21 09:08:56 +08001693 obj_priv = list_first_entry(&request->ring->active_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001694 struct drm_i915_gem_object,
1695 list);
Daniel Vettera8089e82010-04-09 19:05:09 +00001696 obj = &obj_priv->base;
Eric Anholt673a3942008-07-30 12:06:12 -07001697
1698 /* If the seqno being retired doesn't match the oldest in the
1699 * list, then the oldest in the list must still be newer than
1700 * this seqno.
1701 */
1702 if (obj_priv->last_rendering_seqno != request->seqno)
Carl Worth5e118f42009-03-20 11:54:25 -07001703 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001704
Eric Anholt673a3942008-07-30 12:06:12 -07001705#if WATCH_LRU
1706 DRM_INFO("%s: retire %d moves to inactive list %p\n",
1707 __func__, request->seqno, obj);
1708#endif
1709
Eric Anholtce44b0e2008-11-06 16:00:31 -08001710 if (obj->write_domain != 0)
1711 i915_gem_object_move_to_flushing(obj);
Shaohua Li68c84342009-04-08 10:58:23 +08001712 else {
1713 /* Take a reference on the object so it won't be
1714 * freed while the spinlock is held. The list
1715 * protection for this spinlock is safe when breaking
1716 * the lock like this since the next thing we do
1717 * is just get the head of the list again.
1718 */
1719 drm_gem_object_reference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001720 i915_gem_object_move_to_inactive(obj);
Shaohua Li68c84342009-04-08 10:58:23 +08001721 spin_unlock(&dev_priv->mm.active_list_lock);
1722 drm_gem_object_unreference(obj);
1723 spin_lock(&dev_priv->mm.active_list_lock);
1724 }
Eric Anholt673a3942008-07-30 12:06:12 -07001725 }
Carl Worth5e118f42009-03-20 11:54:25 -07001726out:
1727 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001728}
1729
1730/**
1731 * Returns true if seq1 is later than seq2.
1732 */
Ben Gamari22be1722009-09-14 17:48:43 -04001733bool
Eric Anholt673a3942008-07-30 12:06:12 -07001734i915_seqno_passed(uint32_t seq1, uint32_t seq2)
1735{
1736 return (int32_t)(seq1 - seq2) >= 0;
1737}
1738
1739uint32_t
Zou Nan hai852835f2010-05-21 09:08:56 +08001740i915_get_gem_seqno(struct drm_device *dev,
Zou Nan haid1b851f2010-05-21 09:08:57 +08001741 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001742{
Zou Nan hai852835f2010-05-21 09:08:56 +08001743 return ring->get_gem_seqno(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001744}
1745
1746/**
1747 * This function clears the request list as sequence numbers are passed.
1748 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001749static void
1750i915_gem_retire_requests_ring(struct drm_device *dev,
1751 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001752{
1753 drm_i915_private_t *dev_priv = dev->dev_private;
1754 uint32_t seqno;
1755
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001756 if (!ring->status_page.page_addr
Zou Nan hai852835f2010-05-21 09:08:56 +08001757 || list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001758 return;
1759
Zou Nan hai852835f2010-05-21 09:08:56 +08001760 seqno = i915_get_gem_seqno(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001761
Zou Nan hai852835f2010-05-21 09:08:56 +08001762 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001763 struct drm_i915_gem_request *request;
1764 uint32_t retiring_seqno;
1765
Zou Nan hai852835f2010-05-21 09:08:56 +08001766 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001767 struct drm_i915_gem_request,
1768 list);
1769 retiring_seqno = request->seqno;
1770
1771 if (i915_seqno_passed(seqno, retiring_seqno) ||
Ben Gamariba1234d2009-09-14 17:48:47 -04001772 atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001773 i915_gem_retire_request(dev, request);
1774
1775 list_del(&request->list);
Eric Anholtb9624422009-06-03 07:27:35 +00001776 list_del(&request->client_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07001777 kfree(request);
Eric Anholt673a3942008-07-30 12:06:12 -07001778 } else
1779 break;
1780 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001781
1782 if (unlikely (dev_priv->trace_irq_seqno &&
1783 i915_seqno_passed(dev_priv->trace_irq_seqno, seqno))) {
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001784
1785 ring->user_irq_put(dev, ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001786 dev_priv->trace_irq_seqno = 0;
1787 }
Eric Anholt673a3942008-07-30 12:06:12 -07001788}
1789
1790void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001791i915_gem_retire_requests(struct drm_device *dev)
1792{
1793 drm_i915_private_t *dev_priv = dev->dev_private;
1794
Chris Wilsonbe726152010-07-23 23:18:50 +01001795 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
1796 struct drm_i915_gem_object *obj_priv, *tmp;
1797
1798 /* We must be careful that during unbind() we do not
1799 * accidentally infinitely recurse into retire requests.
1800 * Currently:
1801 * retire -> free -> unbind -> wait -> retire_ring
1802 */
1803 list_for_each_entry_safe(obj_priv, tmp,
1804 &dev_priv->mm.deferred_free_list,
1805 list)
1806 i915_gem_free_object_tail(&obj_priv->base);
1807 }
1808
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001809 i915_gem_retire_requests_ring(dev, &dev_priv->render_ring);
1810 if (HAS_BSD(dev))
1811 i915_gem_retire_requests_ring(dev, &dev_priv->bsd_ring);
1812}
1813
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001814static void
Eric Anholt673a3942008-07-30 12:06:12 -07001815i915_gem_retire_work_handler(struct work_struct *work)
1816{
1817 drm_i915_private_t *dev_priv;
1818 struct drm_device *dev;
1819
1820 dev_priv = container_of(work, drm_i915_private_t,
1821 mm.retire_work.work);
1822 dev = dev_priv->dev;
1823
1824 mutex_lock(&dev->struct_mutex);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001825 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001826
Keith Packard6dbe2772008-10-14 21:41:13 -07001827 if (!dev_priv->mm.suspended &&
Zou Nan haid1b851f2010-05-21 09:08:57 +08001828 (!list_empty(&dev_priv->render_ring.request_list) ||
1829 (HAS_BSD(dev) &&
1830 !list_empty(&dev_priv->bsd_ring.request_list))))
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001831 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07001832 mutex_unlock(&dev->struct_mutex);
1833}
1834
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001835int
Zou Nan hai852835f2010-05-21 09:08:56 +08001836i915_do_wait_request(struct drm_device *dev, uint32_t seqno,
1837 int interruptible, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001838{
1839 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001840 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001841 int ret = 0;
1842
1843 BUG_ON(seqno == 0);
1844
Daniel Vettere35a41d2010-02-11 22:13:59 +01001845 if (seqno == dev_priv->next_seqno) {
1846 seqno = i915_add_request(dev, NULL, 0, ring);
1847 if (seqno == 0)
1848 return -ENOMEM;
1849 }
1850
Ben Gamariba1234d2009-09-14 17:48:47 -04001851 if (atomic_read(&dev_priv->mm.wedged))
Ben Gamariffed1d02009-09-14 17:48:41 -04001852 return -EIO;
1853
Zou Nan hai852835f2010-05-21 09:08:56 +08001854 if (!i915_seqno_passed(ring->get_gem_seqno(dev, ring), seqno)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001855 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001856 ier = I915_READ(DEIER) | I915_READ(GTIER);
1857 else
1858 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001859 if (!ier) {
1860 DRM_ERROR("something (likely vbetool) disabled "
1861 "interrupts, re-enabling\n");
1862 i915_driver_irq_preinstall(dev);
1863 i915_driver_irq_postinstall(dev);
1864 }
1865
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001866 trace_i915_gem_request_wait_begin(dev, seqno);
1867
Zou Nan hai852835f2010-05-21 09:08:56 +08001868 ring->waiting_gem_seqno = seqno;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001869 ring->user_irq_get(dev, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02001870 if (interruptible)
Zou Nan hai852835f2010-05-21 09:08:56 +08001871 ret = wait_event_interruptible(ring->irq_queue,
1872 i915_seqno_passed(
1873 ring->get_gem_seqno(dev, ring), seqno)
1874 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001875 else
Zou Nan hai852835f2010-05-21 09:08:56 +08001876 wait_event(ring->irq_queue,
1877 i915_seqno_passed(
1878 ring->get_gem_seqno(dev, ring), seqno)
1879 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001880
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001881 ring->user_irq_put(dev, ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001882 ring->waiting_gem_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001883
1884 trace_i915_gem_request_wait_end(dev, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001885 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001886 if (atomic_read(&dev_priv->mm.wedged))
Eric Anholt673a3942008-07-30 12:06:12 -07001887 ret = -EIO;
1888
1889 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01001890 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
1891 __func__, ret, seqno, ring->get_gem_seqno(dev, ring),
1892 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001893
1894 /* Directly dispatch request retiring. While we have the work queue
1895 * to handle this, the waiter on a request often wants an associated
1896 * buffer to have made it to the inactive list, and we would need
1897 * a separate wait queue to handle that.
1898 */
1899 if (ret == 0)
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001900 i915_gem_retire_requests_ring(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001901
1902 return ret;
1903}
1904
Daniel Vetter48764bf2009-09-15 22:57:32 +02001905/**
1906 * Waits for a sequence number to be signaled, and cleans up the
1907 * request and object lists appropriately for that event.
1908 */
1909static int
Zou Nan hai852835f2010-05-21 09:08:56 +08001910i915_wait_request(struct drm_device *dev, uint32_t seqno,
1911 struct intel_ring_buffer *ring)
Daniel Vetter48764bf2009-09-15 22:57:32 +02001912{
Zou Nan hai852835f2010-05-21 09:08:56 +08001913 return i915_do_wait_request(dev, seqno, 1, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02001914}
1915
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001916static void
1917i915_gem_flush(struct drm_device *dev,
1918 uint32_t invalidate_domains,
1919 uint32_t flush_domains)
1920{
1921 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter8bff9172010-02-11 22:19:40 +01001922
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001923 if (flush_domains & I915_GEM_DOMAIN_CPU)
1924 drm_agp_chipset_flush(dev);
Daniel Vetter8bff9172010-02-11 22:19:40 +01001925
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001926 dev_priv->render_ring.flush(dev, &dev_priv->render_ring,
1927 invalidate_domains,
1928 flush_domains);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001929
1930 if (HAS_BSD(dev))
1931 dev_priv->bsd_ring.flush(dev, &dev_priv->bsd_ring,
1932 invalidate_domains,
1933 flush_domains);
Daniel Vetter8bff9172010-02-11 22:19:40 +01001934
1935 /* Associate any objects on the flushing list matching the write
1936 * domain we're flushing with the next request.
1937 */
1938 if (flush_domains != 0) {
1939 i915_gem_process_flushing_list(dev, flush_domains, 0,
1940 &dev_priv->render_ring);
1941 if (HAS_BSD(dev))
1942 i915_gem_process_flushing_list(dev, flush_domains, 0,
1943 &dev_priv->bsd_ring);
1944 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001945}
1946
Eric Anholt673a3942008-07-30 12:06:12 -07001947/**
1948 * Ensures that all rendering to the object has completed and the object is
1949 * safe to unbind from the GTT or access from the CPU.
1950 */
1951static int
Daniel Vettere35a41d2010-02-11 22:13:59 +01001952i915_gem_object_wait_rendering(struct drm_gem_object *obj,
1953 bool interruptible)
Eric Anholt673a3942008-07-30 12:06:12 -07001954{
1955 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01001956 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001957 int ret;
1958
Eric Anholte47c68e2008-11-14 13:35:19 -08001959 /* This function only exists to support waiting for existing rendering,
1960 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001961 */
Eric Anholte47c68e2008-11-14 13:35:19 -08001962 BUG_ON((obj->write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001963
1964 /* If there is rendering queued on the buffer being evicted, wait for
1965 * it.
1966 */
1967 if (obj_priv->active) {
1968#if WATCH_BUF
1969 DRM_INFO("%s: object %p wait for seqno %08x\n",
1970 __func__, obj, obj_priv->last_rendering_seqno);
1971#endif
Daniel Vettere35a41d2010-02-11 22:13:59 +01001972 ret = i915_do_wait_request(dev,
1973 obj_priv->last_rendering_seqno,
1974 interruptible,
1975 obj_priv->ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001976 if (ret != 0)
1977 return ret;
1978 }
1979
1980 return 0;
1981}
1982
1983/**
1984 * Unbinds an object from the GTT aperture.
1985 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001986int
Eric Anholt673a3942008-07-30 12:06:12 -07001987i915_gem_object_unbind(struct drm_gem_object *obj)
1988{
1989 struct drm_device *dev = obj->dev;
Daniel Vetter4a87b8c2010-02-19 11:51:57 +01001990 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001991 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001992 int ret = 0;
1993
1994#if WATCH_BUF
1995 DRM_INFO("%s:%d %p\n", __func__, __LINE__, obj);
1996 DRM_INFO("gtt_space %p\n", obj_priv->gtt_space);
1997#endif
1998 if (obj_priv->gtt_space == NULL)
1999 return 0;
2000
2001 if (obj_priv->pin_count != 0) {
2002 DRM_ERROR("Attempting to unbind pinned buffer\n");
2003 return -EINVAL;
2004 }
2005
Eric Anholt5323fd02009-09-09 11:50:45 -07002006 /* blow away mappings if mapped through GTT */
2007 i915_gem_release_mmap(obj);
2008
Eric Anholt673a3942008-07-30 12:06:12 -07002009 /* Move the object to the CPU domain to ensure that
2010 * any possible CPU writes while it's not in the GTT
2011 * are flushed when we go to remap it. This will
2012 * also ensure that all pending GPU writes are finished
2013 * before we unbind.
2014 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002015 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilson8dc17752010-07-23 23:18:51 +01002016 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002017 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002018 /* Continue on if we fail due to EIO, the GPU is hung so we
2019 * should be safe and we need to cleanup or else we might
2020 * cause memory corruption through use-after-free.
2021 */
Eric Anholt673a3942008-07-30 12:06:12 -07002022
Daniel Vetter96b47b62009-12-15 17:50:00 +01002023 /* release the fence reg _after_ flushing */
2024 if (obj_priv->fence_reg != I915_FENCE_REG_NONE)
2025 i915_gem_clear_fence_reg(obj);
2026
Eric Anholt673a3942008-07-30 12:06:12 -07002027 if (obj_priv->agp_mem != NULL) {
2028 drm_unbind_agp(obj_priv->agp_mem);
2029 drm_free_agp(obj_priv->agp_mem, obj->size / PAGE_SIZE);
2030 obj_priv->agp_mem = NULL;
2031 }
2032
Eric Anholt856fa192009-03-19 14:10:50 -07002033 i915_gem_object_put_pages(obj);
Chris Wilsona32808c2009-09-20 21:29:47 +01002034 BUG_ON(obj_priv->pages_refcount);
Eric Anholt673a3942008-07-30 12:06:12 -07002035
2036 if (obj_priv->gtt_space) {
2037 atomic_dec(&dev->gtt_count);
2038 atomic_sub(obj->size, &dev->gtt_memory);
2039
2040 drm_mm_put_block(obj_priv->gtt_space);
2041 obj_priv->gtt_space = NULL;
2042 }
2043
2044 /* Remove ourselves from the LRU list if present. */
Daniel Vetter4a87b8c2010-02-19 11:51:57 +01002045 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002046 if (!list_empty(&obj_priv->list))
2047 list_del_init(&obj_priv->list);
Daniel Vetter4a87b8c2010-02-19 11:51:57 +01002048 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002049
Chris Wilson963b4832009-09-20 23:03:54 +01002050 if (i915_gem_object_is_purgeable(obj_priv))
2051 i915_gem_object_truncate(obj);
2052
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002053 trace_i915_gem_object_unbind(obj);
2054
Chris Wilson8dc17752010-07-23 23:18:51 +01002055 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002056}
2057
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002058int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002059i915_gpu_idle(struct drm_device *dev)
2060{
2061 drm_i915_private_t *dev_priv = dev->dev_private;
2062 bool lists_empty;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002063 uint32_t seqno1, seqno2;
Zou Nan hai852835f2010-05-21 09:08:56 +08002064 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002065
2066 spin_lock(&dev_priv->mm.active_list_lock);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002067 lists_empty = (list_empty(&dev_priv->mm.flushing_list) &&
2068 list_empty(&dev_priv->render_ring.active_list) &&
2069 (!HAS_BSD(dev) ||
2070 list_empty(&dev_priv->bsd_ring.active_list)));
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002071 spin_unlock(&dev_priv->mm.active_list_lock);
2072
2073 if (lists_empty)
2074 return 0;
2075
2076 /* Flush everything onto the inactive list. */
2077 i915_gem_flush(dev, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Daniel Vetter8bff9172010-02-11 22:19:40 +01002078 seqno1 = i915_add_request(dev, NULL, 0,
Zou Nan hai852835f2010-05-21 09:08:56 +08002079 &dev_priv->render_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002080 if (seqno1 == 0)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002081 return -ENOMEM;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002082 ret = i915_wait_request(dev, seqno1, &dev_priv->render_ring);
2083
2084 if (HAS_BSD(dev)) {
Daniel Vetter8bff9172010-02-11 22:19:40 +01002085 seqno2 = i915_add_request(dev, NULL, 0,
Zou Nan haid1b851f2010-05-21 09:08:57 +08002086 &dev_priv->bsd_ring);
2087 if (seqno2 == 0)
2088 return -ENOMEM;
2089
2090 ret = i915_wait_request(dev, seqno2, &dev_priv->bsd_ring);
2091 if (ret)
2092 return ret;
2093 }
2094
Zou Nan hai852835f2010-05-21 09:08:56 +08002095 return ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002096}
2097
Ben Gamari6911a9b2009-04-02 11:24:54 -07002098int
Chris Wilson4bdadb92010-01-27 13:36:32 +00002099i915_gem_object_get_pages(struct drm_gem_object *obj,
2100 gfp_t gfpmask)
Eric Anholt673a3942008-07-30 12:06:12 -07002101{
Daniel Vetter23010e42010-03-08 13:35:02 +01002102 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002103 int page_count, i;
2104 struct address_space *mapping;
2105 struct inode *inode;
2106 struct page *page;
Eric Anholt673a3942008-07-30 12:06:12 -07002107
Daniel Vetter778c3542010-05-13 11:49:44 +02002108 BUG_ON(obj_priv->pages_refcount
2109 == DRM_I915_GEM_OBJECT_MAX_PAGES_REFCOUNT);
2110
Eric Anholt856fa192009-03-19 14:10:50 -07002111 if (obj_priv->pages_refcount++ != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07002112 return 0;
2113
2114 /* Get the list of pages out of our struct file. They'll be pinned
2115 * at this point until we release them.
2116 */
2117 page_count = obj->size / PAGE_SIZE;
Eric Anholt856fa192009-03-19 14:10:50 -07002118 BUG_ON(obj_priv->pages != NULL);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07002119 obj_priv->pages = drm_calloc_large(page_count, sizeof(struct page *));
Eric Anholt856fa192009-03-19 14:10:50 -07002120 if (obj_priv->pages == NULL) {
Eric Anholt856fa192009-03-19 14:10:50 -07002121 obj_priv->pages_refcount--;
Eric Anholt673a3942008-07-30 12:06:12 -07002122 return -ENOMEM;
2123 }
2124
2125 inode = obj->filp->f_path.dentry->d_inode;
2126 mapping = inode->i_mapping;
2127 for (i = 0; i < page_count; i++) {
Chris Wilson4bdadb92010-01-27 13:36:32 +00002128 page = read_cache_page_gfp(mapping, i,
Linus Torvalds985b8232010-07-02 10:04:42 +10002129 GFP_HIGHUSER |
Chris Wilson4bdadb92010-01-27 13:36:32 +00002130 __GFP_COLD |
Linus Torvaldscd9f0402010-07-18 09:44:37 -07002131 __GFP_RECLAIMABLE |
Chris Wilson4bdadb92010-01-27 13:36:32 +00002132 gfpmask);
Chris Wilson1f2b1012010-03-12 19:52:55 +00002133 if (IS_ERR(page))
2134 goto err_pages;
2135
Eric Anholt856fa192009-03-19 14:10:50 -07002136 obj_priv->pages[i] = page;
Eric Anholt673a3942008-07-30 12:06:12 -07002137 }
Eric Anholt280b7132009-03-12 16:56:27 -07002138
2139 if (obj_priv->tiling_mode != I915_TILING_NONE)
2140 i915_gem_object_do_bit_17_swizzle(obj);
2141
Eric Anholt673a3942008-07-30 12:06:12 -07002142 return 0;
Chris Wilson1f2b1012010-03-12 19:52:55 +00002143
2144err_pages:
2145 while (i--)
2146 page_cache_release(obj_priv->pages[i]);
2147
2148 drm_free_large(obj_priv->pages);
2149 obj_priv->pages = NULL;
2150 obj_priv->pages_refcount--;
2151 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002152}
2153
Eric Anholt4e901fd2009-10-26 16:44:17 -07002154static void sandybridge_write_fence_reg(struct drm_i915_fence_reg *reg)
2155{
2156 struct drm_gem_object *obj = reg->obj;
2157 struct drm_device *dev = obj->dev;
2158 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002159 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002160 int regnum = obj_priv->fence_reg;
2161 uint64_t val;
2162
2163 val = (uint64_t)((obj_priv->gtt_offset + obj->size - 4096) &
2164 0xfffff000) << 32;
2165 val |= obj_priv->gtt_offset & 0xfffff000;
2166 val |= (uint64_t)((obj_priv->stride / 128) - 1) <<
2167 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2168
2169 if (obj_priv->tiling_mode == I915_TILING_Y)
2170 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2171 val |= I965_FENCE_REG_VALID;
2172
2173 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (regnum * 8), val);
2174}
2175
Jesse Barnesde151cf2008-11-12 10:03:55 -08002176static void i965_write_fence_reg(struct drm_i915_fence_reg *reg)
2177{
2178 struct drm_gem_object *obj = reg->obj;
2179 struct drm_device *dev = obj->dev;
2180 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002181 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002182 int regnum = obj_priv->fence_reg;
2183 uint64_t val;
2184
2185 val = (uint64_t)((obj_priv->gtt_offset + obj->size - 4096) &
2186 0xfffff000) << 32;
2187 val |= obj_priv->gtt_offset & 0xfffff000;
2188 val |= ((obj_priv->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2189 if (obj_priv->tiling_mode == I915_TILING_Y)
2190 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2191 val |= I965_FENCE_REG_VALID;
2192
2193 I915_WRITE64(FENCE_REG_965_0 + (regnum * 8), val);
2194}
2195
2196static void i915_write_fence_reg(struct drm_i915_fence_reg *reg)
2197{
2198 struct drm_gem_object *obj = reg->obj;
2199 struct drm_device *dev = obj->dev;
2200 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002201 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002202 int regnum = obj_priv->fence_reg;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002203 int tile_width;
Eric Anholtdc529a42009-03-10 22:34:49 -07002204 uint32_t fence_reg, val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002205 uint32_t pitch_val;
2206
2207 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
2208 (obj_priv->gtt_offset & (obj->size - 1))) {
Linus Torvaldsf06da262009-02-09 08:57:29 -08002209 WARN(1, "%s: object 0x%08x not 1M or size (0x%zx) aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002210 __func__, obj_priv->gtt_offset, obj->size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002211 return;
2212 }
2213
Jesse Barnes0f973f22009-01-26 17:10:45 -08002214 if (obj_priv->tiling_mode == I915_TILING_Y &&
2215 HAS_128_BYTE_Y_TILING(dev))
2216 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002217 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002218 tile_width = 512;
2219
2220 /* Note: pitch better be a power of two tile widths */
2221 pitch_val = obj_priv->stride / tile_width;
2222 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002223
Daniel Vetterc36a2a62010-04-17 15:12:03 +02002224 if (obj_priv->tiling_mode == I915_TILING_Y &&
2225 HAS_128_BYTE_Y_TILING(dev))
2226 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2227 else
2228 WARN_ON(pitch_val > I915_FENCE_MAX_PITCH_VAL);
2229
Jesse Barnesde151cf2008-11-12 10:03:55 -08002230 val = obj_priv->gtt_offset;
2231 if (obj_priv->tiling_mode == I915_TILING_Y)
2232 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2233 val |= I915_FENCE_SIZE_BITS(obj->size);
2234 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2235 val |= I830_FENCE_REG_VALID;
2236
Eric Anholtdc529a42009-03-10 22:34:49 -07002237 if (regnum < 8)
2238 fence_reg = FENCE_REG_830_0 + (regnum * 4);
2239 else
2240 fence_reg = FENCE_REG_945_8 + ((regnum - 8) * 4);
2241 I915_WRITE(fence_reg, val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002242}
2243
2244static void i830_write_fence_reg(struct drm_i915_fence_reg *reg)
2245{
2246 struct drm_gem_object *obj = reg->obj;
2247 struct drm_device *dev = obj->dev;
2248 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002249 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002250 int regnum = obj_priv->fence_reg;
2251 uint32_t val;
2252 uint32_t pitch_val;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002253 uint32_t fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002254
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002255 if ((obj_priv->gtt_offset & ~I830_FENCE_START_MASK) ||
Jesse Barnesde151cf2008-11-12 10:03:55 -08002256 (obj_priv->gtt_offset & (obj->size - 1))) {
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002257 WARN(1, "%s: object 0x%08x not 512K or size aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002258 __func__, obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002259 return;
2260 }
2261
Eric Anholte76a16d2009-05-26 17:44:56 -07002262 pitch_val = obj_priv->stride / 128;
2263 pitch_val = ffs(pitch_val) - 1;
2264 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2265
Jesse Barnesde151cf2008-11-12 10:03:55 -08002266 val = obj_priv->gtt_offset;
2267 if (obj_priv->tiling_mode == I915_TILING_Y)
2268 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002269 fence_size_bits = I830_FENCE_SIZE_BITS(obj->size);
2270 WARN_ON(fence_size_bits & ~0x00000f00);
2271 val |= fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002272 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2273 val |= I830_FENCE_REG_VALID;
2274
2275 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002276}
2277
Daniel Vetterae3db242010-02-19 11:51:58 +01002278static int i915_find_fence_reg(struct drm_device *dev)
2279{
2280 struct drm_i915_fence_reg *reg = NULL;
2281 struct drm_i915_gem_object *obj_priv = NULL;
2282 struct drm_i915_private *dev_priv = dev->dev_private;
2283 struct drm_gem_object *obj = NULL;
2284 int i, avail, ret;
2285
2286 /* First try to find a free reg */
2287 avail = 0;
2288 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2289 reg = &dev_priv->fence_regs[i];
2290 if (!reg->obj)
2291 return i;
2292
Daniel Vetter23010e42010-03-08 13:35:02 +01002293 obj_priv = to_intel_bo(reg->obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002294 if (!obj_priv->pin_count)
2295 avail++;
2296 }
2297
2298 if (avail == 0)
2299 return -ENOSPC;
2300
2301 /* None available, try to steal one or wait for a user to finish */
2302 i = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002303 list_for_each_entry(reg, &dev_priv->mm.fence_list,
2304 lru_list) {
2305 obj = reg->obj;
2306 obj_priv = to_intel_bo(obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002307
2308 if (obj_priv->pin_count)
2309 continue;
2310
2311 /* found one! */
2312 i = obj_priv->fence_reg;
2313 break;
2314 }
2315
2316 BUG_ON(i == I915_FENCE_REG_NONE);
2317
2318 /* We only have a reference on obj from the active list. put_fence_reg
2319 * might drop that one, causing a use-after-free in it. So hold a
2320 * private reference to obj like the other callers of put_fence_reg
2321 * (set_tiling ioctl) do. */
2322 drm_gem_object_reference(obj);
2323 ret = i915_gem_object_put_fence_reg(obj);
2324 drm_gem_object_unreference(obj);
2325 if (ret != 0)
2326 return ret;
2327
2328 return i;
2329}
2330
Jesse Barnesde151cf2008-11-12 10:03:55 -08002331/**
2332 * i915_gem_object_get_fence_reg - set up a fence reg for an object
2333 * @obj: object to map through a fence reg
2334 *
2335 * When mapping objects through the GTT, userspace wants to be able to write
2336 * to them without having to worry about swizzling if the object is tiled.
2337 *
2338 * This function walks the fence regs looking for a free one for @obj,
2339 * stealing one if it can't find any.
2340 *
2341 * It then sets up the reg based on the object's properties: address, pitch
2342 * and tiling format.
2343 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002344int
2345i915_gem_object_get_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002346{
2347 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002348 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002349 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002350 struct drm_i915_fence_reg *reg = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002351 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002352
Eric Anholta09ba7f2009-08-29 12:49:51 -07002353 /* Just update our place in the LRU if our fence is getting used. */
2354 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002355 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
2356 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002357 return 0;
2358 }
2359
Jesse Barnesde151cf2008-11-12 10:03:55 -08002360 switch (obj_priv->tiling_mode) {
2361 case I915_TILING_NONE:
2362 WARN(1, "allocating a fence for non-tiled object?\n");
2363 break;
2364 case I915_TILING_X:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002365 if (!obj_priv->stride)
2366 return -EINVAL;
2367 WARN((obj_priv->stride & (512 - 1)),
2368 "object 0x%08x is X tiled but has non-512B pitch\n",
2369 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002370 break;
2371 case I915_TILING_Y:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002372 if (!obj_priv->stride)
2373 return -EINVAL;
2374 WARN((obj_priv->stride & (128 - 1)),
2375 "object 0x%08x is Y tiled but has non-128B pitch\n",
2376 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002377 break;
2378 }
2379
Daniel Vetterae3db242010-02-19 11:51:58 +01002380 ret = i915_find_fence_reg(dev);
2381 if (ret < 0)
2382 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002383
Daniel Vetterae3db242010-02-19 11:51:58 +01002384 obj_priv->fence_reg = ret;
2385 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002386 list_add_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002387
Jesse Barnesde151cf2008-11-12 10:03:55 -08002388 reg->obj = obj;
2389
Eric Anholt4e901fd2009-10-26 16:44:17 -07002390 if (IS_GEN6(dev))
2391 sandybridge_write_fence_reg(reg);
2392 else if (IS_I965G(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08002393 i965_write_fence_reg(reg);
2394 else if (IS_I9XX(dev))
2395 i915_write_fence_reg(reg);
2396 else
2397 i830_write_fence_reg(reg);
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002398
Daniel Vetterae3db242010-02-19 11:51:58 +01002399 trace_i915_gem_object_get_fence(obj, obj_priv->fence_reg,
2400 obj_priv->tiling_mode);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002401
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002402 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002403}
2404
2405/**
2406 * i915_gem_clear_fence_reg - clear out fence register info
2407 * @obj: object to clear
2408 *
2409 * Zeroes out the fence register itself and clears out the associated
2410 * data structures in dev_priv and obj_priv.
2411 */
2412static void
2413i915_gem_clear_fence_reg(struct drm_gem_object *obj)
2414{
2415 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002416 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002417 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002418 struct drm_i915_fence_reg *reg =
2419 &dev_priv->fence_regs[obj_priv->fence_reg];
Jesse Barnesde151cf2008-11-12 10:03:55 -08002420
Eric Anholt4e901fd2009-10-26 16:44:17 -07002421 if (IS_GEN6(dev)) {
2422 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 +
2423 (obj_priv->fence_reg * 8), 0);
2424 } else if (IS_I965G(dev)) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08002425 I915_WRITE64(FENCE_REG_965_0 + (obj_priv->fence_reg * 8), 0);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002426 } else {
Eric Anholtdc529a42009-03-10 22:34:49 -07002427 uint32_t fence_reg;
2428
2429 if (obj_priv->fence_reg < 8)
2430 fence_reg = FENCE_REG_830_0 + obj_priv->fence_reg * 4;
2431 else
2432 fence_reg = FENCE_REG_945_8 + (obj_priv->fence_reg -
2433 8) * 4;
2434
2435 I915_WRITE(fence_reg, 0);
2436 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002437
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002438 reg->obj = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002439 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002440 list_del_init(&reg->lru_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002441}
2442
Eric Anholt673a3942008-07-30 12:06:12 -07002443/**
Chris Wilson52dc7d32009-06-06 09:46:01 +01002444 * i915_gem_object_put_fence_reg - waits on outstanding fenced access
2445 * to the buffer to finish, and then resets the fence register.
2446 * @obj: tiled object holding a fence register.
2447 *
2448 * Zeroes out the fence register itself and clears out the associated
2449 * data structures in dev_priv and obj_priv.
2450 */
2451int
2452i915_gem_object_put_fence_reg(struct drm_gem_object *obj)
2453{
2454 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01002455 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson52dc7d32009-06-06 09:46:01 +01002456
2457 if (obj_priv->fence_reg == I915_FENCE_REG_NONE)
2458 return 0;
2459
Daniel Vetter10ae9bd2010-02-01 13:59:17 +01002460 /* If we've changed tiling, GTT-mappings of the object
2461 * need to re-fault to ensure that the correct fence register
2462 * setup is in place.
2463 */
2464 i915_gem_release_mmap(obj);
2465
Chris Wilson52dc7d32009-06-06 09:46:01 +01002466 /* On the i915, GPU access to tiled buffers is via a fence,
2467 * therefore we must wait for any outstanding access to complete
2468 * before clearing the fence.
2469 */
2470 if (!IS_I965G(dev)) {
2471 int ret;
2472
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002473 ret = i915_gem_object_flush_gpu_write_domain(obj);
2474 if (ret != 0)
2475 return ret;
2476
Daniel Vettere35a41d2010-02-11 22:13:59 +01002477 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson52dc7d32009-06-06 09:46:01 +01002478 if (ret != 0)
2479 return ret;
2480 }
2481
Daniel Vetter4a726612010-02-01 13:59:16 +01002482 i915_gem_object_flush_gtt_write_domain(obj);
Chris Wilson52dc7d32009-06-06 09:46:01 +01002483 i915_gem_clear_fence_reg (obj);
2484
2485 return 0;
2486}
2487
2488/**
Eric Anholt673a3942008-07-30 12:06:12 -07002489 * Finds free space in the GTT aperture and binds the object there.
2490 */
2491static int
2492i915_gem_object_bind_to_gtt(struct drm_gem_object *obj, unsigned alignment)
2493{
2494 struct drm_device *dev = obj->dev;
2495 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002496 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002497 struct drm_mm_node *free_space;
Chris Wilson4bdadb92010-01-27 13:36:32 +00002498 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Chris Wilson07f73f62009-09-14 16:50:30 +01002499 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002500
Chris Wilsonbb6baf72009-09-22 14:24:13 +01002501 if (obj_priv->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002502 DRM_ERROR("Attempting to bind a purgeable object\n");
2503 return -EINVAL;
2504 }
2505
Eric Anholt673a3942008-07-30 12:06:12 -07002506 if (alignment == 0)
Jesse Barnes0f973f22009-01-26 17:10:45 -08002507 alignment = i915_gem_get_gtt_alignment(obj);
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002508 if (alignment & (i915_gem_get_gtt_alignment(obj) - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002509 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2510 return -EINVAL;
2511 }
2512
Chris Wilson654fc602010-05-27 13:18:21 +01002513 /* If the object is bigger than the entire aperture, reject it early
2514 * before evicting everything in a vain attempt to find space.
2515 */
2516 if (obj->size > dev->gtt_total) {
2517 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2518 return -E2BIG;
2519 }
2520
Eric Anholt673a3942008-07-30 12:06:12 -07002521 search_free:
2522 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
2523 obj->size, alignment, 0);
2524 if (free_space != NULL) {
2525 obj_priv->gtt_space = drm_mm_get_block(free_space, obj->size,
2526 alignment);
Daniel Vetterdb3307a2010-07-02 15:02:12 +01002527 if (obj_priv->gtt_space != NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002528 obj_priv->gtt_offset = obj_priv->gtt_space->start;
Eric Anholt673a3942008-07-30 12:06:12 -07002529 }
2530 if (obj_priv->gtt_space == NULL) {
2531 /* If the gtt is empty and we're still having trouble
2532 * fitting our object in, we're out of memory.
2533 */
2534#if WATCH_LRU
2535 DRM_INFO("%s: GTT full, evicting something\n", __func__);
2536#endif
Daniel Vetter0108a3e2010-08-07 11:01:21 +01002537 ret = i915_gem_evict_something(dev, obj->size, alignment);
Chris Wilson97311292009-09-21 00:22:34 +01002538 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002539 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002540
Eric Anholt673a3942008-07-30 12:06:12 -07002541 goto search_free;
2542 }
2543
2544#if WATCH_BUF
Krzysztof Halasacfd43c02009-06-20 00:31:28 +02002545 DRM_INFO("Binding object of size %zd at 0x%08x\n",
Eric Anholt673a3942008-07-30 12:06:12 -07002546 obj->size, obj_priv->gtt_offset);
2547#endif
Chris Wilson4bdadb92010-01-27 13:36:32 +00002548 ret = i915_gem_object_get_pages(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002549 if (ret) {
2550 drm_mm_put_block(obj_priv->gtt_space);
2551 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002552
2553 if (ret == -ENOMEM) {
2554 /* first try to clear up some space from the GTT */
Daniel Vetter0108a3e2010-08-07 11:01:21 +01002555 ret = i915_gem_evict_something(dev, obj->size,
2556 alignment);
Chris Wilson07f73f62009-09-14 16:50:30 +01002557 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002558 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002559 if (gfpmask) {
2560 gfpmask = 0;
2561 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002562 }
2563
2564 return ret;
2565 }
2566
2567 goto search_free;
2568 }
2569
Eric Anholt673a3942008-07-30 12:06:12 -07002570 return ret;
2571 }
2572
Eric Anholt673a3942008-07-30 12:06:12 -07002573 /* Create an AGP memory structure pointing at our pages, and bind it
2574 * into the GTT.
2575 */
2576 obj_priv->agp_mem = drm_agp_bind_pages(dev,
Eric Anholt856fa192009-03-19 14:10:50 -07002577 obj_priv->pages,
Chris Wilson07f73f62009-09-14 16:50:30 +01002578 obj->size >> PAGE_SHIFT,
Keith Packardba1eb1d2008-10-14 19:55:10 -07002579 obj_priv->gtt_offset,
2580 obj_priv->agp_type);
Eric Anholt673a3942008-07-30 12:06:12 -07002581 if (obj_priv->agp_mem == NULL) {
Eric Anholt856fa192009-03-19 14:10:50 -07002582 i915_gem_object_put_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002583 drm_mm_put_block(obj_priv->gtt_space);
2584 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002585
Daniel Vetter0108a3e2010-08-07 11:01:21 +01002586 ret = i915_gem_evict_something(dev, obj->size, alignment);
Chris Wilson97311292009-09-21 00:22:34 +01002587 if (ret)
Chris Wilson07f73f62009-09-14 16:50:30 +01002588 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002589
2590 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002591 }
2592 atomic_inc(&dev->gtt_count);
2593 atomic_add(obj->size, &dev->gtt_memory);
2594
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002595 /* keep track of bounds object by adding it to the inactive list */
2596 list_add_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
2597
Eric Anholt673a3942008-07-30 12:06:12 -07002598 /* Assert that the object is not currently in any GPU domain. As it
2599 * wasn't in the GTT, there shouldn't be any way it could have been in
2600 * a GPU cache
2601 */
Chris Wilson21d509e2009-06-06 09:46:02 +01002602 BUG_ON(obj->read_domains & I915_GEM_GPU_DOMAINS);
2603 BUG_ON(obj->write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002604
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002605 trace_i915_gem_object_bind(obj, obj_priv->gtt_offset);
2606
Eric Anholt673a3942008-07-30 12:06:12 -07002607 return 0;
2608}
2609
2610void
2611i915_gem_clflush_object(struct drm_gem_object *obj)
2612{
Daniel Vetter23010e42010-03-08 13:35:02 +01002613 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002614
2615 /* If we don't have a page list set up, then we're not pinned
2616 * to GPU, and we can ignore the cache flush because it'll happen
2617 * again at bind time.
2618 */
Eric Anholt856fa192009-03-19 14:10:50 -07002619 if (obj_priv->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002620 return;
2621
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002622 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002623
Eric Anholt856fa192009-03-19 14:10:50 -07002624 drm_clflush_pages(obj_priv->pages, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002625}
2626
Eric Anholte47c68e2008-11-14 13:35:19 -08002627/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002628static int
Eric Anholte47c68e2008-11-14 13:35:19 -08002629i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj)
2630{
2631 struct drm_device *dev = obj->dev;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002632 uint32_t old_write_domain;
Zou Nan hai852835f2010-05-21 09:08:56 +08002633 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002634
2635 if ((obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002636 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002637
2638 /* Queue the GPU write cache flushing we need. */
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002639 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002640 i915_gem_flush(dev, 0, obj->write_domain);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002641 if (i915_add_request(dev, NULL, obj->write_domain, obj_priv->ring) == 0)
2642 return -ENOMEM;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002643
2644 trace_i915_gem_object_change_domain(obj,
2645 obj->read_domains,
2646 old_write_domain);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002647 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002648}
2649
2650/** Flushes the GTT write domain for the object if it's dirty. */
2651static void
2652i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj)
2653{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002654 uint32_t old_write_domain;
2655
Eric Anholte47c68e2008-11-14 13:35:19 -08002656 if (obj->write_domain != I915_GEM_DOMAIN_GTT)
2657 return;
2658
2659 /* No actual flushing is required for the GTT write domain. Writes
2660 * to it immediately go to main memory as far as we know, so there's
2661 * no chipset flush. It also doesn't land in render cache.
2662 */
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002663 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002664 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002665
2666 trace_i915_gem_object_change_domain(obj,
2667 obj->read_domains,
2668 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002669}
2670
2671/** Flushes the CPU write domain for the object if it's dirty. */
2672static void
2673i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj)
2674{
2675 struct drm_device *dev = obj->dev;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002676 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002677
2678 if (obj->write_domain != I915_GEM_DOMAIN_CPU)
2679 return;
2680
2681 i915_gem_clflush_object(obj);
2682 drm_agp_chipset_flush(dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002683 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002684 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002685
2686 trace_i915_gem_object_change_domain(obj,
2687 obj->read_domains,
2688 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002689}
2690
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002691int
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002692i915_gem_object_flush_write_domain(struct drm_gem_object *obj)
2693{
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002694 int ret = 0;
2695
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002696 switch (obj->write_domain) {
2697 case I915_GEM_DOMAIN_GTT:
2698 i915_gem_object_flush_gtt_write_domain(obj);
2699 break;
2700 case I915_GEM_DOMAIN_CPU:
2701 i915_gem_object_flush_cpu_write_domain(obj);
2702 break;
2703 default:
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002704 ret = i915_gem_object_flush_gpu_write_domain(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002705 break;
2706 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002707
2708 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002709}
2710
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002711/**
2712 * Moves a single object to the GTT read, and possibly write domain.
2713 *
2714 * This function returns when the move is complete, including waiting on
2715 * flushes to occur.
2716 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002717int
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002718i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write)
2719{
Daniel Vetter23010e42010-03-08 13:35:02 +01002720 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002721 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002722 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002723
Eric Anholt02354392008-11-26 13:58:13 -08002724 /* Not valid to be called on unbound objects. */
2725 if (obj_priv->gtt_space == NULL)
2726 return -EINVAL;
2727
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002728 ret = i915_gem_object_flush_gpu_write_domain(obj);
2729 if (ret != 0)
2730 return ret;
2731
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002732 /* Wait on any GPU rendering and flushing to occur. */
Daniel Vettere35a41d2010-02-11 22:13:59 +01002733 ret = i915_gem_object_wait_rendering(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08002734 if (ret != 0)
2735 return ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002736
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002737 old_write_domain = obj->write_domain;
2738 old_read_domains = obj->read_domains;
2739
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002740 /* If we're writing through the GTT domain, then CPU and GPU caches
2741 * will need to be invalidated at next use.
2742 */
2743 if (write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002744 obj->read_domains &= I915_GEM_DOMAIN_GTT;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002745
Eric Anholte47c68e2008-11-14 13:35:19 -08002746 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002747
2748 /* It should now be out of any other write domains, and we can update
2749 * the domain values for our changes.
2750 */
2751 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2752 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002753 if (write) {
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002754 obj->write_domain = I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002755 obj_priv->dirty = 1;
2756 }
2757
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002758 trace_i915_gem_object_change_domain(obj,
2759 old_read_domains,
2760 old_write_domain);
2761
Eric Anholte47c68e2008-11-14 13:35:19 -08002762 return 0;
2763}
2764
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002765/*
2766 * Prepare buffer for display plane. Use uninterruptible for possible flush
2767 * wait, as in modesetting process we're not supposed to be interrupted.
2768 */
2769int
2770i915_gem_object_set_to_display_plane(struct drm_gem_object *obj)
2771{
Daniel Vetter23010e42010-03-08 13:35:02 +01002772 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002773 uint32_t old_write_domain, old_read_domains;
2774 int ret;
2775
2776 /* Not valid to be called on unbound objects. */
2777 if (obj_priv->gtt_space == NULL)
2778 return -EINVAL;
2779
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002780 ret = i915_gem_object_flush_gpu_write_domain(obj);
2781 if (ret)
2782 return ret;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002783
2784 /* Wait on any GPU rendering and flushing to occur. */
Daniel Vettere35a41d2010-02-11 22:13:59 +01002785 ret = i915_gem_object_wait_rendering(obj, false);
2786 if (ret != 0)
2787 return ret;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002788
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002789 i915_gem_object_flush_cpu_write_domain(obj);
2790
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002791 old_write_domain = obj->write_domain;
2792 old_read_domains = obj->read_domains;
2793
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002794 /* It should now be out of any other write domains, and we can update
2795 * the domain values for our changes.
2796 */
2797 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002798 obj->read_domains = I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002799 obj->write_domain = I915_GEM_DOMAIN_GTT;
2800 obj_priv->dirty = 1;
2801
2802 trace_i915_gem_object_change_domain(obj,
2803 old_read_domains,
2804 old_write_domain);
2805
2806 return 0;
2807}
2808
Eric Anholte47c68e2008-11-14 13:35:19 -08002809/**
2810 * Moves a single object to the CPU read, and possibly write domain.
2811 *
2812 * This function returns when the move is complete, including waiting on
2813 * flushes to occur.
2814 */
2815static int
2816i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj, int write)
2817{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002818 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002819 int ret;
2820
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002821 ret = i915_gem_object_flush_gpu_write_domain(obj);
2822 if (ret)
2823 return ret;
2824
Eric Anholte47c68e2008-11-14 13:35:19 -08002825 /* Wait on any GPU rendering and flushing to occur. */
Daniel Vettere35a41d2010-02-11 22:13:59 +01002826 ret = i915_gem_object_wait_rendering(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08002827 if (ret != 0)
2828 return ret;
2829
2830 i915_gem_object_flush_gtt_write_domain(obj);
2831
2832 /* If we have a partially-valid cache of the object in the CPU,
2833 * finish invalidating it and free the per-page flags.
2834 */
2835 i915_gem_object_set_to_full_cpu_read_domain(obj);
2836
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002837 old_write_domain = obj->write_domain;
2838 old_read_domains = obj->read_domains;
2839
Eric Anholte47c68e2008-11-14 13:35:19 -08002840 /* Flush the CPU cache if it's still invalid. */
2841 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
2842 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002843
2844 obj->read_domains |= I915_GEM_DOMAIN_CPU;
2845 }
2846
2847 /* It should now be out of any other write domains, and we can update
2848 * the domain values for our changes.
2849 */
2850 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
2851
2852 /* If we're writing through the CPU, then the GPU read domains will
2853 * need to be invalidated at next use.
2854 */
2855 if (write) {
2856 obj->read_domains &= I915_GEM_DOMAIN_CPU;
2857 obj->write_domain = I915_GEM_DOMAIN_CPU;
2858 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002859
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002860 trace_i915_gem_object_change_domain(obj,
2861 old_read_domains,
2862 old_write_domain);
2863
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002864 return 0;
2865}
2866
Eric Anholt673a3942008-07-30 12:06:12 -07002867/*
2868 * Set the next domain for the specified object. This
2869 * may not actually perform the necessary flushing/invaliding though,
2870 * as that may want to be batched with other set_domain operations
2871 *
2872 * This is (we hope) the only really tricky part of gem. The goal
2873 * is fairly simple -- track which caches hold bits of the object
2874 * and make sure they remain coherent. A few concrete examples may
2875 * help to explain how it works. For shorthand, we use the notation
2876 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
2877 * a pair of read and write domain masks.
2878 *
2879 * Case 1: the batch buffer
2880 *
2881 * 1. Allocated
2882 * 2. Written by CPU
2883 * 3. Mapped to GTT
2884 * 4. Read by GPU
2885 * 5. Unmapped from GTT
2886 * 6. Freed
2887 *
2888 * Let's take these a step at a time
2889 *
2890 * 1. Allocated
2891 * Pages allocated from the kernel may still have
2892 * cache contents, so we set them to (CPU, CPU) always.
2893 * 2. Written by CPU (using pwrite)
2894 * The pwrite function calls set_domain (CPU, CPU) and
2895 * this function does nothing (as nothing changes)
2896 * 3. Mapped by GTT
2897 * This function asserts that the object is not
2898 * currently in any GPU-based read or write domains
2899 * 4. Read by GPU
2900 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
2901 * As write_domain is zero, this function adds in the
2902 * current read domains (CPU+COMMAND, 0).
2903 * flush_domains is set to CPU.
2904 * invalidate_domains is set to COMMAND
2905 * clflush is run to get data out of the CPU caches
2906 * then i915_dev_set_domain calls i915_gem_flush to
2907 * emit an MI_FLUSH and drm_agp_chipset_flush
2908 * 5. Unmapped from GTT
2909 * i915_gem_object_unbind calls set_domain (CPU, CPU)
2910 * flush_domains and invalidate_domains end up both zero
2911 * so no flushing/invalidating happens
2912 * 6. Freed
2913 * yay, done
2914 *
2915 * Case 2: The shared render buffer
2916 *
2917 * 1. Allocated
2918 * 2. Mapped to GTT
2919 * 3. Read/written by GPU
2920 * 4. set_domain to (CPU,CPU)
2921 * 5. Read/written by CPU
2922 * 6. Read/written by GPU
2923 *
2924 * 1. Allocated
2925 * Same as last example, (CPU, CPU)
2926 * 2. Mapped to GTT
2927 * Nothing changes (assertions find that it is not in the GPU)
2928 * 3. Read/written by GPU
2929 * execbuffer calls set_domain (RENDER, RENDER)
2930 * flush_domains gets CPU
2931 * invalidate_domains gets GPU
2932 * clflush (obj)
2933 * MI_FLUSH and drm_agp_chipset_flush
2934 * 4. set_domain (CPU, CPU)
2935 * flush_domains gets GPU
2936 * invalidate_domains gets CPU
2937 * wait_rendering (obj) to make sure all drawing is complete.
2938 * This will include an MI_FLUSH to get the data from GPU
2939 * to memory
2940 * clflush (obj) to invalidate the CPU cache
2941 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
2942 * 5. Read/written by CPU
2943 * cache lines are loaded and dirtied
2944 * 6. Read written by GPU
2945 * Same as last GPU access
2946 *
2947 * Case 3: The constant buffer
2948 *
2949 * 1. Allocated
2950 * 2. Written by CPU
2951 * 3. Read by GPU
2952 * 4. Updated (written) by CPU again
2953 * 5. Read by GPU
2954 *
2955 * 1. Allocated
2956 * (CPU, CPU)
2957 * 2. Written by CPU
2958 * (CPU, CPU)
2959 * 3. Read by GPU
2960 * (CPU+RENDER, 0)
2961 * flush_domains = CPU
2962 * invalidate_domains = RENDER
2963 * clflush (obj)
2964 * MI_FLUSH
2965 * drm_agp_chipset_flush
2966 * 4. Updated (written) by CPU again
2967 * (CPU, CPU)
2968 * flush_domains = 0 (no previous write domain)
2969 * invalidate_domains = 0 (no new read domains)
2970 * 5. Read by GPU
2971 * (CPU+RENDER, 0)
2972 * flush_domains = CPU
2973 * invalidate_domains = RENDER
2974 * clflush (obj)
2975 * MI_FLUSH
2976 * drm_agp_chipset_flush
2977 */
Keith Packardc0d90822008-11-20 23:11:08 -08002978static void
Eric Anholt8b0e3782009-02-19 14:40:50 -08002979i915_gem_object_set_to_gpu_domain(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002980{
2981 struct drm_device *dev = obj->dev;
Chris Wilson88f356b2010-08-04 13:55:32 +01002982 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002983 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002984 uint32_t invalidate_domains = 0;
2985 uint32_t flush_domains = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002986 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002987
Eric Anholt8b0e3782009-02-19 14:40:50 -08002988 BUG_ON(obj->pending_read_domains & I915_GEM_DOMAIN_CPU);
2989 BUG_ON(obj->pending_write_domain == I915_GEM_DOMAIN_CPU);
Eric Anholt673a3942008-07-30 12:06:12 -07002990
Jesse Barnes652c3932009-08-17 13:31:43 -07002991 intel_mark_busy(dev, obj);
2992
Eric Anholt673a3942008-07-30 12:06:12 -07002993#if WATCH_BUF
2994 DRM_INFO("%s: object %p read %08x -> %08x write %08x -> %08x\n",
2995 __func__, obj,
Eric Anholt8b0e3782009-02-19 14:40:50 -08002996 obj->read_domains, obj->pending_read_domains,
2997 obj->write_domain, obj->pending_write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07002998#endif
2999 /*
3000 * If the object isn't moving to a new write domain,
3001 * let the object stay in multiple read domains
3002 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003003 if (obj->pending_write_domain == 0)
3004 obj->pending_read_domains |= obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07003005 else
3006 obj_priv->dirty = 1;
3007
3008 /*
3009 * Flush the current write domain if
3010 * the new read domains don't match. Invalidate
3011 * any read domains which differ from the old
3012 * write domain
3013 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003014 if (obj->write_domain &&
3015 obj->write_domain != obj->pending_read_domains) {
Eric Anholt673a3942008-07-30 12:06:12 -07003016 flush_domains |= obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08003017 invalidate_domains |=
3018 obj->pending_read_domains & ~obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003019 }
3020 /*
3021 * Invalidate any read caches which may have
3022 * stale data. That is, any new read domains.
3023 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003024 invalidate_domains |= obj->pending_read_domains & ~obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07003025 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU) {
3026#if WATCH_BUF
3027 DRM_INFO("%s: CPU domain flush %08x invalidate %08x\n",
3028 __func__, flush_domains, invalidate_domains);
3029#endif
Eric Anholt673a3942008-07-30 12:06:12 -07003030 i915_gem_clflush_object(obj);
3031 }
3032
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003033 old_read_domains = obj->read_domains;
3034
Eric Anholtefbeed92009-02-19 14:54:51 -08003035 /* The actual obj->write_domain will be updated with
3036 * pending_write_domain after we emit the accumulated flush for all
3037 * of our domain changes in execbuffers (which clears objects'
3038 * write_domains). So if we have a current write domain that we
3039 * aren't changing, set pending_write_domain to that.
3040 */
3041 if (flush_domains == 0 && obj->pending_write_domain == 0)
3042 obj->pending_write_domain = obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08003043 obj->read_domains = obj->pending_read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07003044
Chris Wilson88f356b2010-08-04 13:55:32 +01003045 if (flush_domains & I915_GEM_GPU_DOMAINS) {
3046 if (obj_priv->ring == &dev_priv->render_ring)
3047 dev_priv->flush_rings |= FLUSH_RENDER_RING;
3048 else if (obj_priv->ring == &dev_priv->bsd_ring)
3049 dev_priv->flush_rings |= FLUSH_BSD_RING;
3050 }
3051
Eric Anholt673a3942008-07-30 12:06:12 -07003052 dev->invalidate_domains |= invalidate_domains;
3053 dev->flush_domains |= flush_domains;
3054#if WATCH_BUF
3055 DRM_INFO("%s: read %08x write %08x invalidate %08x flush %08x\n",
3056 __func__,
3057 obj->read_domains, obj->write_domain,
3058 dev->invalidate_domains, dev->flush_domains);
3059#endif
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003060
3061 trace_i915_gem_object_change_domain(obj,
3062 old_read_domains,
3063 obj->write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07003064}
3065
3066/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003067 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003068 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003069 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3070 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3071 */
3072static void
3073i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj)
3074{
Daniel Vetter23010e42010-03-08 13:35:02 +01003075 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003076
3077 if (!obj_priv->page_cpu_valid)
3078 return;
3079
3080 /* If we're partially in the CPU read domain, finish moving it in.
3081 */
3082 if (obj->read_domains & I915_GEM_DOMAIN_CPU) {
3083 int i;
3084
3085 for (i = 0; i <= (obj->size - 1) / PAGE_SIZE; i++) {
3086 if (obj_priv->page_cpu_valid[i])
3087 continue;
Eric Anholt856fa192009-03-19 14:10:50 -07003088 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003089 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003090 }
3091
3092 /* Free the page_cpu_valid mappings which are now stale, whether
3093 * or not we've got I915_GEM_DOMAIN_CPU.
3094 */
Eric Anholt9a298b22009-03-24 12:23:04 -07003095 kfree(obj_priv->page_cpu_valid);
Eric Anholte47c68e2008-11-14 13:35:19 -08003096 obj_priv->page_cpu_valid = NULL;
3097}
3098
3099/**
3100 * Set the CPU read domain on a range of the object.
3101 *
3102 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3103 * not entirely valid. The page_cpu_valid member of the object flags which
3104 * pages have been flushed, and will be respected by
3105 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3106 * of the whole object.
3107 *
3108 * This function returns when the move is complete, including waiting on
3109 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003110 */
3111static int
Eric Anholte47c68e2008-11-14 13:35:19 -08003112i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
3113 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003114{
Daniel Vetter23010e42010-03-08 13:35:02 +01003115 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003116 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003117 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003118
Eric Anholte47c68e2008-11-14 13:35:19 -08003119 if (offset == 0 && size == obj->size)
3120 return i915_gem_object_set_to_cpu_domain(obj, 0);
3121
Chris Wilson2dafb1e2010-06-07 14:03:05 +01003122 ret = i915_gem_object_flush_gpu_write_domain(obj);
3123 if (ret)
3124 return ret;
3125
Eric Anholte47c68e2008-11-14 13:35:19 -08003126 /* Wait on any GPU rendering and flushing to occur. */
Daniel Vettere35a41d2010-02-11 22:13:59 +01003127 ret = i915_gem_object_wait_rendering(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08003128 if (ret != 0)
3129 return ret;
3130 i915_gem_object_flush_gtt_write_domain(obj);
3131
3132 /* If we're already fully in the CPU read domain, we're done. */
3133 if (obj_priv->page_cpu_valid == NULL &&
3134 (obj->read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003135 return 0;
3136
Eric Anholte47c68e2008-11-14 13:35:19 -08003137 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3138 * newly adding I915_GEM_DOMAIN_CPU
3139 */
Eric Anholt673a3942008-07-30 12:06:12 -07003140 if (obj_priv->page_cpu_valid == NULL) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003141 obj_priv->page_cpu_valid = kzalloc(obj->size / PAGE_SIZE,
3142 GFP_KERNEL);
Eric Anholte47c68e2008-11-14 13:35:19 -08003143 if (obj_priv->page_cpu_valid == NULL)
3144 return -ENOMEM;
3145 } else if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0)
3146 memset(obj_priv->page_cpu_valid, 0, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003147
3148 /* Flush the cache on any pages that are still invalid from the CPU's
3149 * perspective.
3150 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003151 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3152 i++) {
Eric Anholt673a3942008-07-30 12:06:12 -07003153 if (obj_priv->page_cpu_valid[i])
3154 continue;
3155
Eric Anholt856fa192009-03-19 14:10:50 -07003156 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003157
3158 obj_priv->page_cpu_valid[i] = 1;
3159 }
3160
Eric Anholte47c68e2008-11-14 13:35:19 -08003161 /* It should now be out of any other write domains, and we can update
3162 * the domain values for our changes.
3163 */
3164 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
3165
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003166 old_read_domains = obj->read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003167 obj->read_domains |= I915_GEM_DOMAIN_CPU;
3168
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003169 trace_i915_gem_object_change_domain(obj,
3170 old_read_domains,
3171 obj->write_domain);
3172
Eric Anholt673a3942008-07-30 12:06:12 -07003173 return 0;
3174}
3175
3176/**
Eric Anholt673a3942008-07-30 12:06:12 -07003177 * Pin an object to the GTT and evaluate the relocations landing in it.
3178 */
3179static int
3180i915_gem_object_pin_and_relocate(struct drm_gem_object *obj,
3181 struct drm_file *file_priv,
Jesse Barnes76446ca2009-12-17 22:05:42 -05003182 struct drm_i915_gem_exec_object2 *entry,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003183 struct drm_i915_gem_relocation_entry *relocs)
Eric Anholt673a3942008-07-30 12:06:12 -07003184{
3185 struct drm_device *dev = obj->dev;
Keith Packard0839ccb2008-10-30 19:38:48 -07003186 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01003187 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003188 int i, ret;
Keith Packard0839ccb2008-10-30 19:38:48 -07003189 void __iomem *reloc_page;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003190 bool need_fence;
3191
3192 need_fence = entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
3193 obj_priv->tiling_mode != I915_TILING_NONE;
3194
3195 /* Check fence reg constraints and rebind if necessary */
Chris Wilson808b24d62010-05-27 13:18:15 +01003196 if (need_fence &&
3197 !i915_gem_object_fence_offset_ok(obj,
3198 obj_priv->tiling_mode)) {
3199 ret = i915_gem_object_unbind(obj);
3200 if (ret)
3201 return ret;
3202 }
Eric Anholt673a3942008-07-30 12:06:12 -07003203
3204 /* Choose the GTT offset for our buffer and put it there. */
3205 ret = i915_gem_object_pin(obj, (uint32_t) entry->alignment);
3206 if (ret)
3207 return ret;
3208
Jesse Barnes76446ca2009-12-17 22:05:42 -05003209 /*
3210 * Pre-965 chips need a fence register set up in order to
3211 * properly handle blits to/from tiled surfaces.
3212 */
3213 if (need_fence) {
3214 ret = i915_gem_object_get_fence_reg(obj);
3215 if (ret != 0) {
Jesse Barnes76446ca2009-12-17 22:05:42 -05003216 i915_gem_object_unpin(obj);
3217 return ret;
3218 }
3219 }
3220
Eric Anholt673a3942008-07-30 12:06:12 -07003221 entry->offset = obj_priv->gtt_offset;
3222
Eric Anholt673a3942008-07-30 12:06:12 -07003223 /* Apply the relocations, using the GTT aperture to avoid cache
3224 * flushing requirements.
3225 */
3226 for (i = 0; i < entry->relocation_count; i++) {
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003227 struct drm_i915_gem_relocation_entry *reloc= &relocs[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003228 struct drm_gem_object *target_obj;
3229 struct drm_i915_gem_object *target_obj_priv;
Eric Anholt3043c602008-10-02 12:24:47 -07003230 uint32_t reloc_val, reloc_offset;
3231 uint32_t __iomem *reloc_entry;
Eric Anholt673a3942008-07-30 12:06:12 -07003232
Eric Anholt673a3942008-07-30 12:06:12 -07003233 target_obj = drm_gem_object_lookup(obj->dev, file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003234 reloc->target_handle);
Eric Anholt673a3942008-07-30 12:06:12 -07003235 if (target_obj == NULL) {
3236 i915_gem_object_unpin(obj);
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003237 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07003238 }
Daniel Vetter23010e42010-03-08 13:35:02 +01003239 target_obj_priv = to_intel_bo(target_obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003240
Chris Wilson8542a0b2009-09-09 21:15:15 +01003241#if WATCH_RELOC
3242 DRM_INFO("%s: obj %p offset %08x target %d "
3243 "read %08x write %08x gtt %08x "
3244 "presumed %08x delta %08x\n",
3245 __func__,
3246 obj,
3247 (int) reloc->offset,
3248 (int) reloc->target_handle,
3249 (int) reloc->read_domains,
3250 (int) reloc->write_domain,
3251 (int) target_obj_priv->gtt_offset,
3252 (int) reloc->presumed_offset,
3253 reloc->delta);
3254#endif
3255
Eric Anholt673a3942008-07-30 12:06:12 -07003256 /* The target buffer should have appeared before us in the
3257 * exec_object list, so it should have a GTT space bound by now.
3258 */
3259 if (target_obj_priv->gtt_space == NULL) {
3260 DRM_ERROR("No GTT space found for object %d\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003261 reloc->target_handle);
Eric Anholt673a3942008-07-30 12:06:12 -07003262 drm_gem_object_unreference(target_obj);
3263 i915_gem_object_unpin(obj);
3264 return -EINVAL;
3265 }
3266
Chris Wilson8542a0b2009-09-09 21:15:15 +01003267 /* Validate that the target is in a valid r/w GPU domain */
Daniel Vetter16edd552010-02-19 11:52:02 +01003268 if (reloc->write_domain & (reloc->write_domain - 1)) {
3269 DRM_ERROR("reloc with multiple write domains: "
3270 "obj %p target %d offset %d "
3271 "read %08x write %08x",
3272 obj, reloc->target_handle,
3273 (int) reloc->offset,
3274 reloc->read_domains,
3275 reloc->write_domain);
3276 return -EINVAL;
3277 }
Chris Wilson8542a0b2009-09-09 21:15:15 +01003278 if (reloc->write_domain & I915_GEM_DOMAIN_CPU ||
3279 reloc->read_domains & I915_GEM_DOMAIN_CPU) {
3280 DRM_ERROR("reloc with read/write CPU domains: "
3281 "obj %p target %d offset %d "
3282 "read %08x write %08x",
3283 obj, reloc->target_handle,
3284 (int) reloc->offset,
3285 reloc->read_domains,
3286 reloc->write_domain);
3287 drm_gem_object_unreference(target_obj);
3288 i915_gem_object_unpin(obj);
3289 return -EINVAL;
3290 }
3291 if (reloc->write_domain && target_obj->pending_write_domain &&
3292 reloc->write_domain != target_obj->pending_write_domain) {
3293 DRM_ERROR("Write domain conflict: "
3294 "obj %p target %d offset %d "
3295 "new %08x old %08x\n",
3296 obj, reloc->target_handle,
3297 (int) reloc->offset,
3298 reloc->write_domain,
3299 target_obj->pending_write_domain);
3300 drm_gem_object_unreference(target_obj);
3301 i915_gem_object_unpin(obj);
3302 return -EINVAL;
3303 }
3304
3305 target_obj->pending_read_domains |= reloc->read_domains;
3306 target_obj->pending_write_domain |= reloc->write_domain;
3307
3308 /* If the relocation already has the right value in it, no
3309 * more work needs to be done.
3310 */
3311 if (target_obj_priv->gtt_offset == reloc->presumed_offset) {
3312 drm_gem_object_unreference(target_obj);
3313 continue;
3314 }
3315
3316 /* Check that the relocation address is valid... */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003317 if (reloc->offset > obj->size - 4) {
Eric Anholt673a3942008-07-30 12:06:12 -07003318 DRM_ERROR("Relocation beyond object bounds: "
3319 "obj %p target %d offset %d size %d.\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003320 obj, reloc->target_handle,
3321 (int) reloc->offset, (int) obj->size);
Eric Anholt673a3942008-07-30 12:06:12 -07003322 drm_gem_object_unreference(target_obj);
3323 i915_gem_object_unpin(obj);
3324 return -EINVAL;
3325 }
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003326 if (reloc->offset & 3) {
Eric Anholt673a3942008-07-30 12:06:12 -07003327 DRM_ERROR("Relocation not 4-byte aligned: "
3328 "obj %p target %d offset %d.\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003329 obj, reloc->target_handle,
3330 (int) reloc->offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003331 drm_gem_object_unreference(target_obj);
3332 i915_gem_object_unpin(obj);
3333 return -EINVAL;
3334 }
3335
Chris Wilson8542a0b2009-09-09 21:15:15 +01003336 /* and points to somewhere within the target object. */
Chris Wilsoncd0b9fb2009-09-15 23:23:18 +01003337 if (reloc->delta >= target_obj->size) {
3338 DRM_ERROR("Relocation beyond target object bounds: "
3339 "obj %p target %d delta %d size %d.\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003340 obj, reloc->target_handle,
Chris Wilsoncd0b9fb2009-09-15 23:23:18 +01003341 (int) reloc->delta, (int) target_obj->size);
Chris Wilson491152b2009-02-11 14:26:32 +00003342 drm_gem_object_unreference(target_obj);
3343 i915_gem_object_unpin(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003344 return -EINVAL;
3345 }
3346
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003347 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
3348 if (ret != 0) {
3349 drm_gem_object_unreference(target_obj);
3350 i915_gem_object_unpin(obj);
3351 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -07003352 }
3353
3354 /* Map the page containing the relocation we're going to
3355 * perform.
3356 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003357 reloc_offset = obj_priv->gtt_offset + reloc->offset;
Keith Packard0839ccb2008-10-30 19:38:48 -07003358 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
3359 (reloc_offset &
Chris Wilsonfca3ec02010-08-04 14:34:24 +01003360 ~(PAGE_SIZE - 1)),
3361 KM_USER0);
Eric Anholt3043c602008-10-02 12:24:47 -07003362 reloc_entry = (uint32_t __iomem *)(reloc_page +
Keith Packard0839ccb2008-10-30 19:38:48 -07003363 (reloc_offset & (PAGE_SIZE - 1)));
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003364 reloc_val = target_obj_priv->gtt_offset + reloc->delta;
Eric Anholt673a3942008-07-30 12:06:12 -07003365
3366#if WATCH_BUF
3367 DRM_INFO("Applied relocation: %p@0x%08x %08x -> %08x\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003368 obj, (unsigned int) reloc->offset,
Eric Anholt673a3942008-07-30 12:06:12 -07003369 readl(reloc_entry), reloc_val);
3370#endif
3371 writel(reloc_val, reloc_entry);
Chris Wilsonfca3ec02010-08-04 14:34:24 +01003372 io_mapping_unmap_atomic(reloc_page, KM_USER0);
Eric Anholt673a3942008-07-30 12:06:12 -07003373
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003374 /* The updated presumed offset for this entry will be
3375 * copied back out to the user.
Eric Anholt673a3942008-07-30 12:06:12 -07003376 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003377 reloc->presumed_offset = target_obj_priv->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003378
3379 drm_gem_object_unreference(target_obj);
3380 }
3381
Eric Anholt673a3942008-07-30 12:06:12 -07003382#if WATCH_BUF
3383 if (0)
3384 i915_gem_dump_object(obj, 128, __func__, ~0);
3385#endif
3386 return 0;
3387}
3388
Eric Anholt673a3942008-07-30 12:06:12 -07003389/* Throttle our rendering by waiting until the ring has completed our requests
3390 * emitted over 20 msec ago.
3391 *
Eric Anholtb9624422009-06-03 07:27:35 +00003392 * Note that if we were to use the current jiffies each time around the loop,
3393 * we wouldn't escape the function with any frames outstanding if the time to
3394 * render a frame was over 20ms.
3395 *
Eric Anholt673a3942008-07-30 12:06:12 -07003396 * This should get us reasonable parallelism between CPU and GPU but also
3397 * relatively low latency when blocking on a particular request to finish.
3398 */
3399static int
3400i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file_priv)
3401{
3402 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
3403 int ret = 0;
Eric Anholtb9624422009-06-03 07:27:35 +00003404 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Eric Anholt673a3942008-07-30 12:06:12 -07003405
3406 mutex_lock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003407 while (!list_empty(&i915_file_priv->mm.request_list)) {
3408 struct drm_i915_gem_request *request;
3409
3410 request = list_first_entry(&i915_file_priv->mm.request_list,
3411 struct drm_i915_gem_request,
3412 client_list);
3413
3414 if (time_after_eq(request->emitted_jiffies, recent_enough))
3415 break;
3416
Zou Nan hai852835f2010-05-21 09:08:56 +08003417 ret = i915_wait_request(dev, request->seqno, request->ring);
Eric Anholtb9624422009-06-03 07:27:35 +00003418 if (ret != 0)
3419 break;
3420 }
Eric Anholt673a3942008-07-30 12:06:12 -07003421 mutex_unlock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003422
Eric Anholt673a3942008-07-30 12:06:12 -07003423 return ret;
3424}
3425
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003426static int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003427i915_gem_get_relocs_from_user(struct drm_i915_gem_exec_object2 *exec_list,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003428 uint32_t buffer_count,
3429 struct drm_i915_gem_relocation_entry **relocs)
3430{
3431 uint32_t reloc_count = 0, reloc_index = 0, i;
3432 int ret;
3433
3434 *relocs = NULL;
3435 for (i = 0; i < buffer_count; i++) {
3436 if (reloc_count + exec_list[i].relocation_count < reloc_count)
3437 return -EINVAL;
3438 reloc_count += exec_list[i].relocation_count;
3439 }
3440
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003441 *relocs = drm_calloc_large(reloc_count, sizeof(**relocs));
Jesse Barnes76446ca2009-12-17 22:05:42 -05003442 if (*relocs == NULL) {
3443 DRM_ERROR("failed to alloc relocs, count %d\n", reloc_count);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003444 return -ENOMEM;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003445 }
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003446
3447 for (i = 0; i < buffer_count; i++) {
3448 struct drm_i915_gem_relocation_entry __user *user_relocs;
3449
3450 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3451
3452 ret = copy_from_user(&(*relocs)[reloc_index],
3453 user_relocs,
3454 exec_list[i].relocation_count *
3455 sizeof(**relocs));
3456 if (ret != 0) {
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003457 drm_free_large(*relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003458 *relocs = NULL;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003459 return -EFAULT;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003460 }
3461
3462 reloc_index += exec_list[i].relocation_count;
3463 }
3464
Florian Mickler2bc43b52009-04-06 22:55:41 +02003465 return 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003466}
3467
3468static int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003469i915_gem_put_relocs_to_user(struct drm_i915_gem_exec_object2 *exec_list,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003470 uint32_t buffer_count,
3471 struct drm_i915_gem_relocation_entry *relocs)
3472{
3473 uint32_t reloc_count = 0, i;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003474 int ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003475
Chris Wilson93533c22010-01-31 10:40:48 +00003476 if (relocs == NULL)
3477 return 0;
3478
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003479 for (i = 0; i < buffer_count; i++) {
3480 struct drm_i915_gem_relocation_entry __user *user_relocs;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003481 int unwritten;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003482
3483 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3484
Florian Mickler2bc43b52009-04-06 22:55:41 +02003485 unwritten = copy_to_user(user_relocs,
3486 &relocs[reloc_count],
3487 exec_list[i].relocation_count *
3488 sizeof(*relocs));
3489
3490 if (unwritten) {
3491 ret = -EFAULT;
3492 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003493 }
3494
3495 reloc_count += exec_list[i].relocation_count;
3496 }
3497
Florian Mickler2bc43b52009-04-06 22:55:41 +02003498err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003499 drm_free_large(relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003500
3501 return ret;
3502}
3503
Chris Wilson83d60792009-06-06 09:45:57 +01003504static int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003505i915_gem_check_execbuffer (struct drm_i915_gem_execbuffer2 *exec,
Chris Wilson83d60792009-06-06 09:45:57 +01003506 uint64_t exec_offset)
3507{
3508 uint32_t exec_start, exec_len;
3509
3510 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3511 exec_len = (uint32_t) exec->batch_len;
3512
3513 if ((exec_start | exec_len) & 0x7)
3514 return -EINVAL;
3515
3516 if (!exec_start)
3517 return -EINVAL;
3518
3519 return 0;
3520}
3521
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003522static int
3523i915_gem_wait_for_pending_flip(struct drm_device *dev,
3524 struct drm_gem_object **object_list,
3525 int count)
3526{
3527 drm_i915_private_t *dev_priv = dev->dev_private;
3528 struct drm_i915_gem_object *obj_priv;
3529 DEFINE_WAIT(wait);
3530 int i, ret = 0;
3531
3532 for (;;) {
3533 prepare_to_wait(&dev_priv->pending_flip_queue,
3534 &wait, TASK_INTERRUPTIBLE);
3535 for (i = 0; i < count; i++) {
Daniel Vetter23010e42010-03-08 13:35:02 +01003536 obj_priv = to_intel_bo(object_list[i]);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003537 if (atomic_read(&obj_priv->pending_flip) > 0)
3538 break;
3539 }
3540 if (i == count)
3541 break;
3542
3543 if (!signal_pending(current)) {
3544 mutex_unlock(&dev->struct_mutex);
3545 schedule();
3546 mutex_lock(&dev->struct_mutex);
3547 continue;
3548 }
3549 ret = -ERESTARTSYS;
3550 break;
3551 }
3552 finish_wait(&dev_priv->pending_flip_queue, &wait);
3553
3554 return ret;
3555}
3556
Chris Wilson43b27f42010-07-02 08:57:15 +01003557
Eric Anholt673a3942008-07-30 12:06:12 -07003558int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003559i915_gem_do_execbuffer(struct drm_device *dev, void *data,
3560 struct drm_file *file_priv,
3561 struct drm_i915_gem_execbuffer2 *args,
3562 struct drm_i915_gem_exec_object2 *exec_list)
Eric Anholt673a3942008-07-30 12:06:12 -07003563{
3564 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003565 struct drm_gem_object **object_list = NULL;
3566 struct drm_gem_object *batch_obj;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003567 struct drm_i915_gem_object *obj_priv;
Eric Anholt201361a2009-03-11 12:30:04 -07003568 struct drm_clip_rect *cliprects = NULL;
Chris Wilson93533c22010-01-31 10:40:48 +00003569 struct drm_i915_gem_relocation_entry *relocs = NULL;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003570 int ret = 0, ret2, i, pinned = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003571 uint64_t exec_offset;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003572 uint32_t seqno, flush_domains, reloc_index;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003573 int pin_tries, flips;
Eric Anholt673a3942008-07-30 12:06:12 -07003574
Zou Nan hai852835f2010-05-21 09:08:56 +08003575 struct intel_ring_buffer *ring = NULL;
3576
Eric Anholt673a3942008-07-30 12:06:12 -07003577#if WATCH_EXEC
3578 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3579 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3580#endif
Zou Nan haid1b851f2010-05-21 09:08:57 +08003581 if (args->flags & I915_EXEC_BSD) {
3582 if (!HAS_BSD(dev)) {
3583 DRM_ERROR("execbuf with wrong flag\n");
3584 return -EINVAL;
3585 }
3586 ring = &dev_priv->bsd_ring;
3587 } else {
3588 ring = &dev_priv->render_ring;
3589 }
3590
Eric Anholt4f481ed2008-09-10 14:22:49 -07003591 if (args->buffer_count < 1) {
3592 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3593 return -EINVAL;
3594 }
Eric Anholtc8e0f932009-11-22 03:49:37 +01003595 object_list = drm_malloc_ab(sizeof(*object_list), args->buffer_count);
Jesse Barnes76446ca2009-12-17 22:05:42 -05003596 if (object_list == NULL) {
3597 DRM_ERROR("Failed to allocate object list for %d buffers\n",
Eric Anholt673a3942008-07-30 12:06:12 -07003598 args->buffer_count);
3599 ret = -ENOMEM;
3600 goto pre_mutex_err;
3601 }
Eric Anholt673a3942008-07-30 12:06:12 -07003602
Eric Anholt201361a2009-03-11 12:30:04 -07003603 if (args->num_cliprects != 0) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003604 cliprects = kcalloc(args->num_cliprects, sizeof(*cliprects),
3605 GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003606 if (cliprects == NULL) {
3607 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -07003608 goto pre_mutex_err;
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003609 }
Eric Anholt201361a2009-03-11 12:30:04 -07003610
3611 ret = copy_from_user(cliprects,
3612 (struct drm_clip_rect __user *)
3613 (uintptr_t) args->cliprects_ptr,
3614 sizeof(*cliprects) * args->num_cliprects);
3615 if (ret != 0) {
3616 DRM_ERROR("copy %d cliprects failed: %d\n",
3617 args->num_cliprects, ret);
Dan Carpenterc877cdc2010-06-23 19:03:01 +02003618 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -07003619 goto pre_mutex_err;
3620 }
3621 }
3622
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003623 ret = i915_gem_get_relocs_from_user(exec_list, args->buffer_count,
3624 &relocs);
3625 if (ret != 0)
3626 goto pre_mutex_err;
3627
Eric Anholt673a3942008-07-30 12:06:12 -07003628 mutex_lock(&dev->struct_mutex);
3629
3630 i915_verify_inactive(dev, __FILE__, __LINE__);
3631
Ben Gamariba1234d2009-09-14 17:48:47 -04003632 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003633 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003634 ret = -EIO;
3635 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003636 }
3637
3638 if (dev_priv->mm.suspended) {
Eric Anholt673a3942008-07-30 12:06:12 -07003639 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003640 ret = -EBUSY;
3641 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003642 }
3643
Keith Packardac94a962008-11-20 23:30:27 -08003644 /* Look up object handles */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003645 flips = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003646 for (i = 0; i < args->buffer_count; i++) {
3647 object_list[i] = drm_gem_object_lookup(dev, file_priv,
3648 exec_list[i].handle);
3649 if (object_list[i] == NULL) {
3650 DRM_ERROR("Invalid object handle %d at index %d\n",
3651 exec_list[i].handle, i);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003652 /* prevent error path from reading uninitialized data */
3653 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003654 ret = -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07003655 goto err;
3656 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003657
Daniel Vetter23010e42010-03-08 13:35:02 +01003658 obj_priv = to_intel_bo(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003659 if (obj_priv->in_execbuffer) {
3660 DRM_ERROR("Object %p appears more than once in object list\n",
3661 object_list[i]);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003662 /* prevent error path from reading uninitialized data */
3663 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003664 ret = -EINVAL;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003665 goto err;
3666 }
3667 obj_priv->in_execbuffer = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003668 flips += atomic_read(&obj_priv->pending_flip);
3669 }
3670
3671 if (flips > 0) {
3672 ret = i915_gem_wait_for_pending_flip(dev, object_list,
3673 args->buffer_count);
3674 if (ret)
3675 goto err;
Keith Packardac94a962008-11-20 23:30:27 -08003676 }
Eric Anholt673a3942008-07-30 12:06:12 -07003677
Keith Packardac94a962008-11-20 23:30:27 -08003678 /* Pin and relocate */
3679 for (pin_tries = 0; ; pin_tries++) {
3680 ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003681 reloc_index = 0;
3682
Keith Packardac94a962008-11-20 23:30:27 -08003683 for (i = 0; i < args->buffer_count; i++) {
3684 object_list[i]->pending_read_domains = 0;
3685 object_list[i]->pending_write_domain = 0;
3686 ret = i915_gem_object_pin_and_relocate(object_list[i],
3687 file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003688 &exec_list[i],
3689 &relocs[reloc_index]);
Keith Packardac94a962008-11-20 23:30:27 -08003690 if (ret)
3691 break;
3692 pinned = i + 1;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003693 reloc_index += exec_list[i].relocation_count;
Keith Packardac94a962008-11-20 23:30:27 -08003694 }
3695 /* success */
3696 if (ret == 0)
3697 break;
3698
3699 /* error other than GTT full, or we've already tried again */
Chris Wilson2939e1f2009-06-06 09:46:03 +01003700 if (ret != -ENOSPC || pin_tries >= 1) {
Chris Wilson07f73f62009-09-14 16:50:30 +01003701 if (ret != -ERESTARTSYS) {
3702 unsigned long long total_size = 0;
Chris Wilson3d1cc472010-05-27 13:18:19 +01003703 int num_fences = 0;
3704 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson43b27f42010-07-02 08:57:15 +01003705 obj_priv = to_intel_bo(object_list[i]);
Chris Wilson3d1cc472010-05-27 13:18:19 +01003706
Chris Wilson07f73f62009-09-14 16:50:30 +01003707 total_size += object_list[i]->size;
Chris Wilson3d1cc472010-05-27 13:18:19 +01003708 num_fences +=
3709 exec_list[i].flags & EXEC_OBJECT_NEEDS_FENCE &&
3710 obj_priv->tiling_mode != I915_TILING_NONE;
3711 }
3712 DRM_ERROR("Failed to pin buffer %d of %d, total %llu bytes, %d fences: %d\n",
Chris Wilson07f73f62009-09-14 16:50:30 +01003713 pinned+1, args->buffer_count,
Chris Wilson3d1cc472010-05-27 13:18:19 +01003714 total_size, num_fences,
3715 ret);
Chris Wilson07f73f62009-09-14 16:50:30 +01003716 DRM_ERROR("%d objects [%d pinned], "
3717 "%d object bytes [%d pinned], "
3718 "%d/%d gtt bytes\n",
3719 atomic_read(&dev->object_count),
3720 atomic_read(&dev->pin_count),
3721 atomic_read(&dev->object_memory),
3722 atomic_read(&dev->pin_memory),
3723 atomic_read(&dev->gtt_memory),
3724 dev->gtt_total);
3725 }
Eric Anholt673a3942008-07-30 12:06:12 -07003726 goto err;
3727 }
Keith Packardac94a962008-11-20 23:30:27 -08003728
3729 /* unpin all of our buffers */
3730 for (i = 0; i < pinned; i++)
3731 i915_gem_object_unpin(object_list[i]);
Eric Anholtb1177632008-12-10 10:09:41 -08003732 pinned = 0;
Keith Packardac94a962008-11-20 23:30:27 -08003733
3734 /* evict everyone we can from the aperture */
3735 ret = i915_gem_evict_everything(dev);
Chris Wilson07f73f62009-09-14 16:50:30 +01003736 if (ret && ret != -ENOSPC)
Keith Packardac94a962008-11-20 23:30:27 -08003737 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003738 }
3739
3740 /* Set the pending read domains for the batch buffer to COMMAND */
3741 batch_obj = object_list[args->buffer_count-1];
Chris Wilson5f26a2c2009-06-06 09:45:58 +01003742 if (batch_obj->pending_write_domain) {
3743 DRM_ERROR("Attempting to use self-modifying batch buffer\n");
3744 ret = -EINVAL;
3745 goto err;
3746 }
3747 batch_obj->pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Eric Anholt673a3942008-07-30 12:06:12 -07003748
Chris Wilson83d60792009-06-06 09:45:57 +01003749 /* Sanity check the batch buffer, prior to moving objects */
3750 exec_offset = exec_list[args->buffer_count - 1].offset;
3751 ret = i915_gem_check_execbuffer (args, exec_offset);
3752 if (ret != 0) {
3753 DRM_ERROR("execbuf with invalid offset/length\n");
3754 goto err;
3755 }
3756
Eric Anholt673a3942008-07-30 12:06:12 -07003757 i915_verify_inactive(dev, __FILE__, __LINE__);
3758
Keith Packard646f0f62008-11-20 23:23:03 -08003759 /* Zero the global flush/invalidate flags. These
3760 * will be modified as new domains are computed
3761 * for each object
3762 */
3763 dev->invalidate_domains = 0;
3764 dev->flush_domains = 0;
Chris Wilson88f356b2010-08-04 13:55:32 +01003765 dev_priv->flush_rings = 0;
Keith Packard646f0f62008-11-20 23:23:03 -08003766
Eric Anholt673a3942008-07-30 12:06:12 -07003767 for (i = 0; i < args->buffer_count; i++) {
3768 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003769
Keith Packard646f0f62008-11-20 23:23:03 -08003770 /* Compute new gpu domains and update invalidate/flush */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003771 i915_gem_object_set_to_gpu_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003772 }
3773
3774 i915_verify_inactive(dev, __FILE__, __LINE__);
3775
Keith Packard646f0f62008-11-20 23:23:03 -08003776 if (dev->invalidate_domains | dev->flush_domains) {
3777#if WATCH_EXEC
3778 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3779 __func__,
3780 dev->invalidate_domains,
3781 dev->flush_domains);
3782#endif
3783 i915_gem_flush(dev,
3784 dev->invalidate_domains,
3785 dev->flush_domains);
Chris Wilson88f356b2010-08-04 13:55:32 +01003786 if (dev_priv->flush_rings & FLUSH_RENDER_RING)
Daniel Vetter8bff9172010-02-11 22:19:40 +01003787 (void)i915_add_request(dev, file_priv, 0,
Chris Wilson88f356b2010-08-04 13:55:32 +01003788 &dev_priv->render_ring);
3789 if (dev_priv->flush_rings & FLUSH_BSD_RING)
Daniel Vetter8bff9172010-02-11 22:19:40 +01003790 (void)i915_add_request(dev, file_priv, 0,
Chris Wilson88f356b2010-08-04 13:55:32 +01003791 &dev_priv->bsd_ring);
Keith Packard646f0f62008-11-20 23:23:03 -08003792 }
Eric Anholt673a3942008-07-30 12:06:12 -07003793
Eric Anholtefbeed92009-02-19 14:54:51 -08003794 for (i = 0; i < args->buffer_count; i++) {
3795 struct drm_gem_object *obj = object_list[i];
Daniel Vetter23010e42010-03-08 13:35:02 +01003796 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003797 uint32_t old_write_domain = obj->write_domain;
Eric Anholtefbeed92009-02-19 14:54:51 -08003798
3799 obj->write_domain = obj->pending_write_domain;
Daniel Vetter99fcb762010-02-07 16:20:18 +01003800 if (obj->write_domain)
3801 list_move_tail(&obj_priv->gpu_write_list,
3802 &dev_priv->mm.gpu_write_list);
3803 else
3804 list_del_init(&obj_priv->gpu_write_list);
3805
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003806 trace_i915_gem_object_change_domain(obj,
3807 obj->read_domains,
3808 old_write_domain);
Eric Anholtefbeed92009-02-19 14:54:51 -08003809 }
3810
Eric Anholt673a3942008-07-30 12:06:12 -07003811 i915_verify_inactive(dev, __FILE__, __LINE__);
3812
3813#if WATCH_COHERENCY
3814 for (i = 0; i < args->buffer_count; i++) {
3815 i915_gem_object_check_coherency(object_list[i],
3816 exec_list[i].handle);
3817 }
3818#endif
3819
Eric Anholt673a3942008-07-30 12:06:12 -07003820#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07003821 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07003822 args->batch_len,
3823 __func__,
3824 ~0);
3825#endif
3826
Eric Anholt673a3942008-07-30 12:06:12 -07003827 /* Exec the batchbuffer */
Zou Nan hai852835f2010-05-21 09:08:56 +08003828 ret = ring->dispatch_gem_execbuffer(dev, ring, args,
3829 cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003830 if (ret) {
3831 DRM_ERROR("dispatch failed %d\n", ret);
3832 goto err;
3833 }
3834
3835 /*
3836 * Ensure that the commands in the batch buffer are
3837 * finished before the interrupt fires
3838 */
Zou Nan hai852835f2010-05-21 09:08:56 +08003839 flush_domains = i915_retire_commands(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07003840
3841 i915_verify_inactive(dev, __FILE__, __LINE__);
3842
3843 /*
3844 * Get a seqno representing the execution of the current buffer,
3845 * which we can wait on. We would like to mitigate these interrupts,
3846 * likely by only creating seqnos occasionally (so that we have
3847 * *some* interrupts representing completion of buffers that we can
3848 * wait on when trying to clear up gtt space).
3849 */
Zou Nan hai852835f2010-05-21 09:08:56 +08003850 seqno = i915_add_request(dev, file_priv, flush_domains, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07003851 BUG_ON(seqno == 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003852 for (i = 0; i < args->buffer_count; i++) {
3853 struct drm_gem_object *obj = object_list[i];
Zou Nan hai852835f2010-05-21 09:08:56 +08003854 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003855
Zou Nan hai852835f2010-05-21 09:08:56 +08003856 i915_gem_object_move_to_active(obj, seqno, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07003857#if WATCH_LRU
3858 DRM_INFO("%s: move to exec list %p\n", __func__, obj);
3859#endif
3860 }
3861#if WATCH_LRU
3862 i915_dump_lru(dev, __func__);
3863#endif
3864
3865 i915_verify_inactive(dev, __FILE__, __LINE__);
3866
Eric Anholt673a3942008-07-30 12:06:12 -07003867err:
Julia Lawallaad87df2008-12-21 16:28:47 +01003868 for (i = 0; i < pinned; i++)
3869 i915_gem_object_unpin(object_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07003870
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003871 for (i = 0; i < args->buffer_count; i++) {
3872 if (object_list[i]) {
Daniel Vetter23010e42010-03-08 13:35:02 +01003873 obj_priv = to_intel_bo(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003874 obj_priv->in_execbuffer = false;
3875 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003876 drm_gem_object_unreference(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003877 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003878
Eric Anholt673a3942008-07-30 12:06:12 -07003879 mutex_unlock(&dev->struct_mutex);
3880
Chris Wilson93533c22010-01-31 10:40:48 +00003881pre_mutex_err:
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003882 /* Copy the updated relocations out regardless of current error
3883 * state. Failure to update the relocs would mean that the next
3884 * time userland calls execbuf, it would do so with presumed offset
3885 * state that didn't match the actual object state.
3886 */
3887 ret2 = i915_gem_put_relocs_to_user(exec_list, args->buffer_count,
3888 relocs);
3889 if (ret2 != 0) {
3890 DRM_ERROR("Failed to copy relocations back out: %d\n", ret2);
3891
3892 if (ret == 0)
3893 ret = ret2;
3894 }
3895
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003896 drm_free_large(object_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07003897 kfree(cliprects);
Eric Anholt673a3942008-07-30 12:06:12 -07003898
3899 return ret;
3900}
3901
Jesse Barnes76446ca2009-12-17 22:05:42 -05003902/*
3903 * Legacy execbuffer just creates an exec2 list from the original exec object
3904 * list array and passes it to the real function.
3905 */
3906int
3907i915_gem_execbuffer(struct drm_device *dev, void *data,
3908 struct drm_file *file_priv)
3909{
3910 struct drm_i915_gem_execbuffer *args = data;
3911 struct drm_i915_gem_execbuffer2 exec2;
3912 struct drm_i915_gem_exec_object *exec_list = NULL;
3913 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
3914 int ret, i;
3915
3916#if WATCH_EXEC
3917 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3918 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3919#endif
3920
3921 if (args->buffer_count < 1) {
3922 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3923 return -EINVAL;
3924 }
3925
3926 /* Copy in the exec list from userland */
3927 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
3928 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
3929 if (exec_list == NULL || exec2_list == NULL) {
3930 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
3931 args->buffer_count);
3932 drm_free_large(exec_list);
3933 drm_free_large(exec2_list);
3934 return -ENOMEM;
3935 }
3936 ret = copy_from_user(exec_list,
3937 (struct drm_i915_relocation_entry __user *)
3938 (uintptr_t) args->buffers_ptr,
3939 sizeof(*exec_list) * args->buffer_count);
3940 if (ret != 0) {
3941 DRM_ERROR("copy %d exec entries failed %d\n",
3942 args->buffer_count, ret);
3943 drm_free_large(exec_list);
3944 drm_free_large(exec2_list);
3945 return -EFAULT;
3946 }
3947
3948 for (i = 0; i < args->buffer_count; i++) {
3949 exec2_list[i].handle = exec_list[i].handle;
3950 exec2_list[i].relocation_count = exec_list[i].relocation_count;
3951 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
3952 exec2_list[i].alignment = exec_list[i].alignment;
3953 exec2_list[i].offset = exec_list[i].offset;
3954 if (!IS_I965G(dev))
3955 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
3956 else
3957 exec2_list[i].flags = 0;
3958 }
3959
3960 exec2.buffers_ptr = args->buffers_ptr;
3961 exec2.buffer_count = args->buffer_count;
3962 exec2.batch_start_offset = args->batch_start_offset;
3963 exec2.batch_len = args->batch_len;
3964 exec2.DR1 = args->DR1;
3965 exec2.DR4 = args->DR4;
3966 exec2.num_cliprects = args->num_cliprects;
3967 exec2.cliprects_ptr = args->cliprects_ptr;
Zou Nan hai852835f2010-05-21 09:08:56 +08003968 exec2.flags = I915_EXEC_RENDER;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003969
3970 ret = i915_gem_do_execbuffer(dev, data, file_priv, &exec2, exec2_list);
3971 if (!ret) {
3972 /* Copy the new buffer offsets back to the user's exec list. */
3973 for (i = 0; i < args->buffer_count; i++)
3974 exec_list[i].offset = exec2_list[i].offset;
3975 /* ... and back out to userspace */
3976 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
3977 (uintptr_t) args->buffers_ptr,
3978 exec_list,
3979 sizeof(*exec_list) * args->buffer_count);
3980 if (ret) {
3981 ret = -EFAULT;
3982 DRM_ERROR("failed to copy %d exec entries "
3983 "back to user (%d)\n",
3984 args->buffer_count, ret);
3985 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003986 }
3987
3988 drm_free_large(exec_list);
3989 drm_free_large(exec2_list);
3990 return ret;
3991}
3992
3993int
3994i915_gem_execbuffer2(struct drm_device *dev, void *data,
3995 struct drm_file *file_priv)
3996{
3997 struct drm_i915_gem_execbuffer2 *args = data;
3998 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
3999 int ret;
4000
4001#if WATCH_EXEC
4002 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4003 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4004#endif
4005
4006 if (args->buffer_count < 1) {
4007 DRM_ERROR("execbuf2 with %d buffers\n", args->buffer_count);
4008 return -EINVAL;
4009 }
4010
4011 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4012 if (exec2_list == NULL) {
4013 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4014 args->buffer_count);
4015 return -ENOMEM;
4016 }
4017 ret = copy_from_user(exec2_list,
4018 (struct drm_i915_relocation_entry __user *)
4019 (uintptr_t) args->buffers_ptr,
4020 sizeof(*exec2_list) * args->buffer_count);
4021 if (ret != 0) {
4022 DRM_ERROR("copy %d exec entries failed %d\n",
4023 args->buffer_count, ret);
4024 drm_free_large(exec2_list);
4025 return -EFAULT;
4026 }
4027
4028 ret = i915_gem_do_execbuffer(dev, data, file_priv, args, exec2_list);
4029 if (!ret) {
4030 /* Copy the new buffer offsets back to the user's exec list. */
4031 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4032 (uintptr_t) args->buffers_ptr,
4033 exec2_list,
4034 sizeof(*exec2_list) * args->buffer_count);
4035 if (ret) {
4036 ret = -EFAULT;
4037 DRM_ERROR("failed to copy %d exec entries "
4038 "back to user (%d)\n",
4039 args->buffer_count, ret);
4040 }
4041 }
4042
4043 drm_free_large(exec2_list);
4044 return ret;
4045}
4046
Eric Anholt673a3942008-07-30 12:06:12 -07004047int
4048i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment)
4049{
4050 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01004051 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004052 int ret;
4053
Daniel Vetter778c3542010-05-13 11:49:44 +02004054 BUG_ON(obj_priv->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
4055
Eric Anholt673a3942008-07-30 12:06:12 -07004056 i915_verify_inactive(dev, __FILE__, __LINE__);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004057
4058 if (obj_priv->gtt_space != NULL) {
4059 if (alignment == 0)
4060 alignment = i915_gem_get_gtt_alignment(obj);
4061 if (obj_priv->gtt_offset & (alignment - 1)) {
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004062 WARN(obj_priv->pin_count,
4063 "bo is already pinned with incorrect alignment:"
4064 " offset=%x, req.alignment=%x\n",
4065 obj_priv->gtt_offset, alignment);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004066 ret = i915_gem_object_unbind(obj);
4067 if (ret)
4068 return ret;
4069 }
4070 }
4071
Eric Anholt673a3942008-07-30 12:06:12 -07004072 if (obj_priv->gtt_space == NULL) {
4073 ret = i915_gem_object_bind_to_gtt(obj, alignment);
Chris Wilson97311292009-09-21 00:22:34 +01004074 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07004075 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00004076 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004077
Eric Anholt673a3942008-07-30 12:06:12 -07004078 obj_priv->pin_count++;
4079
4080 /* If the object is not active and not pending a flush,
4081 * remove it from the inactive list
4082 */
4083 if (obj_priv->pin_count == 1) {
4084 atomic_inc(&dev->pin_count);
4085 atomic_add(obj->size, &dev->pin_memory);
4086 if (!obj_priv->active &&
Chris Wilsonbf1a1092010-08-07 11:01:20 +01004087 (obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
Eric Anholt673a3942008-07-30 12:06:12 -07004088 list_del_init(&obj_priv->list);
4089 }
4090 i915_verify_inactive(dev, __FILE__, __LINE__);
4091
4092 return 0;
4093}
4094
4095void
4096i915_gem_object_unpin(struct drm_gem_object *obj)
4097{
4098 struct drm_device *dev = obj->dev;
4099 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01004100 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004101
4102 i915_verify_inactive(dev, __FILE__, __LINE__);
4103 obj_priv->pin_count--;
4104 BUG_ON(obj_priv->pin_count < 0);
4105 BUG_ON(obj_priv->gtt_space == NULL);
4106
4107 /* If the object is no longer pinned, and is
4108 * neither active nor being flushed, then stick it on
4109 * the inactive list
4110 */
4111 if (obj_priv->pin_count == 0) {
4112 if (!obj_priv->active &&
Chris Wilson21d509e2009-06-06 09:46:02 +01004113 (obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
Eric Anholt673a3942008-07-30 12:06:12 -07004114 list_move_tail(&obj_priv->list,
4115 &dev_priv->mm.inactive_list);
4116 atomic_dec(&dev->pin_count);
4117 atomic_sub(obj->size, &dev->pin_memory);
4118 }
4119 i915_verify_inactive(dev, __FILE__, __LINE__);
4120}
4121
4122int
4123i915_gem_pin_ioctl(struct drm_device *dev, void *data,
4124 struct drm_file *file_priv)
4125{
4126 struct drm_i915_gem_pin *args = data;
4127 struct drm_gem_object *obj;
4128 struct drm_i915_gem_object *obj_priv;
4129 int ret;
4130
4131 mutex_lock(&dev->struct_mutex);
4132
4133 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4134 if (obj == NULL) {
4135 DRM_ERROR("Bad handle in i915_gem_pin_ioctl(): %d\n",
4136 args->handle);
4137 mutex_unlock(&dev->struct_mutex);
Chris Wilsonbf79cb92010-08-04 14:19:46 +01004138 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07004139 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004140 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004141
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004142 if (obj_priv->madv != I915_MADV_WILLNEED) {
4143 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson3ef94da2009-09-14 16:50:29 +01004144 drm_gem_object_unreference(obj);
4145 mutex_unlock(&dev->struct_mutex);
4146 return -EINVAL;
4147 }
4148
Jesse Barnes79e53942008-11-07 14:24:08 -08004149 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
4150 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
4151 args->handle);
Chris Wilson96dec612009-02-08 19:08:04 +00004152 drm_gem_object_unreference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004153 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08004154 return -EINVAL;
4155 }
4156
4157 obj_priv->user_pin_count++;
4158 obj_priv->pin_filp = file_priv;
4159 if (obj_priv->user_pin_count == 1) {
4160 ret = i915_gem_object_pin(obj, args->alignment);
4161 if (ret != 0) {
4162 drm_gem_object_unreference(obj);
4163 mutex_unlock(&dev->struct_mutex);
4164 return ret;
4165 }
Eric Anholt673a3942008-07-30 12:06:12 -07004166 }
4167
4168 /* XXX - flush the CPU caches for pinned objects
4169 * as the X server doesn't manage domains yet
4170 */
Eric Anholte47c68e2008-11-14 13:35:19 -08004171 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004172 args->offset = obj_priv->gtt_offset;
4173 drm_gem_object_unreference(obj);
4174 mutex_unlock(&dev->struct_mutex);
4175
4176 return 0;
4177}
4178
4179int
4180i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
4181 struct drm_file *file_priv)
4182{
4183 struct drm_i915_gem_pin *args = data;
4184 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08004185 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07004186
4187 mutex_lock(&dev->struct_mutex);
4188
4189 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4190 if (obj == NULL) {
4191 DRM_ERROR("Bad handle in i915_gem_unpin_ioctl(): %d\n",
4192 args->handle);
4193 mutex_unlock(&dev->struct_mutex);
Chris Wilsonbf79cb92010-08-04 14:19:46 +01004194 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07004195 }
4196
Daniel Vetter23010e42010-03-08 13:35:02 +01004197 obj_priv = to_intel_bo(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004198 if (obj_priv->pin_filp != file_priv) {
4199 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
4200 args->handle);
4201 drm_gem_object_unreference(obj);
4202 mutex_unlock(&dev->struct_mutex);
4203 return -EINVAL;
4204 }
4205 obj_priv->user_pin_count--;
4206 if (obj_priv->user_pin_count == 0) {
4207 obj_priv->pin_filp = NULL;
4208 i915_gem_object_unpin(obj);
4209 }
Eric Anholt673a3942008-07-30 12:06:12 -07004210
4211 drm_gem_object_unreference(obj);
4212 mutex_unlock(&dev->struct_mutex);
4213 return 0;
4214}
4215
4216int
4217i915_gem_busy_ioctl(struct drm_device *dev, void *data,
4218 struct drm_file *file_priv)
4219{
4220 struct drm_i915_gem_busy *args = data;
4221 struct drm_gem_object *obj;
4222 struct drm_i915_gem_object *obj_priv;
4223
Eric Anholt673a3942008-07-30 12:06:12 -07004224 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4225 if (obj == NULL) {
4226 DRM_ERROR("Bad handle in i915_gem_busy_ioctl(): %d\n",
4227 args->handle);
Chris Wilsonbf79cb92010-08-04 14:19:46 +01004228 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07004229 }
4230
Chris Wilsonb1ce7862009-06-06 09:46:00 +01004231 mutex_lock(&dev->struct_mutex);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004232
Chris Wilson0be555b2010-08-04 15:36:30 +01004233 /* Count all active objects as busy, even if they are currently not used
4234 * by the gpu. Users of this interface expect objects to eventually
4235 * become non-busy without any further actions, therefore emit any
4236 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004237 */
Chris Wilson0be555b2010-08-04 15:36:30 +01004238 obj_priv = to_intel_bo(obj);
4239 args->busy = obj_priv->active;
4240 if (args->busy) {
4241 /* Unconditionally flush objects, even when the gpu still uses this
4242 * object. Userspace calling this function indicates that it wants to
4243 * use this buffer rather sooner than later, so issuing the required
4244 * flush earlier is beneficial.
4245 */
4246 if (obj->write_domain) {
4247 i915_gem_flush(dev, 0, obj->write_domain);
4248 (void)i915_add_request(dev, file_priv, obj->write_domain, obj_priv->ring);
4249 }
4250
4251 /* Update the active list for the hardware's current position.
4252 * Otherwise this only updates on a delayed timer or when irqs
4253 * are actually unmasked, and our working set ends up being
4254 * larger than required.
4255 */
4256 i915_gem_retire_requests_ring(dev, obj_priv->ring);
4257
4258 args->busy = obj_priv->active;
4259 }
Eric Anholt673a3942008-07-30 12:06:12 -07004260
4261 drm_gem_object_unreference(obj);
4262 mutex_unlock(&dev->struct_mutex);
4263 return 0;
4264}
4265
4266int
4267i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4268 struct drm_file *file_priv)
4269{
4270 return i915_gem_ring_throttle(dev, file_priv);
4271}
4272
Chris Wilson3ef94da2009-09-14 16:50:29 +01004273int
4274i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4275 struct drm_file *file_priv)
4276{
4277 struct drm_i915_gem_madvise *args = data;
4278 struct drm_gem_object *obj;
4279 struct drm_i915_gem_object *obj_priv;
4280
4281 switch (args->madv) {
4282 case I915_MADV_DONTNEED:
4283 case I915_MADV_WILLNEED:
4284 break;
4285 default:
4286 return -EINVAL;
4287 }
4288
4289 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4290 if (obj == NULL) {
4291 DRM_ERROR("Bad handle in i915_gem_madvise_ioctl(): %d\n",
4292 args->handle);
Chris Wilsonbf79cb92010-08-04 14:19:46 +01004293 return -ENOENT;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004294 }
4295
4296 mutex_lock(&dev->struct_mutex);
Daniel Vetter23010e42010-03-08 13:35:02 +01004297 obj_priv = to_intel_bo(obj);
Chris Wilson3ef94da2009-09-14 16:50:29 +01004298
4299 if (obj_priv->pin_count) {
4300 drm_gem_object_unreference(obj);
4301 mutex_unlock(&dev->struct_mutex);
4302
4303 DRM_ERROR("Attempted i915_gem_madvise_ioctl() on a pinned object\n");
4304 return -EINVAL;
4305 }
4306
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004307 if (obj_priv->madv != __I915_MADV_PURGED)
4308 obj_priv->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004309
Chris Wilson2d7ef392009-09-20 23:13:10 +01004310 /* if the object is no longer bound, discard its backing storage */
4311 if (i915_gem_object_is_purgeable(obj_priv) &&
4312 obj_priv->gtt_space == NULL)
4313 i915_gem_object_truncate(obj);
4314
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004315 args->retained = obj_priv->madv != __I915_MADV_PURGED;
4316
Chris Wilson3ef94da2009-09-14 16:50:29 +01004317 drm_gem_object_unreference(obj);
4318 mutex_unlock(&dev->struct_mutex);
4319
4320 return 0;
4321}
4322
Daniel Vetterac52bc52010-04-09 19:05:06 +00004323struct drm_gem_object * i915_gem_alloc_object(struct drm_device *dev,
4324 size_t size)
4325{
Daniel Vetterc397b902010-04-09 19:05:07 +00004326 struct drm_i915_gem_object *obj;
4327
4328 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
4329 if (obj == NULL)
4330 return NULL;
4331
4332 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
4333 kfree(obj);
4334 return NULL;
4335 }
4336
4337 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4338 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4339
4340 obj->agp_type = AGP_USER_MEMORY;
Daniel Vetter62b8b212010-04-09 19:05:08 +00004341 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00004342 obj->fence_reg = I915_FENCE_REG_NONE;
4343 INIT_LIST_HEAD(&obj->list);
4344 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004345 obj->madv = I915_MADV_WILLNEED;
4346
4347 trace_i915_gem_object_create(&obj->base);
4348
4349 return &obj->base;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004350}
4351
Eric Anholt673a3942008-07-30 12:06:12 -07004352int i915_gem_init_object(struct drm_gem_object *obj)
4353{
Daniel Vetterc397b902010-04-09 19:05:07 +00004354 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004355
Eric Anholt673a3942008-07-30 12:06:12 -07004356 return 0;
4357}
4358
Chris Wilsonbe726152010-07-23 23:18:50 +01004359static void i915_gem_free_object_tail(struct drm_gem_object *obj)
4360{
4361 struct drm_device *dev = obj->dev;
4362 drm_i915_private_t *dev_priv = dev->dev_private;
4363 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
4364 int ret;
4365
4366 ret = i915_gem_object_unbind(obj);
4367 if (ret == -ERESTARTSYS) {
4368 list_move(&obj_priv->list,
4369 &dev_priv->mm.deferred_free_list);
4370 return;
4371 }
4372
4373 if (obj_priv->mmap_offset)
4374 i915_gem_free_mmap_offset(obj);
4375
4376 drm_gem_object_release(obj);
4377
4378 kfree(obj_priv->page_cpu_valid);
4379 kfree(obj_priv->bit_17);
4380 kfree(obj_priv);
4381}
4382
Eric Anholt673a3942008-07-30 12:06:12 -07004383void i915_gem_free_object(struct drm_gem_object *obj)
4384{
Jesse Barnesde151cf2008-11-12 10:03:55 -08004385 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01004386 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004387
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004388 trace_i915_gem_object_destroy(obj);
4389
Eric Anholt673a3942008-07-30 12:06:12 -07004390 while (obj_priv->pin_count > 0)
4391 i915_gem_object_unpin(obj);
4392
Dave Airlie71acb5e2008-12-30 20:31:46 +10004393 if (obj_priv->phys_obj)
4394 i915_gem_detach_phys_object(dev, obj);
4395
Chris Wilsonbe726152010-07-23 23:18:50 +01004396 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004397}
4398
Jesse Barnes5669fca2009-02-17 15:13:31 -08004399int
Eric Anholt673a3942008-07-30 12:06:12 -07004400i915_gem_idle(struct drm_device *dev)
4401{
4402 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004403 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004404
Keith Packard6dbe2772008-10-14 21:41:13 -07004405 mutex_lock(&dev->struct_mutex);
4406
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004407 if (dev_priv->mm.suspended ||
Zou Nan haid1b851f2010-05-21 09:08:57 +08004408 (dev_priv->render_ring.gem_object == NULL) ||
4409 (HAS_BSD(dev) &&
4410 dev_priv->bsd_ring.gem_object == NULL)) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004411 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004412 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004413 }
Eric Anholt673a3942008-07-30 12:06:12 -07004414
Chris Wilson29105cc2010-01-07 10:39:13 +00004415 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004416 if (ret) {
4417 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004418 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004419 }
Eric Anholt673a3942008-07-30 12:06:12 -07004420
Chris Wilson29105cc2010-01-07 10:39:13 +00004421 /* Under UMS, be paranoid and evict. */
4422 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01004423 ret = i915_gem_evict_inactive(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004424 if (ret) {
4425 mutex_unlock(&dev->struct_mutex);
4426 return ret;
4427 }
4428 }
4429
4430 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4431 * We need to replace this with a semaphore, or something.
4432 * And not confound mm.suspended!
4433 */
4434 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02004435 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004436
4437 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004438 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004439
Keith Packard6dbe2772008-10-14 21:41:13 -07004440 mutex_unlock(&dev->struct_mutex);
4441
Chris Wilson29105cc2010-01-07 10:39:13 +00004442 /* Cancel the retire work handler, which should be idle now. */
4443 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4444
Eric Anholt673a3942008-07-30 12:06:12 -07004445 return 0;
4446}
4447
Jesse Barnese552eb72010-04-21 11:39:23 -07004448/*
4449 * 965+ support PIPE_CONTROL commands, which provide finer grained control
4450 * over cache flushing.
4451 */
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004452static int
Jesse Barnese552eb72010-04-21 11:39:23 -07004453i915_gem_init_pipe_control(struct drm_device *dev)
4454{
4455 drm_i915_private_t *dev_priv = dev->dev_private;
4456 struct drm_gem_object *obj;
4457 struct drm_i915_gem_object *obj_priv;
4458 int ret;
4459
Eric Anholt34dc4d42010-05-07 14:30:03 -07004460 obj = i915_gem_alloc_object(dev, 4096);
Jesse Barnese552eb72010-04-21 11:39:23 -07004461 if (obj == NULL) {
4462 DRM_ERROR("Failed to allocate seqno page\n");
4463 ret = -ENOMEM;
4464 goto err;
4465 }
4466 obj_priv = to_intel_bo(obj);
4467 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
4468
4469 ret = i915_gem_object_pin(obj, 4096);
4470 if (ret)
4471 goto err_unref;
4472
4473 dev_priv->seqno_gfx_addr = obj_priv->gtt_offset;
4474 dev_priv->seqno_page = kmap(obj_priv->pages[0]);
4475 if (dev_priv->seqno_page == NULL)
4476 goto err_unpin;
4477
4478 dev_priv->seqno_obj = obj;
4479 memset(dev_priv->seqno_page, 0, PAGE_SIZE);
4480
4481 return 0;
4482
4483err_unpin:
4484 i915_gem_object_unpin(obj);
4485err_unref:
4486 drm_gem_object_unreference(obj);
4487err:
4488 return ret;
4489}
4490
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004491
4492static void
Jesse Barnese552eb72010-04-21 11:39:23 -07004493i915_gem_cleanup_pipe_control(struct drm_device *dev)
4494{
4495 drm_i915_private_t *dev_priv = dev->dev_private;
4496 struct drm_gem_object *obj;
4497 struct drm_i915_gem_object *obj_priv;
4498
4499 obj = dev_priv->seqno_obj;
4500 obj_priv = to_intel_bo(obj);
4501 kunmap(obj_priv->pages[0]);
4502 i915_gem_object_unpin(obj);
4503 drm_gem_object_unreference(obj);
4504 dev_priv->seqno_obj = NULL;
4505
4506 dev_priv->seqno_page = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07004507}
4508
Eric Anholt673a3942008-07-30 12:06:12 -07004509int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004510i915_gem_init_ringbuffer(struct drm_device *dev)
4511{
4512 drm_i915_private_t *dev_priv = dev->dev_private;
4513 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004514
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004515 dev_priv->render_ring = render_ring;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004516
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004517 if (!I915_NEED_GFX_HWS(dev)) {
4518 dev_priv->render_ring.status_page.page_addr
4519 = dev_priv->status_page_dmah->vaddr;
4520 memset(dev_priv->render_ring.status_page.page_addr,
4521 0, PAGE_SIZE);
4522 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004523
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004524 if (HAS_PIPE_CONTROL(dev)) {
4525 ret = i915_gem_init_pipe_control(dev);
4526 if (ret)
4527 return ret;
4528 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004529
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004530 ret = intel_init_ring_buffer(dev, &dev_priv->render_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004531 if (ret)
4532 goto cleanup_pipe_control;
4533
4534 if (HAS_BSD(dev)) {
Zou Nan haid1b851f2010-05-21 09:08:57 +08004535 dev_priv->bsd_ring = bsd_ring;
4536 ret = intel_init_ring_buffer(dev, &dev_priv->bsd_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004537 if (ret)
4538 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004539 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004540
Chris Wilson6f392d5482010-08-07 11:01:22 +01004541 dev_priv->next_seqno = 1;
4542
Chris Wilson68f95ba2010-05-27 13:18:22 +01004543 return 0;
4544
4545cleanup_render_ring:
4546 intel_cleanup_ring_buffer(dev, &dev_priv->render_ring);
4547cleanup_pipe_control:
4548 if (HAS_PIPE_CONTROL(dev))
4549 i915_gem_cleanup_pipe_control(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004550 return ret;
4551}
4552
4553void
4554i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4555{
4556 drm_i915_private_t *dev_priv = dev->dev_private;
4557
4558 intel_cleanup_ring_buffer(dev, &dev_priv->render_ring);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004559 if (HAS_BSD(dev))
4560 intel_cleanup_ring_buffer(dev, &dev_priv->bsd_ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004561 if (HAS_PIPE_CONTROL(dev))
4562 i915_gem_cleanup_pipe_control(dev);
4563}
4564
4565int
Eric Anholt673a3942008-07-30 12:06:12 -07004566i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4567 struct drm_file *file_priv)
4568{
4569 drm_i915_private_t *dev_priv = dev->dev_private;
4570 int ret;
4571
Jesse Barnes79e53942008-11-07 14:24:08 -08004572 if (drm_core_check_feature(dev, DRIVER_MODESET))
4573 return 0;
4574
Ben Gamariba1234d2009-09-14 17:48:47 -04004575 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004576 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04004577 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004578 }
4579
Eric Anholt673a3942008-07-30 12:06:12 -07004580 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004581 dev_priv->mm.suspended = 0;
4582
4583 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004584 if (ret != 0) {
4585 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004586 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004587 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004588
Carl Worth5e118f42009-03-20 11:54:25 -07004589 spin_lock(&dev_priv->mm.active_list_lock);
Zou Nan hai852835f2010-05-21 09:08:56 +08004590 BUG_ON(!list_empty(&dev_priv->render_ring.active_list));
Zou Nan haid1b851f2010-05-21 09:08:57 +08004591 BUG_ON(HAS_BSD(dev) && !list_empty(&dev_priv->bsd_ring.active_list));
Carl Worth5e118f42009-03-20 11:54:25 -07004592 spin_unlock(&dev_priv->mm.active_list_lock);
4593
Eric Anholt673a3942008-07-30 12:06:12 -07004594 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4595 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004596 BUG_ON(!list_empty(&dev_priv->render_ring.request_list));
Zou Nan haid1b851f2010-05-21 09:08:57 +08004597 BUG_ON(HAS_BSD(dev) && !list_empty(&dev_priv->bsd_ring.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004598 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004599
Chris Wilson5f353082010-06-07 14:03:03 +01004600 ret = drm_irq_install(dev);
4601 if (ret)
4602 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004603
Eric Anholt673a3942008-07-30 12:06:12 -07004604 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004605
4606cleanup_ringbuffer:
4607 mutex_lock(&dev->struct_mutex);
4608 i915_gem_cleanup_ringbuffer(dev);
4609 dev_priv->mm.suspended = 1;
4610 mutex_unlock(&dev->struct_mutex);
4611
4612 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004613}
4614
4615int
4616i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4617 struct drm_file *file_priv)
4618{
Jesse Barnes79e53942008-11-07 14:24:08 -08004619 if (drm_core_check_feature(dev, DRIVER_MODESET))
4620 return 0;
4621
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004622 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07004623 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004624}
4625
4626void
4627i915_gem_lastclose(struct drm_device *dev)
4628{
4629 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004630
Eric Anholte806b492009-01-22 09:56:58 -08004631 if (drm_core_check_feature(dev, DRIVER_MODESET))
4632 return;
4633
Keith Packard6dbe2772008-10-14 21:41:13 -07004634 ret = i915_gem_idle(dev);
4635 if (ret)
4636 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004637}
4638
4639void
4640i915_gem_load(struct drm_device *dev)
4641{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004642 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07004643 drm_i915_private_t *dev_priv = dev->dev_private;
4644
Carl Worth5e118f42009-03-20 11:54:25 -07004645 spin_lock_init(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004646 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
Daniel Vetter99fcb762010-02-07 16:20:18 +01004647 INIT_LIST_HEAD(&dev_priv->mm.gpu_write_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004648 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004649 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01004650 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Zou Nan hai852835f2010-05-21 09:08:56 +08004651 INIT_LIST_HEAD(&dev_priv->render_ring.active_list);
4652 INIT_LIST_HEAD(&dev_priv->render_ring.request_list);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004653 if (HAS_BSD(dev)) {
4654 INIT_LIST_HEAD(&dev_priv->bsd_ring.active_list);
4655 INIT_LIST_HEAD(&dev_priv->bsd_ring.request_list);
4656 }
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004657 for (i = 0; i < 16; i++)
4658 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004659 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4660 i915_gem_retire_work_handler);
Chris Wilson31169712009-09-14 16:50:28 +01004661 spin_lock(&shrink_list_lock);
4662 list_add(&dev_priv->mm.shrink_list, &shrink_list);
4663 spin_unlock(&shrink_list_lock);
4664
Dave Airlie94400122010-07-20 13:15:31 +10004665 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4666 if (IS_GEN3(dev)) {
4667 u32 tmp = I915_READ(MI_ARB_STATE);
4668 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
4669 /* arb state is a masked write, so set bit + bit in mask */
4670 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
4671 I915_WRITE(MI_ARB_STATE, tmp);
4672 }
4673 }
4674
Jesse Barnesde151cf2008-11-12 10:03:55 -08004675 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004676 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4677 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004678
Jesse Barnes0f973f22009-01-26 17:10:45 -08004679 if (IS_I965G(dev) || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004680 dev_priv->num_fence_regs = 16;
4681 else
4682 dev_priv->num_fence_regs = 8;
4683
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004684 /* Initialize fence registers to zero */
4685 if (IS_I965G(dev)) {
4686 for (i = 0; i < 16; i++)
4687 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
4688 } else {
4689 for (i = 0; i < 8; i++)
4690 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
4691 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4692 for (i = 0; i < 8; i++)
4693 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
4694 }
Eric Anholt673a3942008-07-30 12:06:12 -07004695 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004696 init_waitqueue_head(&dev_priv->pending_flip_queue);
Eric Anholt673a3942008-07-30 12:06:12 -07004697}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004698
4699/*
4700 * Create a physically contiguous memory object for this object
4701 * e.g. for cursor + overlay regs
4702 */
4703int i915_gem_init_phys_object(struct drm_device *dev,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004704 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004705{
4706 drm_i915_private_t *dev_priv = dev->dev_private;
4707 struct drm_i915_gem_phys_object *phys_obj;
4708 int ret;
4709
4710 if (dev_priv->mm.phys_objs[id - 1] || !size)
4711 return 0;
4712
Eric Anholt9a298b22009-03-24 12:23:04 -07004713 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004714 if (!phys_obj)
4715 return -ENOMEM;
4716
4717 phys_obj->id = id;
4718
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004719 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004720 if (!phys_obj->handle) {
4721 ret = -ENOMEM;
4722 goto kfree_obj;
4723 }
4724#ifdef CONFIG_X86
4725 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4726#endif
4727
4728 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4729
4730 return 0;
4731kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004732 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004733 return ret;
4734}
4735
4736void i915_gem_free_phys_object(struct drm_device *dev, int id)
4737{
4738 drm_i915_private_t *dev_priv = dev->dev_private;
4739 struct drm_i915_gem_phys_object *phys_obj;
4740
4741 if (!dev_priv->mm.phys_objs[id - 1])
4742 return;
4743
4744 phys_obj = dev_priv->mm.phys_objs[id - 1];
4745 if (phys_obj->cur_obj) {
4746 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4747 }
4748
4749#ifdef CONFIG_X86
4750 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4751#endif
4752 drm_pci_free(dev, phys_obj->handle);
4753 kfree(phys_obj);
4754 dev_priv->mm.phys_objs[id - 1] = NULL;
4755}
4756
4757void i915_gem_free_all_phys_object(struct drm_device *dev)
4758{
4759 int i;
4760
Dave Airlie260883c2009-01-22 17:58:49 +10004761 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004762 i915_gem_free_phys_object(dev, i);
4763}
4764
4765void i915_gem_detach_phys_object(struct drm_device *dev,
4766 struct drm_gem_object *obj)
4767{
4768 struct drm_i915_gem_object *obj_priv;
4769 int i;
4770 int ret;
4771 int page_count;
4772
Daniel Vetter23010e42010-03-08 13:35:02 +01004773 obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004774 if (!obj_priv->phys_obj)
4775 return;
4776
Chris Wilson4bdadb92010-01-27 13:36:32 +00004777 ret = i915_gem_object_get_pages(obj, 0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004778 if (ret)
4779 goto out;
4780
4781 page_count = obj->size / PAGE_SIZE;
4782
4783 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004784 char *dst = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004785 char *src = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4786
4787 memcpy(dst, src, PAGE_SIZE);
4788 kunmap_atomic(dst, KM_USER0);
4789 }
Eric Anholt856fa192009-03-19 14:10:50 -07004790 drm_clflush_pages(obj_priv->pages, page_count);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004791 drm_agp_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004792
4793 i915_gem_object_put_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004794out:
4795 obj_priv->phys_obj->cur_obj = NULL;
4796 obj_priv->phys_obj = NULL;
4797}
4798
4799int
4800i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004801 struct drm_gem_object *obj,
4802 int id,
4803 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004804{
4805 drm_i915_private_t *dev_priv = dev->dev_private;
4806 struct drm_i915_gem_object *obj_priv;
4807 int ret = 0;
4808 int page_count;
4809 int i;
4810
4811 if (id > I915_MAX_PHYS_OBJECT)
4812 return -EINVAL;
4813
Daniel Vetter23010e42010-03-08 13:35:02 +01004814 obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004815
4816 if (obj_priv->phys_obj) {
4817 if (obj_priv->phys_obj->id == id)
4818 return 0;
4819 i915_gem_detach_phys_object(dev, obj);
4820 }
4821
Dave Airlie71acb5e2008-12-30 20:31:46 +10004822 /* create a new object */
4823 if (!dev_priv->mm.phys_objs[id - 1]) {
4824 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004825 obj->size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004826 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08004827 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004828 goto out;
4829 }
4830 }
4831
4832 /* bind to the object */
4833 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
4834 obj_priv->phys_obj->cur_obj = obj;
4835
Chris Wilson4bdadb92010-01-27 13:36:32 +00004836 ret = i915_gem_object_get_pages(obj, 0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004837 if (ret) {
4838 DRM_ERROR("failed to get page list\n");
4839 goto out;
4840 }
4841
4842 page_count = obj->size / PAGE_SIZE;
4843
4844 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004845 char *src = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004846 char *dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4847
4848 memcpy(dst, src, PAGE_SIZE);
4849 kunmap_atomic(src, KM_USER0);
4850 }
4851
Chris Wilsond78b47b2009-06-17 21:52:49 +01004852 i915_gem_object_put_pages(obj);
4853
Dave Airlie71acb5e2008-12-30 20:31:46 +10004854 return 0;
4855out:
4856 return ret;
4857}
4858
4859static int
4860i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
4861 struct drm_i915_gem_pwrite *args,
4862 struct drm_file *file_priv)
4863{
Daniel Vetter23010e42010-03-08 13:35:02 +01004864 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004865 void *obj_addr;
4866 int ret;
4867 char __user *user_data;
4868
4869 user_data = (char __user *) (uintptr_t) args->data_ptr;
4870 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
4871
Zhao Yakui44d98a62009-10-09 11:39:40 +08004872 DRM_DEBUG_DRIVER("obj_addr %p, %lld\n", obj_addr, args->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004873 ret = copy_from_user(obj_addr, user_data, args->size);
4874 if (ret)
4875 return -EFAULT;
4876
4877 drm_agp_chipset_flush(dev);
4878 return 0;
4879}
Eric Anholtb9624422009-06-03 07:27:35 +00004880
4881void i915_gem_release(struct drm_device * dev, struct drm_file *file_priv)
4882{
4883 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
4884
4885 /* Clean up our request list when the client is going away, so that
4886 * later retire_requests won't dereference our soon-to-be-gone
4887 * file_priv.
4888 */
4889 mutex_lock(&dev->struct_mutex);
4890 while (!list_empty(&i915_file_priv->mm.request_list))
4891 list_del_init(i915_file_priv->mm.request_list.next);
4892 mutex_unlock(&dev->struct_mutex);
4893}
Chris Wilson31169712009-09-14 16:50:28 +01004894
Chris Wilson31169712009-09-14 16:50:28 +01004895static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004896i915_gpu_is_active(struct drm_device *dev)
4897{
4898 drm_i915_private_t *dev_priv = dev->dev_private;
4899 int lists_empty;
4900
4901 spin_lock(&dev_priv->mm.active_list_lock);
4902 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Zou Nan hai852835f2010-05-21 09:08:56 +08004903 list_empty(&dev_priv->render_ring.active_list);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004904 if (HAS_BSD(dev))
4905 lists_empty &= list_empty(&dev_priv->bsd_ring.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004906 spin_unlock(&dev_priv->mm.active_list_lock);
4907
4908 return !lists_empty;
4909}
4910
4911static int
Dave Chinner7f8275d2010-07-19 14:56:17 +10004912i915_gem_shrink(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
Chris Wilson31169712009-09-14 16:50:28 +01004913{
4914 drm_i915_private_t *dev_priv, *next_dev;
4915 struct drm_i915_gem_object *obj_priv, *next_obj;
4916 int cnt = 0;
4917 int would_deadlock = 1;
4918
4919 /* "fast-path" to count number of available objects */
4920 if (nr_to_scan == 0) {
4921 spin_lock(&shrink_list_lock);
4922 list_for_each_entry(dev_priv, &shrink_list, mm.shrink_list) {
4923 struct drm_device *dev = dev_priv->dev;
4924
4925 if (mutex_trylock(&dev->struct_mutex)) {
4926 list_for_each_entry(obj_priv,
4927 &dev_priv->mm.inactive_list,
4928 list)
4929 cnt++;
4930 mutex_unlock(&dev->struct_mutex);
4931 }
4932 }
4933 spin_unlock(&shrink_list_lock);
4934
4935 return (cnt / 100) * sysctl_vfs_cache_pressure;
4936 }
4937
4938 spin_lock(&shrink_list_lock);
4939
Chris Wilson1637ef42010-04-20 17:10:35 +01004940rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004941 /* first scan for clean buffers */
4942 list_for_each_entry_safe(dev_priv, next_dev,
4943 &shrink_list, mm.shrink_list) {
4944 struct drm_device *dev = dev_priv->dev;
4945
4946 if (! mutex_trylock(&dev->struct_mutex))
4947 continue;
4948
4949 spin_unlock(&shrink_list_lock);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01004950 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004951
Chris Wilson31169712009-09-14 16:50:28 +01004952 list_for_each_entry_safe(obj_priv, next_obj,
4953 &dev_priv->mm.inactive_list,
4954 list) {
4955 if (i915_gem_object_is_purgeable(obj_priv)) {
Daniel Vettera8089e82010-04-09 19:05:09 +00004956 i915_gem_object_unbind(&obj_priv->base);
Chris Wilson31169712009-09-14 16:50:28 +01004957 if (--nr_to_scan <= 0)
4958 break;
4959 }
4960 }
4961
4962 spin_lock(&shrink_list_lock);
4963 mutex_unlock(&dev->struct_mutex);
4964
Chris Wilson963b4832009-09-20 23:03:54 +01004965 would_deadlock = 0;
4966
Chris Wilson31169712009-09-14 16:50:28 +01004967 if (nr_to_scan <= 0)
4968 break;
4969 }
4970
4971 /* second pass, evict/count anything still on the inactive list */
4972 list_for_each_entry_safe(dev_priv, next_dev,
4973 &shrink_list, mm.shrink_list) {
4974 struct drm_device *dev = dev_priv->dev;
4975
4976 if (! mutex_trylock(&dev->struct_mutex))
4977 continue;
4978
4979 spin_unlock(&shrink_list_lock);
4980
4981 list_for_each_entry_safe(obj_priv, next_obj,
4982 &dev_priv->mm.inactive_list,
4983 list) {
4984 if (nr_to_scan > 0) {
Daniel Vettera8089e82010-04-09 19:05:09 +00004985 i915_gem_object_unbind(&obj_priv->base);
Chris Wilson31169712009-09-14 16:50:28 +01004986 nr_to_scan--;
4987 } else
4988 cnt++;
4989 }
4990
4991 spin_lock(&shrink_list_lock);
4992 mutex_unlock(&dev->struct_mutex);
4993
4994 would_deadlock = 0;
4995 }
4996
Chris Wilson1637ef42010-04-20 17:10:35 +01004997 if (nr_to_scan) {
4998 int active = 0;
4999
5000 /*
5001 * We are desperate for pages, so as a last resort, wait
5002 * for the GPU to finish and discard whatever we can.
5003 * This has a dramatic impact to reduce the number of
5004 * OOM-killer events whilst running the GPU aggressively.
5005 */
5006 list_for_each_entry(dev_priv, &shrink_list, mm.shrink_list) {
5007 struct drm_device *dev = dev_priv->dev;
5008
5009 if (!mutex_trylock(&dev->struct_mutex))
5010 continue;
5011
5012 spin_unlock(&shrink_list_lock);
5013
5014 if (i915_gpu_is_active(dev)) {
5015 i915_gpu_idle(dev);
5016 active++;
5017 }
5018
5019 spin_lock(&shrink_list_lock);
5020 mutex_unlock(&dev->struct_mutex);
5021 }
5022
5023 if (active)
5024 goto rescan;
5025 }
5026
Chris Wilson31169712009-09-14 16:50:28 +01005027 spin_unlock(&shrink_list_lock);
5028
5029 if (would_deadlock)
5030 return -1;
5031 else if (cnt > 0)
5032 return (cnt / 100) * sysctl_vfs_cache_pressure;
5033 else
5034 return 0;
5035}
5036
5037static struct shrinker shrinker = {
5038 .shrink = i915_gem_shrink,
5039 .seeks = DEFAULT_SEEKS,
5040};
5041
5042__init void
5043i915_gem_shrinker_init(void)
5044{
5045 register_shrinker(&shrinker);
5046}
5047
5048__exit void
5049i915_gem_shrinker_exit(void)
5050{
5051 unregister_shrinker(&shrinker);
5052}