blob: 140bee142fc253186f80f2cdc8a4d339786efe20 [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"
32#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070034
Eric Anholt28dfe522008-11-13 15:00:55 -080035#define I915_GEM_GPU_DOMAINS (~(I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT))
36
Eric Anholte47c68e2008-11-14 13:35:19 -080037static void i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj);
38static void i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj);
39static void i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj);
Eric Anholte47c68e2008-11-14 13:35:19 -080040static int i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj,
41 int write);
42static int i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
43 uint64_t offset,
44 uint64_t size);
45static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070046static int i915_gem_object_wait_rendering(struct drm_gem_object *obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -080047static int i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
48 unsigned alignment);
Jesse Barnesde151cf2008-11-12 10:03:55 -080049static void i915_gem_clear_fence_reg(struct drm_gem_object *obj);
50static int i915_gem_evict_something(struct drm_device *dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +100051static int i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
52 struct drm_i915_gem_pwrite *args,
53 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -070054
Jesse Barnes79e53942008-11-07 14:24:08 -080055int i915_gem_do_init(struct drm_device *dev, unsigned long start,
56 unsigned long end)
57{
58 drm_i915_private_t *dev_priv = dev->dev_private;
59
60 if (start >= end ||
61 (start & (PAGE_SIZE - 1)) != 0 ||
62 (end & (PAGE_SIZE - 1)) != 0) {
63 return -EINVAL;
64 }
65
66 drm_mm_init(&dev_priv->mm.gtt_space, start,
67 end - start);
68
69 dev->gtt_total = (uint32_t) (end - start);
70
71 return 0;
72}
Keith Packard6dbe2772008-10-14 21:41:13 -070073
Eric Anholt673a3942008-07-30 12:06:12 -070074int
75i915_gem_init_ioctl(struct drm_device *dev, void *data,
76 struct drm_file *file_priv)
77{
Eric Anholt673a3942008-07-30 12:06:12 -070078 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -080079 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -070080
81 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080082 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -070083 mutex_unlock(&dev->struct_mutex);
84
Jesse Barnes79e53942008-11-07 14:24:08 -080085 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -070086}
87
Eric Anholt5a125c32008-10-22 21:40:13 -070088int
89i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
90 struct drm_file *file_priv)
91{
Eric Anholt5a125c32008-10-22 21:40:13 -070092 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -070093
94 if (!(dev->driver->driver_features & DRIVER_GEM))
95 return -ENODEV;
96
97 args->aper_size = dev->gtt_total;
Keith Packard2678d9d2008-11-20 22:54:54 -080098 args->aper_available_size = (args->aper_size -
99 atomic_read(&dev->pin_memory));
Eric Anholt5a125c32008-10-22 21:40:13 -0700100
101 return 0;
102}
103
Eric Anholt673a3942008-07-30 12:06:12 -0700104
105/**
106 * Creates a new mm object and returns a handle to it.
107 */
108int
109i915_gem_create_ioctl(struct drm_device *dev, void *data,
110 struct drm_file *file_priv)
111{
112 struct drm_i915_gem_create *args = data;
113 struct drm_gem_object *obj;
114 int handle, ret;
115
116 args->size = roundup(args->size, PAGE_SIZE);
117
118 /* Allocate the new object */
119 obj = drm_gem_object_alloc(dev, args->size);
120 if (obj == NULL)
121 return -ENOMEM;
122
123 ret = drm_gem_handle_create(file_priv, obj, &handle);
124 mutex_lock(&dev->struct_mutex);
125 drm_gem_object_handle_unreference(obj);
126 mutex_unlock(&dev->struct_mutex);
127
128 if (ret)
129 return ret;
130
131 args->handle = handle;
132
133 return 0;
134}
135
Eric Anholt40123c12009-03-09 13:42:30 -0700136static inline int
Eric Anholteb014592009-03-10 11:44:52 -0700137fast_shmem_read(struct page **pages,
138 loff_t page_base, int page_offset,
139 char __user *data,
140 int length)
141{
142 char __iomem *vaddr;
Florian Mickler2bc43b52009-04-06 22:55:41 +0200143 int unwritten;
Eric Anholteb014592009-03-10 11:44:52 -0700144
145 vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0);
146 if (vaddr == NULL)
147 return -ENOMEM;
Florian Mickler2bc43b52009-04-06 22:55:41 +0200148 unwritten = __copy_to_user_inatomic(data, vaddr + page_offset, length);
Eric Anholteb014592009-03-10 11:44:52 -0700149 kunmap_atomic(vaddr, KM_USER0);
150
Florian Mickler2bc43b52009-04-06 22:55:41 +0200151 if (unwritten)
152 return -EFAULT;
153
154 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700155}
156
Eric Anholt280b7132009-03-12 16:56:27 -0700157static int i915_gem_object_needs_bit17_swizzle(struct drm_gem_object *obj)
158{
159 drm_i915_private_t *dev_priv = obj->dev->dev_private;
160 struct drm_i915_gem_object *obj_priv = obj->driver_private;
161
162 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
163 obj_priv->tiling_mode != I915_TILING_NONE;
164}
165
Eric Anholteb014592009-03-10 11:44:52 -0700166static inline int
Eric Anholt40123c12009-03-09 13:42:30 -0700167slow_shmem_copy(struct page *dst_page,
168 int dst_offset,
169 struct page *src_page,
170 int src_offset,
171 int length)
172{
173 char *dst_vaddr, *src_vaddr;
174
175 dst_vaddr = kmap_atomic(dst_page, KM_USER0);
176 if (dst_vaddr == NULL)
177 return -ENOMEM;
178
179 src_vaddr = kmap_atomic(src_page, KM_USER1);
180 if (src_vaddr == NULL) {
181 kunmap_atomic(dst_vaddr, KM_USER0);
182 return -ENOMEM;
183 }
184
185 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
186
187 kunmap_atomic(src_vaddr, KM_USER1);
188 kunmap_atomic(dst_vaddr, KM_USER0);
189
190 return 0;
191}
192
Eric Anholt280b7132009-03-12 16:56:27 -0700193static inline int
194slow_shmem_bit17_copy(struct page *gpu_page,
195 int gpu_offset,
196 struct page *cpu_page,
197 int cpu_offset,
198 int length,
199 int is_read)
200{
201 char *gpu_vaddr, *cpu_vaddr;
202
203 /* Use the unswizzled path if this page isn't affected. */
204 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
205 if (is_read)
206 return slow_shmem_copy(cpu_page, cpu_offset,
207 gpu_page, gpu_offset, length);
208 else
209 return slow_shmem_copy(gpu_page, gpu_offset,
210 cpu_page, cpu_offset, length);
211 }
212
213 gpu_vaddr = kmap_atomic(gpu_page, KM_USER0);
214 if (gpu_vaddr == NULL)
215 return -ENOMEM;
216
217 cpu_vaddr = kmap_atomic(cpu_page, KM_USER1);
218 if (cpu_vaddr == NULL) {
219 kunmap_atomic(gpu_vaddr, KM_USER0);
220 return -ENOMEM;
221 }
222
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
245 kunmap_atomic(cpu_vaddr, KM_USER1);
246 kunmap_atomic(gpu_vaddr, KM_USER0);
247
248 return 0;
249}
250
Eric Anholt673a3942008-07-30 12:06:12 -0700251/**
Eric Anholteb014592009-03-10 11:44:52 -0700252 * This is the fast shmem pread path, which attempts to copy_from_user directly
253 * from the backing pages of the object to the user's address space. On a
254 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
255 */
256static int
257i915_gem_shmem_pread_fast(struct drm_device *dev, struct drm_gem_object *obj,
258 struct drm_i915_gem_pread *args,
259 struct drm_file *file_priv)
260{
261 struct drm_i915_gem_object *obj_priv = obj->driver_private;
262 ssize_t remain;
263 loff_t offset, page_base;
264 char __user *user_data;
265 int page_offset, page_length;
266 int ret;
267
268 user_data = (char __user *) (uintptr_t) args->data_ptr;
269 remain = args->size;
270
271 mutex_lock(&dev->struct_mutex);
272
273 ret = i915_gem_object_get_pages(obj);
274 if (ret != 0)
275 goto fail_unlock;
276
277 ret = i915_gem_object_set_cpu_read_domain_range(obj, args->offset,
278 args->size);
279 if (ret != 0)
280 goto fail_put_pages;
281
282 obj_priv = obj->driver_private;
283 offset = args->offset;
284
285 while (remain > 0) {
286 /* Operation in this page
287 *
288 * page_base = page offset within aperture
289 * page_offset = offset within page
290 * page_length = bytes to copy for this page
291 */
292 page_base = (offset & ~(PAGE_SIZE-1));
293 page_offset = offset & (PAGE_SIZE-1);
294 page_length = remain;
295 if ((page_offset + remain) > PAGE_SIZE)
296 page_length = PAGE_SIZE - page_offset;
297
298 ret = fast_shmem_read(obj_priv->pages,
299 page_base, page_offset,
300 user_data, page_length);
301 if (ret)
302 goto fail_put_pages;
303
304 remain -= page_length;
305 user_data += page_length;
306 offset += page_length;
307 }
308
309fail_put_pages:
310 i915_gem_object_put_pages(obj);
311fail_unlock:
312 mutex_unlock(&dev->struct_mutex);
313
314 return ret;
315}
316
317/**
318 * This is the fallback shmem pread path, which allocates temporary storage
319 * in kernel space to copy_to_user into outside of the struct_mutex, so we
320 * can copy out of the object's backing pages while holding the struct mutex
321 * and not take page faults.
322 */
323static int
324i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj,
325 struct drm_i915_gem_pread *args,
326 struct drm_file *file_priv)
327{
328 struct drm_i915_gem_object *obj_priv = obj->driver_private;
329 struct mm_struct *mm = current->mm;
330 struct page **user_pages;
331 ssize_t remain;
332 loff_t offset, pinned_pages, i;
333 loff_t first_data_page, last_data_page, num_pages;
334 int shmem_page_index, shmem_page_offset;
335 int data_page_index, data_page_offset;
336 int page_length;
337 int ret;
338 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700339 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700340
341 remain = args->size;
342
343 /* Pin the user pages containing the data. We can't fault while
344 * holding the struct mutex, yet we want to hold it while
345 * dereferencing the user data.
346 */
347 first_data_page = data_ptr / PAGE_SIZE;
348 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
349 num_pages = last_data_page - first_data_page + 1;
350
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700351 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700352 if (user_pages == NULL)
353 return -ENOMEM;
354
355 down_read(&mm->mmap_sem);
356 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700357 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700358 up_read(&mm->mmap_sem);
359 if (pinned_pages < num_pages) {
360 ret = -EFAULT;
361 goto fail_put_user_pages;
362 }
363
Eric Anholt280b7132009-03-12 16:56:27 -0700364 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
365
Eric Anholteb014592009-03-10 11:44:52 -0700366 mutex_lock(&dev->struct_mutex);
367
368 ret = i915_gem_object_get_pages(obj);
369 if (ret != 0)
370 goto fail_unlock;
371
372 ret = i915_gem_object_set_cpu_read_domain_range(obj, args->offset,
373 args->size);
374 if (ret != 0)
375 goto fail_put_pages;
376
377 obj_priv = obj->driver_private;
378 offset = args->offset;
379
380 while (remain > 0) {
381 /* Operation in this page
382 *
383 * shmem_page_index = page number within shmem file
384 * shmem_page_offset = offset within page in shmem file
385 * data_page_index = page number in get_user_pages return
386 * data_page_offset = offset with data_page_index page.
387 * page_length = bytes to copy for this page
388 */
389 shmem_page_index = offset / PAGE_SIZE;
390 shmem_page_offset = offset & ~PAGE_MASK;
391 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
392 data_page_offset = data_ptr & ~PAGE_MASK;
393
394 page_length = remain;
395 if ((shmem_page_offset + page_length) > PAGE_SIZE)
396 page_length = PAGE_SIZE - shmem_page_offset;
397 if ((data_page_offset + page_length) > PAGE_SIZE)
398 page_length = PAGE_SIZE - data_page_offset;
399
Eric Anholt280b7132009-03-12 16:56:27 -0700400 if (do_bit17_swizzling) {
401 ret = slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index],
402 shmem_page_offset,
403 user_pages[data_page_index],
404 data_page_offset,
405 page_length,
406 1);
407 } else {
408 ret = slow_shmem_copy(user_pages[data_page_index],
409 data_page_offset,
410 obj_priv->pages[shmem_page_index],
411 shmem_page_offset,
412 page_length);
413 }
Eric Anholteb014592009-03-10 11:44:52 -0700414 if (ret)
415 goto fail_put_pages;
416
417 remain -= page_length;
418 data_ptr += page_length;
419 offset += page_length;
420 }
421
422fail_put_pages:
423 i915_gem_object_put_pages(obj);
424fail_unlock:
425 mutex_unlock(&dev->struct_mutex);
426fail_put_user_pages:
427 for (i = 0; i < pinned_pages; i++) {
428 SetPageDirty(user_pages[i]);
429 page_cache_release(user_pages[i]);
430 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700431 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700432
433 return ret;
434}
435
Eric Anholt673a3942008-07-30 12:06:12 -0700436/**
437 * Reads data from the object referenced by handle.
438 *
439 * On error, the contents of *data are undefined.
440 */
441int
442i915_gem_pread_ioctl(struct drm_device *dev, void *data,
443 struct drm_file *file_priv)
444{
445 struct drm_i915_gem_pread *args = data;
446 struct drm_gem_object *obj;
447 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -0700448 int ret;
449
450 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
451 if (obj == NULL)
452 return -EBADF;
453 obj_priv = obj->driver_private;
454
455 /* Bounds check source.
456 *
457 * XXX: This could use review for overflow issues...
458 */
459 if (args->offset > obj->size || args->size > obj->size ||
460 args->offset + args->size > obj->size) {
461 drm_gem_object_unreference(obj);
462 return -EINVAL;
463 }
464
Eric Anholt280b7132009-03-12 16:56:27 -0700465 if (i915_gem_object_needs_bit17_swizzle(obj)) {
Eric Anholteb014592009-03-10 11:44:52 -0700466 ret = i915_gem_shmem_pread_slow(dev, obj, args, file_priv);
Eric Anholt280b7132009-03-12 16:56:27 -0700467 } else {
468 ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv);
469 if (ret != 0)
470 ret = i915_gem_shmem_pread_slow(dev, obj, args,
471 file_priv);
472 }
Eric Anholt673a3942008-07-30 12:06:12 -0700473
474 drm_gem_object_unreference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700475
Eric Anholteb014592009-03-10 11:44:52 -0700476 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700477}
478
Keith Packard0839ccb2008-10-30 19:38:48 -0700479/* This is the fast write path which cannot handle
480 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700481 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700482
Keith Packard0839ccb2008-10-30 19:38:48 -0700483static inline int
484fast_user_write(struct io_mapping *mapping,
485 loff_t page_base, int page_offset,
486 char __user *user_data,
487 int length)
488{
489 char *vaddr_atomic;
490 unsigned long unwritten;
491
492 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
493 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
494 user_data, length);
495 io_mapping_unmap_atomic(vaddr_atomic);
496 if (unwritten)
497 return -EFAULT;
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700498 return 0;
Keith Packard0839ccb2008-10-30 19:38:48 -0700499}
500
501/* Here's the write path which can sleep for
502 * page faults
503 */
504
505static inline int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700506slow_kernel_write(struct io_mapping *mapping,
507 loff_t gtt_base, int gtt_offset,
508 struct page *user_page, int user_offset,
509 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700510{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700511 char *src_vaddr, *dst_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700512 unsigned long unwritten;
513
Eric Anholt3de09aa2009-03-09 09:42:23 -0700514 dst_vaddr = io_mapping_map_atomic_wc(mapping, gtt_base);
515 src_vaddr = kmap_atomic(user_page, KM_USER1);
516 unwritten = __copy_from_user_inatomic_nocache(dst_vaddr + gtt_offset,
517 src_vaddr + user_offset,
518 length);
519 kunmap_atomic(src_vaddr, KM_USER1);
520 io_mapping_unmap_atomic(dst_vaddr);
Keith Packard0839ccb2008-10-30 19:38:48 -0700521 if (unwritten)
522 return -EFAULT;
523 return 0;
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700524}
525
Eric Anholt40123c12009-03-09 13:42:30 -0700526static inline int
527fast_shmem_write(struct page **pages,
528 loff_t page_base, int page_offset,
529 char __user *data,
530 int length)
531{
532 char __iomem *vaddr;
Dave Airlied0088772009-03-28 20:29:48 -0400533 unsigned long unwritten;
Eric Anholt40123c12009-03-09 13:42:30 -0700534
535 vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0);
536 if (vaddr == NULL)
537 return -ENOMEM;
Dave Airlied0088772009-03-28 20:29:48 -0400538 unwritten = __copy_from_user_inatomic(vaddr + page_offset, data, length);
Eric Anholt40123c12009-03-09 13:42:30 -0700539 kunmap_atomic(vaddr, KM_USER0);
540
Dave Airlied0088772009-03-28 20:29:48 -0400541 if (unwritten)
542 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700543 return 0;
544}
545
Eric Anholt3de09aa2009-03-09 09:42:23 -0700546/**
547 * This is the fast pwrite path, where we copy the data directly from the
548 * user into the GTT, uncached.
549 */
Eric Anholt673a3942008-07-30 12:06:12 -0700550static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700551i915_gem_gtt_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
552 struct drm_i915_gem_pwrite *args,
553 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700554{
555 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Keith Packard0839ccb2008-10-30 19:38:48 -0700556 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700557 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700558 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700559 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700560 int page_offset, page_length;
561 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700562
563 user_data = (char __user *) (uintptr_t) args->data_ptr;
564 remain = args->size;
565 if (!access_ok(VERIFY_READ, user_data, remain))
566 return -EFAULT;
567
568
569 mutex_lock(&dev->struct_mutex);
570 ret = i915_gem_object_pin(obj, 0);
571 if (ret) {
572 mutex_unlock(&dev->struct_mutex);
573 return ret;
574 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800575 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -0700576 if (ret)
577 goto fail;
578
579 obj_priv = obj->driver_private;
580 offset = obj_priv->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700581
582 while (remain > 0) {
583 /* Operation in this page
584 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700585 * page_base = page offset within aperture
586 * page_offset = offset within page
587 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700588 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700589 page_base = (offset & ~(PAGE_SIZE-1));
590 page_offset = offset & (PAGE_SIZE-1);
591 page_length = remain;
592 if ((page_offset + remain) > PAGE_SIZE)
593 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700594
Keith Packard0839ccb2008-10-30 19:38:48 -0700595 ret = fast_user_write (dev_priv->mm.gtt_mapping, page_base,
596 page_offset, user_data, page_length);
Eric Anholt673a3942008-07-30 12:06:12 -0700597
Keith Packard0839ccb2008-10-30 19:38:48 -0700598 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700599 * source page isn't available. Return the error and we'll
600 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700601 */
Eric Anholt3de09aa2009-03-09 09:42:23 -0700602 if (ret)
603 goto fail;
Eric Anholt673a3942008-07-30 12:06:12 -0700604
Keith Packard0839ccb2008-10-30 19:38:48 -0700605 remain -= page_length;
606 user_data += page_length;
607 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700608 }
Eric Anholt673a3942008-07-30 12:06:12 -0700609
610fail:
611 i915_gem_object_unpin(obj);
612 mutex_unlock(&dev->struct_mutex);
613
614 return ret;
615}
616
Eric Anholt3de09aa2009-03-09 09:42:23 -0700617/**
618 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
619 * the memory and maps it using kmap_atomic for copying.
620 *
621 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
622 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
623 */
Eric Anholt3043c602008-10-02 12:24:47 -0700624static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700625i915_gem_gtt_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
626 struct drm_i915_gem_pwrite *args,
627 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700628{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700629 struct drm_i915_gem_object *obj_priv = obj->driver_private;
630 drm_i915_private_t *dev_priv = dev->dev_private;
631 ssize_t remain;
632 loff_t gtt_page_base, offset;
633 loff_t first_data_page, last_data_page, num_pages;
634 loff_t pinned_pages, i;
635 struct page **user_pages;
636 struct mm_struct *mm = current->mm;
637 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700638 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700639 uint64_t data_ptr = args->data_ptr;
640
641 remain = args->size;
642
643 /* Pin the user pages containing the data. We can't fault while
644 * holding the struct mutex, and all of the pwrite implementations
645 * want to hold it while dereferencing the user data.
646 */
647 first_data_page = data_ptr / PAGE_SIZE;
648 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
649 num_pages = last_data_page - first_data_page + 1;
650
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700651 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700652 if (user_pages == NULL)
653 return -ENOMEM;
654
655 down_read(&mm->mmap_sem);
656 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
657 num_pages, 0, 0, user_pages, NULL);
658 up_read(&mm->mmap_sem);
659 if (pinned_pages < num_pages) {
660 ret = -EFAULT;
661 goto out_unpin_pages;
662 }
663
664 mutex_lock(&dev->struct_mutex);
665 ret = i915_gem_object_pin(obj, 0);
666 if (ret)
667 goto out_unlock;
668
669 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
670 if (ret)
671 goto out_unpin_object;
672
673 obj_priv = obj->driver_private;
674 offset = obj_priv->gtt_offset + args->offset;
675
676 while (remain > 0) {
677 /* Operation in this page
678 *
679 * gtt_page_base = page offset within aperture
680 * gtt_page_offset = offset within page in aperture
681 * data_page_index = page number in get_user_pages return
682 * data_page_offset = offset with data_page_index page.
683 * page_length = bytes to copy for this page
684 */
685 gtt_page_base = offset & PAGE_MASK;
686 gtt_page_offset = offset & ~PAGE_MASK;
687 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
688 data_page_offset = data_ptr & ~PAGE_MASK;
689
690 page_length = remain;
691 if ((gtt_page_offset + page_length) > PAGE_SIZE)
692 page_length = PAGE_SIZE - gtt_page_offset;
693 if ((data_page_offset + page_length) > PAGE_SIZE)
694 page_length = PAGE_SIZE - data_page_offset;
695
696 ret = slow_kernel_write(dev_priv->mm.gtt_mapping,
697 gtt_page_base, gtt_page_offset,
698 user_pages[data_page_index],
699 data_page_offset,
700 page_length);
701
702 /* If we get a fault while copying data, then (presumably) our
703 * source page isn't available. Return the error and we'll
704 * retry in the slow path.
705 */
706 if (ret)
707 goto out_unpin_object;
708
709 remain -= page_length;
710 offset += page_length;
711 data_ptr += page_length;
712 }
713
714out_unpin_object:
715 i915_gem_object_unpin(obj);
716out_unlock:
717 mutex_unlock(&dev->struct_mutex);
718out_unpin_pages:
719 for (i = 0; i < pinned_pages; i++)
720 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700721 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700722
723 return ret;
724}
725
Eric Anholt40123c12009-03-09 13:42:30 -0700726/**
727 * This is the fast shmem pwrite path, which attempts to directly
728 * copy_from_user into the kmapped pages backing the object.
729 */
Eric Anholt673a3942008-07-30 12:06:12 -0700730static int
Eric Anholt40123c12009-03-09 13:42:30 -0700731i915_gem_shmem_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
732 struct drm_i915_gem_pwrite *args,
733 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700734{
Eric Anholt40123c12009-03-09 13:42:30 -0700735 struct drm_i915_gem_object *obj_priv = obj->driver_private;
736 ssize_t remain;
737 loff_t offset, page_base;
738 char __user *user_data;
739 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700740 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700741
742 user_data = (char __user *) (uintptr_t) args->data_ptr;
743 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700744
745 mutex_lock(&dev->struct_mutex);
746
Eric Anholt40123c12009-03-09 13:42:30 -0700747 ret = i915_gem_object_get_pages(obj);
748 if (ret != 0)
749 goto fail_unlock;
750
Eric Anholte47c68e2008-11-14 13:35:19 -0800751 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Eric Anholt40123c12009-03-09 13:42:30 -0700752 if (ret != 0)
753 goto fail_put_pages;
Eric Anholt673a3942008-07-30 12:06:12 -0700754
Eric Anholt40123c12009-03-09 13:42:30 -0700755 obj_priv = obj->driver_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700756 offset = args->offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700757 obj_priv->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700758
Eric Anholt40123c12009-03-09 13:42:30 -0700759 while (remain > 0) {
760 /* Operation in this page
761 *
762 * page_base = page offset within aperture
763 * page_offset = offset within page
764 * page_length = bytes to copy for this page
765 */
766 page_base = (offset & ~(PAGE_SIZE-1));
767 page_offset = offset & (PAGE_SIZE-1);
768 page_length = remain;
769 if ((page_offset + remain) > PAGE_SIZE)
770 page_length = PAGE_SIZE - page_offset;
771
772 ret = fast_shmem_write(obj_priv->pages,
773 page_base, page_offset,
774 user_data, page_length);
775 if (ret)
776 goto fail_put_pages;
777
778 remain -= page_length;
779 user_data += page_length;
780 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700781 }
782
Eric Anholt40123c12009-03-09 13:42:30 -0700783fail_put_pages:
784 i915_gem_object_put_pages(obj);
785fail_unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700786 mutex_unlock(&dev->struct_mutex);
787
Eric Anholt40123c12009-03-09 13:42:30 -0700788 return ret;
789}
790
791/**
792 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
793 * the memory and maps it using kmap_atomic for copying.
794 *
795 * This avoids taking mmap_sem for faulting on the user's address while the
796 * struct_mutex is held.
797 */
798static int
799i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
800 struct drm_i915_gem_pwrite *args,
801 struct drm_file *file_priv)
802{
803 struct drm_i915_gem_object *obj_priv = obj->driver_private;
804 struct mm_struct *mm = current->mm;
805 struct page **user_pages;
806 ssize_t remain;
807 loff_t offset, pinned_pages, i;
808 loff_t first_data_page, last_data_page, num_pages;
809 int shmem_page_index, shmem_page_offset;
810 int data_page_index, data_page_offset;
811 int page_length;
812 int ret;
813 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700814 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700815
816 remain = args->size;
817
818 /* Pin the user pages containing the data. We can't fault while
819 * holding the struct mutex, and all of the pwrite implementations
820 * want to hold it while dereferencing the user data.
821 */
822 first_data_page = data_ptr / PAGE_SIZE;
823 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
824 num_pages = last_data_page - first_data_page + 1;
825
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700826 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700827 if (user_pages == NULL)
828 return -ENOMEM;
829
830 down_read(&mm->mmap_sem);
831 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
832 num_pages, 0, 0, user_pages, NULL);
833 up_read(&mm->mmap_sem);
834 if (pinned_pages < num_pages) {
835 ret = -EFAULT;
836 goto fail_put_user_pages;
837 }
838
Eric Anholt280b7132009-03-12 16:56:27 -0700839 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
840
Eric Anholt40123c12009-03-09 13:42:30 -0700841 mutex_lock(&dev->struct_mutex);
842
843 ret = i915_gem_object_get_pages(obj);
844 if (ret != 0)
845 goto fail_unlock;
846
847 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
848 if (ret != 0)
849 goto fail_put_pages;
850
851 obj_priv = obj->driver_private;
852 offset = args->offset;
853 obj_priv->dirty = 1;
854
855 while (remain > 0) {
856 /* Operation in this page
857 *
858 * shmem_page_index = page number within shmem file
859 * shmem_page_offset = offset within page in shmem file
860 * data_page_index = page number in get_user_pages return
861 * data_page_offset = offset with data_page_index page.
862 * page_length = bytes to copy for this page
863 */
864 shmem_page_index = offset / PAGE_SIZE;
865 shmem_page_offset = offset & ~PAGE_MASK;
866 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
867 data_page_offset = data_ptr & ~PAGE_MASK;
868
869 page_length = remain;
870 if ((shmem_page_offset + page_length) > PAGE_SIZE)
871 page_length = PAGE_SIZE - shmem_page_offset;
872 if ((data_page_offset + page_length) > PAGE_SIZE)
873 page_length = PAGE_SIZE - data_page_offset;
874
Eric Anholt280b7132009-03-12 16:56:27 -0700875 if (do_bit17_swizzling) {
876 ret = slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index],
877 shmem_page_offset,
878 user_pages[data_page_index],
879 data_page_offset,
880 page_length,
881 0);
882 } else {
883 ret = slow_shmem_copy(obj_priv->pages[shmem_page_index],
884 shmem_page_offset,
885 user_pages[data_page_index],
886 data_page_offset,
887 page_length);
888 }
Eric Anholt40123c12009-03-09 13:42:30 -0700889 if (ret)
890 goto fail_put_pages;
891
892 remain -= page_length;
893 data_ptr += page_length;
894 offset += page_length;
895 }
896
897fail_put_pages:
898 i915_gem_object_put_pages(obj);
899fail_unlock:
900 mutex_unlock(&dev->struct_mutex);
901fail_put_user_pages:
902 for (i = 0; i < pinned_pages; i++)
903 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700904 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -0700905
906 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700907}
908
909/**
910 * Writes data to the object referenced by handle.
911 *
912 * On error, the contents of the buffer that were to be modified are undefined.
913 */
914int
915i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
916 struct drm_file *file_priv)
917{
918 struct drm_i915_gem_pwrite *args = data;
919 struct drm_gem_object *obj;
920 struct drm_i915_gem_object *obj_priv;
921 int ret = 0;
922
923 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
924 if (obj == NULL)
925 return -EBADF;
926 obj_priv = obj->driver_private;
927
928 /* Bounds check destination.
929 *
930 * XXX: This could use review for overflow issues...
931 */
932 if (args->offset > obj->size || args->size > obj->size ||
933 args->offset + args->size > obj->size) {
934 drm_gem_object_unreference(obj);
935 return -EINVAL;
936 }
937
938 /* We can only do the GTT pwrite on untiled buffers, as otherwise
939 * it would end up going through the fenced access, and we'll get
940 * different detiling behavior between reading and writing.
941 * pread/pwrite currently are reading and writing from the CPU
942 * perspective, requiring manual detiling by the client.
943 */
Dave Airlie71acb5e2008-12-30 20:31:46 +1000944 if (obj_priv->phys_obj)
945 ret = i915_gem_phys_pwrite(dev, obj, args, file_priv);
946 else if (obj_priv->tiling_mode == I915_TILING_NONE &&
Eric Anholt3de09aa2009-03-09 09:42:23 -0700947 dev->gtt_total != 0) {
948 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file_priv);
949 if (ret == -EFAULT) {
950 ret = i915_gem_gtt_pwrite_slow(dev, obj, args,
951 file_priv);
952 }
Eric Anholt280b7132009-03-12 16:56:27 -0700953 } else if (i915_gem_object_needs_bit17_swizzle(obj)) {
954 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file_priv);
Eric Anholt40123c12009-03-09 13:42:30 -0700955 } else {
956 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file_priv);
957 if (ret == -EFAULT) {
958 ret = i915_gem_shmem_pwrite_slow(dev, obj, args,
959 file_priv);
960 }
961 }
Eric Anholt673a3942008-07-30 12:06:12 -0700962
963#if WATCH_PWRITE
964 if (ret)
965 DRM_INFO("pwrite failed %d\n", ret);
966#endif
967
968 drm_gem_object_unreference(obj);
969
970 return ret;
971}
972
973/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800974 * Called when user space prepares to use an object with the CPU, either
975 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700976 */
977int
978i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
979 struct drm_file *file_priv)
980{
981 struct drm_i915_gem_set_domain *args = data;
982 struct drm_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800983 uint32_t read_domains = args->read_domains;
984 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700985 int ret;
986
987 if (!(dev->driver->driver_features & DRIVER_GEM))
988 return -ENODEV;
989
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800990 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100991 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800992 return -EINVAL;
993
Chris Wilson21d509e2009-06-06 09:46:02 +0100994 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800995 return -EINVAL;
996
997 /* Having something in the write domain implies it's in the read
998 * domain, and only that read domain. Enforce that in the request.
999 */
1000 if (write_domain != 0 && read_domains != write_domain)
1001 return -EINVAL;
1002
Eric Anholt673a3942008-07-30 12:06:12 -07001003 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1004 if (obj == NULL)
1005 return -EBADF;
1006
1007 mutex_lock(&dev->struct_mutex);
1008#if WATCH_BUF
Krzysztof Halasacfd43c02009-06-20 00:31:28 +02001009 DRM_INFO("set_domain_ioctl %p(%zd), %08x %08x\n",
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001010 obj, obj->size, read_domains, write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07001011#endif
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001012 if (read_domains & I915_GEM_DOMAIN_GTT) {
1013 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001014
1015 /* Silently promote "you're not bound, there was nothing to do"
1016 * to success, since the client was just asking us to
1017 * make sure everything was done.
1018 */
1019 if (ret == -EINVAL)
1020 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001021 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001022 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001023 }
1024
Eric Anholt673a3942008-07-30 12:06:12 -07001025 drm_gem_object_unreference(obj);
1026 mutex_unlock(&dev->struct_mutex);
1027 return ret;
1028}
1029
1030/**
1031 * Called when user space has done writes to this buffer
1032 */
1033int
1034i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
1035 struct drm_file *file_priv)
1036{
1037 struct drm_i915_gem_sw_finish *args = data;
1038 struct drm_gem_object *obj;
1039 struct drm_i915_gem_object *obj_priv;
1040 int ret = 0;
1041
1042 if (!(dev->driver->driver_features & DRIVER_GEM))
1043 return -ENODEV;
1044
1045 mutex_lock(&dev->struct_mutex);
1046 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1047 if (obj == NULL) {
1048 mutex_unlock(&dev->struct_mutex);
1049 return -EBADF;
1050 }
1051
1052#if WATCH_BUF
Krzysztof Halasacfd43c02009-06-20 00:31:28 +02001053 DRM_INFO("%s: sw_finish %d (%p %zd)\n",
Eric Anholt673a3942008-07-30 12:06:12 -07001054 __func__, args->handle, obj, obj->size);
1055#endif
1056 obj_priv = obj->driver_private;
1057
1058 /* Pinned buffers may be scanout, so flush the cache */
Eric Anholte47c68e2008-11-14 13:35:19 -08001059 if (obj_priv->pin_count)
1060 i915_gem_object_flush_cpu_write_domain(obj);
1061
Eric Anholt673a3942008-07-30 12:06:12 -07001062 drm_gem_object_unreference(obj);
1063 mutex_unlock(&dev->struct_mutex);
1064 return ret;
1065}
1066
1067/**
1068 * Maps the contents of an object, returning the address it is mapped
1069 * into.
1070 *
1071 * While the mapping holds a reference on the contents of the object, it doesn't
1072 * imply a ref on the object itself.
1073 */
1074int
1075i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
1076 struct drm_file *file_priv)
1077{
1078 struct drm_i915_gem_mmap *args = data;
1079 struct drm_gem_object *obj;
1080 loff_t offset;
1081 unsigned long addr;
1082
1083 if (!(dev->driver->driver_features & DRIVER_GEM))
1084 return -ENODEV;
1085
1086 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1087 if (obj == NULL)
1088 return -EBADF;
1089
1090 offset = args->offset;
1091
1092 down_write(&current->mm->mmap_sem);
1093 addr = do_mmap(obj->filp, 0, args->size,
1094 PROT_READ | PROT_WRITE, MAP_SHARED,
1095 args->offset);
1096 up_write(&current->mm->mmap_sem);
1097 mutex_lock(&dev->struct_mutex);
1098 drm_gem_object_unreference(obj);
1099 mutex_unlock(&dev->struct_mutex);
1100 if (IS_ERR((void *)addr))
1101 return addr;
1102
1103 args->addr_ptr = (uint64_t) addr;
1104
1105 return 0;
1106}
1107
Jesse Barnesde151cf2008-11-12 10:03:55 -08001108/**
1109 * i915_gem_fault - fault a page into the GTT
1110 * vma: VMA in question
1111 * vmf: fault info
1112 *
1113 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1114 * from userspace. The fault handler takes care of binding the object to
1115 * the GTT (if needed), allocating and programming a fence register (again,
1116 * only if needed based on whether the old reg is still valid or the object
1117 * is tiled) and inserting a new PTE into the faulting process.
1118 *
1119 * Note that the faulting process may involve evicting existing objects
1120 * from the GTT and/or fence registers to make room. So performance may
1121 * suffer if the GTT working set is large or there are few fence registers
1122 * left.
1123 */
1124int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1125{
1126 struct drm_gem_object *obj = vma->vm_private_data;
1127 struct drm_device *dev = obj->dev;
1128 struct drm_i915_private *dev_priv = dev->dev_private;
1129 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1130 pgoff_t page_offset;
1131 unsigned long pfn;
1132 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001133 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001134
1135 /* We don't use vmf->pgoff since that has the fake offset */
1136 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1137 PAGE_SHIFT;
1138
1139 /* Now bind it into the GTT if needed */
1140 mutex_lock(&dev->struct_mutex);
1141 if (!obj_priv->gtt_space) {
1142 ret = i915_gem_object_bind_to_gtt(obj, obj_priv->gtt_alignment);
1143 if (ret) {
1144 mutex_unlock(&dev->struct_mutex);
1145 return VM_FAULT_SIGBUS;
1146 }
Kristian Høgsberg07f4f3e2009-05-27 14:37:28 -04001147
1148 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1149 if (ret) {
1150 mutex_unlock(&dev->struct_mutex);
1151 return VM_FAULT_SIGBUS;
1152 }
1153
Jesse Barnes14b60392009-05-20 16:47:08 -04001154 list_add_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001155 }
1156
1157 /* Need a new fence register? */
1158 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001159 obj_priv->tiling_mode != I915_TILING_NONE) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01001160 ret = i915_gem_object_get_fence_reg(obj);
Chris Wilson7d8d58b2009-02-04 14:15:10 +00001161 if (ret) {
1162 mutex_unlock(&dev->struct_mutex);
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001163 return VM_FAULT_SIGBUS;
Chris Wilson7d8d58b2009-02-04 14:15:10 +00001164 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001165 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001166
1167 pfn = ((dev->agp->base + obj_priv->gtt_offset) >> PAGE_SHIFT) +
1168 page_offset;
1169
1170 /* Finally, remap it using the new GTT offset */
1171 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
1172
1173 mutex_unlock(&dev->struct_mutex);
1174
1175 switch (ret) {
1176 case -ENOMEM:
1177 case -EAGAIN:
1178 return VM_FAULT_OOM;
1179 case -EFAULT:
Jesse Barnes959b8872009-03-20 14:16:33 -07001180 case -EINVAL:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001181 return VM_FAULT_SIGBUS;
1182 default:
1183 return VM_FAULT_NOPAGE;
1184 }
1185}
1186
1187/**
1188 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1189 * @obj: obj in question
1190 *
1191 * GEM memory mapping works by handing back to userspace a fake mmap offset
1192 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1193 * up the object based on the offset and sets up the various memory mapping
1194 * structures.
1195 *
1196 * This routine allocates and attaches a fake offset for @obj.
1197 */
1198static int
1199i915_gem_create_mmap_offset(struct drm_gem_object *obj)
1200{
1201 struct drm_device *dev = obj->dev;
1202 struct drm_gem_mm *mm = dev->mm_private;
1203 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1204 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001205 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001206 int ret = 0;
1207
1208 /* Set the object up for mmap'ing */
1209 list = &obj->map_list;
Eric Anholt9a298b22009-03-24 12:23:04 -07001210 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001211 if (!list->map)
1212 return -ENOMEM;
1213
1214 map = list->map;
1215 map->type = _DRM_GEM;
1216 map->size = obj->size;
1217 map->handle = obj;
1218
1219 /* Get a DRM GEM mmap offset allocated... */
1220 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
1221 obj->size / PAGE_SIZE, 0, 0);
1222 if (!list->file_offset_node) {
1223 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
1224 ret = -ENOMEM;
1225 goto out_free_list;
1226 }
1227
1228 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
1229 obj->size / PAGE_SIZE, 0);
1230 if (!list->file_offset_node) {
1231 ret = -ENOMEM;
1232 goto out_free_list;
1233 }
1234
1235 list->hash.key = list->file_offset_node->start;
1236 if (drm_ht_insert_item(&mm->offset_hash, &list->hash)) {
1237 DRM_ERROR("failed to add to map hash\n");
1238 goto out_free_mm;
1239 }
1240
1241 /* By now we should be all set, any drm_mmap request on the offset
1242 * below will get to our mmap & fault handler */
1243 obj_priv->mmap_offset = ((uint64_t) list->hash.key) << PAGE_SHIFT;
1244
1245 return 0;
1246
1247out_free_mm:
1248 drm_mm_put_block(list->file_offset_node);
1249out_free_list:
Eric Anholt9a298b22009-03-24 12:23:04 -07001250 kfree(list->map);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001251
1252 return ret;
1253}
1254
Chris Wilson901782b2009-07-10 08:18:50 +01001255/**
1256 * i915_gem_release_mmap - remove physical page mappings
1257 * @obj: obj in question
1258 *
1259 * Preserve the reservation of the mmaping with the DRM core code, but
1260 * relinquish ownership of the pages back to the system.
1261 *
1262 * It is vital that we remove the page mapping if we have mapped a tiled
1263 * object through the GTT and then lose the fence register due to
1264 * resource pressure. Similarly if the object has been moved out of the
1265 * aperture, than pages mapped into userspace must be revoked. Removing the
1266 * mapping will then trigger a page fault on the next user access, allowing
1267 * fixup by i915_gem_fault().
1268 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001269void
Chris Wilson901782b2009-07-10 08:18:50 +01001270i915_gem_release_mmap(struct drm_gem_object *obj)
1271{
1272 struct drm_device *dev = obj->dev;
1273 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1274
1275 if (dev->dev_mapping)
1276 unmap_mapping_range(dev->dev_mapping,
1277 obj_priv->mmap_offset, obj->size, 1);
1278}
1279
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001280static void
1281i915_gem_free_mmap_offset(struct drm_gem_object *obj)
1282{
1283 struct drm_device *dev = obj->dev;
1284 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1285 struct drm_gem_mm *mm = dev->mm_private;
1286 struct drm_map_list *list;
1287
1288 list = &obj->map_list;
1289 drm_ht_remove_item(&mm->offset_hash, &list->hash);
1290
1291 if (list->file_offset_node) {
1292 drm_mm_put_block(list->file_offset_node);
1293 list->file_offset_node = NULL;
1294 }
1295
1296 if (list->map) {
Eric Anholt9a298b22009-03-24 12:23:04 -07001297 kfree(list->map);
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001298 list->map = NULL;
1299 }
1300
1301 obj_priv->mmap_offset = 0;
1302}
1303
Jesse Barnesde151cf2008-11-12 10:03:55 -08001304/**
1305 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1306 * @obj: object to check
1307 *
1308 * Return the required GTT alignment for an object, taking into account
1309 * potential fence register mapping if needed.
1310 */
1311static uint32_t
1312i915_gem_get_gtt_alignment(struct drm_gem_object *obj)
1313{
1314 struct drm_device *dev = obj->dev;
1315 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1316 int start, i;
1317
1318 /*
1319 * Minimum alignment is 4k (GTT page size), but might be greater
1320 * if a fence register is needed for the object.
1321 */
1322 if (IS_I965G(dev) || obj_priv->tiling_mode == I915_TILING_NONE)
1323 return 4096;
1324
1325 /*
1326 * Previous chips need to be aligned to the size of the smallest
1327 * fence register that can contain the object.
1328 */
1329 if (IS_I9XX(dev))
1330 start = 1024*1024;
1331 else
1332 start = 512*1024;
1333
1334 for (i = start; i < obj->size; i <<= 1)
1335 ;
1336
1337 return i;
1338}
1339
1340/**
1341 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1342 * @dev: DRM device
1343 * @data: GTT mapping ioctl data
1344 * @file_priv: GEM object info
1345 *
1346 * Simply returns the fake offset to userspace so it can mmap it.
1347 * The mmap call will end up in drm_gem_mmap(), which will set things
1348 * up so we can get faults in the handler above.
1349 *
1350 * The fault handler will take care of binding the object into the GTT
1351 * (since it may have been evicted to make room for something), allocating
1352 * a fence register, and mapping the appropriate aperture address into
1353 * userspace.
1354 */
1355int
1356i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1357 struct drm_file *file_priv)
1358{
1359 struct drm_i915_gem_mmap_gtt *args = data;
1360 struct drm_i915_private *dev_priv = dev->dev_private;
1361 struct drm_gem_object *obj;
1362 struct drm_i915_gem_object *obj_priv;
1363 int ret;
1364
1365 if (!(dev->driver->driver_features & DRIVER_GEM))
1366 return -ENODEV;
1367
1368 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1369 if (obj == NULL)
1370 return -EBADF;
1371
1372 mutex_lock(&dev->struct_mutex);
1373
1374 obj_priv = obj->driver_private;
1375
1376 if (!obj_priv->mmap_offset) {
1377 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson13af1062009-02-11 14:26:31 +00001378 if (ret) {
1379 drm_gem_object_unreference(obj);
1380 mutex_unlock(&dev->struct_mutex);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001381 return ret;
Chris Wilson13af1062009-02-11 14:26:31 +00001382 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001383 }
1384
1385 args->offset = obj_priv->mmap_offset;
1386
1387 obj_priv->gtt_alignment = i915_gem_get_gtt_alignment(obj);
1388
1389 /* Make sure the alignment is correct for fence regs etc */
1390 if (obj_priv->agp_mem &&
1391 (obj_priv->gtt_offset & (obj_priv->gtt_alignment - 1))) {
1392 drm_gem_object_unreference(obj);
1393 mutex_unlock(&dev->struct_mutex);
1394 return -EINVAL;
1395 }
1396
1397 /*
1398 * Pull it into the GTT so that we have a page list (makes the
1399 * initial fault faster and any subsequent flushing possible).
1400 */
1401 if (!obj_priv->agp_mem) {
1402 ret = i915_gem_object_bind_to_gtt(obj, obj_priv->gtt_alignment);
1403 if (ret) {
1404 drm_gem_object_unreference(obj);
1405 mutex_unlock(&dev->struct_mutex);
1406 return ret;
1407 }
Jesse Barnes14b60392009-05-20 16:47:08 -04001408 list_add_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001409 }
1410
1411 drm_gem_object_unreference(obj);
1412 mutex_unlock(&dev->struct_mutex);
1413
1414 return 0;
1415}
1416
Ben Gamari6911a9b2009-04-02 11:24:54 -07001417void
Eric Anholt856fa192009-03-19 14:10:50 -07001418i915_gem_object_put_pages(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001419{
1420 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1421 int page_count = obj->size / PAGE_SIZE;
1422 int i;
1423
Eric Anholt856fa192009-03-19 14:10:50 -07001424 BUG_ON(obj_priv->pages_refcount == 0);
1425
1426 if (--obj_priv->pages_refcount != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07001427 return;
1428
Eric Anholt280b7132009-03-12 16:56:27 -07001429 if (obj_priv->tiling_mode != I915_TILING_NONE)
1430 i915_gem_object_save_bit_17_swizzle(obj);
1431
Eric Anholt673a3942008-07-30 12:06:12 -07001432 for (i = 0; i < page_count; i++)
Eric Anholt856fa192009-03-19 14:10:50 -07001433 if (obj_priv->pages[i] != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07001434 if (obj_priv->dirty)
Eric Anholt856fa192009-03-19 14:10:50 -07001435 set_page_dirty(obj_priv->pages[i]);
1436 mark_page_accessed(obj_priv->pages[i]);
1437 page_cache_release(obj_priv->pages[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07001438 }
1439 obj_priv->dirty = 0;
1440
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001441 drm_free_large(obj_priv->pages);
Eric Anholt856fa192009-03-19 14:10:50 -07001442 obj_priv->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001443}
1444
1445static void
Eric Anholtce44b0e2008-11-06 16:00:31 -08001446i915_gem_object_move_to_active(struct drm_gem_object *obj, uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001447{
1448 struct drm_device *dev = obj->dev;
1449 drm_i915_private_t *dev_priv = dev->dev_private;
1450 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1451
1452 /* Add a reference if we're newly entering the active list. */
1453 if (!obj_priv->active) {
1454 drm_gem_object_reference(obj);
1455 obj_priv->active = 1;
1456 }
1457 /* Move from whatever list we were on to the tail of execution. */
Carl Worth5e118f42009-03-20 11:54:25 -07001458 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001459 list_move_tail(&obj_priv->list,
1460 &dev_priv->mm.active_list);
Carl Worth5e118f42009-03-20 11:54:25 -07001461 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001462 obj_priv->last_rendering_seqno = seqno;
Eric Anholt673a3942008-07-30 12:06:12 -07001463}
1464
Eric Anholtce44b0e2008-11-06 16:00:31 -08001465static void
1466i915_gem_object_move_to_flushing(struct drm_gem_object *obj)
1467{
1468 struct drm_device *dev = obj->dev;
1469 drm_i915_private_t *dev_priv = dev->dev_private;
1470 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1471
1472 BUG_ON(!obj_priv->active);
1473 list_move_tail(&obj_priv->list, &dev_priv->mm.flushing_list);
1474 obj_priv->last_rendering_seqno = 0;
1475}
Eric Anholt673a3942008-07-30 12:06:12 -07001476
1477static void
1478i915_gem_object_move_to_inactive(struct drm_gem_object *obj)
1479{
1480 struct drm_device *dev = obj->dev;
1481 drm_i915_private_t *dev_priv = dev->dev_private;
1482 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1483
1484 i915_verify_inactive(dev, __FILE__, __LINE__);
1485 if (obj_priv->pin_count != 0)
1486 list_del_init(&obj_priv->list);
1487 else
1488 list_move_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
1489
Eric Anholtce44b0e2008-11-06 16:00:31 -08001490 obj_priv->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001491 if (obj_priv->active) {
1492 obj_priv->active = 0;
1493 drm_gem_object_unreference(obj);
1494 }
1495 i915_verify_inactive(dev, __FILE__, __LINE__);
1496}
1497
1498/**
1499 * Creates a new sequence number, emitting a write of it to the status page
1500 * plus an interrupt, which will trigger i915_user_interrupt_handler.
1501 *
1502 * Must be called with struct_lock held.
1503 *
1504 * Returned sequence numbers are nonzero on success.
1505 */
1506static uint32_t
Eric Anholtb9624422009-06-03 07:27:35 +00001507i915_add_request(struct drm_device *dev, struct drm_file *file_priv,
1508 uint32_t flush_domains)
Eric Anholt673a3942008-07-30 12:06:12 -07001509{
1510 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00001511 struct drm_i915_file_private *i915_file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001512 struct drm_i915_gem_request *request;
1513 uint32_t seqno;
1514 int was_empty;
1515 RING_LOCALS;
1516
Eric Anholtb9624422009-06-03 07:27:35 +00001517 if (file_priv != NULL)
1518 i915_file_priv = file_priv->driver_priv;
1519
Eric Anholt9a298b22009-03-24 12:23:04 -07001520 request = kzalloc(sizeof(*request), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07001521 if (request == NULL)
1522 return 0;
1523
1524 /* Grab the seqno we're going to make this request be, and bump the
1525 * next (skipping 0 so it can be the reserved no-seqno value).
1526 */
1527 seqno = dev_priv->mm.next_gem_seqno;
1528 dev_priv->mm.next_gem_seqno++;
1529 if (dev_priv->mm.next_gem_seqno == 0)
1530 dev_priv->mm.next_gem_seqno++;
1531
1532 BEGIN_LP_RING(4);
1533 OUT_RING(MI_STORE_DWORD_INDEX);
1534 OUT_RING(I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1535 OUT_RING(seqno);
1536
1537 OUT_RING(MI_USER_INTERRUPT);
1538 ADVANCE_LP_RING();
1539
1540 DRM_DEBUG("%d\n", seqno);
1541
1542 request->seqno = seqno;
1543 request->emitted_jiffies = jiffies;
Eric Anholt673a3942008-07-30 12:06:12 -07001544 was_empty = list_empty(&dev_priv->mm.request_list);
1545 list_add_tail(&request->list, &dev_priv->mm.request_list);
Eric Anholtb9624422009-06-03 07:27:35 +00001546 if (i915_file_priv) {
1547 list_add_tail(&request->client_list,
1548 &i915_file_priv->mm.request_list);
1549 } else {
1550 INIT_LIST_HEAD(&request->client_list);
1551 }
Eric Anholt673a3942008-07-30 12:06:12 -07001552
Eric Anholtce44b0e2008-11-06 16:00:31 -08001553 /* Associate any objects on the flushing list matching the write
1554 * domain we're flushing with our flush.
1555 */
1556 if (flush_domains != 0) {
1557 struct drm_i915_gem_object *obj_priv, *next;
1558
1559 list_for_each_entry_safe(obj_priv, next,
1560 &dev_priv->mm.flushing_list, list) {
1561 struct drm_gem_object *obj = obj_priv->obj;
1562
1563 if ((obj->write_domain & flush_domains) ==
1564 obj->write_domain) {
1565 obj->write_domain = 0;
1566 i915_gem_object_move_to_active(obj, seqno);
1567 }
1568 }
1569
1570 }
1571
Keith Packard6dbe2772008-10-14 21:41:13 -07001572 if (was_empty && !dev_priv->mm.suspended)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001573 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07001574 return seqno;
1575}
1576
1577/**
1578 * Command execution barrier
1579 *
1580 * Ensures that all commands in the ring are finished
1581 * before signalling the CPU
1582 */
Eric Anholt3043c602008-10-02 12:24:47 -07001583static uint32_t
Eric Anholt673a3942008-07-30 12:06:12 -07001584i915_retire_commands(struct drm_device *dev)
1585{
1586 drm_i915_private_t *dev_priv = dev->dev_private;
1587 uint32_t cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
1588 uint32_t flush_domains = 0;
1589 RING_LOCALS;
1590
1591 /* The sampler always gets flushed on i965 (sigh) */
1592 if (IS_I965G(dev))
1593 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
1594 BEGIN_LP_RING(2);
1595 OUT_RING(cmd);
1596 OUT_RING(0); /* noop */
1597 ADVANCE_LP_RING();
1598 return flush_domains;
1599}
1600
1601/**
1602 * Moves buffers associated only with the given active seqno from the active
1603 * to inactive list, potentially freeing them.
1604 */
1605static void
1606i915_gem_retire_request(struct drm_device *dev,
1607 struct drm_i915_gem_request *request)
1608{
1609 drm_i915_private_t *dev_priv = dev->dev_private;
1610
1611 /* Move any buffers on the active list that are no longer referenced
1612 * by the ringbuffer to the flushing/inactive lists as appropriate.
1613 */
Carl Worth5e118f42009-03-20 11:54:25 -07001614 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001615 while (!list_empty(&dev_priv->mm.active_list)) {
1616 struct drm_gem_object *obj;
1617 struct drm_i915_gem_object *obj_priv;
1618
1619 obj_priv = list_first_entry(&dev_priv->mm.active_list,
1620 struct drm_i915_gem_object,
1621 list);
1622 obj = obj_priv->obj;
1623
1624 /* If the seqno being retired doesn't match the oldest in the
1625 * list, then the oldest in the list must still be newer than
1626 * this seqno.
1627 */
1628 if (obj_priv->last_rendering_seqno != request->seqno)
Carl Worth5e118f42009-03-20 11:54:25 -07001629 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001630
Eric Anholt673a3942008-07-30 12:06:12 -07001631#if WATCH_LRU
1632 DRM_INFO("%s: retire %d moves to inactive list %p\n",
1633 __func__, request->seqno, obj);
1634#endif
1635
Eric Anholtce44b0e2008-11-06 16:00:31 -08001636 if (obj->write_domain != 0)
1637 i915_gem_object_move_to_flushing(obj);
Shaohua Li68c84342009-04-08 10:58:23 +08001638 else {
1639 /* Take a reference on the object so it won't be
1640 * freed while the spinlock is held. The list
1641 * protection for this spinlock is safe when breaking
1642 * the lock like this since the next thing we do
1643 * is just get the head of the list again.
1644 */
1645 drm_gem_object_reference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001646 i915_gem_object_move_to_inactive(obj);
Shaohua Li68c84342009-04-08 10:58:23 +08001647 spin_unlock(&dev_priv->mm.active_list_lock);
1648 drm_gem_object_unreference(obj);
1649 spin_lock(&dev_priv->mm.active_list_lock);
1650 }
Eric Anholt673a3942008-07-30 12:06:12 -07001651 }
Carl Worth5e118f42009-03-20 11:54:25 -07001652out:
1653 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001654}
1655
1656/**
1657 * Returns true if seq1 is later than seq2.
1658 */
1659static int
1660i915_seqno_passed(uint32_t seq1, uint32_t seq2)
1661{
1662 return (int32_t)(seq1 - seq2) >= 0;
1663}
1664
1665uint32_t
1666i915_get_gem_seqno(struct drm_device *dev)
1667{
1668 drm_i915_private_t *dev_priv = dev->dev_private;
1669
1670 return READ_HWSP(dev_priv, I915_GEM_HWS_INDEX);
1671}
1672
1673/**
1674 * This function clears the request list as sequence numbers are passed.
1675 */
1676void
1677i915_gem_retire_requests(struct drm_device *dev)
1678{
1679 drm_i915_private_t *dev_priv = dev->dev_private;
1680 uint32_t seqno;
1681
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001682 if (!dev_priv->hw_status_page)
1683 return;
1684
Eric Anholt673a3942008-07-30 12:06:12 -07001685 seqno = i915_get_gem_seqno(dev);
1686
1687 while (!list_empty(&dev_priv->mm.request_list)) {
1688 struct drm_i915_gem_request *request;
1689 uint32_t retiring_seqno;
1690
1691 request = list_first_entry(&dev_priv->mm.request_list,
1692 struct drm_i915_gem_request,
1693 list);
1694 retiring_seqno = request->seqno;
1695
1696 if (i915_seqno_passed(seqno, retiring_seqno) ||
1697 dev_priv->mm.wedged) {
1698 i915_gem_retire_request(dev, request);
1699
1700 list_del(&request->list);
Eric Anholtb9624422009-06-03 07:27:35 +00001701 list_del(&request->client_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07001702 kfree(request);
Eric Anholt673a3942008-07-30 12:06:12 -07001703 } else
1704 break;
1705 }
1706}
1707
1708void
1709i915_gem_retire_work_handler(struct work_struct *work)
1710{
1711 drm_i915_private_t *dev_priv;
1712 struct drm_device *dev;
1713
1714 dev_priv = container_of(work, drm_i915_private_t,
1715 mm.retire_work.work);
1716 dev = dev_priv->dev;
1717
1718 mutex_lock(&dev->struct_mutex);
1719 i915_gem_retire_requests(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07001720 if (!dev_priv->mm.suspended &&
1721 !list_empty(&dev_priv->mm.request_list))
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001722 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07001723 mutex_unlock(&dev->struct_mutex);
1724}
1725
1726/**
1727 * Waits for a sequence number to be signaled, and cleans up the
1728 * request and object lists appropriately for that event.
1729 */
Eric Anholt3043c602008-10-02 12:24:47 -07001730static int
Eric Anholt673a3942008-07-30 12:06:12 -07001731i915_wait_request(struct drm_device *dev, uint32_t seqno)
1732{
1733 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001734 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001735 int ret = 0;
1736
1737 BUG_ON(seqno == 0);
1738
1739 if (!i915_seqno_passed(i915_get_gem_seqno(dev), seqno)) {
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001740 if (IS_IGDNG(dev))
1741 ier = I915_READ(DEIER) | I915_READ(GTIER);
1742 else
1743 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001744 if (!ier) {
1745 DRM_ERROR("something (likely vbetool) disabled "
1746 "interrupts, re-enabling\n");
1747 i915_driver_irq_preinstall(dev);
1748 i915_driver_irq_postinstall(dev);
1749 }
1750
Eric Anholt673a3942008-07-30 12:06:12 -07001751 dev_priv->mm.waiting_gem_seqno = seqno;
1752 i915_user_irq_get(dev);
1753 ret = wait_event_interruptible(dev_priv->irq_queue,
1754 i915_seqno_passed(i915_get_gem_seqno(dev),
1755 seqno) ||
1756 dev_priv->mm.wedged);
1757 i915_user_irq_put(dev);
1758 dev_priv->mm.waiting_gem_seqno = 0;
1759 }
1760 if (dev_priv->mm.wedged)
1761 ret = -EIO;
1762
1763 if (ret && ret != -ERESTARTSYS)
1764 DRM_ERROR("%s returns %d (awaiting %d at %d)\n",
1765 __func__, ret, seqno, i915_get_gem_seqno(dev));
1766
1767 /* Directly dispatch request retiring. While we have the work queue
1768 * to handle this, the waiter on a request often wants an associated
1769 * buffer to have made it to the inactive list, and we would need
1770 * a separate wait queue to handle that.
1771 */
1772 if (ret == 0)
1773 i915_gem_retire_requests(dev);
1774
1775 return ret;
1776}
1777
1778static void
1779i915_gem_flush(struct drm_device *dev,
1780 uint32_t invalidate_domains,
1781 uint32_t flush_domains)
1782{
1783 drm_i915_private_t *dev_priv = dev->dev_private;
1784 uint32_t cmd;
1785 RING_LOCALS;
1786
1787#if WATCH_EXEC
1788 DRM_INFO("%s: invalidate %08x flush %08x\n", __func__,
1789 invalidate_domains, flush_domains);
1790#endif
1791
1792 if (flush_domains & I915_GEM_DOMAIN_CPU)
1793 drm_agp_chipset_flush(dev);
1794
Chris Wilson21d509e2009-06-06 09:46:02 +01001795 if ((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) {
Eric Anholt673a3942008-07-30 12:06:12 -07001796 /*
1797 * read/write caches:
1798 *
1799 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
1800 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
1801 * also flushed at 2d versus 3d pipeline switches.
1802 *
1803 * read-only caches:
1804 *
1805 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
1806 * MI_READ_FLUSH is set, and is always flushed on 965.
1807 *
1808 * I915_GEM_DOMAIN_COMMAND may not exist?
1809 *
1810 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
1811 * invalidated when MI_EXE_FLUSH is set.
1812 *
1813 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
1814 * invalidated with every MI_FLUSH.
1815 *
1816 * TLBs:
1817 *
1818 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
1819 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
1820 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
1821 * are flushed at any MI_FLUSH.
1822 */
1823
1824 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
1825 if ((invalidate_domains|flush_domains) &
1826 I915_GEM_DOMAIN_RENDER)
1827 cmd &= ~MI_NO_WRITE_FLUSH;
1828 if (!IS_I965G(dev)) {
1829 /*
1830 * On the 965, the sampler cache always gets flushed
1831 * and this bit is reserved.
1832 */
1833 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
1834 cmd |= MI_READ_FLUSH;
1835 }
1836 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
1837 cmd |= MI_EXE_FLUSH;
1838
1839#if WATCH_EXEC
1840 DRM_INFO("%s: queue flush %08x to ring\n", __func__, cmd);
1841#endif
1842 BEGIN_LP_RING(2);
1843 OUT_RING(cmd);
1844 OUT_RING(0); /* noop */
1845 ADVANCE_LP_RING();
1846 }
1847}
1848
1849/**
1850 * Ensures that all rendering to the object has completed and the object is
1851 * safe to unbind from the GTT or access from the CPU.
1852 */
1853static int
1854i915_gem_object_wait_rendering(struct drm_gem_object *obj)
1855{
1856 struct drm_device *dev = obj->dev;
1857 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1858 int ret;
1859
Eric Anholte47c68e2008-11-14 13:35:19 -08001860 /* This function only exists to support waiting for existing rendering,
1861 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001862 */
Eric Anholte47c68e2008-11-14 13:35:19 -08001863 BUG_ON((obj->write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001864
1865 /* If there is rendering queued on the buffer being evicted, wait for
1866 * it.
1867 */
1868 if (obj_priv->active) {
1869#if WATCH_BUF
1870 DRM_INFO("%s: object %p wait for seqno %08x\n",
1871 __func__, obj, obj_priv->last_rendering_seqno);
1872#endif
1873 ret = i915_wait_request(dev, obj_priv->last_rendering_seqno);
1874 if (ret != 0)
1875 return ret;
1876 }
1877
1878 return 0;
1879}
1880
1881/**
1882 * Unbinds an object from the GTT aperture.
1883 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001884int
Eric Anholt673a3942008-07-30 12:06:12 -07001885i915_gem_object_unbind(struct drm_gem_object *obj)
1886{
1887 struct drm_device *dev = obj->dev;
1888 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1889 int ret = 0;
1890
1891#if WATCH_BUF
1892 DRM_INFO("%s:%d %p\n", __func__, __LINE__, obj);
1893 DRM_INFO("gtt_space %p\n", obj_priv->gtt_space);
1894#endif
1895 if (obj_priv->gtt_space == NULL)
1896 return 0;
1897
1898 if (obj_priv->pin_count != 0) {
1899 DRM_ERROR("Attempting to unbind pinned buffer\n");
1900 return -EINVAL;
1901 }
1902
Eric Anholt673a3942008-07-30 12:06:12 -07001903 /* Move the object to the CPU domain to ensure that
1904 * any possible CPU writes while it's not in the GTT
1905 * are flushed when we go to remap it. This will
1906 * also ensure that all pending GPU writes are finished
1907 * before we unbind.
1908 */
Eric Anholte47c68e2008-11-14 13:35:19 -08001909 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07001910 if (ret) {
Eric Anholte47c68e2008-11-14 13:35:19 -08001911 if (ret != -ERESTARTSYS)
1912 DRM_ERROR("set_domain failed: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07001913 return ret;
1914 }
1915
1916 if (obj_priv->agp_mem != NULL) {
1917 drm_unbind_agp(obj_priv->agp_mem);
1918 drm_free_agp(obj_priv->agp_mem, obj->size / PAGE_SIZE);
1919 obj_priv->agp_mem = NULL;
1920 }
1921
1922 BUG_ON(obj_priv->active);
1923
Jesse Barnesde151cf2008-11-12 10:03:55 -08001924 /* blow away mappings if mapped through GTT */
Chris Wilson901782b2009-07-10 08:18:50 +01001925 i915_gem_release_mmap(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001926
1927 if (obj_priv->fence_reg != I915_FENCE_REG_NONE)
1928 i915_gem_clear_fence_reg(obj);
1929
Eric Anholt856fa192009-03-19 14:10:50 -07001930 i915_gem_object_put_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001931
1932 if (obj_priv->gtt_space) {
1933 atomic_dec(&dev->gtt_count);
1934 atomic_sub(obj->size, &dev->gtt_memory);
1935
1936 drm_mm_put_block(obj_priv->gtt_space);
1937 obj_priv->gtt_space = NULL;
1938 }
1939
1940 /* Remove ourselves from the LRU list if present. */
1941 if (!list_empty(&obj_priv->list))
1942 list_del_init(&obj_priv->list);
1943
1944 return 0;
1945}
1946
1947static int
1948i915_gem_evict_something(struct drm_device *dev)
1949{
1950 drm_i915_private_t *dev_priv = dev->dev_private;
1951 struct drm_gem_object *obj;
1952 struct drm_i915_gem_object *obj_priv;
1953 int ret = 0;
1954
1955 for (;;) {
1956 /* If there's an inactive buffer available now, grab it
1957 * and be done.
1958 */
1959 if (!list_empty(&dev_priv->mm.inactive_list)) {
1960 obj_priv = list_first_entry(&dev_priv->mm.inactive_list,
1961 struct drm_i915_gem_object,
1962 list);
1963 obj = obj_priv->obj;
1964 BUG_ON(obj_priv->pin_count != 0);
1965#if WATCH_LRU
1966 DRM_INFO("%s: evicting %p\n", __func__, obj);
1967#endif
1968 BUG_ON(obj_priv->active);
1969
1970 /* Wait on the rendering and unbind the buffer. */
1971 ret = i915_gem_object_unbind(obj);
1972 break;
1973 }
1974
1975 /* If we didn't get anything, but the ring is still processing
1976 * things, wait for one of those things to finish and hopefully
1977 * leave us a buffer to evict.
1978 */
1979 if (!list_empty(&dev_priv->mm.request_list)) {
1980 struct drm_i915_gem_request *request;
1981
1982 request = list_first_entry(&dev_priv->mm.request_list,
1983 struct drm_i915_gem_request,
1984 list);
1985
1986 ret = i915_wait_request(dev, request->seqno);
1987 if (ret)
1988 break;
1989
1990 /* if waiting caused an object to become inactive,
1991 * then loop around and wait for it. Otherwise, we
1992 * assume that waiting freed and unbound something,
1993 * so there should now be some space in the GTT
1994 */
1995 if (!list_empty(&dev_priv->mm.inactive_list))
1996 continue;
1997 break;
1998 }
1999
2000 /* If we didn't have anything on the request list but there
2001 * are buffers awaiting a flush, emit one and try again.
2002 * When we wait on it, those buffers waiting for that flush
2003 * will get moved to inactive.
2004 */
2005 if (!list_empty(&dev_priv->mm.flushing_list)) {
2006 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
2007 struct drm_i915_gem_object,
2008 list);
2009 obj = obj_priv->obj;
2010
2011 i915_gem_flush(dev,
2012 obj->write_domain,
2013 obj->write_domain);
Eric Anholtb9624422009-06-03 07:27:35 +00002014 i915_add_request(dev, NULL, obj->write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07002015
2016 obj = NULL;
2017 continue;
2018 }
2019
2020 DRM_ERROR("inactive empty %d request empty %d "
2021 "flushing empty %d\n",
2022 list_empty(&dev_priv->mm.inactive_list),
2023 list_empty(&dev_priv->mm.request_list),
2024 list_empty(&dev_priv->mm.flushing_list));
2025 /* If we didn't do any of the above, there's nothing to be done
2026 * and we just can't fit it in.
2027 */
Chris Wilson2939e1f2009-06-06 09:46:03 +01002028 return -ENOSPC;
Eric Anholt673a3942008-07-30 12:06:12 -07002029 }
2030 return ret;
2031}
2032
2033static int
Keith Packardac94a962008-11-20 23:30:27 -08002034i915_gem_evict_everything(struct drm_device *dev)
2035{
2036 int ret;
2037
2038 for (;;) {
2039 ret = i915_gem_evict_something(dev);
2040 if (ret != 0)
2041 break;
2042 }
Chris Wilson2939e1f2009-06-06 09:46:03 +01002043 if (ret == -ENOSPC)
Owain Ainsworth15c35332008-12-06 20:42:20 -08002044 return 0;
Keith Packardac94a962008-11-20 23:30:27 -08002045 return ret;
2046}
2047
Ben Gamari6911a9b2009-04-02 11:24:54 -07002048int
Eric Anholt856fa192009-03-19 14:10:50 -07002049i915_gem_object_get_pages(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002050{
2051 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2052 int page_count, i;
2053 struct address_space *mapping;
2054 struct inode *inode;
2055 struct page *page;
2056 int ret;
2057
Eric Anholt856fa192009-03-19 14:10:50 -07002058 if (obj_priv->pages_refcount++ != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07002059 return 0;
2060
2061 /* Get the list of pages out of our struct file. They'll be pinned
2062 * at this point until we release them.
2063 */
2064 page_count = obj->size / PAGE_SIZE;
Eric Anholt856fa192009-03-19 14:10:50 -07002065 BUG_ON(obj_priv->pages != NULL);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07002066 obj_priv->pages = drm_calloc_large(page_count, sizeof(struct page *));
Eric Anholt856fa192009-03-19 14:10:50 -07002067 if (obj_priv->pages == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002068 DRM_ERROR("Faled to allocate page list\n");
Eric Anholt856fa192009-03-19 14:10:50 -07002069 obj_priv->pages_refcount--;
Eric Anholt673a3942008-07-30 12:06:12 -07002070 return -ENOMEM;
2071 }
2072
2073 inode = obj->filp->f_path.dentry->d_inode;
2074 mapping = inode->i_mapping;
2075 for (i = 0; i < page_count; i++) {
2076 page = read_mapping_page(mapping, i, NULL);
2077 if (IS_ERR(page)) {
2078 ret = PTR_ERR(page);
2079 DRM_ERROR("read_mapping_page failed: %d\n", ret);
Eric Anholt856fa192009-03-19 14:10:50 -07002080 i915_gem_object_put_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002081 return ret;
2082 }
Eric Anholt856fa192009-03-19 14:10:50 -07002083 obj_priv->pages[i] = page;
Eric Anholt673a3942008-07-30 12:06:12 -07002084 }
Eric Anholt280b7132009-03-12 16:56:27 -07002085
2086 if (obj_priv->tiling_mode != I915_TILING_NONE)
2087 i915_gem_object_do_bit_17_swizzle(obj);
2088
Eric Anholt673a3942008-07-30 12:06:12 -07002089 return 0;
2090}
2091
Jesse Barnesde151cf2008-11-12 10:03:55 -08002092static void i965_write_fence_reg(struct drm_i915_fence_reg *reg)
2093{
2094 struct drm_gem_object *obj = reg->obj;
2095 struct drm_device *dev = obj->dev;
2096 drm_i915_private_t *dev_priv = dev->dev_private;
2097 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2098 int regnum = obj_priv->fence_reg;
2099 uint64_t val;
2100
2101 val = (uint64_t)((obj_priv->gtt_offset + obj->size - 4096) &
2102 0xfffff000) << 32;
2103 val |= obj_priv->gtt_offset & 0xfffff000;
2104 val |= ((obj_priv->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2105 if (obj_priv->tiling_mode == I915_TILING_Y)
2106 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2107 val |= I965_FENCE_REG_VALID;
2108
2109 I915_WRITE64(FENCE_REG_965_0 + (regnum * 8), val);
2110}
2111
2112static void i915_write_fence_reg(struct drm_i915_fence_reg *reg)
2113{
2114 struct drm_gem_object *obj = reg->obj;
2115 struct drm_device *dev = obj->dev;
2116 drm_i915_private_t *dev_priv = dev->dev_private;
2117 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2118 int regnum = obj_priv->fence_reg;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002119 int tile_width;
Eric Anholtdc529a42009-03-10 22:34:49 -07002120 uint32_t fence_reg, val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002121 uint32_t pitch_val;
2122
2123 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
2124 (obj_priv->gtt_offset & (obj->size - 1))) {
Linus Torvaldsf06da262009-02-09 08:57:29 -08002125 WARN(1, "%s: object 0x%08x not 1M or size (0x%zx) aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002126 __func__, obj_priv->gtt_offset, obj->size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002127 return;
2128 }
2129
Jesse Barnes0f973f22009-01-26 17:10:45 -08002130 if (obj_priv->tiling_mode == I915_TILING_Y &&
2131 HAS_128_BYTE_Y_TILING(dev))
2132 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002133 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002134 tile_width = 512;
2135
2136 /* Note: pitch better be a power of two tile widths */
2137 pitch_val = obj_priv->stride / tile_width;
2138 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002139
2140 val = obj_priv->gtt_offset;
2141 if (obj_priv->tiling_mode == I915_TILING_Y)
2142 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2143 val |= I915_FENCE_SIZE_BITS(obj->size);
2144 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2145 val |= I830_FENCE_REG_VALID;
2146
Eric Anholtdc529a42009-03-10 22:34:49 -07002147 if (regnum < 8)
2148 fence_reg = FENCE_REG_830_0 + (regnum * 4);
2149 else
2150 fence_reg = FENCE_REG_945_8 + ((regnum - 8) * 4);
2151 I915_WRITE(fence_reg, val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002152}
2153
2154static void i830_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;
2159 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2160 int regnum = obj_priv->fence_reg;
2161 uint32_t val;
2162 uint32_t pitch_val;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002163 uint32_t fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002164
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002165 if ((obj_priv->gtt_offset & ~I830_FENCE_START_MASK) ||
Jesse Barnesde151cf2008-11-12 10:03:55 -08002166 (obj_priv->gtt_offset & (obj->size - 1))) {
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002167 WARN(1, "%s: object 0x%08x not 512K or size aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002168 __func__, obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002169 return;
2170 }
2171
Eric Anholte76a16d2009-05-26 17:44:56 -07002172 pitch_val = obj_priv->stride / 128;
2173 pitch_val = ffs(pitch_val) - 1;
2174 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2175
Jesse Barnesde151cf2008-11-12 10:03:55 -08002176 val = obj_priv->gtt_offset;
2177 if (obj_priv->tiling_mode == I915_TILING_Y)
2178 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002179 fence_size_bits = I830_FENCE_SIZE_BITS(obj->size);
2180 WARN_ON(fence_size_bits & ~0x00000f00);
2181 val |= fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002182 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2183 val |= I830_FENCE_REG_VALID;
2184
2185 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002186}
2187
2188/**
2189 * i915_gem_object_get_fence_reg - set up a fence reg for an object
2190 * @obj: object to map through a fence reg
2191 *
2192 * When mapping objects through the GTT, userspace wants to be able to write
2193 * to them without having to worry about swizzling if the object is tiled.
2194 *
2195 * This function walks the fence regs looking for a free one for @obj,
2196 * stealing one if it can't find any.
2197 *
2198 * It then sets up the reg based on the object's properties: address, pitch
2199 * and tiling format.
2200 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002201int
2202i915_gem_object_get_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002203{
2204 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002205 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002206 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2207 struct drm_i915_fence_reg *reg = NULL;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002208 struct drm_i915_gem_object *old_obj_priv = NULL;
2209 int i, ret, avail;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002210
2211 switch (obj_priv->tiling_mode) {
2212 case I915_TILING_NONE:
2213 WARN(1, "allocating a fence for non-tiled object?\n");
2214 break;
2215 case I915_TILING_X:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002216 if (!obj_priv->stride)
2217 return -EINVAL;
2218 WARN((obj_priv->stride & (512 - 1)),
2219 "object 0x%08x is X tiled but has non-512B pitch\n",
2220 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002221 break;
2222 case I915_TILING_Y:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002223 if (!obj_priv->stride)
2224 return -EINVAL;
2225 WARN((obj_priv->stride & (128 - 1)),
2226 "object 0x%08x is Y tiled but has non-128B pitch\n",
2227 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002228 break;
2229 }
2230
2231 /* First try to find a free reg */
Chris Wilson9b2412f2009-02-11 14:26:44 +00002232try_again:
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002233 avail = 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002234 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2235 reg = &dev_priv->fence_regs[i];
2236 if (!reg->obj)
2237 break;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002238
2239 old_obj_priv = reg->obj->driver_private;
2240 if (!old_obj_priv->pin_count)
2241 avail++;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002242 }
2243
2244 /* None available, try to steal one or wait for a user to finish */
2245 if (i == dev_priv->num_fence_regs) {
Chris Wilsond7619c42009-02-11 14:26:47 +00002246 uint32_t seqno = dev_priv->mm.next_gem_seqno;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002247
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002248 if (avail == 0)
Chris Wilson2939e1f2009-06-06 09:46:03 +01002249 return -ENOSPC;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002250
Jesse Barnesde151cf2008-11-12 10:03:55 -08002251 for (i = dev_priv->fence_reg_start;
2252 i < dev_priv->num_fence_regs; i++) {
Chris Wilsond7619c42009-02-11 14:26:47 +00002253 uint32_t this_seqno;
2254
Jesse Barnesde151cf2008-11-12 10:03:55 -08002255 reg = &dev_priv->fence_regs[i];
2256 old_obj_priv = reg->obj->driver_private;
Chris Wilsond7619c42009-02-11 14:26:47 +00002257
2258 if (old_obj_priv->pin_count)
2259 continue;
2260
2261 /* i915 uses fences for GPU access to tiled buffers */
2262 if (IS_I965G(dev) || !old_obj_priv->active)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002263 break;
Chris Wilsond7619c42009-02-11 14:26:47 +00002264
2265 /* find the seqno of the first available fence */
2266 this_seqno = old_obj_priv->last_rendering_seqno;
2267 if (this_seqno != 0 &&
2268 reg->obj->write_domain == 0 &&
2269 i915_seqno_passed(seqno, this_seqno))
2270 seqno = this_seqno;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002271 }
2272
2273 /*
2274 * Now things get ugly... we have to wait for one of the
2275 * objects to finish before trying again.
2276 */
2277 if (i == dev_priv->num_fence_regs) {
Chris Wilsond7619c42009-02-11 14:26:47 +00002278 if (seqno == dev_priv->mm.next_gem_seqno) {
2279 i915_gem_flush(dev,
2280 I915_GEM_GPU_DOMAINS,
2281 I915_GEM_GPU_DOMAINS);
Eric Anholtb9624422009-06-03 07:27:35 +00002282 seqno = i915_add_request(dev, NULL,
Chris Wilsond7619c42009-02-11 14:26:47 +00002283 I915_GEM_GPU_DOMAINS);
2284 if (seqno == 0)
2285 return -ENOMEM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002286 }
Chris Wilsond7619c42009-02-11 14:26:47 +00002287
2288 ret = i915_wait_request(dev, seqno);
2289 if (ret)
2290 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002291 goto try_again;
2292 }
2293
2294 /*
2295 * Zap this virtual mapping so we can set up a fence again
2296 * for this object next time we need it.
2297 */
Chris Wilson901782b2009-07-10 08:18:50 +01002298 i915_gem_release_mmap(reg->obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002299 old_obj_priv->fence_reg = I915_FENCE_REG_NONE;
2300 }
2301
2302 obj_priv->fence_reg = i;
2303 reg->obj = obj;
2304
2305 if (IS_I965G(dev))
2306 i965_write_fence_reg(reg);
2307 else if (IS_I9XX(dev))
2308 i915_write_fence_reg(reg);
2309 else
2310 i830_write_fence_reg(reg);
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002311
2312 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002313}
2314
2315/**
2316 * i915_gem_clear_fence_reg - clear out fence register info
2317 * @obj: object to clear
2318 *
2319 * Zeroes out the fence register itself and clears out the associated
2320 * data structures in dev_priv and obj_priv.
2321 */
2322static void
2323i915_gem_clear_fence_reg(struct drm_gem_object *obj)
2324{
2325 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002326 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002327 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2328
2329 if (IS_I965G(dev))
2330 I915_WRITE64(FENCE_REG_965_0 + (obj_priv->fence_reg * 8), 0);
Eric Anholtdc529a42009-03-10 22:34:49 -07002331 else {
2332 uint32_t fence_reg;
2333
2334 if (obj_priv->fence_reg < 8)
2335 fence_reg = FENCE_REG_830_0 + obj_priv->fence_reg * 4;
2336 else
2337 fence_reg = FENCE_REG_945_8 + (obj_priv->fence_reg -
2338 8) * 4;
2339
2340 I915_WRITE(fence_reg, 0);
2341 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002342
2343 dev_priv->fence_regs[obj_priv->fence_reg].obj = NULL;
2344 obj_priv->fence_reg = I915_FENCE_REG_NONE;
2345}
2346
Eric Anholt673a3942008-07-30 12:06:12 -07002347/**
Chris Wilson52dc7d32009-06-06 09:46:01 +01002348 * i915_gem_object_put_fence_reg - waits on outstanding fenced access
2349 * to the buffer to finish, and then resets the fence register.
2350 * @obj: tiled object holding a fence register.
2351 *
2352 * Zeroes out the fence register itself and clears out the associated
2353 * data structures in dev_priv and obj_priv.
2354 */
2355int
2356i915_gem_object_put_fence_reg(struct drm_gem_object *obj)
2357{
2358 struct drm_device *dev = obj->dev;
2359 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2360
2361 if (obj_priv->fence_reg == I915_FENCE_REG_NONE)
2362 return 0;
2363
2364 /* On the i915, GPU access to tiled buffers is via a fence,
2365 * therefore we must wait for any outstanding access to complete
2366 * before clearing the fence.
2367 */
2368 if (!IS_I965G(dev)) {
2369 int ret;
2370
2371 i915_gem_object_flush_gpu_write_domain(obj);
2372 i915_gem_object_flush_gtt_write_domain(obj);
2373 ret = i915_gem_object_wait_rendering(obj);
2374 if (ret != 0)
2375 return ret;
2376 }
2377
2378 i915_gem_clear_fence_reg (obj);
2379
2380 return 0;
2381}
2382
2383/**
Eric Anholt673a3942008-07-30 12:06:12 -07002384 * Finds free space in the GTT aperture and binds the object there.
2385 */
2386static int
2387i915_gem_object_bind_to_gtt(struct drm_gem_object *obj, unsigned alignment)
2388{
2389 struct drm_device *dev = obj->dev;
2390 drm_i915_private_t *dev_priv = dev->dev_private;
2391 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2392 struct drm_mm_node *free_space;
2393 int page_count, ret;
2394
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08002395 if (dev_priv->mm.suspended)
2396 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002397 if (alignment == 0)
Jesse Barnes0f973f22009-01-26 17:10:45 -08002398 alignment = i915_gem_get_gtt_alignment(obj);
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002399 if (alignment & (i915_gem_get_gtt_alignment(obj) - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002400 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2401 return -EINVAL;
2402 }
2403
2404 search_free:
2405 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
2406 obj->size, alignment, 0);
2407 if (free_space != NULL) {
2408 obj_priv->gtt_space = drm_mm_get_block(free_space, obj->size,
2409 alignment);
2410 if (obj_priv->gtt_space != NULL) {
2411 obj_priv->gtt_space->private = obj;
2412 obj_priv->gtt_offset = obj_priv->gtt_space->start;
2413 }
2414 }
2415 if (obj_priv->gtt_space == NULL) {
Carl Worth5e118f42009-03-20 11:54:25 -07002416 bool lists_empty;
2417
Eric Anholt673a3942008-07-30 12:06:12 -07002418 /* If the gtt is empty and we're still having trouble
2419 * fitting our object in, we're out of memory.
2420 */
2421#if WATCH_LRU
2422 DRM_INFO("%s: GTT full, evicting something\n", __func__);
2423#endif
Carl Worth5e118f42009-03-20 11:54:25 -07002424 spin_lock(&dev_priv->mm.active_list_lock);
2425 lists_empty = (list_empty(&dev_priv->mm.inactive_list) &&
2426 list_empty(&dev_priv->mm.flushing_list) &&
2427 list_empty(&dev_priv->mm.active_list));
2428 spin_unlock(&dev_priv->mm.active_list_lock);
2429 if (lists_empty) {
Eric Anholt673a3942008-07-30 12:06:12 -07002430 DRM_ERROR("GTT full, but LRU list empty\n");
Chris Wilson2939e1f2009-06-06 09:46:03 +01002431 return -ENOSPC;
Eric Anholt673a3942008-07-30 12:06:12 -07002432 }
2433
2434 ret = i915_gem_evict_something(dev);
2435 if (ret != 0) {
Keith Packardac94a962008-11-20 23:30:27 -08002436 if (ret != -ERESTARTSYS)
2437 DRM_ERROR("Failed to evict a buffer %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07002438 return ret;
2439 }
2440 goto search_free;
2441 }
2442
2443#if WATCH_BUF
Krzysztof Halasacfd43c02009-06-20 00:31:28 +02002444 DRM_INFO("Binding object of size %zd at 0x%08x\n",
Eric Anholt673a3942008-07-30 12:06:12 -07002445 obj->size, obj_priv->gtt_offset);
2446#endif
Eric Anholt856fa192009-03-19 14:10:50 -07002447 ret = i915_gem_object_get_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002448 if (ret) {
2449 drm_mm_put_block(obj_priv->gtt_space);
2450 obj_priv->gtt_space = NULL;
2451 return ret;
2452 }
2453
2454 page_count = obj->size / PAGE_SIZE;
2455 /* Create an AGP memory structure pointing at our pages, and bind it
2456 * into the GTT.
2457 */
2458 obj_priv->agp_mem = drm_agp_bind_pages(dev,
Eric Anholt856fa192009-03-19 14:10:50 -07002459 obj_priv->pages,
Eric Anholt673a3942008-07-30 12:06:12 -07002460 page_count,
Keith Packardba1eb1d2008-10-14 19:55:10 -07002461 obj_priv->gtt_offset,
2462 obj_priv->agp_type);
Eric Anholt673a3942008-07-30 12:06:12 -07002463 if (obj_priv->agp_mem == NULL) {
Eric Anholt856fa192009-03-19 14:10:50 -07002464 i915_gem_object_put_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002465 drm_mm_put_block(obj_priv->gtt_space);
2466 obj_priv->gtt_space = NULL;
2467 return -ENOMEM;
2468 }
2469 atomic_inc(&dev->gtt_count);
2470 atomic_add(obj->size, &dev->gtt_memory);
2471
2472 /* Assert that the object is not currently in any GPU domain. As it
2473 * wasn't in the GTT, there shouldn't be any way it could have been in
2474 * a GPU cache
2475 */
Chris Wilson21d509e2009-06-06 09:46:02 +01002476 BUG_ON(obj->read_domains & I915_GEM_GPU_DOMAINS);
2477 BUG_ON(obj->write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002478
2479 return 0;
2480}
2481
2482void
2483i915_gem_clflush_object(struct drm_gem_object *obj)
2484{
2485 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2486
2487 /* If we don't have a page list set up, then we're not pinned
2488 * to GPU, and we can ignore the cache flush because it'll happen
2489 * again at bind time.
2490 */
Eric Anholt856fa192009-03-19 14:10:50 -07002491 if (obj_priv->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002492 return;
2493
Eric Anholtcfa16a02009-05-26 18:46:16 -07002494 /* XXX: The 865 in particular appears to be weird in how it handles
2495 * cache flushing. We haven't figured it out, but the
2496 * clflush+agp_chipset_flush doesn't appear to successfully get the
2497 * data visible to the PGU, while wbinvd + agp_chipset_flush does.
2498 */
2499 if (IS_I865G(obj->dev)) {
2500 wbinvd();
2501 return;
2502 }
2503
Eric Anholt856fa192009-03-19 14:10:50 -07002504 drm_clflush_pages(obj_priv->pages, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002505}
2506
Eric Anholte47c68e2008-11-14 13:35:19 -08002507/** Flushes any GPU write domain for the object if it's dirty. */
2508static void
2509i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj)
2510{
2511 struct drm_device *dev = obj->dev;
2512 uint32_t seqno;
2513
2514 if ((obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
2515 return;
2516
2517 /* Queue the GPU write cache flushing we need. */
2518 i915_gem_flush(dev, 0, obj->write_domain);
Eric Anholtb9624422009-06-03 07:27:35 +00002519 seqno = i915_add_request(dev, NULL, obj->write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002520 obj->write_domain = 0;
2521 i915_gem_object_move_to_active(obj, seqno);
2522}
2523
2524/** Flushes the GTT write domain for the object if it's dirty. */
2525static void
2526i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj)
2527{
2528 if (obj->write_domain != I915_GEM_DOMAIN_GTT)
2529 return;
2530
2531 /* No actual flushing is required for the GTT write domain. Writes
2532 * to it immediately go to main memory as far as we know, so there's
2533 * no chipset flush. It also doesn't land in render cache.
2534 */
2535 obj->write_domain = 0;
2536}
2537
2538/** Flushes the CPU write domain for the object if it's dirty. */
2539static void
2540i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj)
2541{
2542 struct drm_device *dev = obj->dev;
2543
2544 if (obj->write_domain != I915_GEM_DOMAIN_CPU)
2545 return;
2546
2547 i915_gem_clflush_object(obj);
2548 drm_agp_chipset_flush(dev);
2549 obj->write_domain = 0;
2550}
2551
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002552/**
2553 * Moves a single object to the GTT read, and possibly write domain.
2554 *
2555 * This function returns when the move is complete, including waiting on
2556 * flushes to occur.
2557 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002558int
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002559i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write)
2560{
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002561 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Eric Anholte47c68e2008-11-14 13:35:19 -08002562 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002563
Eric Anholt02354392008-11-26 13:58:13 -08002564 /* Not valid to be called on unbound objects. */
2565 if (obj_priv->gtt_space == NULL)
2566 return -EINVAL;
2567
Eric Anholte47c68e2008-11-14 13:35:19 -08002568 i915_gem_object_flush_gpu_write_domain(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002569 /* Wait on any GPU rendering and flushing to occur. */
Eric Anholte47c68e2008-11-14 13:35:19 -08002570 ret = i915_gem_object_wait_rendering(obj);
2571 if (ret != 0)
2572 return ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002573
2574 /* If we're writing through the GTT domain, then CPU and GPU caches
2575 * will need to be invalidated at next use.
2576 */
2577 if (write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002578 obj->read_domains &= I915_GEM_DOMAIN_GTT;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002579
Eric Anholte47c68e2008-11-14 13:35:19 -08002580 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002581
2582 /* It should now be out of any other write domains, and we can update
2583 * the domain values for our changes.
2584 */
2585 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2586 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002587 if (write) {
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002588 obj->write_domain = I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002589 obj_priv->dirty = 1;
2590 }
2591
2592 return 0;
2593}
2594
2595/**
2596 * Moves a single object to the CPU read, and possibly write domain.
2597 *
2598 * This function returns when the move is complete, including waiting on
2599 * flushes to occur.
2600 */
2601static int
2602i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj, int write)
2603{
Eric Anholte47c68e2008-11-14 13:35:19 -08002604 int ret;
2605
2606 i915_gem_object_flush_gpu_write_domain(obj);
2607 /* Wait on any GPU rendering and flushing to occur. */
2608 ret = i915_gem_object_wait_rendering(obj);
2609 if (ret != 0)
2610 return ret;
2611
2612 i915_gem_object_flush_gtt_write_domain(obj);
2613
2614 /* If we have a partially-valid cache of the object in the CPU,
2615 * finish invalidating it and free the per-page flags.
2616 */
2617 i915_gem_object_set_to_full_cpu_read_domain(obj);
2618
2619 /* Flush the CPU cache if it's still invalid. */
2620 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
2621 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002622
2623 obj->read_domains |= I915_GEM_DOMAIN_CPU;
2624 }
2625
2626 /* It should now be out of any other write domains, and we can update
2627 * the domain values for our changes.
2628 */
2629 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
2630
2631 /* If we're writing through the CPU, then the GPU read domains will
2632 * need to be invalidated at next use.
2633 */
2634 if (write) {
2635 obj->read_domains &= I915_GEM_DOMAIN_CPU;
2636 obj->write_domain = I915_GEM_DOMAIN_CPU;
2637 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002638
2639 return 0;
2640}
2641
Eric Anholt673a3942008-07-30 12:06:12 -07002642/*
2643 * Set the next domain for the specified object. This
2644 * may not actually perform the necessary flushing/invaliding though,
2645 * as that may want to be batched with other set_domain operations
2646 *
2647 * This is (we hope) the only really tricky part of gem. The goal
2648 * is fairly simple -- track which caches hold bits of the object
2649 * and make sure they remain coherent. A few concrete examples may
2650 * help to explain how it works. For shorthand, we use the notation
2651 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
2652 * a pair of read and write domain masks.
2653 *
2654 * Case 1: the batch buffer
2655 *
2656 * 1. Allocated
2657 * 2. Written by CPU
2658 * 3. Mapped to GTT
2659 * 4. Read by GPU
2660 * 5. Unmapped from GTT
2661 * 6. Freed
2662 *
2663 * Let's take these a step at a time
2664 *
2665 * 1. Allocated
2666 * Pages allocated from the kernel may still have
2667 * cache contents, so we set them to (CPU, CPU) always.
2668 * 2. Written by CPU (using pwrite)
2669 * The pwrite function calls set_domain (CPU, CPU) and
2670 * this function does nothing (as nothing changes)
2671 * 3. Mapped by GTT
2672 * This function asserts that the object is not
2673 * currently in any GPU-based read or write domains
2674 * 4. Read by GPU
2675 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
2676 * As write_domain is zero, this function adds in the
2677 * current read domains (CPU+COMMAND, 0).
2678 * flush_domains is set to CPU.
2679 * invalidate_domains is set to COMMAND
2680 * clflush is run to get data out of the CPU caches
2681 * then i915_dev_set_domain calls i915_gem_flush to
2682 * emit an MI_FLUSH and drm_agp_chipset_flush
2683 * 5. Unmapped from GTT
2684 * i915_gem_object_unbind calls set_domain (CPU, CPU)
2685 * flush_domains and invalidate_domains end up both zero
2686 * so no flushing/invalidating happens
2687 * 6. Freed
2688 * yay, done
2689 *
2690 * Case 2: The shared render buffer
2691 *
2692 * 1. Allocated
2693 * 2. Mapped to GTT
2694 * 3. Read/written by GPU
2695 * 4. set_domain to (CPU,CPU)
2696 * 5. Read/written by CPU
2697 * 6. Read/written by GPU
2698 *
2699 * 1. Allocated
2700 * Same as last example, (CPU, CPU)
2701 * 2. Mapped to GTT
2702 * Nothing changes (assertions find that it is not in the GPU)
2703 * 3. Read/written by GPU
2704 * execbuffer calls set_domain (RENDER, RENDER)
2705 * flush_domains gets CPU
2706 * invalidate_domains gets GPU
2707 * clflush (obj)
2708 * MI_FLUSH and drm_agp_chipset_flush
2709 * 4. set_domain (CPU, CPU)
2710 * flush_domains gets GPU
2711 * invalidate_domains gets CPU
2712 * wait_rendering (obj) to make sure all drawing is complete.
2713 * This will include an MI_FLUSH to get the data from GPU
2714 * to memory
2715 * clflush (obj) to invalidate the CPU cache
2716 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
2717 * 5. Read/written by CPU
2718 * cache lines are loaded and dirtied
2719 * 6. Read written by GPU
2720 * Same as last GPU access
2721 *
2722 * Case 3: The constant buffer
2723 *
2724 * 1. Allocated
2725 * 2. Written by CPU
2726 * 3. Read by GPU
2727 * 4. Updated (written) by CPU again
2728 * 5. Read by GPU
2729 *
2730 * 1. Allocated
2731 * (CPU, CPU)
2732 * 2. Written by CPU
2733 * (CPU, CPU)
2734 * 3. Read by GPU
2735 * (CPU+RENDER, 0)
2736 * flush_domains = CPU
2737 * invalidate_domains = RENDER
2738 * clflush (obj)
2739 * MI_FLUSH
2740 * drm_agp_chipset_flush
2741 * 4. Updated (written) by CPU again
2742 * (CPU, CPU)
2743 * flush_domains = 0 (no previous write domain)
2744 * invalidate_domains = 0 (no new read domains)
2745 * 5. Read by GPU
2746 * (CPU+RENDER, 0)
2747 * flush_domains = CPU
2748 * invalidate_domains = RENDER
2749 * clflush (obj)
2750 * MI_FLUSH
2751 * drm_agp_chipset_flush
2752 */
Keith Packardc0d90822008-11-20 23:11:08 -08002753static void
Eric Anholt8b0e3782009-02-19 14:40:50 -08002754i915_gem_object_set_to_gpu_domain(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002755{
2756 struct drm_device *dev = obj->dev;
2757 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2758 uint32_t invalidate_domains = 0;
2759 uint32_t flush_domains = 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002760
Eric Anholt8b0e3782009-02-19 14:40:50 -08002761 BUG_ON(obj->pending_read_domains & I915_GEM_DOMAIN_CPU);
2762 BUG_ON(obj->pending_write_domain == I915_GEM_DOMAIN_CPU);
Eric Anholt673a3942008-07-30 12:06:12 -07002763
2764#if WATCH_BUF
2765 DRM_INFO("%s: object %p read %08x -> %08x write %08x -> %08x\n",
2766 __func__, obj,
Eric Anholt8b0e3782009-02-19 14:40:50 -08002767 obj->read_domains, obj->pending_read_domains,
2768 obj->write_domain, obj->pending_write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07002769#endif
2770 /*
2771 * If the object isn't moving to a new write domain,
2772 * let the object stay in multiple read domains
2773 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002774 if (obj->pending_write_domain == 0)
2775 obj->pending_read_domains |= obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002776 else
2777 obj_priv->dirty = 1;
2778
2779 /*
2780 * Flush the current write domain if
2781 * the new read domains don't match. Invalidate
2782 * any read domains which differ from the old
2783 * write domain
2784 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002785 if (obj->write_domain &&
2786 obj->write_domain != obj->pending_read_domains) {
Eric Anholt673a3942008-07-30 12:06:12 -07002787 flush_domains |= obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08002788 invalidate_domains |=
2789 obj->pending_read_domains & ~obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07002790 }
2791 /*
2792 * Invalidate any read caches which may have
2793 * stale data. That is, any new read domains.
2794 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002795 invalidate_domains |= obj->pending_read_domains & ~obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002796 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU) {
2797#if WATCH_BUF
2798 DRM_INFO("%s: CPU domain flush %08x invalidate %08x\n",
2799 __func__, flush_domains, invalidate_domains);
2800#endif
Eric Anholt673a3942008-07-30 12:06:12 -07002801 i915_gem_clflush_object(obj);
2802 }
2803
Eric Anholtefbeed92009-02-19 14:54:51 -08002804 /* The actual obj->write_domain will be updated with
2805 * pending_write_domain after we emit the accumulated flush for all
2806 * of our domain changes in execbuffers (which clears objects'
2807 * write_domains). So if we have a current write domain that we
2808 * aren't changing, set pending_write_domain to that.
2809 */
2810 if (flush_domains == 0 && obj->pending_write_domain == 0)
2811 obj->pending_write_domain = obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08002812 obj->read_domains = obj->pending_read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002813
2814 dev->invalidate_domains |= invalidate_domains;
2815 dev->flush_domains |= flush_domains;
2816#if WATCH_BUF
2817 DRM_INFO("%s: read %08x write %08x invalidate %08x flush %08x\n",
2818 __func__,
2819 obj->read_domains, obj->write_domain,
2820 dev->invalidate_domains, dev->flush_domains);
2821#endif
Eric Anholt673a3942008-07-30 12:06:12 -07002822}
2823
2824/**
Eric Anholte47c68e2008-11-14 13:35:19 -08002825 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07002826 *
Eric Anholte47c68e2008-11-14 13:35:19 -08002827 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
2828 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
2829 */
2830static void
2831i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj)
2832{
Eric Anholte47c68e2008-11-14 13:35:19 -08002833 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2834
2835 if (!obj_priv->page_cpu_valid)
2836 return;
2837
2838 /* If we're partially in the CPU read domain, finish moving it in.
2839 */
2840 if (obj->read_domains & I915_GEM_DOMAIN_CPU) {
2841 int i;
2842
2843 for (i = 0; i <= (obj->size - 1) / PAGE_SIZE; i++) {
2844 if (obj_priv->page_cpu_valid[i])
2845 continue;
Eric Anholt856fa192009-03-19 14:10:50 -07002846 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08002847 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002848 }
2849
2850 /* Free the page_cpu_valid mappings which are now stale, whether
2851 * or not we've got I915_GEM_DOMAIN_CPU.
2852 */
Eric Anholt9a298b22009-03-24 12:23:04 -07002853 kfree(obj_priv->page_cpu_valid);
Eric Anholte47c68e2008-11-14 13:35:19 -08002854 obj_priv->page_cpu_valid = NULL;
2855}
2856
2857/**
2858 * Set the CPU read domain on a range of the object.
2859 *
2860 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
2861 * not entirely valid. The page_cpu_valid member of the object flags which
2862 * pages have been flushed, and will be respected by
2863 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
2864 * of the whole object.
2865 *
2866 * This function returns when the move is complete, including waiting on
2867 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07002868 */
2869static int
Eric Anholte47c68e2008-11-14 13:35:19 -08002870i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
2871 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07002872{
2873 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Eric Anholte47c68e2008-11-14 13:35:19 -08002874 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002875
Eric Anholte47c68e2008-11-14 13:35:19 -08002876 if (offset == 0 && size == obj->size)
2877 return i915_gem_object_set_to_cpu_domain(obj, 0);
2878
2879 i915_gem_object_flush_gpu_write_domain(obj);
2880 /* Wait on any GPU rendering and flushing to occur. */
2881 ret = i915_gem_object_wait_rendering(obj);
2882 if (ret != 0)
2883 return ret;
2884 i915_gem_object_flush_gtt_write_domain(obj);
2885
2886 /* If we're already fully in the CPU read domain, we're done. */
2887 if (obj_priv->page_cpu_valid == NULL &&
2888 (obj->read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07002889 return 0;
2890
Eric Anholte47c68e2008-11-14 13:35:19 -08002891 /* Otherwise, create/clear the per-page CPU read domain flag if we're
2892 * newly adding I915_GEM_DOMAIN_CPU
2893 */
Eric Anholt673a3942008-07-30 12:06:12 -07002894 if (obj_priv->page_cpu_valid == NULL) {
Eric Anholt9a298b22009-03-24 12:23:04 -07002895 obj_priv->page_cpu_valid = kzalloc(obj->size / PAGE_SIZE,
2896 GFP_KERNEL);
Eric Anholte47c68e2008-11-14 13:35:19 -08002897 if (obj_priv->page_cpu_valid == NULL)
2898 return -ENOMEM;
2899 } else if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0)
2900 memset(obj_priv->page_cpu_valid, 0, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002901
2902 /* Flush the cache on any pages that are still invalid from the CPU's
2903 * perspective.
2904 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002905 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
2906 i++) {
Eric Anholt673a3942008-07-30 12:06:12 -07002907 if (obj_priv->page_cpu_valid[i])
2908 continue;
2909
Eric Anholt856fa192009-03-19 14:10:50 -07002910 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07002911
2912 obj_priv->page_cpu_valid[i] = 1;
2913 }
2914
Eric Anholte47c68e2008-11-14 13:35:19 -08002915 /* It should now be out of any other write domains, and we can update
2916 * the domain values for our changes.
2917 */
2918 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
2919
2920 obj->read_domains |= I915_GEM_DOMAIN_CPU;
2921
Eric Anholt673a3942008-07-30 12:06:12 -07002922 return 0;
2923}
2924
2925/**
Eric Anholt673a3942008-07-30 12:06:12 -07002926 * Pin an object to the GTT and evaluate the relocations landing in it.
2927 */
2928static int
2929i915_gem_object_pin_and_relocate(struct drm_gem_object *obj,
2930 struct drm_file *file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002931 struct drm_i915_gem_exec_object *entry,
2932 struct drm_i915_gem_relocation_entry *relocs)
Eric Anholt673a3942008-07-30 12:06:12 -07002933{
2934 struct drm_device *dev = obj->dev;
Keith Packard0839ccb2008-10-30 19:38:48 -07002935 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002936 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2937 int i, ret;
Keith Packard0839ccb2008-10-30 19:38:48 -07002938 void __iomem *reloc_page;
Eric Anholt673a3942008-07-30 12:06:12 -07002939
2940 /* Choose the GTT offset for our buffer and put it there. */
2941 ret = i915_gem_object_pin(obj, (uint32_t) entry->alignment);
2942 if (ret)
2943 return ret;
2944
2945 entry->offset = obj_priv->gtt_offset;
2946
Eric Anholt673a3942008-07-30 12:06:12 -07002947 /* Apply the relocations, using the GTT aperture to avoid cache
2948 * flushing requirements.
2949 */
2950 for (i = 0; i < entry->relocation_count; i++) {
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002951 struct drm_i915_gem_relocation_entry *reloc= &relocs[i];
Eric Anholt673a3942008-07-30 12:06:12 -07002952 struct drm_gem_object *target_obj;
2953 struct drm_i915_gem_object *target_obj_priv;
Eric Anholt3043c602008-10-02 12:24:47 -07002954 uint32_t reloc_val, reloc_offset;
2955 uint32_t __iomem *reloc_entry;
Eric Anholt673a3942008-07-30 12:06:12 -07002956
Eric Anholt673a3942008-07-30 12:06:12 -07002957 target_obj = drm_gem_object_lookup(obj->dev, file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002958 reloc->target_handle);
Eric Anholt673a3942008-07-30 12:06:12 -07002959 if (target_obj == NULL) {
2960 i915_gem_object_unpin(obj);
2961 return -EBADF;
2962 }
2963 target_obj_priv = target_obj->driver_private;
2964
2965 /* The target buffer should have appeared before us in the
2966 * exec_object list, so it should have a GTT space bound by now.
2967 */
2968 if (target_obj_priv->gtt_space == NULL) {
2969 DRM_ERROR("No GTT space found for object %d\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002970 reloc->target_handle);
Eric Anholt673a3942008-07-30 12:06:12 -07002971 drm_gem_object_unreference(target_obj);
2972 i915_gem_object_unpin(obj);
2973 return -EINVAL;
2974 }
2975
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002976 if (reloc->offset > obj->size - 4) {
Eric Anholt673a3942008-07-30 12:06:12 -07002977 DRM_ERROR("Relocation beyond object bounds: "
2978 "obj %p target %d offset %d size %d.\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002979 obj, reloc->target_handle,
2980 (int) reloc->offset, (int) obj->size);
Eric Anholt673a3942008-07-30 12:06:12 -07002981 drm_gem_object_unreference(target_obj);
2982 i915_gem_object_unpin(obj);
2983 return -EINVAL;
2984 }
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002985 if (reloc->offset & 3) {
Eric Anholt673a3942008-07-30 12:06:12 -07002986 DRM_ERROR("Relocation not 4-byte aligned: "
2987 "obj %p target %d offset %d.\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002988 obj, reloc->target_handle,
2989 (int) reloc->offset);
Eric Anholt673a3942008-07-30 12:06:12 -07002990 drm_gem_object_unreference(target_obj);
2991 i915_gem_object_unpin(obj);
2992 return -EINVAL;
2993 }
2994
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002995 if (reloc->write_domain & I915_GEM_DOMAIN_CPU ||
2996 reloc->read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002997 DRM_ERROR("reloc with read/write CPU domains: "
2998 "obj %p target %d offset %d "
2999 "read %08x write %08x",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003000 obj, reloc->target_handle,
3001 (int) reloc->offset,
3002 reloc->read_domains,
3003 reloc->write_domain);
Chris Wilson491152b2009-02-11 14:26:32 +00003004 drm_gem_object_unreference(target_obj);
3005 i915_gem_object_unpin(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003006 return -EINVAL;
3007 }
3008
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003009 if (reloc->write_domain && target_obj->pending_write_domain &&
3010 reloc->write_domain != target_obj->pending_write_domain) {
Eric Anholt673a3942008-07-30 12:06:12 -07003011 DRM_ERROR("Write domain conflict: "
3012 "obj %p target %d offset %d "
3013 "new %08x old %08x\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003014 obj, reloc->target_handle,
3015 (int) reloc->offset,
3016 reloc->write_domain,
Eric Anholt673a3942008-07-30 12:06:12 -07003017 target_obj->pending_write_domain);
3018 drm_gem_object_unreference(target_obj);
3019 i915_gem_object_unpin(obj);
3020 return -EINVAL;
3021 }
3022
3023#if WATCH_RELOC
3024 DRM_INFO("%s: obj %p offset %08x target %d "
3025 "read %08x write %08x gtt %08x "
3026 "presumed %08x delta %08x\n",
3027 __func__,
3028 obj,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003029 (int) reloc->offset,
3030 (int) reloc->target_handle,
3031 (int) reloc->read_domains,
3032 (int) reloc->write_domain,
Eric Anholt673a3942008-07-30 12:06:12 -07003033 (int) target_obj_priv->gtt_offset,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003034 (int) reloc->presumed_offset,
3035 reloc->delta);
Eric Anholt673a3942008-07-30 12:06:12 -07003036#endif
3037
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003038 target_obj->pending_read_domains |= reloc->read_domains;
3039 target_obj->pending_write_domain |= reloc->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003040
3041 /* If the relocation already has the right value in it, no
3042 * more work needs to be done.
3043 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003044 if (target_obj_priv->gtt_offset == reloc->presumed_offset) {
Eric Anholt673a3942008-07-30 12:06:12 -07003045 drm_gem_object_unreference(target_obj);
3046 continue;
3047 }
3048
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003049 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
3050 if (ret != 0) {
3051 drm_gem_object_unreference(target_obj);
3052 i915_gem_object_unpin(obj);
3053 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -07003054 }
3055
3056 /* Map the page containing the relocation we're going to
3057 * perform.
3058 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003059 reloc_offset = obj_priv->gtt_offset + reloc->offset;
Keith Packard0839ccb2008-10-30 19:38:48 -07003060 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
3061 (reloc_offset &
3062 ~(PAGE_SIZE - 1)));
Eric Anholt3043c602008-10-02 12:24:47 -07003063 reloc_entry = (uint32_t __iomem *)(reloc_page +
Keith Packard0839ccb2008-10-30 19:38:48 -07003064 (reloc_offset & (PAGE_SIZE - 1)));
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003065 reloc_val = target_obj_priv->gtt_offset + reloc->delta;
Eric Anholt673a3942008-07-30 12:06:12 -07003066
3067#if WATCH_BUF
3068 DRM_INFO("Applied relocation: %p@0x%08x %08x -> %08x\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003069 obj, (unsigned int) reloc->offset,
Eric Anholt673a3942008-07-30 12:06:12 -07003070 readl(reloc_entry), reloc_val);
3071#endif
3072 writel(reloc_val, reloc_entry);
Keith Packard0839ccb2008-10-30 19:38:48 -07003073 io_mapping_unmap_atomic(reloc_page);
Eric Anholt673a3942008-07-30 12:06:12 -07003074
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003075 /* The updated presumed offset for this entry will be
3076 * copied back out to the user.
Eric Anholt673a3942008-07-30 12:06:12 -07003077 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003078 reloc->presumed_offset = target_obj_priv->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003079
3080 drm_gem_object_unreference(target_obj);
3081 }
3082
Eric Anholt673a3942008-07-30 12:06:12 -07003083#if WATCH_BUF
3084 if (0)
3085 i915_gem_dump_object(obj, 128, __func__, ~0);
3086#endif
3087 return 0;
3088}
3089
3090/** Dispatch a batchbuffer to the ring
3091 */
3092static int
3093i915_dispatch_gem_execbuffer(struct drm_device *dev,
3094 struct drm_i915_gem_execbuffer *exec,
Eric Anholt201361a2009-03-11 12:30:04 -07003095 struct drm_clip_rect *cliprects,
Eric Anholt673a3942008-07-30 12:06:12 -07003096 uint64_t exec_offset)
3097{
3098 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003099 int nbox = exec->num_cliprects;
3100 int i = 0, count;
Chris Wilson83d60792009-06-06 09:45:57 +01003101 uint32_t exec_start, exec_len;
Eric Anholt673a3942008-07-30 12:06:12 -07003102 RING_LOCALS;
3103
3104 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3105 exec_len = (uint32_t) exec->batch_len;
3106
Eric Anholt673a3942008-07-30 12:06:12 -07003107 count = nbox ? nbox : 1;
3108
3109 for (i = 0; i < count; i++) {
3110 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -07003111 int ret = i915_emit_box(dev, cliprects, i,
Eric Anholt673a3942008-07-30 12:06:12 -07003112 exec->DR1, exec->DR4);
3113 if (ret)
3114 return ret;
3115 }
3116
3117 if (IS_I830(dev) || IS_845G(dev)) {
3118 BEGIN_LP_RING(4);
3119 OUT_RING(MI_BATCH_BUFFER);
3120 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
3121 OUT_RING(exec_start + exec_len - 4);
3122 OUT_RING(0);
3123 ADVANCE_LP_RING();
3124 } else {
3125 BEGIN_LP_RING(2);
3126 if (IS_I965G(dev)) {
3127 OUT_RING(MI_BATCH_BUFFER_START |
3128 (2 << 6) |
3129 MI_BATCH_NON_SECURE_I965);
3130 OUT_RING(exec_start);
3131 } else {
3132 OUT_RING(MI_BATCH_BUFFER_START |
3133 (2 << 6));
3134 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
3135 }
3136 ADVANCE_LP_RING();
3137 }
3138 }
3139
3140 /* XXX breadcrumb */
3141 return 0;
3142}
3143
3144/* Throttle our rendering by waiting until the ring has completed our requests
3145 * emitted over 20 msec ago.
3146 *
Eric Anholtb9624422009-06-03 07:27:35 +00003147 * Note that if we were to use the current jiffies each time around the loop,
3148 * we wouldn't escape the function with any frames outstanding if the time to
3149 * render a frame was over 20ms.
3150 *
Eric Anholt673a3942008-07-30 12:06:12 -07003151 * This should get us reasonable parallelism between CPU and GPU but also
3152 * relatively low latency when blocking on a particular request to finish.
3153 */
3154static int
3155i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file_priv)
3156{
3157 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
3158 int ret = 0;
Eric Anholtb9624422009-06-03 07:27:35 +00003159 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Eric Anholt673a3942008-07-30 12:06:12 -07003160
3161 mutex_lock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003162 while (!list_empty(&i915_file_priv->mm.request_list)) {
3163 struct drm_i915_gem_request *request;
3164
3165 request = list_first_entry(&i915_file_priv->mm.request_list,
3166 struct drm_i915_gem_request,
3167 client_list);
3168
3169 if (time_after_eq(request->emitted_jiffies, recent_enough))
3170 break;
3171
3172 ret = i915_wait_request(dev, request->seqno);
3173 if (ret != 0)
3174 break;
3175 }
Eric Anholt673a3942008-07-30 12:06:12 -07003176 mutex_unlock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003177
Eric Anholt673a3942008-07-30 12:06:12 -07003178 return ret;
3179}
3180
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003181static int
3182i915_gem_get_relocs_from_user(struct drm_i915_gem_exec_object *exec_list,
3183 uint32_t buffer_count,
3184 struct drm_i915_gem_relocation_entry **relocs)
3185{
3186 uint32_t reloc_count = 0, reloc_index = 0, i;
3187 int ret;
3188
3189 *relocs = NULL;
3190 for (i = 0; i < buffer_count; i++) {
3191 if (reloc_count + exec_list[i].relocation_count < reloc_count)
3192 return -EINVAL;
3193 reloc_count += exec_list[i].relocation_count;
3194 }
3195
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003196 *relocs = drm_calloc_large(reloc_count, sizeof(**relocs));
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003197 if (*relocs == NULL)
3198 return -ENOMEM;
3199
3200 for (i = 0; i < buffer_count; i++) {
3201 struct drm_i915_gem_relocation_entry __user *user_relocs;
3202
3203 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3204
3205 ret = copy_from_user(&(*relocs)[reloc_index],
3206 user_relocs,
3207 exec_list[i].relocation_count *
3208 sizeof(**relocs));
3209 if (ret != 0) {
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003210 drm_free_large(*relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003211 *relocs = NULL;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003212 return -EFAULT;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003213 }
3214
3215 reloc_index += exec_list[i].relocation_count;
3216 }
3217
Florian Mickler2bc43b52009-04-06 22:55:41 +02003218 return 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003219}
3220
3221static int
3222i915_gem_put_relocs_to_user(struct drm_i915_gem_exec_object *exec_list,
3223 uint32_t buffer_count,
3224 struct drm_i915_gem_relocation_entry *relocs)
3225{
3226 uint32_t reloc_count = 0, i;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003227 int ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003228
3229 for (i = 0; i < buffer_count; i++) {
3230 struct drm_i915_gem_relocation_entry __user *user_relocs;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003231 int unwritten;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003232
3233 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3234
Florian Mickler2bc43b52009-04-06 22:55:41 +02003235 unwritten = copy_to_user(user_relocs,
3236 &relocs[reloc_count],
3237 exec_list[i].relocation_count *
3238 sizeof(*relocs));
3239
3240 if (unwritten) {
3241 ret = -EFAULT;
3242 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003243 }
3244
3245 reloc_count += exec_list[i].relocation_count;
3246 }
3247
Florian Mickler2bc43b52009-04-06 22:55:41 +02003248err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003249 drm_free_large(relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003250
3251 return ret;
3252}
3253
Chris Wilson83d60792009-06-06 09:45:57 +01003254static int
3255i915_gem_check_execbuffer (struct drm_i915_gem_execbuffer *exec,
3256 uint64_t exec_offset)
3257{
3258 uint32_t exec_start, exec_len;
3259
3260 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3261 exec_len = (uint32_t) exec->batch_len;
3262
3263 if ((exec_start | exec_len) & 0x7)
3264 return -EINVAL;
3265
3266 if (!exec_start)
3267 return -EINVAL;
3268
3269 return 0;
3270}
3271
Eric Anholt673a3942008-07-30 12:06:12 -07003272int
3273i915_gem_execbuffer(struct drm_device *dev, void *data,
3274 struct drm_file *file_priv)
3275{
3276 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003277 struct drm_i915_gem_execbuffer *args = data;
3278 struct drm_i915_gem_exec_object *exec_list = NULL;
3279 struct drm_gem_object **object_list = NULL;
3280 struct drm_gem_object *batch_obj;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003281 struct drm_i915_gem_object *obj_priv;
Eric Anholt201361a2009-03-11 12:30:04 -07003282 struct drm_clip_rect *cliprects = NULL;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003283 struct drm_i915_gem_relocation_entry *relocs;
3284 int ret, ret2, i, pinned = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003285 uint64_t exec_offset;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003286 uint32_t seqno, flush_domains, reloc_index;
Keith Packardac94a962008-11-20 23:30:27 -08003287 int pin_tries;
Eric Anholt673a3942008-07-30 12:06:12 -07003288
3289#if WATCH_EXEC
3290 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3291 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3292#endif
3293
Eric Anholt4f481ed2008-09-10 14:22:49 -07003294 if (args->buffer_count < 1) {
3295 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3296 return -EINVAL;
3297 }
Eric Anholt673a3942008-07-30 12:06:12 -07003298 /* Copy in the exec list from userland */
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003299 exec_list = drm_calloc_large(sizeof(*exec_list), args->buffer_count);
3300 object_list = drm_calloc_large(sizeof(*object_list), args->buffer_count);
Eric Anholt673a3942008-07-30 12:06:12 -07003301 if (exec_list == NULL || object_list == NULL) {
3302 DRM_ERROR("Failed to allocate exec or object list "
3303 "for %d buffers\n",
3304 args->buffer_count);
3305 ret = -ENOMEM;
3306 goto pre_mutex_err;
3307 }
3308 ret = copy_from_user(exec_list,
3309 (struct drm_i915_relocation_entry __user *)
3310 (uintptr_t) args->buffers_ptr,
3311 sizeof(*exec_list) * args->buffer_count);
3312 if (ret != 0) {
3313 DRM_ERROR("copy %d exec entries failed %d\n",
3314 args->buffer_count, ret);
3315 goto pre_mutex_err;
3316 }
3317
Eric Anholt201361a2009-03-11 12:30:04 -07003318 if (args->num_cliprects != 0) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003319 cliprects = kcalloc(args->num_cliprects, sizeof(*cliprects),
3320 GFP_KERNEL);
Eric Anholt201361a2009-03-11 12:30:04 -07003321 if (cliprects == NULL)
3322 goto pre_mutex_err;
3323
3324 ret = copy_from_user(cliprects,
3325 (struct drm_clip_rect __user *)
3326 (uintptr_t) args->cliprects_ptr,
3327 sizeof(*cliprects) * args->num_cliprects);
3328 if (ret != 0) {
3329 DRM_ERROR("copy %d cliprects failed: %d\n",
3330 args->num_cliprects, ret);
3331 goto pre_mutex_err;
3332 }
3333 }
3334
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003335 ret = i915_gem_get_relocs_from_user(exec_list, args->buffer_count,
3336 &relocs);
3337 if (ret != 0)
3338 goto pre_mutex_err;
3339
Eric Anholt673a3942008-07-30 12:06:12 -07003340 mutex_lock(&dev->struct_mutex);
3341
3342 i915_verify_inactive(dev, __FILE__, __LINE__);
3343
3344 if (dev_priv->mm.wedged) {
3345 DRM_ERROR("Execbuf while wedged\n");
3346 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003347 ret = -EIO;
3348 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003349 }
3350
3351 if (dev_priv->mm.suspended) {
3352 DRM_ERROR("Execbuf while VT-switched.\n");
3353 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003354 ret = -EBUSY;
3355 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003356 }
3357
Keith Packardac94a962008-11-20 23:30:27 -08003358 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07003359 for (i = 0; i < args->buffer_count; i++) {
3360 object_list[i] = drm_gem_object_lookup(dev, file_priv,
3361 exec_list[i].handle);
3362 if (object_list[i] == NULL) {
3363 DRM_ERROR("Invalid object handle %d at index %d\n",
3364 exec_list[i].handle, i);
3365 ret = -EBADF;
3366 goto err;
3367 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003368
3369 obj_priv = object_list[i]->driver_private;
3370 if (obj_priv->in_execbuffer) {
3371 DRM_ERROR("Object %p appears more than once in object list\n",
3372 object_list[i]);
3373 ret = -EBADF;
3374 goto err;
3375 }
3376 obj_priv->in_execbuffer = true;
Keith Packardac94a962008-11-20 23:30:27 -08003377 }
Eric Anholt673a3942008-07-30 12:06:12 -07003378
Keith Packardac94a962008-11-20 23:30:27 -08003379 /* Pin and relocate */
3380 for (pin_tries = 0; ; pin_tries++) {
3381 ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003382 reloc_index = 0;
3383
Keith Packardac94a962008-11-20 23:30:27 -08003384 for (i = 0; i < args->buffer_count; i++) {
3385 object_list[i]->pending_read_domains = 0;
3386 object_list[i]->pending_write_domain = 0;
3387 ret = i915_gem_object_pin_and_relocate(object_list[i],
3388 file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003389 &exec_list[i],
3390 &relocs[reloc_index]);
Keith Packardac94a962008-11-20 23:30:27 -08003391 if (ret)
3392 break;
3393 pinned = i + 1;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003394 reloc_index += exec_list[i].relocation_count;
Keith Packardac94a962008-11-20 23:30:27 -08003395 }
3396 /* success */
3397 if (ret == 0)
3398 break;
3399
3400 /* error other than GTT full, or we've already tried again */
Chris Wilson2939e1f2009-06-06 09:46:03 +01003401 if (ret != -ENOSPC || pin_tries >= 1) {
Eric Anholtf1acec92008-12-19 14:47:48 -08003402 if (ret != -ERESTARTSYS)
3403 DRM_ERROR("Failed to pin buffers %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003404 goto err;
3405 }
Keith Packardac94a962008-11-20 23:30:27 -08003406
3407 /* unpin all of our buffers */
3408 for (i = 0; i < pinned; i++)
3409 i915_gem_object_unpin(object_list[i]);
Eric Anholtb1177632008-12-10 10:09:41 -08003410 pinned = 0;
Keith Packardac94a962008-11-20 23:30:27 -08003411
3412 /* evict everyone we can from the aperture */
3413 ret = i915_gem_evict_everything(dev);
3414 if (ret)
3415 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003416 }
3417
3418 /* Set the pending read domains for the batch buffer to COMMAND */
3419 batch_obj = object_list[args->buffer_count-1];
Chris Wilson5f26a2c2009-06-06 09:45:58 +01003420 if (batch_obj->pending_write_domain) {
3421 DRM_ERROR("Attempting to use self-modifying batch buffer\n");
3422 ret = -EINVAL;
3423 goto err;
3424 }
3425 batch_obj->pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Eric Anholt673a3942008-07-30 12:06:12 -07003426
Chris Wilson83d60792009-06-06 09:45:57 +01003427 /* Sanity check the batch buffer, prior to moving objects */
3428 exec_offset = exec_list[args->buffer_count - 1].offset;
3429 ret = i915_gem_check_execbuffer (args, exec_offset);
3430 if (ret != 0) {
3431 DRM_ERROR("execbuf with invalid offset/length\n");
3432 goto err;
3433 }
3434
Eric Anholt673a3942008-07-30 12:06:12 -07003435 i915_verify_inactive(dev, __FILE__, __LINE__);
3436
Keith Packard646f0f62008-11-20 23:23:03 -08003437 /* Zero the global flush/invalidate flags. These
3438 * will be modified as new domains are computed
3439 * for each object
3440 */
3441 dev->invalidate_domains = 0;
3442 dev->flush_domains = 0;
3443
Eric Anholt673a3942008-07-30 12:06:12 -07003444 for (i = 0; i < args->buffer_count; i++) {
3445 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003446
Keith Packard646f0f62008-11-20 23:23:03 -08003447 /* Compute new gpu domains and update invalidate/flush */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003448 i915_gem_object_set_to_gpu_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003449 }
3450
3451 i915_verify_inactive(dev, __FILE__, __LINE__);
3452
Keith Packard646f0f62008-11-20 23:23:03 -08003453 if (dev->invalidate_domains | dev->flush_domains) {
3454#if WATCH_EXEC
3455 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3456 __func__,
3457 dev->invalidate_domains,
3458 dev->flush_domains);
3459#endif
3460 i915_gem_flush(dev,
3461 dev->invalidate_domains,
3462 dev->flush_domains);
3463 if (dev->flush_domains)
Eric Anholtb9624422009-06-03 07:27:35 +00003464 (void)i915_add_request(dev, file_priv,
3465 dev->flush_domains);
Keith Packard646f0f62008-11-20 23:23:03 -08003466 }
Eric Anholt673a3942008-07-30 12:06:12 -07003467
Eric Anholtefbeed92009-02-19 14:54:51 -08003468 for (i = 0; i < args->buffer_count; i++) {
3469 struct drm_gem_object *obj = object_list[i];
3470
3471 obj->write_domain = obj->pending_write_domain;
3472 }
3473
Eric Anholt673a3942008-07-30 12:06:12 -07003474 i915_verify_inactive(dev, __FILE__, __LINE__);
3475
3476#if WATCH_COHERENCY
3477 for (i = 0; i < args->buffer_count; i++) {
3478 i915_gem_object_check_coherency(object_list[i],
3479 exec_list[i].handle);
3480 }
3481#endif
3482
Eric Anholt673a3942008-07-30 12:06:12 -07003483#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07003484 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07003485 args->batch_len,
3486 __func__,
3487 ~0);
3488#endif
3489
Eric Anholt673a3942008-07-30 12:06:12 -07003490 /* Exec the batchbuffer */
Eric Anholt201361a2009-03-11 12:30:04 -07003491 ret = i915_dispatch_gem_execbuffer(dev, args, cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003492 if (ret) {
3493 DRM_ERROR("dispatch failed %d\n", ret);
3494 goto err;
3495 }
3496
3497 /*
3498 * Ensure that the commands in the batch buffer are
3499 * finished before the interrupt fires
3500 */
3501 flush_domains = i915_retire_commands(dev);
3502
3503 i915_verify_inactive(dev, __FILE__, __LINE__);
3504
3505 /*
3506 * Get a seqno representing the execution of the current buffer,
3507 * which we can wait on. We would like to mitigate these interrupts,
3508 * likely by only creating seqnos occasionally (so that we have
3509 * *some* interrupts representing completion of buffers that we can
3510 * wait on when trying to clear up gtt space).
3511 */
Eric Anholtb9624422009-06-03 07:27:35 +00003512 seqno = i915_add_request(dev, file_priv, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07003513 BUG_ON(seqno == 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003514 for (i = 0; i < args->buffer_count; i++) {
3515 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003516
Eric Anholtce44b0e2008-11-06 16:00:31 -08003517 i915_gem_object_move_to_active(obj, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07003518#if WATCH_LRU
3519 DRM_INFO("%s: move to exec list %p\n", __func__, obj);
3520#endif
3521 }
3522#if WATCH_LRU
3523 i915_dump_lru(dev, __func__);
3524#endif
3525
3526 i915_verify_inactive(dev, __FILE__, __LINE__);
3527
Eric Anholt673a3942008-07-30 12:06:12 -07003528err:
Julia Lawallaad87df2008-12-21 16:28:47 +01003529 for (i = 0; i < pinned; i++)
3530 i915_gem_object_unpin(object_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07003531
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003532 for (i = 0; i < args->buffer_count; i++) {
3533 if (object_list[i]) {
3534 obj_priv = object_list[i]->driver_private;
3535 obj_priv->in_execbuffer = false;
3536 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003537 drm_gem_object_unreference(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003538 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003539
Eric Anholt673a3942008-07-30 12:06:12 -07003540 mutex_unlock(&dev->struct_mutex);
3541
Roland Dreiera35f2e22009-02-06 17:48:09 -08003542 if (!ret) {
3543 /* Copy the new buffer offsets back to the user's exec list. */
3544 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
3545 (uintptr_t) args->buffers_ptr,
3546 exec_list,
3547 sizeof(*exec_list) * args->buffer_count);
Florian Mickler2bc43b52009-04-06 22:55:41 +02003548 if (ret) {
3549 ret = -EFAULT;
Roland Dreiera35f2e22009-02-06 17:48:09 -08003550 DRM_ERROR("failed to copy %d exec entries "
3551 "back to user (%d)\n",
3552 args->buffer_count, ret);
Florian Mickler2bc43b52009-04-06 22:55:41 +02003553 }
Roland Dreiera35f2e22009-02-06 17:48:09 -08003554 }
3555
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003556 /* Copy the updated relocations out regardless of current error
3557 * state. Failure to update the relocs would mean that the next
3558 * time userland calls execbuf, it would do so with presumed offset
3559 * state that didn't match the actual object state.
3560 */
3561 ret2 = i915_gem_put_relocs_to_user(exec_list, args->buffer_count,
3562 relocs);
3563 if (ret2 != 0) {
3564 DRM_ERROR("Failed to copy relocations back out: %d\n", ret2);
3565
3566 if (ret == 0)
3567 ret = ret2;
3568 }
3569
Eric Anholt673a3942008-07-30 12:06:12 -07003570pre_mutex_err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003571 drm_free_large(object_list);
3572 drm_free_large(exec_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07003573 kfree(cliprects);
Eric Anholt673a3942008-07-30 12:06:12 -07003574
3575 return ret;
3576}
3577
3578int
3579i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment)
3580{
3581 struct drm_device *dev = obj->dev;
3582 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3583 int ret;
3584
3585 i915_verify_inactive(dev, __FILE__, __LINE__);
3586 if (obj_priv->gtt_space == NULL) {
3587 ret = i915_gem_object_bind_to_gtt(obj, alignment);
3588 if (ret != 0) {
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003589 if (ret != -EBUSY && ret != -ERESTARTSYS)
Kyle McMartin0fce81e2009-02-28 15:01:16 -05003590 DRM_ERROR("Failure to bind: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003591 return ret;
3592 }
Chris Wilson22c344e2009-02-11 14:26:45 +00003593 }
3594 /*
3595 * Pre-965 chips need a fence register set up in order to
3596 * properly handle tiled surfaces.
3597 */
3598 if (!IS_I965G(dev) &&
3599 obj_priv->fence_reg == I915_FENCE_REG_NONE &&
3600 obj_priv->tiling_mode != I915_TILING_NONE) {
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003601 ret = i915_gem_object_get_fence_reg(obj);
Chris Wilson22c344e2009-02-11 14:26:45 +00003602 if (ret != 0) {
3603 if (ret != -EBUSY && ret != -ERESTARTSYS)
3604 DRM_ERROR("Failure to install fence: %d\n",
3605 ret);
3606 return ret;
3607 }
Eric Anholt673a3942008-07-30 12:06:12 -07003608 }
3609 obj_priv->pin_count++;
3610
3611 /* If the object is not active and not pending a flush,
3612 * remove it from the inactive list
3613 */
3614 if (obj_priv->pin_count == 1) {
3615 atomic_inc(&dev->pin_count);
3616 atomic_add(obj->size, &dev->pin_memory);
3617 if (!obj_priv->active &&
Chris Wilson21d509e2009-06-06 09:46:02 +01003618 (obj->write_domain & I915_GEM_GPU_DOMAINS) == 0 &&
Eric Anholt673a3942008-07-30 12:06:12 -07003619 !list_empty(&obj_priv->list))
3620 list_del_init(&obj_priv->list);
3621 }
3622 i915_verify_inactive(dev, __FILE__, __LINE__);
3623
3624 return 0;
3625}
3626
3627void
3628i915_gem_object_unpin(struct drm_gem_object *obj)
3629{
3630 struct drm_device *dev = obj->dev;
3631 drm_i915_private_t *dev_priv = dev->dev_private;
3632 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3633
3634 i915_verify_inactive(dev, __FILE__, __LINE__);
3635 obj_priv->pin_count--;
3636 BUG_ON(obj_priv->pin_count < 0);
3637 BUG_ON(obj_priv->gtt_space == NULL);
3638
3639 /* If the object is no longer pinned, and is
3640 * neither active nor being flushed, then stick it on
3641 * the inactive list
3642 */
3643 if (obj_priv->pin_count == 0) {
3644 if (!obj_priv->active &&
Chris Wilson21d509e2009-06-06 09:46:02 +01003645 (obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003646 list_move_tail(&obj_priv->list,
3647 &dev_priv->mm.inactive_list);
3648 atomic_dec(&dev->pin_count);
3649 atomic_sub(obj->size, &dev->pin_memory);
3650 }
3651 i915_verify_inactive(dev, __FILE__, __LINE__);
3652}
3653
3654int
3655i915_gem_pin_ioctl(struct drm_device *dev, void *data,
3656 struct drm_file *file_priv)
3657{
3658 struct drm_i915_gem_pin *args = data;
3659 struct drm_gem_object *obj;
3660 struct drm_i915_gem_object *obj_priv;
3661 int ret;
3662
3663 mutex_lock(&dev->struct_mutex);
3664
3665 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3666 if (obj == NULL) {
3667 DRM_ERROR("Bad handle in i915_gem_pin_ioctl(): %d\n",
3668 args->handle);
3669 mutex_unlock(&dev->struct_mutex);
3670 return -EBADF;
3671 }
3672 obj_priv = obj->driver_private;
3673
Jesse Barnes79e53942008-11-07 14:24:08 -08003674 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
3675 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3676 args->handle);
Chris Wilson96dec612009-02-08 19:08:04 +00003677 drm_gem_object_unreference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003678 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08003679 return -EINVAL;
3680 }
3681
3682 obj_priv->user_pin_count++;
3683 obj_priv->pin_filp = file_priv;
3684 if (obj_priv->user_pin_count == 1) {
3685 ret = i915_gem_object_pin(obj, args->alignment);
3686 if (ret != 0) {
3687 drm_gem_object_unreference(obj);
3688 mutex_unlock(&dev->struct_mutex);
3689 return ret;
3690 }
Eric Anholt673a3942008-07-30 12:06:12 -07003691 }
3692
3693 /* XXX - flush the CPU caches for pinned objects
3694 * as the X server doesn't manage domains yet
3695 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003696 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003697 args->offset = obj_priv->gtt_offset;
3698 drm_gem_object_unreference(obj);
3699 mutex_unlock(&dev->struct_mutex);
3700
3701 return 0;
3702}
3703
3704int
3705i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
3706 struct drm_file *file_priv)
3707{
3708 struct drm_i915_gem_pin *args = data;
3709 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08003710 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07003711
3712 mutex_lock(&dev->struct_mutex);
3713
3714 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3715 if (obj == NULL) {
3716 DRM_ERROR("Bad handle in i915_gem_unpin_ioctl(): %d\n",
3717 args->handle);
3718 mutex_unlock(&dev->struct_mutex);
3719 return -EBADF;
3720 }
3721
Jesse Barnes79e53942008-11-07 14:24:08 -08003722 obj_priv = obj->driver_private;
3723 if (obj_priv->pin_filp != file_priv) {
3724 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3725 args->handle);
3726 drm_gem_object_unreference(obj);
3727 mutex_unlock(&dev->struct_mutex);
3728 return -EINVAL;
3729 }
3730 obj_priv->user_pin_count--;
3731 if (obj_priv->user_pin_count == 0) {
3732 obj_priv->pin_filp = NULL;
3733 i915_gem_object_unpin(obj);
3734 }
Eric Anholt673a3942008-07-30 12:06:12 -07003735
3736 drm_gem_object_unreference(obj);
3737 mutex_unlock(&dev->struct_mutex);
3738 return 0;
3739}
3740
3741int
3742i915_gem_busy_ioctl(struct drm_device *dev, void *data,
3743 struct drm_file *file_priv)
3744{
3745 struct drm_i915_gem_busy *args = data;
3746 struct drm_gem_object *obj;
3747 struct drm_i915_gem_object *obj_priv;
3748
Eric Anholt673a3942008-07-30 12:06:12 -07003749 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3750 if (obj == NULL) {
3751 DRM_ERROR("Bad handle in i915_gem_busy_ioctl(): %d\n",
3752 args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07003753 return -EBADF;
3754 }
3755
Chris Wilsonb1ce7862009-06-06 09:46:00 +01003756 mutex_lock(&dev->struct_mutex);
Eric Anholtf21289b2009-02-18 09:44:56 -08003757 /* Update the active list for the hardware's current position.
3758 * Otherwise this only updates on a delayed timer or when irqs are
3759 * actually unmasked, and our working set ends up being larger than
3760 * required.
3761 */
3762 i915_gem_retire_requests(dev);
3763
Eric Anholt673a3942008-07-30 12:06:12 -07003764 obj_priv = obj->driver_private;
Eric Anholtc4de0a52008-12-14 19:05:04 -08003765 /* Don't count being on the flushing list against the object being
3766 * done. Otherwise, a buffer left on the flushing list but not getting
3767 * flushed (because nobody's flushing that domain) won't ever return
3768 * unbusy and get reused by libdrm's bo cache. The other expected
3769 * consumer of this interface, OpenGL's occlusion queries, also specs
3770 * that the objects get unbusy "eventually" without any interference.
3771 */
3772 args->busy = obj_priv->active && obj_priv->last_rendering_seqno != 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003773
3774 drm_gem_object_unreference(obj);
3775 mutex_unlock(&dev->struct_mutex);
3776 return 0;
3777}
3778
3779int
3780i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3781 struct drm_file *file_priv)
3782{
3783 return i915_gem_ring_throttle(dev, file_priv);
3784}
3785
3786int i915_gem_init_object(struct drm_gem_object *obj)
3787{
3788 struct drm_i915_gem_object *obj_priv;
3789
Eric Anholt9a298b22009-03-24 12:23:04 -07003790 obj_priv = kzalloc(sizeof(*obj_priv), GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -07003791 if (obj_priv == NULL)
3792 return -ENOMEM;
3793
3794 /*
3795 * We've just allocated pages from the kernel,
3796 * so they've just been written by the CPU with
3797 * zeros. They'll need to be clflushed before we
3798 * use them with the GPU.
3799 */
3800 obj->write_domain = I915_GEM_DOMAIN_CPU;
3801 obj->read_domains = I915_GEM_DOMAIN_CPU;
3802
Keith Packardba1eb1d2008-10-14 19:55:10 -07003803 obj_priv->agp_type = AGP_USER_MEMORY;
3804
Eric Anholt673a3942008-07-30 12:06:12 -07003805 obj->driver_private = obj_priv;
3806 obj_priv->obj = obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003807 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Eric Anholt673a3942008-07-30 12:06:12 -07003808 INIT_LIST_HEAD(&obj_priv->list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003809
Eric Anholt673a3942008-07-30 12:06:12 -07003810 return 0;
3811}
3812
3813void i915_gem_free_object(struct drm_gem_object *obj)
3814{
Jesse Barnesde151cf2008-11-12 10:03:55 -08003815 struct drm_device *dev = obj->dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003816 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3817
3818 while (obj_priv->pin_count > 0)
3819 i915_gem_object_unpin(obj);
3820
Dave Airlie71acb5e2008-12-30 20:31:46 +10003821 if (obj_priv->phys_obj)
3822 i915_gem_detach_phys_object(dev, obj);
3823
Eric Anholt673a3942008-07-30 12:06:12 -07003824 i915_gem_object_unbind(obj);
3825
Jesse Barnesab00b3e2009-02-11 14:01:46 -08003826 i915_gem_free_mmap_offset(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003827
Eric Anholt9a298b22009-03-24 12:23:04 -07003828 kfree(obj_priv->page_cpu_valid);
Eric Anholt280b7132009-03-12 16:56:27 -07003829 kfree(obj_priv->bit_17);
Eric Anholt9a298b22009-03-24 12:23:04 -07003830 kfree(obj->driver_private);
Eric Anholt673a3942008-07-30 12:06:12 -07003831}
3832
Eric Anholt673a3942008-07-30 12:06:12 -07003833/** Unbinds all objects that are on the given buffer list. */
3834static int
3835i915_gem_evict_from_list(struct drm_device *dev, struct list_head *head)
3836{
3837 struct drm_gem_object *obj;
3838 struct drm_i915_gem_object *obj_priv;
3839 int ret;
3840
3841 while (!list_empty(head)) {
3842 obj_priv = list_first_entry(head,
3843 struct drm_i915_gem_object,
3844 list);
3845 obj = obj_priv->obj;
3846
3847 if (obj_priv->pin_count != 0) {
3848 DRM_ERROR("Pinned object in unbind list\n");
3849 mutex_unlock(&dev->struct_mutex);
3850 return -EINVAL;
3851 }
3852
3853 ret = i915_gem_object_unbind(obj);
3854 if (ret != 0) {
3855 DRM_ERROR("Error unbinding object in LeaveVT: %d\n",
3856 ret);
3857 mutex_unlock(&dev->struct_mutex);
3858 return ret;
3859 }
3860 }
3861
3862
3863 return 0;
3864}
3865
Jesse Barnes5669fca2009-02-17 15:13:31 -08003866int
Eric Anholt673a3942008-07-30 12:06:12 -07003867i915_gem_idle(struct drm_device *dev)
3868{
3869 drm_i915_private_t *dev_priv = dev->dev_private;
3870 uint32_t seqno, cur_seqno, last_seqno;
3871 int stuck, ret;
3872
Keith Packard6dbe2772008-10-14 21:41:13 -07003873 mutex_lock(&dev->struct_mutex);
3874
3875 if (dev_priv->mm.suspended || dev_priv->ring.ring_obj == NULL) {
3876 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003877 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003878 }
Eric Anholt673a3942008-07-30 12:06:12 -07003879
3880 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3881 * We need to replace this with a semaphore, or something.
3882 */
3883 dev_priv->mm.suspended = 1;
3884
Keith Packard6dbe2772008-10-14 21:41:13 -07003885 /* Cancel the retire work handler, wait for it to finish if running
3886 */
3887 mutex_unlock(&dev->struct_mutex);
3888 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3889 mutex_lock(&dev->struct_mutex);
3890
Eric Anholt673a3942008-07-30 12:06:12 -07003891 i915_kernel_lost_context(dev);
3892
3893 /* Flush the GPU along with all non-CPU write domains
3894 */
Chris Wilson21d509e2009-06-06 09:46:02 +01003895 i915_gem_flush(dev, I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
3896 seqno = i915_add_request(dev, NULL, I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07003897
3898 if (seqno == 0) {
3899 mutex_unlock(&dev->struct_mutex);
3900 return -ENOMEM;
3901 }
3902
3903 dev_priv->mm.waiting_gem_seqno = seqno;
3904 last_seqno = 0;
3905 stuck = 0;
3906 for (;;) {
3907 cur_seqno = i915_get_gem_seqno(dev);
3908 if (i915_seqno_passed(cur_seqno, seqno))
3909 break;
3910 if (last_seqno == cur_seqno) {
3911 if (stuck++ > 100) {
3912 DRM_ERROR("hardware wedged\n");
3913 dev_priv->mm.wedged = 1;
3914 DRM_WAKEUP(&dev_priv->irq_queue);
3915 break;
3916 }
3917 }
3918 msleep(10);
3919 last_seqno = cur_seqno;
3920 }
3921 dev_priv->mm.waiting_gem_seqno = 0;
3922
3923 i915_gem_retire_requests(dev);
3924
Carl Worth5e118f42009-03-20 11:54:25 -07003925 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt28dfe522008-11-13 15:00:55 -08003926 if (!dev_priv->mm.wedged) {
3927 /* Active and flushing should now be empty as we've
3928 * waited for a sequence higher than any pending execbuffer
3929 */
3930 WARN_ON(!list_empty(&dev_priv->mm.active_list));
3931 WARN_ON(!list_empty(&dev_priv->mm.flushing_list));
3932 /* Request should now be empty as we've also waited
3933 * for the last request in the list
3934 */
3935 WARN_ON(!list_empty(&dev_priv->mm.request_list));
3936 }
Eric Anholt673a3942008-07-30 12:06:12 -07003937
Eric Anholt28dfe522008-11-13 15:00:55 -08003938 /* Empty the active and flushing lists to inactive. If there's
3939 * anything left at this point, it means that we're wedged and
3940 * nothing good's going to happen by leaving them there. So strip
3941 * the GPU domains and just stuff them onto inactive.
Eric Anholt673a3942008-07-30 12:06:12 -07003942 */
Eric Anholt28dfe522008-11-13 15:00:55 -08003943 while (!list_empty(&dev_priv->mm.active_list)) {
3944 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07003945
Eric Anholt28dfe522008-11-13 15:00:55 -08003946 obj_priv = list_first_entry(&dev_priv->mm.active_list,
3947 struct drm_i915_gem_object,
3948 list);
3949 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3950 i915_gem_object_move_to_inactive(obj_priv->obj);
3951 }
Carl Worth5e118f42009-03-20 11:54:25 -07003952 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholt28dfe522008-11-13 15:00:55 -08003953
3954 while (!list_empty(&dev_priv->mm.flushing_list)) {
3955 struct drm_i915_gem_object *obj_priv;
3956
Eric Anholt151903d2008-12-01 10:23:21 +10003957 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
Eric Anholt28dfe522008-11-13 15:00:55 -08003958 struct drm_i915_gem_object,
3959 list);
3960 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3961 i915_gem_object_move_to_inactive(obj_priv->obj);
3962 }
3963
3964
3965 /* Move all inactive buffers out of the GTT. */
Eric Anholt673a3942008-07-30 12:06:12 -07003966 ret = i915_gem_evict_from_list(dev, &dev_priv->mm.inactive_list);
Eric Anholt28dfe522008-11-13 15:00:55 -08003967 WARN_ON(!list_empty(&dev_priv->mm.inactive_list));
Keith Packard6dbe2772008-10-14 21:41:13 -07003968 if (ret) {
3969 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003970 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003971 }
Eric Anholt673a3942008-07-30 12:06:12 -07003972
Keith Packard6dbe2772008-10-14 21:41:13 -07003973 i915_gem_cleanup_ringbuffer(dev);
3974 mutex_unlock(&dev->struct_mutex);
3975
Eric Anholt673a3942008-07-30 12:06:12 -07003976 return 0;
3977}
3978
3979static int
3980i915_gem_init_hws(struct drm_device *dev)
3981{
3982 drm_i915_private_t *dev_priv = dev->dev_private;
3983 struct drm_gem_object *obj;
3984 struct drm_i915_gem_object *obj_priv;
3985 int ret;
3986
3987 /* If we need a physical address for the status page, it's already
3988 * initialized at driver load time.
3989 */
3990 if (!I915_NEED_GFX_HWS(dev))
3991 return 0;
3992
3993 obj = drm_gem_object_alloc(dev, 4096);
3994 if (obj == NULL) {
3995 DRM_ERROR("Failed to allocate status page\n");
3996 return -ENOMEM;
3997 }
3998 obj_priv = obj->driver_private;
Keith Packardba1eb1d2008-10-14 19:55:10 -07003999 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
Eric Anholt673a3942008-07-30 12:06:12 -07004000
4001 ret = i915_gem_object_pin(obj, 4096);
4002 if (ret != 0) {
4003 drm_gem_object_unreference(obj);
4004 return ret;
4005 }
4006
4007 dev_priv->status_gfx_addr = obj_priv->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07004008
Eric Anholt856fa192009-03-19 14:10:50 -07004009 dev_priv->hw_status_page = kmap(obj_priv->pages[0]);
Keith Packardba1eb1d2008-10-14 19:55:10 -07004010 if (dev_priv->hw_status_page == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07004011 DRM_ERROR("Failed to map status page.\n");
4012 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Chris Wilson3eb2ee72009-02-11 14:26:34 +00004013 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004014 drm_gem_object_unreference(obj);
4015 return -EINVAL;
4016 }
4017 dev_priv->hws_obj = obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004018 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
4019 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Keith Packardba1eb1d2008-10-14 19:55:10 -07004020 I915_READ(HWS_PGA); /* posting read */
Eric Anholt673a3942008-07-30 12:06:12 -07004021 DRM_DEBUG("hws offset: 0x%08x\n", dev_priv->status_gfx_addr);
4022
4023 return 0;
4024}
4025
Chris Wilson85a7bb92009-02-11 14:52:44 +00004026static void
4027i915_gem_cleanup_hws(struct drm_device *dev)
4028{
4029 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00004030 struct drm_gem_object *obj;
4031 struct drm_i915_gem_object *obj_priv;
Chris Wilson85a7bb92009-02-11 14:52:44 +00004032
4033 if (dev_priv->hws_obj == NULL)
4034 return;
4035
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00004036 obj = dev_priv->hws_obj;
4037 obj_priv = obj->driver_private;
4038
Eric Anholt856fa192009-03-19 14:10:50 -07004039 kunmap(obj_priv->pages[0]);
Chris Wilson85a7bb92009-02-11 14:52:44 +00004040 i915_gem_object_unpin(obj);
4041 drm_gem_object_unreference(obj);
4042 dev_priv->hws_obj = NULL;
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00004043
Chris Wilson85a7bb92009-02-11 14:52:44 +00004044 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
4045 dev_priv->hw_status_page = NULL;
4046
4047 /* Write high address into HWS_PGA when disabling. */
4048 I915_WRITE(HWS_PGA, 0x1ffff000);
4049}
4050
Jesse Barnes79e53942008-11-07 14:24:08 -08004051int
Eric Anholt673a3942008-07-30 12:06:12 -07004052i915_gem_init_ringbuffer(struct drm_device *dev)
4053{
4054 drm_i915_private_t *dev_priv = dev->dev_private;
4055 struct drm_gem_object *obj;
4056 struct drm_i915_gem_object *obj_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -08004057 drm_i915_ring_buffer_t *ring = &dev_priv->ring;
Eric Anholt673a3942008-07-30 12:06:12 -07004058 int ret;
Keith Packard50aa253d2008-10-14 17:20:35 -07004059 u32 head;
Eric Anholt673a3942008-07-30 12:06:12 -07004060
4061 ret = i915_gem_init_hws(dev);
4062 if (ret != 0)
4063 return ret;
4064
4065 obj = drm_gem_object_alloc(dev, 128 * 1024);
4066 if (obj == NULL) {
4067 DRM_ERROR("Failed to allocate ringbuffer\n");
Chris Wilson85a7bb92009-02-11 14:52:44 +00004068 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004069 return -ENOMEM;
4070 }
4071 obj_priv = obj->driver_private;
4072
4073 ret = i915_gem_object_pin(obj, 4096);
4074 if (ret != 0) {
4075 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00004076 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004077 return ret;
4078 }
4079
4080 /* Set up the kernel mapping for the ring. */
Jesse Barnes79e53942008-11-07 14:24:08 -08004081 ring->Size = obj->size;
4082 ring->tail_mask = obj->size - 1;
Eric Anholt673a3942008-07-30 12:06:12 -07004083
Jesse Barnes79e53942008-11-07 14:24:08 -08004084 ring->map.offset = dev->agp->base + obj_priv->gtt_offset;
4085 ring->map.size = obj->size;
4086 ring->map.type = 0;
4087 ring->map.flags = 0;
4088 ring->map.mtrr = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004089
Jesse Barnes79e53942008-11-07 14:24:08 -08004090 drm_core_ioremap_wc(&ring->map, dev);
4091 if (ring->map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07004092 DRM_ERROR("Failed to map ringbuffer.\n");
4093 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
Chris Wilson47ed1852009-02-11 14:26:33 +00004094 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004095 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00004096 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004097 return -EINVAL;
4098 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004099 ring->ring_obj = obj;
4100 ring->virtual_start = ring->map.handle;
Eric Anholt673a3942008-07-30 12:06:12 -07004101
4102 /* Stop the ring if it's running. */
4103 I915_WRITE(PRB0_CTL, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004104 I915_WRITE(PRB0_TAIL, 0);
Keith Packard50aa253d2008-10-14 17:20:35 -07004105 I915_WRITE(PRB0_HEAD, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004106
4107 /* Initialize the ring. */
4108 I915_WRITE(PRB0_START, obj_priv->gtt_offset);
Keith Packard50aa253d2008-10-14 17:20:35 -07004109 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4110
4111 /* G45 ring initialization fails to reset head to zero */
4112 if (head != 0) {
4113 DRM_ERROR("Ring head not reset to zero "
4114 "ctl %08x head %08x tail %08x start %08x\n",
4115 I915_READ(PRB0_CTL),
4116 I915_READ(PRB0_HEAD),
4117 I915_READ(PRB0_TAIL),
4118 I915_READ(PRB0_START));
4119 I915_WRITE(PRB0_HEAD, 0);
4120
4121 DRM_ERROR("Ring head forced to zero "
4122 "ctl %08x head %08x tail %08x start %08x\n",
4123 I915_READ(PRB0_CTL),
4124 I915_READ(PRB0_HEAD),
4125 I915_READ(PRB0_TAIL),
4126 I915_READ(PRB0_START));
4127 }
4128
Eric Anholt673a3942008-07-30 12:06:12 -07004129 I915_WRITE(PRB0_CTL,
4130 ((obj->size - 4096) & RING_NR_PAGES) |
4131 RING_NO_REPORT |
4132 RING_VALID);
4133
Keith Packard50aa253d2008-10-14 17:20:35 -07004134 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4135
4136 /* If the head is still not zero, the ring is dead */
4137 if (head != 0) {
4138 DRM_ERROR("Ring initialization failed "
4139 "ctl %08x head %08x tail %08x start %08x\n",
4140 I915_READ(PRB0_CTL),
4141 I915_READ(PRB0_HEAD),
4142 I915_READ(PRB0_TAIL),
4143 I915_READ(PRB0_START));
4144 return -EIO;
4145 }
4146
Eric Anholt673a3942008-07-30 12:06:12 -07004147 /* Update our cache of the ring state */
Jesse Barnes79e53942008-11-07 14:24:08 -08004148 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4149 i915_kernel_lost_context(dev);
4150 else {
4151 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4152 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
4153 ring->space = ring->head - (ring->tail + 8);
4154 if (ring->space < 0)
4155 ring->space += ring->Size;
4156 }
Eric Anholt673a3942008-07-30 12:06:12 -07004157
4158 return 0;
4159}
4160
Jesse Barnes79e53942008-11-07 14:24:08 -08004161void
Eric Anholt673a3942008-07-30 12:06:12 -07004162i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4163{
4164 drm_i915_private_t *dev_priv = dev->dev_private;
4165
4166 if (dev_priv->ring.ring_obj == NULL)
4167 return;
4168
4169 drm_core_ioremapfree(&dev_priv->ring.map, dev);
4170
4171 i915_gem_object_unpin(dev_priv->ring.ring_obj);
4172 drm_gem_object_unreference(dev_priv->ring.ring_obj);
4173 dev_priv->ring.ring_obj = NULL;
4174 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
4175
Chris Wilson85a7bb92009-02-11 14:52:44 +00004176 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004177}
4178
4179int
4180i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4181 struct drm_file *file_priv)
4182{
4183 drm_i915_private_t *dev_priv = dev->dev_private;
4184 int ret;
4185
Jesse Barnes79e53942008-11-07 14:24:08 -08004186 if (drm_core_check_feature(dev, DRIVER_MODESET))
4187 return 0;
4188
Eric Anholt673a3942008-07-30 12:06:12 -07004189 if (dev_priv->mm.wedged) {
4190 DRM_ERROR("Reenabling wedged hardware, good luck\n");
4191 dev_priv->mm.wedged = 0;
4192 }
4193
Eric Anholt673a3942008-07-30 12:06:12 -07004194 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004195 dev_priv->mm.suspended = 0;
4196
4197 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004198 if (ret != 0) {
4199 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004200 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004201 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004202
Carl Worth5e118f42009-03-20 11:54:25 -07004203 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004204 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Carl Worth5e118f42009-03-20 11:54:25 -07004205 spin_unlock(&dev_priv->mm.active_list_lock);
4206
Eric Anholt673a3942008-07-30 12:06:12 -07004207 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4208 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
4209 BUG_ON(!list_empty(&dev_priv->mm.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004210 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004211
4212 drm_irq_install(dev);
4213
Eric Anholt673a3942008-07-30 12:06:12 -07004214 return 0;
4215}
4216
4217int
4218i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4219 struct drm_file *file_priv)
4220{
4221 int ret;
4222
Jesse Barnes79e53942008-11-07 14:24:08 -08004223 if (drm_core_check_feature(dev, DRIVER_MODESET))
4224 return 0;
4225
Eric Anholt673a3942008-07-30 12:06:12 -07004226 ret = i915_gem_idle(dev);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004227 drm_irq_uninstall(dev);
4228
Keith Packard6dbe2772008-10-14 21:41:13 -07004229 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004230}
4231
4232void
4233i915_gem_lastclose(struct drm_device *dev)
4234{
4235 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004236
Eric Anholte806b492009-01-22 09:56:58 -08004237 if (drm_core_check_feature(dev, DRIVER_MODESET))
4238 return;
4239
Keith Packard6dbe2772008-10-14 21:41:13 -07004240 ret = i915_gem_idle(dev);
4241 if (ret)
4242 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004243}
4244
4245void
4246i915_gem_load(struct drm_device *dev)
4247{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004248 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07004249 drm_i915_private_t *dev_priv = dev->dev_private;
4250
Carl Worth5e118f42009-03-20 11:54:25 -07004251 spin_lock_init(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004252 INIT_LIST_HEAD(&dev_priv->mm.active_list);
4253 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
4254 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
4255 INIT_LIST_HEAD(&dev_priv->mm.request_list);
4256 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4257 i915_gem_retire_work_handler);
Eric Anholt673a3942008-07-30 12:06:12 -07004258 dev_priv->mm.next_gem_seqno = 1;
4259
Jesse Barnesde151cf2008-11-12 10:03:55 -08004260 /* Old X drivers will take 0-2 for front, back, depth buffers */
4261 dev_priv->fence_reg_start = 3;
4262
Jesse Barnes0f973f22009-01-26 17:10:45 -08004263 if (IS_I965G(dev) || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004264 dev_priv->num_fence_regs = 16;
4265 else
4266 dev_priv->num_fence_regs = 8;
4267
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004268 /* Initialize fence registers to zero */
4269 if (IS_I965G(dev)) {
4270 for (i = 0; i < 16; i++)
4271 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
4272 } else {
4273 for (i = 0; i < 8; i++)
4274 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
4275 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4276 for (i = 0; i < 8; i++)
4277 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
4278 }
4279
Eric Anholt673a3942008-07-30 12:06:12 -07004280 i915_gem_detect_bit_6_swizzle(dev);
4281}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004282
4283/*
4284 * Create a physically contiguous memory object for this object
4285 * e.g. for cursor + overlay regs
4286 */
4287int i915_gem_init_phys_object(struct drm_device *dev,
4288 int id, int size)
4289{
4290 drm_i915_private_t *dev_priv = dev->dev_private;
4291 struct drm_i915_gem_phys_object *phys_obj;
4292 int ret;
4293
4294 if (dev_priv->mm.phys_objs[id - 1] || !size)
4295 return 0;
4296
Eric Anholt9a298b22009-03-24 12:23:04 -07004297 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004298 if (!phys_obj)
4299 return -ENOMEM;
4300
4301 phys_obj->id = id;
4302
4303 phys_obj->handle = drm_pci_alloc(dev, size, 0, 0xffffffff);
4304 if (!phys_obj->handle) {
4305 ret = -ENOMEM;
4306 goto kfree_obj;
4307 }
4308#ifdef CONFIG_X86
4309 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4310#endif
4311
4312 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4313
4314 return 0;
4315kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004316 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004317 return ret;
4318}
4319
4320void i915_gem_free_phys_object(struct drm_device *dev, int id)
4321{
4322 drm_i915_private_t *dev_priv = dev->dev_private;
4323 struct drm_i915_gem_phys_object *phys_obj;
4324
4325 if (!dev_priv->mm.phys_objs[id - 1])
4326 return;
4327
4328 phys_obj = dev_priv->mm.phys_objs[id - 1];
4329 if (phys_obj->cur_obj) {
4330 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4331 }
4332
4333#ifdef CONFIG_X86
4334 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4335#endif
4336 drm_pci_free(dev, phys_obj->handle);
4337 kfree(phys_obj);
4338 dev_priv->mm.phys_objs[id - 1] = NULL;
4339}
4340
4341void i915_gem_free_all_phys_object(struct drm_device *dev)
4342{
4343 int i;
4344
Dave Airlie260883c2009-01-22 17:58:49 +10004345 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004346 i915_gem_free_phys_object(dev, i);
4347}
4348
4349void i915_gem_detach_phys_object(struct drm_device *dev,
4350 struct drm_gem_object *obj)
4351{
4352 struct drm_i915_gem_object *obj_priv;
4353 int i;
4354 int ret;
4355 int page_count;
4356
4357 obj_priv = obj->driver_private;
4358 if (!obj_priv->phys_obj)
4359 return;
4360
Eric Anholt856fa192009-03-19 14:10:50 -07004361 ret = i915_gem_object_get_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004362 if (ret)
4363 goto out;
4364
4365 page_count = obj->size / PAGE_SIZE;
4366
4367 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004368 char *dst = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004369 char *src = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4370
4371 memcpy(dst, src, PAGE_SIZE);
4372 kunmap_atomic(dst, KM_USER0);
4373 }
Eric Anholt856fa192009-03-19 14:10:50 -07004374 drm_clflush_pages(obj_priv->pages, page_count);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004375 drm_agp_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004376
4377 i915_gem_object_put_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004378out:
4379 obj_priv->phys_obj->cur_obj = NULL;
4380 obj_priv->phys_obj = NULL;
4381}
4382
4383int
4384i915_gem_attach_phys_object(struct drm_device *dev,
4385 struct drm_gem_object *obj, int id)
4386{
4387 drm_i915_private_t *dev_priv = dev->dev_private;
4388 struct drm_i915_gem_object *obj_priv;
4389 int ret = 0;
4390 int page_count;
4391 int i;
4392
4393 if (id > I915_MAX_PHYS_OBJECT)
4394 return -EINVAL;
4395
4396 obj_priv = obj->driver_private;
4397
4398 if (obj_priv->phys_obj) {
4399 if (obj_priv->phys_obj->id == id)
4400 return 0;
4401 i915_gem_detach_phys_object(dev, obj);
4402 }
4403
4404
4405 /* create a new object */
4406 if (!dev_priv->mm.phys_objs[id - 1]) {
4407 ret = i915_gem_init_phys_object(dev, id,
4408 obj->size);
4409 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08004410 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004411 goto out;
4412 }
4413 }
4414
4415 /* bind to the object */
4416 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
4417 obj_priv->phys_obj->cur_obj = obj;
4418
Eric Anholt856fa192009-03-19 14:10:50 -07004419 ret = i915_gem_object_get_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004420 if (ret) {
4421 DRM_ERROR("failed to get page list\n");
4422 goto out;
4423 }
4424
4425 page_count = obj->size / PAGE_SIZE;
4426
4427 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004428 char *src = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004429 char *dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4430
4431 memcpy(dst, src, PAGE_SIZE);
4432 kunmap_atomic(src, KM_USER0);
4433 }
4434
Chris Wilsond78b47b2009-06-17 21:52:49 +01004435 i915_gem_object_put_pages(obj);
4436
Dave Airlie71acb5e2008-12-30 20:31:46 +10004437 return 0;
4438out:
4439 return ret;
4440}
4441
4442static int
4443i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
4444 struct drm_i915_gem_pwrite *args,
4445 struct drm_file *file_priv)
4446{
4447 struct drm_i915_gem_object *obj_priv = obj->driver_private;
4448 void *obj_addr;
4449 int ret;
4450 char __user *user_data;
4451
4452 user_data = (char __user *) (uintptr_t) args->data_ptr;
4453 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
4454
Dave Airliee08fb4f2009-02-25 14:52:30 +10004455 DRM_DEBUG("obj_addr %p, %lld\n", obj_addr, args->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004456 ret = copy_from_user(obj_addr, user_data, args->size);
4457 if (ret)
4458 return -EFAULT;
4459
4460 drm_agp_chipset_flush(dev);
4461 return 0;
4462}
Eric Anholtb9624422009-06-03 07:27:35 +00004463
4464void i915_gem_release(struct drm_device * dev, struct drm_file *file_priv)
4465{
4466 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
4467
4468 /* Clean up our request list when the client is going away, so that
4469 * later retire_requests won't dereference our soon-to-be-gone
4470 * file_priv.
4471 */
4472 mutex_lock(&dev->struct_mutex);
4473 while (!list_empty(&i915_file_priv->mm.request_list))
4474 list_del_init(i915_file_priv->mm.request_list.next);
4475 mutex_unlock(&dev->struct_mutex);
4476}