blob: 38e0f8301a14e45e19fd826b069d3cdc65df73c9 [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 Barnes0f973f22009-01-26 17:10:45 -080049static int i915_gem_object_get_fence_reg(struct drm_gem_object *obj, bool write);
Jesse Barnesde151cf2008-11-12 10:03:55 -080050static void i915_gem_clear_fence_reg(struct drm_gem_object *obj);
51static int i915_gem_evict_something(struct drm_device *dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +100052static int i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
53 struct drm_i915_gem_pwrite *args,
54 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -070055
Jesse Barnes79e53942008-11-07 14:24:08 -080056int i915_gem_do_init(struct drm_device *dev, unsigned long start,
57 unsigned long end)
58{
59 drm_i915_private_t *dev_priv = dev->dev_private;
60
61 if (start >= end ||
62 (start & (PAGE_SIZE - 1)) != 0 ||
63 (end & (PAGE_SIZE - 1)) != 0) {
64 return -EINVAL;
65 }
66
67 drm_mm_init(&dev_priv->mm.gtt_space, start,
68 end - start);
69
70 dev->gtt_total = (uint32_t) (end - start);
71
72 return 0;
73}
Keith Packard6dbe2772008-10-14 21:41:13 -070074
Eric Anholt673a3942008-07-30 12:06:12 -070075int
76i915_gem_init_ioctl(struct drm_device *dev, void *data,
77 struct drm_file *file_priv)
78{
Eric Anholt673a3942008-07-30 12:06:12 -070079 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -080080 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -070081
82 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080083 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -070084 mutex_unlock(&dev->struct_mutex);
85
Jesse Barnes79e53942008-11-07 14:24:08 -080086 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -070087}
88
Eric Anholt5a125c32008-10-22 21:40:13 -070089int
90i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
91 struct drm_file *file_priv)
92{
Eric Anholt5a125c32008-10-22 21:40:13 -070093 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -070094
95 if (!(dev->driver->driver_features & DRIVER_GEM))
96 return -ENODEV;
97
98 args->aper_size = dev->gtt_total;
Keith Packard2678d9d2008-11-20 22:54:54 -080099 args->aper_available_size = (args->aper_size -
100 atomic_read(&dev->pin_memory));
Eric Anholt5a125c32008-10-22 21:40:13 -0700101
102 return 0;
103}
104
Eric Anholt673a3942008-07-30 12:06:12 -0700105
106/**
107 * Creates a new mm object and returns a handle to it.
108 */
109int
110i915_gem_create_ioctl(struct drm_device *dev, void *data,
111 struct drm_file *file_priv)
112{
113 struct drm_i915_gem_create *args = data;
114 struct drm_gem_object *obj;
115 int handle, ret;
116
117 args->size = roundup(args->size, PAGE_SIZE);
118
119 /* Allocate the new object */
120 obj = drm_gem_object_alloc(dev, args->size);
121 if (obj == NULL)
122 return -ENOMEM;
123
124 ret = drm_gem_handle_create(file_priv, obj, &handle);
125 mutex_lock(&dev->struct_mutex);
126 drm_gem_object_handle_unreference(obj);
127 mutex_unlock(&dev->struct_mutex);
128
129 if (ret)
130 return ret;
131
132 args->handle = handle;
133
134 return 0;
135}
136
Eric Anholt40123c12009-03-09 13:42:30 -0700137static inline int
Eric Anholteb014592009-03-10 11:44:52 -0700138fast_shmem_read(struct page **pages,
139 loff_t page_base, int page_offset,
140 char __user *data,
141 int length)
142{
143 char __iomem *vaddr;
Florian Mickler2bc43b52009-04-06 22:55:41 +0200144 int unwritten;
Eric Anholteb014592009-03-10 11:44:52 -0700145
146 vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0);
147 if (vaddr == NULL)
148 return -ENOMEM;
Florian Mickler2bc43b52009-04-06 22:55:41 +0200149 unwritten = __copy_to_user_inatomic(data, vaddr + page_offset, length);
Eric Anholteb014592009-03-10 11:44:52 -0700150 kunmap_atomic(vaddr, KM_USER0);
151
Florian Mickler2bc43b52009-04-06 22:55:41 +0200152 if (unwritten)
153 return -EFAULT;
154
155 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700156}
157
Eric Anholt280b7132009-03-12 16:56:27 -0700158static int i915_gem_object_needs_bit17_swizzle(struct drm_gem_object *obj)
159{
160 drm_i915_private_t *dev_priv = obj->dev->dev_private;
161 struct drm_i915_gem_object *obj_priv = obj->driver_private;
162
163 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
164 obj_priv->tiling_mode != I915_TILING_NONE;
165}
166
Eric Anholteb014592009-03-10 11:44:52 -0700167static inline int
Eric Anholt40123c12009-03-09 13:42:30 -0700168slow_shmem_copy(struct page *dst_page,
169 int dst_offset,
170 struct page *src_page,
171 int src_offset,
172 int length)
173{
174 char *dst_vaddr, *src_vaddr;
175
176 dst_vaddr = kmap_atomic(dst_page, KM_USER0);
177 if (dst_vaddr == NULL)
178 return -ENOMEM;
179
180 src_vaddr = kmap_atomic(src_page, KM_USER1);
181 if (src_vaddr == NULL) {
182 kunmap_atomic(dst_vaddr, KM_USER0);
183 return -ENOMEM;
184 }
185
186 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
187
188 kunmap_atomic(src_vaddr, KM_USER1);
189 kunmap_atomic(dst_vaddr, KM_USER0);
190
191 return 0;
192}
193
Eric Anholt280b7132009-03-12 16:56:27 -0700194static inline int
195slow_shmem_bit17_copy(struct page *gpu_page,
196 int gpu_offset,
197 struct page *cpu_page,
198 int cpu_offset,
199 int length,
200 int is_read)
201{
202 char *gpu_vaddr, *cpu_vaddr;
203
204 /* Use the unswizzled path if this page isn't affected. */
205 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
206 if (is_read)
207 return slow_shmem_copy(cpu_page, cpu_offset,
208 gpu_page, gpu_offset, length);
209 else
210 return slow_shmem_copy(gpu_page, gpu_offset,
211 cpu_page, cpu_offset, length);
212 }
213
214 gpu_vaddr = kmap_atomic(gpu_page, KM_USER0);
215 if (gpu_vaddr == NULL)
216 return -ENOMEM;
217
218 cpu_vaddr = kmap_atomic(cpu_page, KM_USER1);
219 if (cpu_vaddr == NULL) {
220 kunmap_atomic(gpu_vaddr, KM_USER0);
221 return -ENOMEM;
222 }
223
224 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
225 * XORing with the other bits (A9 for Y, A9 and A10 for X)
226 */
227 while (length > 0) {
228 int cacheline_end = ALIGN(gpu_offset + 1, 64);
229 int this_length = min(cacheline_end - gpu_offset, length);
230 int swizzled_gpu_offset = gpu_offset ^ 64;
231
232 if (is_read) {
233 memcpy(cpu_vaddr + cpu_offset,
234 gpu_vaddr + swizzled_gpu_offset,
235 this_length);
236 } else {
237 memcpy(gpu_vaddr + swizzled_gpu_offset,
238 cpu_vaddr + cpu_offset,
239 this_length);
240 }
241 cpu_offset += this_length;
242 gpu_offset += this_length;
243 length -= this_length;
244 }
245
246 kunmap_atomic(cpu_vaddr, KM_USER1);
247 kunmap_atomic(gpu_vaddr, KM_USER0);
248
249 return 0;
250}
251
Eric Anholt673a3942008-07-30 12:06:12 -0700252/**
Eric Anholteb014592009-03-10 11:44:52 -0700253 * This is the fast shmem pread path, which attempts to copy_from_user directly
254 * from the backing pages of the object to the user's address space. On a
255 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
256 */
257static int
258i915_gem_shmem_pread_fast(struct drm_device *dev, struct drm_gem_object *obj,
259 struct drm_i915_gem_pread *args,
260 struct drm_file *file_priv)
261{
262 struct drm_i915_gem_object *obj_priv = obj->driver_private;
263 ssize_t remain;
264 loff_t offset, page_base;
265 char __user *user_data;
266 int page_offset, page_length;
267 int ret;
268
269 user_data = (char __user *) (uintptr_t) args->data_ptr;
270 remain = args->size;
271
272 mutex_lock(&dev->struct_mutex);
273
274 ret = i915_gem_object_get_pages(obj);
275 if (ret != 0)
276 goto fail_unlock;
277
278 ret = i915_gem_object_set_cpu_read_domain_range(obj, args->offset,
279 args->size);
280 if (ret != 0)
281 goto fail_put_pages;
282
283 obj_priv = obj->driver_private;
284 offset = args->offset;
285
286 while (remain > 0) {
287 /* Operation in this page
288 *
289 * page_base = page offset within aperture
290 * page_offset = offset within page
291 * page_length = bytes to copy for this page
292 */
293 page_base = (offset & ~(PAGE_SIZE-1));
294 page_offset = offset & (PAGE_SIZE-1);
295 page_length = remain;
296 if ((page_offset + remain) > PAGE_SIZE)
297 page_length = PAGE_SIZE - page_offset;
298
299 ret = fast_shmem_read(obj_priv->pages,
300 page_base, page_offset,
301 user_data, page_length);
302 if (ret)
303 goto fail_put_pages;
304
305 remain -= page_length;
306 user_data += page_length;
307 offset += page_length;
308 }
309
310fail_put_pages:
311 i915_gem_object_put_pages(obj);
312fail_unlock:
313 mutex_unlock(&dev->struct_mutex);
314
315 return ret;
316}
317
318/**
319 * This is the fallback shmem pread path, which allocates temporary storage
320 * in kernel space to copy_to_user into outside of the struct_mutex, so we
321 * can copy out of the object's backing pages while holding the struct mutex
322 * and not take page faults.
323 */
324static int
325i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj,
326 struct drm_i915_gem_pread *args,
327 struct drm_file *file_priv)
328{
329 struct drm_i915_gem_object *obj_priv = obj->driver_private;
330 struct mm_struct *mm = current->mm;
331 struct page **user_pages;
332 ssize_t remain;
333 loff_t offset, pinned_pages, i;
334 loff_t first_data_page, last_data_page, num_pages;
335 int shmem_page_index, shmem_page_offset;
336 int data_page_index, data_page_offset;
337 int page_length;
338 int ret;
339 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700340 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700341
342 remain = args->size;
343
344 /* Pin the user pages containing the data. We can't fault while
345 * holding the struct mutex, yet we want to hold it while
346 * dereferencing the user data.
347 */
348 first_data_page = data_ptr / PAGE_SIZE;
349 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
350 num_pages = last_data_page - first_data_page + 1;
351
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700352 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700353 if (user_pages == NULL)
354 return -ENOMEM;
355
356 down_read(&mm->mmap_sem);
357 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700358 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700359 up_read(&mm->mmap_sem);
360 if (pinned_pages < num_pages) {
361 ret = -EFAULT;
362 goto fail_put_user_pages;
363 }
364
Eric Anholt280b7132009-03-12 16:56:27 -0700365 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
366
Eric Anholteb014592009-03-10 11:44:52 -0700367 mutex_lock(&dev->struct_mutex);
368
369 ret = i915_gem_object_get_pages(obj);
370 if (ret != 0)
371 goto fail_unlock;
372
373 ret = i915_gem_object_set_cpu_read_domain_range(obj, args->offset,
374 args->size);
375 if (ret != 0)
376 goto fail_put_pages;
377
378 obj_priv = obj->driver_private;
379 offset = args->offset;
380
381 while (remain > 0) {
382 /* Operation in this page
383 *
384 * shmem_page_index = page number within shmem file
385 * shmem_page_offset = offset within page in shmem file
386 * data_page_index = page number in get_user_pages return
387 * data_page_offset = offset with data_page_index page.
388 * page_length = bytes to copy for this page
389 */
390 shmem_page_index = offset / PAGE_SIZE;
391 shmem_page_offset = offset & ~PAGE_MASK;
392 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
393 data_page_offset = data_ptr & ~PAGE_MASK;
394
395 page_length = remain;
396 if ((shmem_page_offset + page_length) > PAGE_SIZE)
397 page_length = PAGE_SIZE - shmem_page_offset;
398 if ((data_page_offset + page_length) > PAGE_SIZE)
399 page_length = PAGE_SIZE - data_page_offset;
400
Eric Anholt280b7132009-03-12 16:56:27 -0700401 if (do_bit17_swizzling) {
402 ret = slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index],
403 shmem_page_offset,
404 user_pages[data_page_index],
405 data_page_offset,
406 page_length,
407 1);
408 } else {
409 ret = slow_shmem_copy(user_pages[data_page_index],
410 data_page_offset,
411 obj_priv->pages[shmem_page_index],
412 shmem_page_offset,
413 page_length);
414 }
Eric Anholteb014592009-03-10 11:44:52 -0700415 if (ret)
416 goto fail_put_pages;
417
418 remain -= page_length;
419 data_ptr += page_length;
420 offset += page_length;
421 }
422
423fail_put_pages:
424 i915_gem_object_put_pages(obj);
425fail_unlock:
426 mutex_unlock(&dev->struct_mutex);
427fail_put_user_pages:
428 for (i = 0; i < pinned_pages; i++) {
429 SetPageDirty(user_pages[i]);
430 page_cache_release(user_pages[i]);
431 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700432 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700433
434 return ret;
435}
436
Eric Anholt673a3942008-07-30 12:06:12 -0700437/**
438 * Reads data from the object referenced by handle.
439 *
440 * On error, the contents of *data are undefined.
441 */
442int
443i915_gem_pread_ioctl(struct drm_device *dev, void *data,
444 struct drm_file *file_priv)
445{
446 struct drm_i915_gem_pread *args = data;
447 struct drm_gem_object *obj;
448 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -0700449 int ret;
450
451 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
452 if (obj == NULL)
453 return -EBADF;
454 obj_priv = obj->driver_private;
455
456 /* Bounds check source.
457 *
458 * XXX: This could use review for overflow issues...
459 */
460 if (args->offset > obj->size || args->size > obj->size ||
461 args->offset + args->size > obj->size) {
462 drm_gem_object_unreference(obj);
463 return -EINVAL;
464 }
465
Eric Anholt280b7132009-03-12 16:56:27 -0700466 if (i915_gem_object_needs_bit17_swizzle(obj)) {
Eric Anholteb014592009-03-10 11:44:52 -0700467 ret = i915_gem_shmem_pread_slow(dev, obj, args, file_priv);
Eric Anholt280b7132009-03-12 16:56:27 -0700468 } else {
469 ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv);
470 if (ret != 0)
471 ret = i915_gem_shmem_pread_slow(dev, obj, args,
472 file_priv);
473 }
Eric Anholt673a3942008-07-30 12:06:12 -0700474
475 drm_gem_object_unreference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700476
Eric Anholteb014592009-03-10 11:44:52 -0700477 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700478}
479
Keith Packard0839ccb2008-10-30 19:38:48 -0700480/* This is the fast write path which cannot handle
481 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700482 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700483
Keith Packard0839ccb2008-10-30 19:38:48 -0700484static inline int
485fast_user_write(struct io_mapping *mapping,
486 loff_t page_base, int page_offset,
487 char __user *user_data,
488 int length)
489{
490 char *vaddr_atomic;
491 unsigned long unwritten;
492
493 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
494 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
495 user_data, length);
496 io_mapping_unmap_atomic(vaddr_atomic);
497 if (unwritten)
498 return -EFAULT;
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700499 return 0;
Keith Packard0839ccb2008-10-30 19:38:48 -0700500}
501
502/* Here's the write path which can sleep for
503 * page faults
504 */
505
506static inline int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700507slow_kernel_write(struct io_mapping *mapping,
508 loff_t gtt_base, int gtt_offset,
509 struct page *user_page, int user_offset,
510 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700511{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700512 char *src_vaddr, *dst_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700513 unsigned long unwritten;
514
Eric Anholt3de09aa2009-03-09 09:42:23 -0700515 dst_vaddr = io_mapping_map_atomic_wc(mapping, gtt_base);
516 src_vaddr = kmap_atomic(user_page, KM_USER1);
517 unwritten = __copy_from_user_inatomic_nocache(dst_vaddr + gtt_offset,
518 src_vaddr + user_offset,
519 length);
520 kunmap_atomic(src_vaddr, KM_USER1);
521 io_mapping_unmap_atomic(dst_vaddr);
Keith Packard0839ccb2008-10-30 19:38:48 -0700522 if (unwritten)
523 return -EFAULT;
524 return 0;
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700525}
526
Eric Anholt40123c12009-03-09 13:42:30 -0700527static inline int
528fast_shmem_write(struct page **pages,
529 loff_t page_base, int page_offset,
530 char __user *data,
531 int length)
532{
533 char __iomem *vaddr;
Dave Airlied0088772009-03-28 20:29:48 -0400534 unsigned long unwritten;
Eric Anholt40123c12009-03-09 13:42:30 -0700535
536 vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0);
537 if (vaddr == NULL)
538 return -ENOMEM;
Dave Airlied0088772009-03-28 20:29:48 -0400539 unwritten = __copy_from_user_inatomic(vaddr + page_offset, data, length);
Eric Anholt40123c12009-03-09 13:42:30 -0700540 kunmap_atomic(vaddr, KM_USER0);
541
Dave Airlied0088772009-03-28 20:29:48 -0400542 if (unwritten)
543 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700544 return 0;
545}
546
Eric Anholt3de09aa2009-03-09 09:42:23 -0700547/**
548 * This is the fast pwrite path, where we copy the data directly from the
549 * user into the GTT, uncached.
550 */
Eric Anholt673a3942008-07-30 12:06:12 -0700551static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700552i915_gem_gtt_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
553 struct drm_i915_gem_pwrite *args,
554 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700555{
556 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Keith Packard0839ccb2008-10-30 19:38:48 -0700557 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700558 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700559 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700560 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700561 int page_offset, page_length;
562 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700563
564 user_data = (char __user *) (uintptr_t) args->data_ptr;
565 remain = args->size;
566 if (!access_ok(VERIFY_READ, user_data, remain))
567 return -EFAULT;
568
569
570 mutex_lock(&dev->struct_mutex);
571 ret = i915_gem_object_pin(obj, 0);
572 if (ret) {
573 mutex_unlock(&dev->struct_mutex);
574 return ret;
575 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800576 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -0700577 if (ret)
578 goto fail;
579
580 obj_priv = obj->driver_private;
581 offset = obj_priv->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700582
583 while (remain > 0) {
584 /* Operation in this page
585 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700586 * page_base = page offset within aperture
587 * page_offset = offset within page
588 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700589 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700590 page_base = (offset & ~(PAGE_SIZE-1));
591 page_offset = offset & (PAGE_SIZE-1);
592 page_length = remain;
593 if ((page_offset + remain) > PAGE_SIZE)
594 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700595
Keith Packard0839ccb2008-10-30 19:38:48 -0700596 ret = fast_user_write (dev_priv->mm.gtt_mapping, page_base,
597 page_offset, user_data, page_length);
Eric Anholt673a3942008-07-30 12:06:12 -0700598
Keith Packard0839ccb2008-10-30 19:38:48 -0700599 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700600 * source page isn't available. Return the error and we'll
601 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700602 */
Eric Anholt3de09aa2009-03-09 09:42:23 -0700603 if (ret)
604 goto fail;
Eric Anholt673a3942008-07-30 12:06:12 -0700605
Keith Packard0839ccb2008-10-30 19:38:48 -0700606 remain -= page_length;
607 user_data += page_length;
608 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700609 }
Eric Anholt673a3942008-07-30 12:06:12 -0700610
611fail:
612 i915_gem_object_unpin(obj);
613 mutex_unlock(&dev->struct_mutex);
614
615 return ret;
616}
617
Eric Anholt3de09aa2009-03-09 09:42:23 -0700618/**
619 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
620 * the memory and maps it using kmap_atomic for copying.
621 *
622 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
623 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
624 */
Eric Anholt3043c602008-10-02 12:24:47 -0700625static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700626i915_gem_gtt_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
627 struct drm_i915_gem_pwrite *args,
628 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700629{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700630 struct drm_i915_gem_object *obj_priv = obj->driver_private;
631 drm_i915_private_t *dev_priv = dev->dev_private;
632 ssize_t remain;
633 loff_t gtt_page_base, offset;
634 loff_t first_data_page, last_data_page, num_pages;
635 loff_t pinned_pages, i;
636 struct page **user_pages;
637 struct mm_struct *mm = current->mm;
638 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700639 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700640 uint64_t data_ptr = args->data_ptr;
641
642 remain = args->size;
643
644 /* Pin the user pages containing the data. We can't fault while
645 * holding the struct mutex, and all of the pwrite implementations
646 * want to hold it while dereferencing the user data.
647 */
648 first_data_page = data_ptr / PAGE_SIZE;
649 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
650 num_pages = last_data_page - first_data_page + 1;
651
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700652 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700653 if (user_pages == NULL)
654 return -ENOMEM;
655
656 down_read(&mm->mmap_sem);
657 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
658 num_pages, 0, 0, user_pages, NULL);
659 up_read(&mm->mmap_sem);
660 if (pinned_pages < num_pages) {
661 ret = -EFAULT;
662 goto out_unpin_pages;
663 }
664
665 mutex_lock(&dev->struct_mutex);
666 ret = i915_gem_object_pin(obj, 0);
667 if (ret)
668 goto out_unlock;
669
670 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
671 if (ret)
672 goto out_unpin_object;
673
674 obj_priv = obj->driver_private;
675 offset = obj_priv->gtt_offset + args->offset;
676
677 while (remain > 0) {
678 /* Operation in this page
679 *
680 * gtt_page_base = page offset within aperture
681 * gtt_page_offset = offset within page in aperture
682 * data_page_index = page number in get_user_pages return
683 * data_page_offset = offset with data_page_index page.
684 * page_length = bytes to copy for this page
685 */
686 gtt_page_base = offset & PAGE_MASK;
687 gtt_page_offset = offset & ~PAGE_MASK;
688 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
689 data_page_offset = data_ptr & ~PAGE_MASK;
690
691 page_length = remain;
692 if ((gtt_page_offset + page_length) > PAGE_SIZE)
693 page_length = PAGE_SIZE - gtt_page_offset;
694 if ((data_page_offset + page_length) > PAGE_SIZE)
695 page_length = PAGE_SIZE - data_page_offset;
696
697 ret = slow_kernel_write(dev_priv->mm.gtt_mapping,
698 gtt_page_base, gtt_page_offset,
699 user_pages[data_page_index],
700 data_page_offset,
701 page_length);
702
703 /* If we get a fault while copying data, then (presumably) our
704 * source page isn't available. Return the error and we'll
705 * retry in the slow path.
706 */
707 if (ret)
708 goto out_unpin_object;
709
710 remain -= page_length;
711 offset += page_length;
712 data_ptr += page_length;
713 }
714
715out_unpin_object:
716 i915_gem_object_unpin(obj);
717out_unlock:
718 mutex_unlock(&dev->struct_mutex);
719out_unpin_pages:
720 for (i = 0; i < pinned_pages; i++)
721 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700722 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700723
724 return ret;
725}
726
Eric Anholt40123c12009-03-09 13:42:30 -0700727/**
728 * This is the fast shmem pwrite path, which attempts to directly
729 * copy_from_user into the kmapped pages backing the object.
730 */
Eric Anholt673a3942008-07-30 12:06:12 -0700731static int
Eric Anholt40123c12009-03-09 13:42:30 -0700732i915_gem_shmem_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
733 struct drm_i915_gem_pwrite *args,
734 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700735{
Eric Anholt40123c12009-03-09 13:42:30 -0700736 struct drm_i915_gem_object *obj_priv = obj->driver_private;
737 ssize_t remain;
738 loff_t offset, page_base;
739 char __user *user_data;
740 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700741 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700742
743 user_data = (char __user *) (uintptr_t) args->data_ptr;
744 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700745
746 mutex_lock(&dev->struct_mutex);
747
Eric Anholt40123c12009-03-09 13:42:30 -0700748 ret = i915_gem_object_get_pages(obj);
749 if (ret != 0)
750 goto fail_unlock;
751
Eric Anholte47c68e2008-11-14 13:35:19 -0800752 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Eric Anholt40123c12009-03-09 13:42:30 -0700753 if (ret != 0)
754 goto fail_put_pages;
Eric Anholt673a3942008-07-30 12:06:12 -0700755
Eric Anholt40123c12009-03-09 13:42:30 -0700756 obj_priv = obj->driver_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700757 offset = args->offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700758 obj_priv->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700759
Eric Anholt40123c12009-03-09 13:42:30 -0700760 while (remain > 0) {
761 /* Operation in this page
762 *
763 * page_base = page offset within aperture
764 * page_offset = offset within page
765 * page_length = bytes to copy for this page
766 */
767 page_base = (offset & ~(PAGE_SIZE-1));
768 page_offset = offset & (PAGE_SIZE-1);
769 page_length = remain;
770 if ((page_offset + remain) > PAGE_SIZE)
771 page_length = PAGE_SIZE - page_offset;
772
773 ret = fast_shmem_write(obj_priv->pages,
774 page_base, page_offset,
775 user_data, page_length);
776 if (ret)
777 goto fail_put_pages;
778
779 remain -= page_length;
780 user_data += page_length;
781 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700782 }
783
Eric Anholt40123c12009-03-09 13:42:30 -0700784fail_put_pages:
785 i915_gem_object_put_pages(obj);
786fail_unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700787 mutex_unlock(&dev->struct_mutex);
788
Eric Anholt40123c12009-03-09 13:42:30 -0700789 return ret;
790}
791
792/**
793 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
794 * the memory and maps it using kmap_atomic for copying.
795 *
796 * This avoids taking mmap_sem for faulting on the user's address while the
797 * struct_mutex is held.
798 */
799static int
800i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
801 struct drm_i915_gem_pwrite *args,
802 struct drm_file *file_priv)
803{
804 struct drm_i915_gem_object *obj_priv = obj->driver_private;
805 struct mm_struct *mm = current->mm;
806 struct page **user_pages;
807 ssize_t remain;
808 loff_t offset, pinned_pages, i;
809 loff_t first_data_page, last_data_page, num_pages;
810 int shmem_page_index, shmem_page_offset;
811 int data_page_index, data_page_offset;
812 int page_length;
813 int ret;
814 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700815 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700816
817 remain = args->size;
818
819 /* Pin the user pages containing the data. We can't fault while
820 * holding the struct mutex, and all of the pwrite implementations
821 * want to hold it while dereferencing the user data.
822 */
823 first_data_page = data_ptr / PAGE_SIZE;
824 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
825 num_pages = last_data_page - first_data_page + 1;
826
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700827 user_pages = drm_calloc_large(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700828 if (user_pages == NULL)
829 return -ENOMEM;
830
831 down_read(&mm->mmap_sem);
832 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
833 num_pages, 0, 0, user_pages, NULL);
834 up_read(&mm->mmap_sem);
835 if (pinned_pages < num_pages) {
836 ret = -EFAULT;
837 goto fail_put_user_pages;
838 }
839
Eric Anholt280b7132009-03-12 16:56:27 -0700840 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
841
Eric Anholt40123c12009-03-09 13:42:30 -0700842 mutex_lock(&dev->struct_mutex);
843
844 ret = i915_gem_object_get_pages(obj);
845 if (ret != 0)
846 goto fail_unlock;
847
848 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
849 if (ret != 0)
850 goto fail_put_pages;
851
852 obj_priv = obj->driver_private;
853 offset = args->offset;
854 obj_priv->dirty = 1;
855
856 while (remain > 0) {
857 /* Operation in this page
858 *
859 * shmem_page_index = page number within shmem file
860 * shmem_page_offset = offset within page in shmem file
861 * data_page_index = page number in get_user_pages return
862 * data_page_offset = offset with data_page_index page.
863 * page_length = bytes to copy for this page
864 */
865 shmem_page_index = offset / PAGE_SIZE;
866 shmem_page_offset = offset & ~PAGE_MASK;
867 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
868 data_page_offset = data_ptr & ~PAGE_MASK;
869
870 page_length = remain;
871 if ((shmem_page_offset + page_length) > PAGE_SIZE)
872 page_length = PAGE_SIZE - shmem_page_offset;
873 if ((data_page_offset + page_length) > PAGE_SIZE)
874 page_length = PAGE_SIZE - data_page_offset;
875
Eric Anholt280b7132009-03-12 16:56:27 -0700876 if (do_bit17_swizzling) {
877 ret = slow_shmem_bit17_copy(obj_priv->pages[shmem_page_index],
878 shmem_page_offset,
879 user_pages[data_page_index],
880 data_page_offset,
881 page_length,
882 0);
883 } else {
884 ret = slow_shmem_copy(obj_priv->pages[shmem_page_index],
885 shmem_page_offset,
886 user_pages[data_page_index],
887 data_page_offset,
888 page_length);
889 }
Eric Anholt40123c12009-03-09 13:42:30 -0700890 if (ret)
891 goto fail_put_pages;
892
893 remain -= page_length;
894 data_ptr += page_length;
895 offset += page_length;
896 }
897
898fail_put_pages:
899 i915_gem_object_put_pages(obj);
900fail_unlock:
901 mutex_unlock(&dev->struct_mutex);
902fail_put_user_pages:
903 for (i = 0; i < pinned_pages; i++)
904 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700905 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -0700906
907 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700908}
909
910/**
911 * Writes data to the object referenced by handle.
912 *
913 * On error, the contents of the buffer that were to be modified are undefined.
914 */
915int
916i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
917 struct drm_file *file_priv)
918{
919 struct drm_i915_gem_pwrite *args = data;
920 struct drm_gem_object *obj;
921 struct drm_i915_gem_object *obj_priv;
922 int ret = 0;
923
924 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
925 if (obj == NULL)
926 return -EBADF;
927 obj_priv = obj->driver_private;
928
929 /* Bounds check destination.
930 *
931 * XXX: This could use review for overflow issues...
932 */
933 if (args->offset > obj->size || args->size > obj->size ||
934 args->offset + args->size > obj->size) {
935 drm_gem_object_unreference(obj);
936 return -EINVAL;
937 }
938
939 /* We can only do the GTT pwrite on untiled buffers, as otherwise
940 * it would end up going through the fenced access, and we'll get
941 * different detiling behavior between reading and writing.
942 * pread/pwrite currently are reading and writing from the CPU
943 * perspective, requiring manual detiling by the client.
944 */
Dave Airlie71acb5e2008-12-30 20:31:46 +1000945 if (obj_priv->phys_obj)
946 ret = i915_gem_phys_pwrite(dev, obj, args, file_priv);
947 else if (obj_priv->tiling_mode == I915_TILING_NONE &&
Eric Anholt3de09aa2009-03-09 09:42:23 -0700948 dev->gtt_total != 0) {
949 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file_priv);
950 if (ret == -EFAULT) {
951 ret = i915_gem_gtt_pwrite_slow(dev, obj, args,
952 file_priv);
953 }
Eric Anholt280b7132009-03-12 16:56:27 -0700954 } else if (i915_gem_object_needs_bit17_swizzle(obj)) {
955 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file_priv);
Eric Anholt40123c12009-03-09 13:42:30 -0700956 } else {
957 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file_priv);
958 if (ret == -EFAULT) {
959 ret = i915_gem_shmem_pwrite_slow(dev, obj, args,
960 file_priv);
961 }
962 }
Eric Anholt673a3942008-07-30 12:06:12 -0700963
964#if WATCH_PWRITE
965 if (ret)
966 DRM_INFO("pwrite failed %d\n", ret);
967#endif
968
969 drm_gem_object_unreference(obj);
970
971 return ret;
972}
973
974/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800975 * Called when user space prepares to use an object with the CPU, either
976 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700977 */
978int
979i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
980 struct drm_file *file_priv)
981{
982 struct drm_i915_gem_set_domain *args = data;
983 struct drm_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800984 uint32_t read_domains = args->read_domains;
985 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700986 int ret;
987
988 if (!(dev->driver->driver_features & DRIVER_GEM))
989 return -ENODEV;
990
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800991 /* Only handle setting domains to types used by the CPU. */
992 if (write_domain & ~(I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT))
993 return -EINVAL;
994
995 if (read_domains & ~(I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT))
996 return -EINVAL;
997
998 /* Having something in the write domain implies it's in the read
999 * domain, and only that read domain. Enforce that in the request.
1000 */
1001 if (write_domain != 0 && read_domains != write_domain)
1002 return -EINVAL;
1003
Eric Anholt673a3942008-07-30 12:06:12 -07001004 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1005 if (obj == NULL)
1006 return -EBADF;
1007
1008 mutex_lock(&dev->struct_mutex);
1009#if WATCH_BUF
1010 DRM_INFO("set_domain_ioctl %p(%d), %08x %08x\n",
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001011 obj, obj->size, read_domains, write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07001012#endif
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001013 if (read_domains & I915_GEM_DOMAIN_GTT) {
1014 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001015
1016 /* Silently promote "you're not bound, there was nothing to do"
1017 * to success, since the client was just asking us to
1018 * make sure everything was done.
1019 */
1020 if (ret == -EINVAL)
1021 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001022 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001023 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001024 }
1025
Eric Anholt673a3942008-07-30 12:06:12 -07001026 drm_gem_object_unreference(obj);
1027 mutex_unlock(&dev->struct_mutex);
1028 return ret;
1029}
1030
1031/**
1032 * Called when user space has done writes to this buffer
1033 */
1034int
1035i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
1036 struct drm_file *file_priv)
1037{
1038 struct drm_i915_gem_sw_finish *args = data;
1039 struct drm_gem_object *obj;
1040 struct drm_i915_gem_object *obj_priv;
1041 int ret = 0;
1042
1043 if (!(dev->driver->driver_features & DRIVER_GEM))
1044 return -ENODEV;
1045
1046 mutex_lock(&dev->struct_mutex);
1047 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1048 if (obj == NULL) {
1049 mutex_unlock(&dev->struct_mutex);
1050 return -EBADF;
1051 }
1052
1053#if WATCH_BUF
1054 DRM_INFO("%s: sw_finish %d (%p %d)\n",
1055 __func__, args->handle, obj, obj->size);
1056#endif
1057 obj_priv = obj->driver_private;
1058
1059 /* Pinned buffers may be scanout, so flush the cache */
Eric Anholte47c68e2008-11-14 13:35:19 -08001060 if (obj_priv->pin_count)
1061 i915_gem_object_flush_cpu_write_domain(obj);
1062
Eric Anholt673a3942008-07-30 12:06:12 -07001063 drm_gem_object_unreference(obj);
1064 mutex_unlock(&dev->struct_mutex);
1065 return ret;
1066}
1067
1068/**
1069 * Maps the contents of an object, returning the address it is mapped
1070 * into.
1071 *
1072 * While the mapping holds a reference on the contents of the object, it doesn't
1073 * imply a ref on the object itself.
1074 */
1075int
1076i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
1077 struct drm_file *file_priv)
1078{
1079 struct drm_i915_gem_mmap *args = data;
1080 struct drm_gem_object *obj;
1081 loff_t offset;
1082 unsigned long addr;
1083
1084 if (!(dev->driver->driver_features & DRIVER_GEM))
1085 return -ENODEV;
1086
1087 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1088 if (obj == NULL)
1089 return -EBADF;
1090
1091 offset = args->offset;
1092
1093 down_write(&current->mm->mmap_sem);
1094 addr = do_mmap(obj->filp, 0, args->size,
1095 PROT_READ | PROT_WRITE, MAP_SHARED,
1096 args->offset);
1097 up_write(&current->mm->mmap_sem);
1098 mutex_lock(&dev->struct_mutex);
1099 drm_gem_object_unreference(obj);
1100 mutex_unlock(&dev->struct_mutex);
1101 if (IS_ERR((void *)addr))
1102 return addr;
1103
1104 args->addr_ptr = (uint64_t) addr;
1105
1106 return 0;
1107}
1108
Jesse Barnesde151cf2008-11-12 10:03:55 -08001109/**
1110 * i915_gem_fault - fault a page into the GTT
1111 * vma: VMA in question
1112 * vmf: fault info
1113 *
1114 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1115 * from userspace. The fault handler takes care of binding the object to
1116 * the GTT (if needed), allocating and programming a fence register (again,
1117 * only if needed based on whether the old reg is still valid or the object
1118 * is tiled) and inserting a new PTE into the faulting process.
1119 *
1120 * Note that the faulting process may involve evicting existing objects
1121 * from the GTT and/or fence registers to make room. So performance may
1122 * suffer if the GTT working set is large or there are few fence registers
1123 * left.
1124 */
1125int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1126{
1127 struct drm_gem_object *obj = vma->vm_private_data;
1128 struct drm_device *dev = obj->dev;
1129 struct drm_i915_private *dev_priv = dev->dev_private;
1130 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1131 pgoff_t page_offset;
1132 unsigned long pfn;
1133 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001134 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001135
1136 /* We don't use vmf->pgoff since that has the fake offset */
1137 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1138 PAGE_SHIFT;
1139
1140 /* Now bind it into the GTT if needed */
1141 mutex_lock(&dev->struct_mutex);
1142 if (!obj_priv->gtt_space) {
1143 ret = i915_gem_object_bind_to_gtt(obj, obj_priv->gtt_alignment);
1144 if (ret) {
1145 mutex_unlock(&dev->struct_mutex);
1146 return VM_FAULT_SIGBUS;
1147 }
Kristian Høgsberg07f4f3e2009-05-27 14:37:28 -04001148
1149 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1150 if (ret) {
1151 mutex_unlock(&dev->struct_mutex);
1152 return VM_FAULT_SIGBUS;
1153 }
1154
Jesse Barnes14b60392009-05-20 16:47:08 -04001155 list_add_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001156 }
1157
1158 /* Need a new fence register? */
1159 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001160 obj_priv->tiling_mode != I915_TILING_NONE) {
Jesse Barnes0f973f22009-01-26 17:10:45 -08001161 ret = i915_gem_object_get_fence_reg(obj, write);
Chris Wilson7d8d58b2009-02-04 14:15:10 +00001162 if (ret) {
1163 mutex_unlock(&dev->struct_mutex);
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001164 return VM_FAULT_SIGBUS;
Chris Wilson7d8d58b2009-02-04 14:15:10 +00001165 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001166 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001167
1168 pfn = ((dev->agp->base + obj_priv->gtt_offset) >> PAGE_SHIFT) +
1169 page_offset;
1170
1171 /* Finally, remap it using the new GTT offset */
1172 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
1173
1174 mutex_unlock(&dev->struct_mutex);
1175
1176 switch (ret) {
1177 case -ENOMEM:
1178 case -EAGAIN:
1179 return VM_FAULT_OOM;
1180 case -EFAULT:
Jesse Barnes959b8872009-03-20 14:16:33 -07001181 case -EINVAL:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001182 return VM_FAULT_SIGBUS;
1183 default:
1184 return VM_FAULT_NOPAGE;
1185 }
1186}
1187
1188/**
1189 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1190 * @obj: obj in question
1191 *
1192 * GEM memory mapping works by handing back to userspace a fake mmap offset
1193 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1194 * up the object based on the offset and sets up the various memory mapping
1195 * structures.
1196 *
1197 * This routine allocates and attaches a fake offset for @obj.
1198 */
1199static int
1200i915_gem_create_mmap_offset(struct drm_gem_object *obj)
1201{
1202 struct drm_device *dev = obj->dev;
1203 struct drm_gem_mm *mm = dev->mm_private;
1204 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1205 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001206 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001207 int ret = 0;
1208
1209 /* Set the object up for mmap'ing */
1210 list = &obj->map_list;
1211 list->map = drm_calloc(1, sizeof(struct drm_map_list),
1212 DRM_MEM_DRIVER);
1213 if (!list->map)
1214 return -ENOMEM;
1215
1216 map = list->map;
1217 map->type = _DRM_GEM;
1218 map->size = obj->size;
1219 map->handle = obj;
1220
1221 /* Get a DRM GEM mmap offset allocated... */
1222 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
1223 obj->size / PAGE_SIZE, 0, 0);
1224 if (!list->file_offset_node) {
1225 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
1226 ret = -ENOMEM;
1227 goto out_free_list;
1228 }
1229
1230 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
1231 obj->size / PAGE_SIZE, 0);
1232 if (!list->file_offset_node) {
1233 ret = -ENOMEM;
1234 goto out_free_list;
1235 }
1236
1237 list->hash.key = list->file_offset_node->start;
1238 if (drm_ht_insert_item(&mm->offset_hash, &list->hash)) {
1239 DRM_ERROR("failed to add to map hash\n");
1240 goto out_free_mm;
1241 }
1242
1243 /* By now we should be all set, any drm_mmap request on the offset
1244 * below will get to our mmap & fault handler */
1245 obj_priv->mmap_offset = ((uint64_t) list->hash.key) << PAGE_SHIFT;
1246
1247 return 0;
1248
1249out_free_mm:
1250 drm_mm_put_block(list->file_offset_node);
1251out_free_list:
1252 drm_free(list->map, sizeof(struct drm_map_list), DRM_MEM_DRIVER);
1253
1254 return ret;
1255}
1256
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001257static void
1258i915_gem_free_mmap_offset(struct drm_gem_object *obj)
1259{
1260 struct drm_device *dev = obj->dev;
1261 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1262 struct drm_gem_mm *mm = dev->mm_private;
1263 struct drm_map_list *list;
1264
1265 list = &obj->map_list;
1266 drm_ht_remove_item(&mm->offset_hash, &list->hash);
1267
1268 if (list->file_offset_node) {
1269 drm_mm_put_block(list->file_offset_node);
1270 list->file_offset_node = NULL;
1271 }
1272
1273 if (list->map) {
1274 drm_free(list->map, sizeof(struct drm_map), DRM_MEM_DRIVER);
1275 list->map = NULL;
1276 }
1277
1278 obj_priv->mmap_offset = 0;
1279}
1280
Jesse Barnesde151cf2008-11-12 10:03:55 -08001281/**
1282 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1283 * @obj: object to check
1284 *
1285 * Return the required GTT alignment for an object, taking into account
1286 * potential fence register mapping if needed.
1287 */
1288static uint32_t
1289i915_gem_get_gtt_alignment(struct drm_gem_object *obj)
1290{
1291 struct drm_device *dev = obj->dev;
1292 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1293 int start, i;
1294
1295 /*
1296 * Minimum alignment is 4k (GTT page size), but might be greater
1297 * if a fence register is needed for the object.
1298 */
1299 if (IS_I965G(dev) || obj_priv->tiling_mode == I915_TILING_NONE)
1300 return 4096;
1301
1302 /*
1303 * Previous chips need to be aligned to the size of the smallest
1304 * fence register that can contain the object.
1305 */
1306 if (IS_I9XX(dev))
1307 start = 1024*1024;
1308 else
1309 start = 512*1024;
1310
1311 for (i = start; i < obj->size; i <<= 1)
1312 ;
1313
1314 return i;
1315}
1316
1317/**
1318 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1319 * @dev: DRM device
1320 * @data: GTT mapping ioctl data
1321 * @file_priv: GEM object info
1322 *
1323 * Simply returns the fake offset to userspace so it can mmap it.
1324 * The mmap call will end up in drm_gem_mmap(), which will set things
1325 * up so we can get faults in the handler above.
1326 *
1327 * The fault handler will take care of binding the object into the GTT
1328 * (since it may have been evicted to make room for something), allocating
1329 * a fence register, and mapping the appropriate aperture address into
1330 * userspace.
1331 */
1332int
1333i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1334 struct drm_file *file_priv)
1335{
1336 struct drm_i915_gem_mmap_gtt *args = data;
1337 struct drm_i915_private *dev_priv = dev->dev_private;
1338 struct drm_gem_object *obj;
1339 struct drm_i915_gem_object *obj_priv;
1340 int ret;
1341
1342 if (!(dev->driver->driver_features & DRIVER_GEM))
1343 return -ENODEV;
1344
1345 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1346 if (obj == NULL)
1347 return -EBADF;
1348
1349 mutex_lock(&dev->struct_mutex);
1350
1351 obj_priv = obj->driver_private;
1352
1353 if (!obj_priv->mmap_offset) {
1354 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson13af1062009-02-11 14:26:31 +00001355 if (ret) {
1356 drm_gem_object_unreference(obj);
1357 mutex_unlock(&dev->struct_mutex);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001358 return ret;
Chris Wilson13af1062009-02-11 14:26:31 +00001359 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001360 }
1361
1362 args->offset = obj_priv->mmap_offset;
1363
1364 obj_priv->gtt_alignment = i915_gem_get_gtt_alignment(obj);
1365
1366 /* Make sure the alignment is correct for fence regs etc */
1367 if (obj_priv->agp_mem &&
1368 (obj_priv->gtt_offset & (obj_priv->gtt_alignment - 1))) {
1369 drm_gem_object_unreference(obj);
1370 mutex_unlock(&dev->struct_mutex);
1371 return -EINVAL;
1372 }
1373
1374 /*
1375 * Pull it into the GTT so that we have a page list (makes the
1376 * initial fault faster and any subsequent flushing possible).
1377 */
1378 if (!obj_priv->agp_mem) {
1379 ret = i915_gem_object_bind_to_gtt(obj, obj_priv->gtt_alignment);
1380 if (ret) {
1381 drm_gem_object_unreference(obj);
1382 mutex_unlock(&dev->struct_mutex);
1383 return ret;
1384 }
Jesse Barnes14b60392009-05-20 16:47:08 -04001385 list_add_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001386 }
1387
1388 drm_gem_object_unreference(obj);
1389 mutex_unlock(&dev->struct_mutex);
1390
1391 return 0;
1392}
1393
Ben Gamari6911a9b2009-04-02 11:24:54 -07001394void
Eric Anholt856fa192009-03-19 14:10:50 -07001395i915_gem_object_put_pages(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001396{
1397 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1398 int page_count = obj->size / PAGE_SIZE;
1399 int i;
1400
Eric Anholt856fa192009-03-19 14:10:50 -07001401 BUG_ON(obj_priv->pages_refcount == 0);
1402
1403 if (--obj_priv->pages_refcount != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07001404 return;
1405
Eric Anholt280b7132009-03-12 16:56:27 -07001406 if (obj_priv->tiling_mode != I915_TILING_NONE)
1407 i915_gem_object_save_bit_17_swizzle(obj);
1408
Eric Anholt673a3942008-07-30 12:06:12 -07001409 for (i = 0; i < page_count; i++)
Eric Anholt856fa192009-03-19 14:10:50 -07001410 if (obj_priv->pages[i] != NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07001411 if (obj_priv->dirty)
Eric Anholt856fa192009-03-19 14:10:50 -07001412 set_page_dirty(obj_priv->pages[i]);
1413 mark_page_accessed(obj_priv->pages[i]);
1414 page_cache_release(obj_priv->pages[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07001415 }
1416 obj_priv->dirty = 0;
1417
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001418 drm_free_large(obj_priv->pages);
Eric Anholt856fa192009-03-19 14:10:50 -07001419 obj_priv->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001420}
1421
1422static void
Eric Anholtce44b0e2008-11-06 16:00:31 -08001423i915_gem_object_move_to_active(struct drm_gem_object *obj, uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001424{
1425 struct drm_device *dev = obj->dev;
1426 drm_i915_private_t *dev_priv = dev->dev_private;
1427 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1428
1429 /* Add a reference if we're newly entering the active list. */
1430 if (!obj_priv->active) {
1431 drm_gem_object_reference(obj);
1432 obj_priv->active = 1;
1433 }
1434 /* Move from whatever list we were on to the tail of execution. */
Carl Worth5e118f42009-03-20 11:54:25 -07001435 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001436 list_move_tail(&obj_priv->list,
1437 &dev_priv->mm.active_list);
Carl Worth5e118f42009-03-20 11:54:25 -07001438 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001439 obj_priv->last_rendering_seqno = seqno;
Eric Anholt673a3942008-07-30 12:06:12 -07001440}
1441
Eric Anholtce44b0e2008-11-06 16:00:31 -08001442static void
1443i915_gem_object_move_to_flushing(struct drm_gem_object *obj)
1444{
1445 struct drm_device *dev = obj->dev;
1446 drm_i915_private_t *dev_priv = dev->dev_private;
1447 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1448
1449 BUG_ON(!obj_priv->active);
1450 list_move_tail(&obj_priv->list, &dev_priv->mm.flushing_list);
1451 obj_priv->last_rendering_seqno = 0;
1452}
Eric Anholt673a3942008-07-30 12:06:12 -07001453
1454static void
1455i915_gem_object_move_to_inactive(struct drm_gem_object *obj)
1456{
1457 struct drm_device *dev = obj->dev;
1458 drm_i915_private_t *dev_priv = dev->dev_private;
1459 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1460
1461 i915_verify_inactive(dev, __FILE__, __LINE__);
1462 if (obj_priv->pin_count != 0)
1463 list_del_init(&obj_priv->list);
1464 else
1465 list_move_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
1466
Eric Anholtce44b0e2008-11-06 16:00:31 -08001467 obj_priv->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001468 if (obj_priv->active) {
1469 obj_priv->active = 0;
1470 drm_gem_object_unreference(obj);
1471 }
1472 i915_verify_inactive(dev, __FILE__, __LINE__);
1473}
1474
1475/**
1476 * Creates a new sequence number, emitting a write of it to the status page
1477 * plus an interrupt, which will trigger i915_user_interrupt_handler.
1478 *
1479 * Must be called with struct_lock held.
1480 *
1481 * Returned sequence numbers are nonzero on success.
1482 */
1483static uint32_t
Eric Anholtb9624422009-06-03 07:27:35 +00001484i915_add_request(struct drm_device *dev, struct drm_file *file_priv,
1485 uint32_t flush_domains)
Eric Anholt673a3942008-07-30 12:06:12 -07001486{
1487 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtb9624422009-06-03 07:27:35 +00001488 struct drm_i915_file_private *i915_file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001489 struct drm_i915_gem_request *request;
1490 uint32_t seqno;
1491 int was_empty;
1492 RING_LOCALS;
1493
Eric Anholtb9624422009-06-03 07:27:35 +00001494 if (file_priv != NULL)
1495 i915_file_priv = file_priv->driver_priv;
1496
Eric Anholt673a3942008-07-30 12:06:12 -07001497 request = drm_calloc(1, sizeof(*request), DRM_MEM_DRIVER);
1498 if (request == NULL)
1499 return 0;
1500
1501 /* Grab the seqno we're going to make this request be, and bump the
1502 * next (skipping 0 so it can be the reserved no-seqno value).
1503 */
1504 seqno = dev_priv->mm.next_gem_seqno;
1505 dev_priv->mm.next_gem_seqno++;
1506 if (dev_priv->mm.next_gem_seqno == 0)
1507 dev_priv->mm.next_gem_seqno++;
1508
1509 BEGIN_LP_RING(4);
1510 OUT_RING(MI_STORE_DWORD_INDEX);
1511 OUT_RING(I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1512 OUT_RING(seqno);
1513
1514 OUT_RING(MI_USER_INTERRUPT);
1515 ADVANCE_LP_RING();
1516
1517 DRM_DEBUG("%d\n", seqno);
1518
1519 request->seqno = seqno;
1520 request->emitted_jiffies = jiffies;
Eric Anholt673a3942008-07-30 12:06:12 -07001521 was_empty = list_empty(&dev_priv->mm.request_list);
1522 list_add_tail(&request->list, &dev_priv->mm.request_list);
Eric Anholtb9624422009-06-03 07:27:35 +00001523 if (i915_file_priv) {
1524 list_add_tail(&request->client_list,
1525 &i915_file_priv->mm.request_list);
1526 } else {
1527 INIT_LIST_HEAD(&request->client_list);
1528 }
Eric Anholt673a3942008-07-30 12:06:12 -07001529
Eric Anholtce44b0e2008-11-06 16:00:31 -08001530 /* Associate any objects on the flushing list matching the write
1531 * domain we're flushing with our flush.
1532 */
1533 if (flush_domains != 0) {
1534 struct drm_i915_gem_object *obj_priv, *next;
1535
1536 list_for_each_entry_safe(obj_priv, next,
1537 &dev_priv->mm.flushing_list, list) {
1538 struct drm_gem_object *obj = obj_priv->obj;
1539
1540 if ((obj->write_domain & flush_domains) ==
1541 obj->write_domain) {
1542 obj->write_domain = 0;
1543 i915_gem_object_move_to_active(obj, seqno);
1544 }
1545 }
1546
1547 }
1548
Keith Packard6dbe2772008-10-14 21:41:13 -07001549 if (was_empty && !dev_priv->mm.suspended)
Eric Anholt673a3942008-07-30 12:06:12 -07001550 schedule_delayed_work(&dev_priv->mm.retire_work, HZ);
1551 return seqno;
1552}
1553
1554/**
1555 * Command execution barrier
1556 *
1557 * Ensures that all commands in the ring are finished
1558 * before signalling the CPU
1559 */
Eric Anholt3043c602008-10-02 12:24:47 -07001560static uint32_t
Eric Anholt673a3942008-07-30 12:06:12 -07001561i915_retire_commands(struct drm_device *dev)
1562{
1563 drm_i915_private_t *dev_priv = dev->dev_private;
1564 uint32_t cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
1565 uint32_t flush_domains = 0;
1566 RING_LOCALS;
1567
1568 /* The sampler always gets flushed on i965 (sigh) */
1569 if (IS_I965G(dev))
1570 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
1571 BEGIN_LP_RING(2);
1572 OUT_RING(cmd);
1573 OUT_RING(0); /* noop */
1574 ADVANCE_LP_RING();
1575 return flush_domains;
1576}
1577
1578/**
1579 * Moves buffers associated only with the given active seqno from the active
1580 * to inactive list, potentially freeing them.
1581 */
1582static void
1583i915_gem_retire_request(struct drm_device *dev,
1584 struct drm_i915_gem_request *request)
1585{
1586 drm_i915_private_t *dev_priv = dev->dev_private;
1587
1588 /* Move any buffers on the active list that are no longer referenced
1589 * by the ringbuffer to the flushing/inactive lists as appropriate.
1590 */
Carl Worth5e118f42009-03-20 11:54:25 -07001591 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001592 while (!list_empty(&dev_priv->mm.active_list)) {
1593 struct drm_gem_object *obj;
1594 struct drm_i915_gem_object *obj_priv;
1595
1596 obj_priv = list_first_entry(&dev_priv->mm.active_list,
1597 struct drm_i915_gem_object,
1598 list);
1599 obj = obj_priv->obj;
1600
1601 /* If the seqno being retired doesn't match the oldest in the
1602 * list, then the oldest in the list must still be newer than
1603 * this seqno.
1604 */
1605 if (obj_priv->last_rendering_seqno != request->seqno)
Carl Worth5e118f42009-03-20 11:54:25 -07001606 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001607
Eric Anholt673a3942008-07-30 12:06:12 -07001608#if WATCH_LRU
1609 DRM_INFO("%s: retire %d moves to inactive list %p\n",
1610 __func__, request->seqno, obj);
1611#endif
1612
Eric Anholtce44b0e2008-11-06 16:00:31 -08001613 if (obj->write_domain != 0)
1614 i915_gem_object_move_to_flushing(obj);
Shaohua Li68c84342009-04-08 10:58:23 +08001615 else {
1616 /* Take a reference on the object so it won't be
1617 * freed while the spinlock is held. The list
1618 * protection for this spinlock is safe when breaking
1619 * the lock like this since the next thing we do
1620 * is just get the head of the list again.
1621 */
1622 drm_gem_object_reference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001623 i915_gem_object_move_to_inactive(obj);
Shaohua Li68c84342009-04-08 10:58:23 +08001624 spin_unlock(&dev_priv->mm.active_list_lock);
1625 drm_gem_object_unreference(obj);
1626 spin_lock(&dev_priv->mm.active_list_lock);
1627 }
Eric Anholt673a3942008-07-30 12:06:12 -07001628 }
Carl Worth5e118f42009-03-20 11:54:25 -07001629out:
1630 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001631}
1632
1633/**
1634 * Returns true if seq1 is later than seq2.
1635 */
1636static int
1637i915_seqno_passed(uint32_t seq1, uint32_t seq2)
1638{
1639 return (int32_t)(seq1 - seq2) >= 0;
1640}
1641
1642uint32_t
1643i915_get_gem_seqno(struct drm_device *dev)
1644{
1645 drm_i915_private_t *dev_priv = dev->dev_private;
1646
1647 return READ_HWSP(dev_priv, I915_GEM_HWS_INDEX);
1648}
1649
1650/**
1651 * This function clears the request list as sequence numbers are passed.
1652 */
1653void
1654i915_gem_retire_requests(struct drm_device *dev)
1655{
1656 drm_i915_private_t *dev_priv = dev->dev_private;
1657 uint32_t seqno;
1658
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001659 if (!dev_priv->hw_status_page)
1660 return;
1661
Eric Anholt673a3942008-07-30 12:06:12 -07001662 seqno = i915_get_gem_seqno(dev);
1663
1664 while (!list_empty(&dev_priv->mm.request_list)) {
1665 struct drm_i915_gem_request *request;
1666 uint32_t retiring_seqno;
1667
1668 request = list_first_entry(&dev_priv->mm.request_list,
1669 struct drm_i915_gem_request,
1670 list);
1671 retiring_seqno = request->seqno;
1672
1673 if (i915_seqno_passed(seqno, retiring_seqno) ||
1674 dev_priv->mm.wedged) {
1675 i915_gem_retire_request(dev, request);
1676
1677 list_del(&request->list);
Eric Anholtb9624422009-06-03 07:27:35 +00001678 list_del(&request->client_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001679 drm_free(request, sizeof(*request), DRM_MEM_DRIVER);
1680 } else
1681 break;
1682 }
1683}
1684
1685void
1686i915_gem_retire_work_handler(struct work_struct *work)
1687{
1688 drm_i915_private_t *dev_priv;
1689 struct drm_device *dev;
1690
1691 dev_priv = container_of(work, drm_i915_private_t,
1692 mm.retire_work.work);
1693 dev = dev_priv->dev;
1694
1695 mutex_lock(&dev->struct_mutex);
1696 i915_gem_retire_requests(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07001697 if (!dev_priv->mm.suspended &&
1698 !list_empty(&dev_priv->mm.request_list))
Eric Anholt673a3942008-07-30 12:06:12 -07001699 schedule_delayed_work(&dev_priv->mm.retire_work, HZ);
1700 mutex_unlock(&dev->struct_mutex);
1701}
1702
1703/**
1704 * Waits for a sequence number to be signaled, and cleans up the
1705 * request and object lists appropriately for that event.
1706 */
Eric Anholt3043c602008-10-02 12:24:47 -07001707static int
Eric Anholt673a3942008-07-30 12:06:12 -07001708i915_wait_request(struct drm_device *dev, uint32_t seqno)
1709{
1710 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001711 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001712 int ret = 0;
1713
1714 BUG_ON(seqno == 0);
1715
1716 if (!i915_seqno_passed(i915_get_gem_seqno(dev), seqno)) {
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001717 if (IS_IGDNG(dev))
1718 ier = I915_READ(DEIER) | I915_READ(GTIER);
1719 else
1720 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001721 if (!ier) {
1722 DRM_ERROR("something (likely vbetool) disabled "
1723 "interrupts, re-enabling\n");
1724 i915_driver_irq_preinstall(dev);
1725 i915_driver_irq_postinstall(dev);
1726 }
1727
Eric Anholt673a3942008-07-30 12:06:12 -07001728 dev_priv->mm.waiting_gem_seqno = seqno;
1729 i915_user_irq_get(dev);
1730 ret = wait_event_interruptible(dev_priv->irq_queue,
1731 i915_seqno_passed(i915_get_gem_seqno(dev),
1732 seqno) ||
1733 dev_priv->mm.wedged);
1734 i915_user_irq_put(dev);
1735 dev_priv->mm.waiting_gem_seqno = 0;
1736 }
1737 if (dev_priv->mm.wedged)
1738 ret = -EIO;
1739
1740 if (ret && ret != -ERESTARTSYS)
1741 DRM_ERROR("%s returns %d (awaiting %d at %d)\n",
1742 __func__, ret, seqno, i915_get_gem_seqno(dev));
1743
1744 /* Directly dispatch request retiring. While we have the work queue
1745 * to handle this, the waiter on a request often wants an associated
1746 * buffer to have made it to the inactive list, and we would need
1747 * a separate wait queue to handle that.
1748 */
1749 if (ret == 0)
1750 i915_gem_retire_requests(dev);
1751
1752 return ret;
1753}
1754
1755static void
1756i915_gem_flush(struct drm_device *dev,
1757 uint32_t invalidate_domains,
1758 uint32_t flush_domains)
1759{
1760 drm_i915_private_t *dev_priv = dev->dev_private;
1761 uint32_t cmd;
1762 RING_LOCALS;
1763
1764#if WATCH_EXEC
1765 DRM_INFO("%s: invalidate %08x flush %08x\n", __func__,
1766 invalidate_domains, flush_domains);
1767#endif
1768
1769 if (flush_domains & I915_GEM_DOMAIN_CPU)
1770 drm_agp_chipset_flush(dev);
1771
1772 if ((invalidate_domains | flush_domains) & ~(I915_GEM_DOMAIN_CPU |
1773 I915_GEM_DOMAIN_GTT)) {
1774 /*
1775 * read/write caches:
1776 *
1777 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
1778 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
1779 * also flushed at 2d versus 3d pipeline switches.
1780 *
1781 * read-only caches:
1782 *
1783 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
1784 * MI_READ_FLUSH is set, and is always flushed on 965.
1785 *
1786 * I915_GEM_DOMAIN_COMMAND may not exist?
1787 *
1788 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
1789 * invalidated when MI_EXE_FLUSH is set.
1790 *
1791 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
1792 * invalidated with every MI_FLUSH.
1793 *
1794 * TLBs:
1795 *
1796 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
1797 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
1798 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
1799 * are flushed at any MI_FLUSH.
1800 */
1801
1802 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
1803 if ((invalidate_domains|flush_domains) &
1804 I915_GEM_DOMAIN_RENDER)
1805 cmd &= ~MI_NO_WRITE_FLUSH;
1806 if (!IS_I965G(dev)) {
1807 /*
1808 * On the 965, the sampler cache always gets flushed
1809 * and this bit is reserved.
1810 */
1811 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
1812 cmd |= MI_READ_FLUSH;
1813 }
1814 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
1815 cmd |= MI_EXE_FLUSH;
1816
1817#if WATCH_EXEC
1818 DRM_INFO("%s: queue flush %08x to ring\n", __func__, cmd);
1819#endif
1820 BEGIN_LP_RING(2);
1821 OUT_RING(cmd);
1822 OUT_RING(0); /* noop */
1823 ADVANCE_LP_RING();
1824 }
1825}
1826
1827/**
1828 * Ensures that all rendering to the object has completed and the object is
1829 * safe to unbind from the GTT or access from the CPU.
1830 */
1831static int
1832i915_gem_object_wait_rendering(struct drm_gem_object *obj)
1833{
1834 struct drm_device *dev = obj->dev;
1835 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1836 int ret;
1837
Eric Anholte47c68e2008-11-14 13:35:19 -08001838 /* This function only exists to support waiting for existing rendering,
1839 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001840 */
Eric Anholte47c68e2008-11-14 13:35:19 -08001841 BUG_ON((obj->write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001842
1843 /* If there is rendering queued on the buffer being evicted, wait for
1844 * it.
1845 */
1846 if (obj_priv->active) {
1847#if WATCH_BUF
1848 DRM_INFO("%s: object %p wait for seqno %08x\n",
1849 __func__, obj, obj_priv->last_rendering_seqno);
1850#endif
1851 ret = i915_wait_request(dev, obj_priv->last_rendering_seqno);
1852 if (ret != 0)
1853 return ret;
1854 }
1855
1856 return 0;
1857}
1858
1859/**
1860 * Unbinds an object from the GTT aperture.
1861 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001862int
Eric Anholt673a3942008-07-30 12:06:12 -07001863i915_gem_object_unbind(struct drm_gem_object *obj)
1864{
1865 struct drm_device *dev = obj->dev;
1866 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001867 loff_t offset;
Eric Anholt673a3942008-07-30 12:06:12 -07001868 int ret = 0;
1869
1870#if WATCH_BUF
1871 DRM_INFO("%s:%d %p\n", __func__, __LINE__, obj);
1872 DRM_INFO("gtt_space %p\n", obj_priv->gtt_space);
1873#endif
1874 if (obj_priv->gtt_space == NULL)
1875 return 0;
1876
1877 if (obj_priv->pin_count != 0) {
1878 DRM_ERROR("Attempting to unbind pinned buffer\n");
1879 return -EINVAL;
1880 }
1881
Eric Anholt673a3942008-07-30 12:06:12 -07001882 /* Move the object to the CPU domain to ensure that
1883 * any possible CPU writes while it's not in the GTT
1884 * are flushed when we go to remap it. This will
1885 * also ensure that all pending GPU writes are finished
1886 * before we unbind.
1887 */
Eric Anholte47c68e2008-11-14 13:35:19 -08001888 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07001889 if (ret) {
Eric Anholte47c68e2008-11-14 13:35:19 -08001890 if (ret != -ERESTARTSYS)
1891 DRM_ERROR("set_domain failed: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07001892 return ret;
1893 }
1894
1895 if (obj_priv->agp_mem != NULL) {
1896 drm_unbind_agp(obj_priv->agp_mem);
1897 drm_free_agp(obj_priv->agp_mem, obj->size / PAGE_SIZE);
1898 obj_priv->agp_mem = NULL;
1899 }
1900
1901 BUG_ON(obj_priv->active);
1902
Jesse Barnesde151cf2008-11-12 10:03:55 -08001903 /* blow away mappings if mapped through GTT */
1904 offset = ((loff_t) obj->map_list.hash.key) << PAGE_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08001905 if (dev->dev_mapping)
1906 unmap_mapping_range(dev->dev_mapping, offset, obj->size, 1);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001907
1908 if (obj_priv->fence_reg != I915_FENCE_REG_NONE)
1909 i915_gem_clear_fence_reg(obj);
1910
Eric Anholt856fa192009-03-19 14:10:50 -07001911 i915_gem_object_put_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001912
1913 if (obj_priv->gtt_space) {
1914 atomic_dec(&dev->gtt_count);
1915 atomic_sub(obj->size, &dev->gtt_memory);
1916
1917 drm_mm_put_block(obj_priv->gtt_space);
1918 obj_priv->gtt_space = NULL;
1919 }
1920
1921 /* Remove ourselves from the LRU list if present. */
1922 if (!list_empty(&obj_priv->list))
1923 list_del_init(&obj_priv->list);
1924
1925 return 0;
1926}
1927
1928static int
1929i915_gem_evict_something(struct drm_device *dev)
1930{
1931 drm_i915_private_t *dev_priv = dev->dev_private;
1932 struct drm_gem_object *obj;
1933 struct drm_i915_gem_object *obj_priv;
1934 int ret = 0;
1935
1936 for (;;) {
1937 /* If there's an inactive buffer available now, grab it
1938 * and be done.
1939 */
1940 if (!list_empty(&dev_priv->mm.inactive_list)) {
1941 obj_priv = list_first_entry(&dev_priv->mm.inactive_list,
1942 struct drm_i915_gem_object,
1943 list);
1944 obj = obj_priv->obj;
1945 BUG_ON(obj_priv->pin_count != 0);
1946#if WATCH_LRU
1947 DRM_INFO("%s: evicting %p\n", __func__, obj);
1948#endif
1949 BUG_ON(obj_priv->active);
1950
1951 /* Wait on the rendering and unbind the buffer. */
1952 ret = i915_gem_object_unbind(obj);
1953 break;
1954 }
1955
1956 /* If we didn't get anything, but the ring is still processing
1957 * things, wait for one of those things to finish and hopefully
1958 * leave us a buffer to evict.
1959 */
1960 if (!list_empty(&dev_priv->mm.request_list)) {
1961 struct drm_i915_gem_request *request;
1962
1963 request = list_first_entry(&dev_priv->mm.request_list,
1964 struct drm_i915_gem_request,
1965 list);
1966
1967 ret = i915_wait_request(dev, request->seqno);
1968 if (ret)
1969 break;
1970
1971 /* if waiting caused an object to become inactive,
1972 * then loop around and wait for it. Otherwise, we
1973 * assume that waiting freed and unbound something,
1974 * so there should now be some space in the GTT
1975 */
1976 if (!list_empty(&dev_priv->mm.inactive_list))
1977 continue;
1978 break;
1979 }
1980
1981 /* If we didn't have anything on the request list but there
1982 * are buffers awaiting a flush, emit one and try again.
1983 * When we wait on it, those buffers waiting for that flush
1984 * will get moved to inactive.
1985 */
1986 if (!list_empty(&dev_priv->mm.flushing_list)) {
1987 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
1988 struct drm_i915_gem_object,
1989 list);
1990 obj = obj_priv->obj;
1991
1992 i915_gem_flush(dev,
1993 obj->write_domain,
1994 obj->write_domain);
Eric Anholtb9624422009-06-03 07:27:35 +00001995 i915_add_request(dev, NULL, obj->write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07001996
1997 obj = NULL;
1998 continue;
1999 }
2000
2001 DRM_ERROR("inactive empty %d request empty %d "
2002 "flushing empty %d\n",
2003 list_empty(&dev_priv->mm.inactive_list),
2004 list_empty(&dev_priv->mm.request_list),
2005 list_empty(&dev_priv->mm.flushing_list));
2006 /* If we didn't do any of the above, there's nothing to be done
2007 * and we just can't fit it in.
2008 */
2009 return -ENOMEM;
2010 }
2011 return ret;
2012}
2013
2014static int
Keith Packardac94a962008-11-20 23:30:27 -08002015i915_gem_evict_everything(struct drm_device *dev)
2016{
2017 int ret;
2018
2019 for (;;) {
2020 ret = i915_gem_evict_something(dev);
2021 if (ret != 0)
2022 break;
2023 }
Owain Ainsworth15c35332008-12-06 20:42:20 -08002024 if (ret == -ENOMEM)
2025 return 0;
Keith Packardac94a962008-11-20 23:30:27 -08002026 return ret;
2027}
2028
Ben Gamari6911a9b2009-04-02 11:24:54 -07002029int
Eric Anholt856fa192009-03-19 14:10:50 -07002030i915_gem_object_get_pages(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002031{
2032 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2033 int page_count, i;
2034 struct address_space *mapping;
2035 struct inode *inode;
2036 struct page *page;
2037 int ret;
2038
Eric Anholt856fa192009-03-19 14:10:50 -07002039 if (obj_priv->pages_refcount++ != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07002040 return 0;
2041
2042 /* Get the list of pages out of our struct file. They'll be pinned
2043 * at this point until we release them.
2044 */
2045 page_count = obj->size / PAGE_SIZE;
Eric Anholt856fa192009-03-19 14:10:50 -07002046 BUG_ON(obj_priv->pages != NULL);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07002047 obj_priv->pages = drm_calloc_large(page_count, sizeof(struct page *));
Eric Anholt856fa192009-03-19 14:10:50 -07002048 if (obj_priv->pages == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002049 DRM_ERROR("Faled to allocate page list\n");
Eric Anholt856fa192009-03-19 14:10:50 -07002050 obj_priv->pages_refcount--;
Eric Anholt673a3942008-07-30 12:06:12 -07002051 return -ENOMEM;
2052 }
2053
2054 inode = obj->filp->f_path.dentry->d_inode;
2055 mapping = inode->i_mapping;
2056 for (i = 0; i < page_count; i++) {
2057 page = read_mapping_page(mapping, i, NULL);
2058 if (IS_ERR(page)) {
2059 ret = PTR_ERR(page);
2060 DRM_ERROR("read_mapping_page failed: %d\n", ret);
Eric Anholt856fa192009-03-19 14:10:50 -07002061 i915_gem_object_put_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002062 return ret;
2063 }
Eric Anholt856fa192009-03-19 14:10:50 -07002064 obj_priv->pages[i] = page;
Eric Anholt673a3942008-07-30 12:06:12 -07002065 }
Eric Anholt280b7132009-03-12 16:56:27 -07002066
2067 if (obj_priv->tiling_mode != I915_TILING_NONE)
2068 i915_gem_object_do_bit_17_swizzle(obj);
2069
Eric Anholt673a3942008-07-30 12:06:12 -07002070 return 0;
2071}
2072
Jesse Barnesde151cf2008-11-12 10:03:55 -08002073static void i965_write_fence_reg(struct drm_i915_fence_reg *reg)
2074{
2075 struct drm_gem_object *obj = reg->obj;
2076 struct drm_device *dev = obj->dev;
2077 drm_i915_private_t *dev_priv = dev->dev_private;
2078 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2079 int regnum = obj_priv->fence_reg;
2080 uint64_t val;
2081
2082 val = (uint64_t)((obj_priv->gtt_offset + obj->size - 4096) &
2083 0xfffff000) << 32;
2084 val |= obj_priv->gtt_offset & 0xfffff000;
2085 val |= ((obj_priv->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2086 if (obj_priv->tiling_mode == I915_TILING_Y)
2087 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2088 val |= I965_FENCE_REG_VALID;
2089
2090 I915_WRITE64(FENCE_REG_965_0 + (regnum * 8), val);
2091}
2092
2093static void i915_write_fence_reg(struct drm_i915_fence_reg *reg)
2094{
2095 struct drm_gem_object *obj = reg->obj;
2096 struct drm_device *dev = obj->dev;
2097 drm_i915_private_t *dev_priv = dev->dev_private;
2098 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2099 int regnum = obj_priv->fence_reg;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002100 int tile_width;
Eric Anholtdc529a42009-03-10 22:34:49 -07002101 uint32_t fence_reg, val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002102 uint32_t pitch_val;
2103
2104 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
2105 (obj_priv->gtt_offset & (obj->size - 1))) {
Linus Torvaldsf06da262009-02-09 08:57:29 -08002106 WARN(1, "%s: object 0x%08x not 1M or size (0x%zx) aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002107 __func__, obj_priv->gtt_offset, obj->size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002108 return;
2109 }
2110
Jesse Barnes0f973f22009-01-26 17:10:45 -08002111 if (obj_priv->tiling_mode == I915_TILING_Y &&
2112 HAS_128_BYTE_Y_TILING(dev))
2113 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002114 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002115 tile_width = 512;
2116
2117 /* Note: pitch better be a power of two tile widths */
2118 pitch_val = obj_priv->stride / tile_width;
2119 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002120
2121 val = obj_priv->gtt_offset;
2122 if (obj_priv->tiling_mode == I915_TILING_Y)
2123 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2124 val |= I915_FENCE_SIZE_BITS(obj->size);
2125 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2126 val |= I830_FENCE_REG_VALID;
2127
Eric Anholtdc529a42009-03-10 22:34:49 -07002128 if (regnum < 8)
2129 fence_reg = FENCE_REG_830_0 + (regnum * 4);
2130 else
2131 fence_reg = FENCE_REG_945_8 + ((regnum - 8) * 4);
2132 I915_WRITE(fence_reg, val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002133}
2134
2135static void i830_write_fence_reg(struct drm_i915_fence_reg *reg)
2136{
2137 struct drm_gem_object *obj = reg->obj;
2138 struct drm_device *dev = obj->dev;
2139 drm_i915_private_t *dev_priv = dev->dev_private;
2140 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2141 int regnum = obj_priv->fence_reg;
2142 uint32_t val;
2143 uint32_t pitch_val;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002144 uint32_t fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002145
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002146 if ((obj_priv->gtt_offset & ~I830_FENCE_START_MASK) ||
Jesse Barnesde151cf2008-11-12 10:03:55 -08002147 (obj_priv->gtt_offset & (obj->size - 1))) {
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002148 WARN(1, "%s: object 0x%08x not 512K or size aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002149 __func__, obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002150 return;
2151 }
2152
Eric Anholte76a16d2009-05-26 17:44:56 -07002153 pitch_val = obj_priv->stride / 128;
2154 pitch_val = ffs(pitch_val) - 1;
2155 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2156
Jesse Barnesde151cf2008-11-12 10:03:55 -08002157 val = obj_priv->gtt_offset;
2158 if (obj_priv->tiling_mode == I915_TILING_Y)
2159 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002160 fence_size_bits = I830_FENCE_SIZE_BITS(obj->size);
2161 WARN_ON(fence_size_bits & ~0x00000f00);
2162 val |= fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002163 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2164 val |= I830_FENCE_REG_VALID;
2165
2166 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
2167
2168}
2169
2170/**
2171 * i915_gem_object_get_fence_reg - set up a fence reg for an object
2172 * @obj: object to map through a fence reg
Jesse Barnes0f973f22009-01-26 17:10:45 -08002173 * @write: object is about to be written
Jesse Barnesde151cf2008-11-12 10:03:55 -08002174 *
2175 * When mapping objects through the GTT, userspace wants to be able to write
2176 * to them without having to worry about swizzling if the object is tiled.
2177 *
2178 * This function walks the fence regs looking for a free one for @obj,
2179 * stealing one if it can't find any.
2180 *
2181 * It then sets up the reg based on the object's properties: address, pitch
2182 * and tiling format.
2183 */
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002184static int
Jesse Barnes0f973f22009-01-26 17:10:45 -08002185i915_gem_object_get_fence_reg(struct drm_gem_object *obj, bool write)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002186{
2187 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002188 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002189 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2190 struct drm_i915_fence_reg *reg = NULL;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002191 struct drm_i915_gem_object *old_obj_priv = NULL;
2192 int i, ret, avail;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002193
2194 switch (obj_priv->tiling_mode) {
2195 case I915_TILING_NONE:
2196 WARN(1, "allocating a fence for non-tiled object?\n");
2197 break;
2198 case I915_TILING_X:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002199 if (!obj_priv->stride)
2200 return -EINVAL;
2201 WARN((obj_priv->stride & (512 - 1)),
2202 "object 0x%08x is X tiled but has non-512B pitch\n",
2203 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002204 break;
2205 case I915_TILING_Y:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002206 if (!obj_priv->stride)
2207 return -EINVAL;
2208 WARN((obj_priv->stride & (128 - 1)),
2209 "object 0x%08x is Y tiled but has non-128B pitch\n",
2210 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002211 break;
2212 }
2213
2214 /* First try to find a free reg */
Chris Wilson9b2412f2009-02-11 14:26:44 +00002215try_again:
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002216 avail = 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002217 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2218 reg = &dev_priv->fence_regs[i];
2219 if (!reg->obj)
2220 break;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002221
2222 old_obj_priv = reg->obj->driver_private;
2223 if (!old_obj_priv->pin_count)
2224 avail++;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002225 }
2226
2227 /* None available, try to steal one or wait for a user to finish */
2228 if (i == dev_priv->num_fence_regs) {
Chris Wilsond7619c42009-02-11 14:26:47 +00002229 uint32_t seqno = dev_priv->mm.next_gem_seqno;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002230 loff_t offset;
2231
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002232 if (avail == 0)
2233 return -ENOMEM;
2234
Jesse Barnesde151cf2008-11-12 10:03:55 -08002235 for (i = dev_priv->fence_reg_start;
2236 i < dev_priv->num_fence_regs; i++) {
Chris Wilsond7619c42009-02-11 14:26:47 +00002237 uint32_t this_seqno;
2238
Jesse Barnesde151cf2008-11-12 10:03:55 -08002239 reg = &dev_priv->fence_regs[i];
2240 old_obj_priv = reg->obj->driver_private;
Chris Wilsond7619c42009-02-11 14:26:47 +00002241
2242 if (old_obj_priv->pin_count)
2243 continue;
2244
2245 /* i915 uses fences for GPU access to tiled buffers */
2246 if (IS_I965G(dev) || !old_obj_priv->active)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002247 break;
Chris Wilsond7619c42009-02-11 14:26:47 +00002248
2249 /* find the seqno of the first available fence */
2250 this_seqno = old_obj_priv->last_rendering_seqno;
2251 if (this_seqno != 0 &&
2252 reg->obj->write_domain == 0 &&
2253 i915_seqno_passed(seqno, this_seqno))
2254 seqno = this_seqno;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002255 }
2256
2257 /*
2258 * Now things get ugly... we have to wait for one of the
2259 * objects to finish before trying again.
2260 */
2261 if (i == dev_priv->num_fence_regs) {
Chris Wilsond7619c42009-02-11 14:26:47 +00002262 if (seqno == dev_priv->mm.next_gem_seqno) {
2263 i915_gem_flush(dev,
2264 I915_GEM_GPU_DOMAINS,
2265 I915_GEM_GPU_DOMAINS);
Eric Anholtb9624422009-06-03 07:27:35 +00002266 seqno = i915_add_request(dev, NULL,
Chris Wilsond7619c42009-02-11 14:26:47 +00002267 I915_GEM_GPU_DOMAINS);
2268 if (seqno == 0)
2269 return -ENOMEM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002270 }
Chris Wilsond7619c42009-02-11 14:26:47 +00002271
2272 ret = i915_wait_request(dev, seqno);
2273 if (ret)
2274 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002275 goto try_again;
2276 }
2277
2278 /*
2279 * Zap this virtual mapping so we can set up a fence again
2280 * for this object next time we need it.
2281 */
2282 offset = ((loff_t) reg->obj->map_list.hash.key) << PAGE_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08002283 if (dev->dev_mapping)
2284 unmap_mapping_range(dev->dev_mapping, offset,
2285 reg->obj->size, 1);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002286 old_obj_priv->fence_reg = I915_FENCE_REG_NONE;
2287 }
2288
2289 obj_priv->fence_reg = i;
2290 reg->obj = obj;
2291
2292 if (IS_I965G(dev))
2293 i965_write_fence_reg(reg);
2294 else if (IS_I9XX(dev))
2295 i915_write_fence_reg(reg);
2296 else
2297 i830_write_fence_reg(reg);
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002298
2299 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002300}
2301
2302/**
2303 * i915_gem_clear_fence_reg - clear out fence register info
2304 * @obj: object to clear
2305 *
2306 * Zeroes out the fence register itself and clears out the associated
2307 * data structures in dev_priv and obj_priv.
2308 */
2309static void
2310i915_gem_clear_fence_reg(struct drm_gem_object *obj)
2311{
2312 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002313 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002314 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2315
2316 if (IS_I965G(dev))
2317 I915_WRITE64(FENCE_REG_965_0 + (obj_priv->fence_reg * 8), 0);
Eric Anholtdc529a42009-03-10 22:34:49 -07002318 else {
2319 uint32_t fence_reg;
2320
2321 if (obj_priv->fence_reg < 8)
2322 fence_reg = FENCE_REG_830_0 + obj_priv->fence_reg * 4;
2323 else
2324 fence_reg = FENCE_REG_945_8 + (obj_priv->fence_reg -
2325 8) * 4;
2326
2327 I915_WRITE(fence_reg, 0);
2328 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002329
2330 dev_priv->fence_regs[obj_priv->fence_reg].obj = NULL;
2331 obj_priv->fence_reg = I915_FENCE_REG_NONE;
2332}
2333
Eric Anholt673a3942008-07-30 12:06:12 -07002334/**
2335 * Finds free space in the GTT aperture and binds the object there.
2336 */
2337static int
2338i915_gem_object_bind_to_gtt(struct drm_gem_object *obj, unsigned alignment)
2339{
2340 struct drm_device *dev = obj->dev;
2341 drm_i915_private_t *dev_priv = dev->dev_private;
2342 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2343 struct drm_mm_node *free_space;
2344 int page_count, ret;
2345
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08002346 if (dev_priv->mm.suspended)
2347 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002348 if (alignment == 0)
Jesse Barnes0f973f22009-01-26 17:10:45 -08002349 alignment = i915_gem_get_gtt_alignment(obj);
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002350 if (alignment & (i915_gem_get_gtt_alignment(obj) - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002351 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2352 return -EINVAL;
2353 }
2354
2355 search_free:
2356 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
2357 obj->size, alignment, 0);
2358 if (free_space != NULL) {
2359 obj_priv->gtt_space = drm_mm_get_block(free_space, obj->size,
2360 alignment);
2361 if (obj_priv->gtt_space != NULL) {
2362 obj_priv->gtt_space->private = obj;
2363 obj_priv->gtt_offset = obj_priv->gtt_space->start;
2364 }
2365 }
2366 if (obj_priv->gtt_space == NULL) {
Carl Worth5e118f42009-03-20 11:54:25 -07002367 bool lists_empty;
2368
Eric Anholt673a3942008-07-30 12:06:12 -07002369 /* If the gtt is empty and we're still having trouble
2370 * fitting our object in, we're out of memory.
2371 */
2372#if WATCH_LRU
2373 DRM_INFO("%s: GTT full, evicting something\n", __func__);
2374#endif
Carl Worth5e118f42009-03-20 11:54:25 -07002375 spin_lock(&dev_priv->mm.active_list_lock);
2376 lists_empty = (list_empty(&dev_priv->mm.inactive_list) &&
2377 list_empty(&dev_priv->mm.flushing_list) &&
2378 list_empty(&dev_priv->mm.active_list));
2379 spin_unlock(&dev_priv->mm.active_list_lock);
2380 if (lists_empty) {
Eric Anholt673a3942008-07-30 12:06:12 -07002381 DRM_ERROR("GTT full, but LRU list empty\n");
2382 return -ENOMEM;
2383 }
2384
2385 ret = i915_gem_evict_something(dev);
2386 if (ret != 0) {
Keith Packardac94a962008-11-20 23:30:27 -08002387 if (ret != -ERESTARTSYS)
2388 DRM_ERROR("Failed to evict a buffer %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07002389 return ret;
2390 }
2391 goto search_free;
2392 }
2393
2394#if WATCH_BUF
2395 DRM_INFO("Binding object of size %d at 0x%08x\n",
2396 obj->size, obj_priv->gtt_offset);
2397#endif
Eric Anholt856fa192009-03-19 14:10:50 -07002398 ret = i915_gem_object_get_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002399 if (ret) {
2400 drm_mm_put_block(obj_priv->gtt_space);
2401 obj_priv->gtt_space = NULL;
2402 return ret;
2403 }
2404
2405 page_count = obj->size / PAGE_SIZE;
2406 /* Create an AGP memory structure pointing at our pages, and bind it
2407 * into the GTT.
2408 */
2409 obj_priv->agp_mem = drm_agp_bind_pages(dev,
Eric Anholt856fa192009-03-19 14:10:50 -07002410 obj_priv->pages,
Eric Anholt673a3942008-07-30 12:06:12 -07002411 page_count,
Keith Packardba1eb1d2008-10-14 19:55:10 -07002412 obj_priv->gtt_offset,
2413 obj_priv->agp_type);
Eric Anholt673a3942008-07-30 12:06:12 -07002414 if (obj_priv->agp_mem == NULL) {
Eric Anholt856fa192009-03-19 14:10:50 -07002415 i915_gem_object_put_pages(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002416 drm_mm_put_block(obj_priv->gtt_space);
2417 obj_priv->gtt_space = NULL;
2418 return -ENOMEM;
2419 }
2420 atomic_inc(&dev->gtt_count);
2421 atomic_add(obj->size, &dev->gtt_memory);
2422
2423 /* Assert that the object is not currently in any GPU domain. As it
2424 * wasn't in the GTT, there shouldn't be any way it could have been in
2425 * a GPU cache
2426 */
2427 BUG_ON(obj->read_domains & ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT));
2428 BUG_ON(obj->write_domain & ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT));
2429
2430 return 0;
2431}
2432
2433void
2434i915_gem_clflush_object(struct drm_gem_object *obj)
2435{
2436 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2437
2438 /* If we don't have a page list set up, then we're not pinned
2439 * to GPU, and we can ignore the cache flush because it'll happen
2440 * again at bind time.
2441 */
Eric Anholt856fa192009-03-19 14:10:50 -07002442 if (obj_priv->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002443 return;
2444
Eric Anholtcfa16a02009-05-26 18:46:16 -07002445 /* XXX: The 865 in particular appears to be weird in how it handles
2446 * cache flushing. We haven't figured it out, but the
2447 * clflush+agp_chipset_flush doesn't appear to successfully get the
2448 * data visible to the PGU, while wbinvd + agp_chipset_flush does.
2449 */
2450 if (IS_I865G(obj->dev)) {
2451 wbinvd();
2452 return;
2453 }
2454
Eric Anholt856fa192009-03-19 14:10:50 -07002455 drm_clflush_pages(obj_priv->pages, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002456}
2457
Eric Anholte47c68e2008-11-14 13:35:19 -08002458/** Flushes any GPU write domain for the object if it's dirty. */
2459static void
2460i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj)
2461{
2462 struct drm_device *dev = obj->dev;
2463 uint32_t seqno;
2464
2465 if ((obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
2466 return;
2467
2468 /* Queue the GPU write cache flushing we need. */
2469 i915_gem_flush(dev, 0, obj->write_domain);
Eric Anholtb9624422009-06-03 07:27:35 +00002470 seqno = i915_add_request(dev, NULL, obj->write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002471 obj->write_domain = 0;
2472 i915_gem_object_move_to_active(obj, seqno);
2473}
2474
2475/** Flushes the GTT write domain for the object if it's dirty. */
2476static void
2477i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj)
2478{
2479 if (obj->write_domain != I915_GEM_DOMAIN_GTT)
2480 return;
2481
2482 /* No actual flushing is required for the GTT write domain. Writes
2483 * to it immediately go to main memory as far as we know, so there's
2484 * no chipset flush. It also doesn't land in render cache.
2485 */
2486 obj->write_domain = 0;
2487}
2488
2489/** Flushes the CPU write domain for the object if it's dirty. */
2490static void
2491i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj)
2492{
2493 struct drm_device *dev = obj->dev;
2494
2495 if (obj->write_domain != I915_GEM_DOMAIN_CPU)
2496 return;
2497
2498 i915_gem_clflush_object(obj);
2499 drm_agp_chipset_flush(dev);
2500 obj->write_domain = 0;
2501}
2502
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002503/**
2504 * Moves a single object to the GTT read, and possibly write domain.
2505 *
2506 * This function returns when the move is complete, including waiting on
2507 * flushes to occur.
2508 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002509int
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002510i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write)
2511{
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002512 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Eric Anholte47c68e2008-11-14 13:35:19 -08002513 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002514
Eric Anholt02354392008-11-26 13:58:13 -08002515 /* Not valid to be called on unbound objects. */
2516 if (obj_priv->gtt_space == NULL)
2517 return -EINVAL;
2518
Eric Anholte47c68e2008-11-14 13:35:19 -08002519 i915_gem_object_flush_gpu_write_domain(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002520 /* Wait on any GPU rendering and flushing to occur. */
Eric Anholte47c68e2008-11-14 13:35:19 -08002521 ret = i915_gem_object_wait_rendering(obj);
2522 if (ret != 0)
2523 return ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002524
2525 /* If we're writing through the GTT domain, then CPU and GPU caches
2526 * will need to be invalidated at next use.
2527 */
2528 if (write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002529 obj->read_domains &= I915_GEM_DOMAIN_GTT;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002530
Eric Anholte47c68e2008-11-14 13:35:19 -08002531 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002532
2533 /* It should now be out of any other write domains, and we can update
2534 * the domain values for our changes.
2535 */
2536 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2537 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002538 if (write) {
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002539 obj->write_domain = I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002540 obj_priv->dirty = 1;
2541 }
2542
2543 return 0;
2544}
2545
2546/**
2547 * Moves a single object to the CPU read, and possibly write domain.
2548 *
2549 * This function returns when the move is complete, including waiting on
2550 * flushes to occur.
2551 */
2552static int
2553i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj, int write)
2554{
Eric Anholte47c68e2008-11-14 13:35:19 -08002555 int ret;
2556
2557 i915_gem_object_flush_gpu_write_domain(obj);
2558 /* Wait on any GPU rendering and flushing to occur. */
2559 ret = i915_gem_object_wait_rendering(obj);
2560 if (ret != 0)
2561 return ret;
2562
2563 i915_gem_object_flush_gtt_write_domain(obj);
2564
2565 /* If we have a partially-valid cache of the object in the CPU,
2566 * finish invalidating it and free the per-page flags.
2567 */
2568 i915_gem_object_set_to_full_cpu_read_domain(obj);
2569
2570 /* Flush the CPU cache if it's still invalid. */
2571 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
2572 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002573
2574 obj->read_domains |= I915_GEM_DOMAIN_CPU;
2575 }
2576
2577 /* It should now be out of any other write domains, and we can update
2578 * the domain values for our changes.
2579 */
2580 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
2581
2582 /* If we're writing through the CPU, then the GPU read domains will
2583 * need to be invalidated at next use.
2584 */
2585 if (write) {
2586 obj->read_domains &= I915_GEM_DOMAIN_CPU;
2587 obj->write_domain = I915_GEM_DOMAIN_CPU;
2588 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002589
2590 return 0;
2591}
2592
Eric Anholt673a3942008-07-30 12:06:12 -07002593/*
2594 * Set the next domain for the specified object. This
2595 * may not actually perform the necessary flushing/invaliding though,
2596 * as that may want to be batched with other set_domain operations
2597 *
2598 * This is (we hope) the only really tricky part of gem. The goal
2599 * is fairly simple -- track which caches hold bits of the object
2600 * and make sure they remain coherent. A few concrete examples may
2601 * help to explain how it works. For shorthand, we use the notation
2602 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
2603 * a pair of read and write domain masks.
2604 *
2605 * Case 1: the batch buffer
2606 *
2607 * 1. Allocated
2608 * 2. Written by CPU
2609 * 3. Mapped to GTT
2610 * 4. Read by GPU
2611 * 5. Unmapped from GTT
2612 * 6. Freed
2613 *
2614 * Let's take these a step at a time
2615 *
2616 * 1. Allocated
2617 * Pages allocated from the kernel may still have
2618 * cache contents, so we set them to (CPU, CPU) always.
2619 * 2. Written by CPU (using pwrite)
2620 * The pwrite function calls set_domain (CPU, CPU) and
2621 * this function does nothing (as nothing changes)
2622 * 3. Mapped by GTT
2623 * This function asserts that the object is not
2624 * currently in any GPU-based read or write domains
2625 * 4. Read by GPU
2626 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
2627 * As write_domain is zero, this function adds in the
2628 * current read domains (CPU+COMMAND, 0).
2629 * flush_domains is set to CPU.
2630 * invalidate_domains is set to COMMAND
2631 * clflush is run to get data out of the CPU caches
2632 * then i915_dev_set_domain calls i915_gem_flush to
2633 * emit an MI_FLUSH and drm_agp_chipset_flush
2634 * 5. Unmapped from GTT
2635 * i915_gem_object_unbind calls set_domain (CPU, CPU)
2636 * flush_domains and invalidate_domains end up both zero
2637 * so no flushing/invalidating happens
2638 * 6. Freed
2639 * yay, done
2640 *
2641 * Case 2: The shared render buffer
2642 *
2643 * 1. Allocated
2644 * 2. Mapped to GTT
2645 * 3. Read/written by GPU
2646 * 4. set_domain to (CPU,CPU)
2647 * 5. Read/written by CPU
2648 * 6. Read/written by GPU
2649 *
2650 * 1. Allocated
2651 * Same as last example, (CPU, CPU)
2652 * 2. Mapped to GTT
2653 * Nothing changes (assertions find that it is not in the GPU)
2654 * 3. Read/written by GPU
2655 * execbuffer calls set_domain (RENDER, RENDER)
2656 * flush_domains gets CPU
2657 * invalidate_domains gets GPU
2658 * clflush (obj)
2659 * MI_FLUSH and drm_agp_chipset_flush
2660 * 4. set_domain (CPU, CPU)
2661 * flush_domains gets GPU
2662 * invalidate_domains gets CPU
2663 * wait_rendering (obj) to make sure all drawing is complete.
2664 * This will include an MI_FLUSH to get the data from GPU
2665 * to memory
2666 * clflush (obj) to invalidate the CPU cache
2667 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
2668 * 5. Read/written by CPU
2669 * cache lines are loaded and dirtied
2670 * 6. Read written by GPU
2671 * Same as last GPU access
2672 *
2673 * Case 3: The constant buffer
2674 *
2675 * 1. Allocated
2676 * 2. Written by CPU
2677 * 3. Read by GPU
2678 * 4. Updated (written) by CPU again
2679 * 5. Read by GPU
2680 *
2681 * 1. Allocated
2682 * (CPU, CPU)
2683 * 2. Written by CPU
2684 * (CPU, CPU)
2685 * 3. Read by GPU
2686 * (CPU+RENDER, 0)
2687 * flush_domains = CPU
2688 * invalidate_domains = RENDER
2689 * clflush (obj)
2690 * MI_FLUSH
2691 * drm_agp_chipset_flush
2692 * 4. Updated (written) by CPU again
2693 * (CPU, CPU)
2694 * flush_domains = 0 (no previous write domain)
2695 * invalidate_domains = 0 (no new read domains)
2696 * 5. Read by GPU
2697 * (CPU+RENDER, 0)
2698 * flush_domains = CPU
2699 * invalidate_domains = RENDER
2700 * clflush (obj)
2701 * MI_FLUSH
2702 * drm_agp_chipset_flush
2703 */
Keith Packardc0d90822008-11-20 23:11:08 -08002704static void
Eric Anholt8b0e3782009-02-19 14:40:50 -08002705i915_gem_object_set_to_gpu_domain(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002706{
2707 struct drm_device *dev = obj->dev;
2708 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2709 uint32_t invalidate_domains = 0;
2710 uint32_t flush_domains = 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002711
Eric Anholt8b0e3782009-02-19 14:40:50 -08002712 BUG_ON(obj->pending_read_domains & I915_GEM_DOMAIN_CPU);
2713 BUG_ON(obj->pending_write_domain == I915_GEM_DOMAIN_CPU);
Eric Anholt673a3942008-07-30 12:06:12 -07002714
2715#if WATCH_BUF
2716 DRM_INFO("%s: object %p read %08x -> %08x write %08x -> %08x\n",
2717 __func__, obj,
Eric Anholt8b0e3782009-02-19 14:40:50 -08002718 obj->read_domains, obj->pending_read_domains,
2719 obj->write_domain, obj->pending_write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07002720#endif
2721 /*
2722 * If the object isn't moving to a new write domain,
2723 * let the object stay in multiple read domains
2724 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002725 if (obj->pending_write_domain == 0)
2726 obj->pending_read_domains |= obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002727 else
2728 obj_priv->dirty = 1;
2729
2730 /*
2731 * Flush the current write domain if
2732 * the new read domains don't match. Invalidate
2733 * any read domains which differ from the old
2734 * write domain
2735 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002736 if (obj->write_domain &&
2737 obj->write_domain != obj->pending_read_domains) {
Eric Anholt673a3942008-07-30 12:06:12 -07002738 flush_domains |= obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08002739 invalidate_domains |=
2740 obj->pending_read_domains & ~obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07002741 }
2742 /*
2743 * Invalidate any read caches which may have
2744 * stale data. That is, any new read domains.
2745 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002746 invalidate_domains |= obj->pending_read_domains & ~obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002747 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU) {
2748#if WATCH_BUF
2749 DRM_INFO("%s: CPU domain flush %08x invalidate %08x\n",
2750 __func__, flush_domains, invalidate_domains);
2751#endif
Eric Anholt673a3942008-07-30 12:06:12 -07002752 i915_gem_clflush_object(obj);
2753 }
2754
Eric Anholtefbeed92009-02-19 14:54:51 -08002755 /* The actual obj->write_domain will be updated with
2756 * pending_write_domain after we emit the accumulated flush for all
2757 * of our domain changes in execbuffers (which clears objects'
2758 * write_domains). So if we have a current write domain that we
2759 * aren't changing, set pending_write_domain to that.
2760 */
2761 if (flush_domains == 0 && obj->pending_write_domain == 0)
2762 obj->pending_write_domain = obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08002763 obj->read_domains = obj->pending_read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002764
2765 dev->invalidate_domains |= invalidate_domains;
2766 dev->flush_domains |= flush_domains;
2767#if WATCH_BUF
2768 DRM_INFO("%s: read %08x write %08x invalidate %08x flush %08x\n",
2769 __func__,
2770 obj->read_domains, obj->write_domain,
2771 dev->invalidate_domains, dev->flush_domains);
2772#endif
Eric Anholt673a3942008-07-30 12:06:12 -07002773}
2774
2775/**
Eric Anholte47c68e2008-11-14 13:35:19 -08002776 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07002777 *
Eric Anholte47c68e2008-11-14 13:35:19 -08002778 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
2779 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
2780 */
2781static void
2782i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj)
2783{
Eric Anholte47c68e2008-11-14 13:35:19 -08002784 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2785
2786 if (!obj_priv->page_cpu_valid)
2787 return;
2788
2789 /* If we're partially in the CPU read domain, finish moving it in.
2790 */
2791 if (obj->read_domains & I915_GEM_DOMAIN_CPU) {
2792 int i;
2793
2794 for (i = 0; i <= (obj->size - 1) / PAGE_SIZE; i++) {
2795 if (obj_priv->page_cpu_valid[i])
2796 continue;
Eric Anholt856fa192009-03-19 14:10:50 -07002797 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08002798 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002799 }
2800
2801 /* Free the page_cpu_valid mappings which are now stale, whether
2802 * or not we've got I915_GEM_DOMAIN_CPU.
2803 */
2804 drm_free(obj_priv->page_cpu_valid, obj->size / PAGE_SIZE,
2805 DRM_MEM_DRIVER);
2806 obj_priv->page_cpu_valid = NULL;
2807}
2808
2809/**
2810 * Set the CPU read domain on a range of the object.
2811 *
2812 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
2813 * not entirely valid. The page_cpu_valid member of the object flags which
2814 * pages have been flushed, and will be respected by
2815 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
2816 * of the whole object.
2817 *
2818 * This function returns when the move is complete, including waiting on
2819 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07002820 */
2821static int
Eric Anholte47c68e2008-11-14 13:35:19 -08002822i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
2823 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07002824{
2825 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Eric Anholte47c68e2008-11-14 13:35:19 -08002826 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002827
Eric Anholte47c68e2008-11-14 13:35:19 -08002828 if (offset == 0 && size == obj->size)
2829 return i915_gem_object_set_to_cpu_domain(obj, 0);
2830
2831 i915_gem_object_flush_gpu_write_domain(obj);
2832 /* Wait on any GPU rendering and flushing to occur. */
2833 ret = i915_gem_object_wait_rendering(obj);
2834 if (ret != 0)
2835 return ret;
2836 i915_gem_object_flush_gtt_write_domain(obj);
2837
2838 /* If we're already fully in the CPU read domain, we're done. */
2839 if (obj_priv->page_cpu_valid == NULL &&
2840 (obj->read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07002841 return 0;
2842
Eric Anholte47c68e2008-11-14 13:35:19 -08002843 /* Otherwise, create/clear the per-page CPU read domain flag if we're
2844 * newly adding I915_GEM_DOMAIN_CPU
2845 */
Eric Anholt673a3942008-07-30 12:06:12 -07002846 if (obj_priv->page_cpu_valid == NULL) {
2847 obj_priv->page_cpu_valid = drm_calloc(1, obj->size / PAGE_SIZE,
2848 DRM_MEM_DRIVER);
Eric Anholte47c68e2008-11-14 13:35:19 -08002849 if (obj_priv->page_cpu_valid == NULL)
2850 return -ENOMEM;
2851 } else if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0)
2852 memset(obj_priv->page_cpu_valid, 0, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002853
2854 /* Flush the cache on any pages that are still invalid from the CPU's
2855 * perspective.
2856 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002857 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
2858 i++) {
Eric Anholt673a3942008-07-30 12:06:12 -07002859 if (obj_priv->page_cpu_valid[i])
2860 continue;
2861
Eric Anholt856fa192009-03-19 14:10:50 -07002862 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07002863
2864 obj_priv->page_cpu_valid[i] = 1;
2865 }
2866
Eric Anholte47c68e2008-11-14 13:35:19 -08002867 /* It should now be out of any other write domains, and we can update
2868 * the domain values for our changes.
2869 */
2870 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
2871
2872 obj->read_domains |= I915_GEM_DOMAIN_CPU;
2873
Eric Anholt673a3942008-07-30 12:06:12 -07002874 return 0;
2875}
2876
2877/**
Eric Anholt673a3942008-07-30 12:06:12 -07002878 * Pin an object to the GTT and evaluate the relocations landing in it.
2879 */
2880static int
2881i915_gem_object_pin_and_relocate(struct drm_gem_object *obj,
2882 struct drm_file *file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002883 struct drm_i915_gem_exec_object *entry,
2884 struct drm_i915_gem_relocation_entry *relocs)
Eric Anholt673a3942008-07-30 12:06:12 -07002885{
2886 struct drm_device *dev = obj->dev;
Keith Packard0839ccb2008-10-30 19:38:48 -07002887 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002888 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2889 int i, ret;
Keith Packard0839ccb2008-10-30 19:38:48 -07002890 void __iomem *reloc_page;
Eric Anholt673a3942008-07-30 12:06:12 -07002891
2892 /* Choose the GTT offset for our buffer and put it there. */
2893 ret = i915_gem_object_pin(obj, (uint32_t) entry->alignment);
2894 if (ret)
2895 return ret;
2896
2897 entry->offset = obj_priv->gtt_offset;
2898
Eric Anholt673a3942008-07-30 12:06:12 -07002899 /* Apply the relocations, using the GTT aperture to avoid cache
2900 * flushing requirements.
2901 */
2902 for (i = 0; i < entry->relocation_count; i++) {
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002903 struct drm_i915_gem_relocation_entry *reloc= &relocs[i];
Eric Anholt673a3942008-07-30 12:06:12 -07002904 struct drm_gem_object *target_obj;
2905 struct drm_i915_gem_object *target_obj_priv;
Eric Anholt3043c602008-10-02 12:24:47 -07002906 uint32_t reloc_val, reloc_offset;
2907 uint32_t __iomem *reloc_entry;
Eric Anholt673a3942008-07-30 12:06:12 -07002908
Eric Anholt673a3942008-07-30 12:06:12 -07002909 target_obj = drm_gem_object_lookup(obj->dev, file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002910 reloc->target_handle);
Eric Anholt673a3942008-07-30 12:06:12 -07002911 if (target_obj == NULL) {
2912 i915_gem_object_unpin(obj);
2913 return -EBADF;
2914 }
2915 target_obj_priv = target_obj->driver_private;
2916
2917 /* The target buffer should have appeared before us in the
2918 * exec_object list, so it should have a GTT space bound by now.
2919 */
2920 if (target_obj_priv->gtt_space == NULL) {
2921 DRM_ERROR("No GTT space found for object %d\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002922 reloc->target_handle);
Eric Anholt673a3942008-07-30 12:06:12 -07002923 drm_gem_object_unreference(target_obj);
2924 i915_gem_object_unpin(obj);
2925 return -EINVAL;
2926 }
2927
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002928 if (reloc->offset > obj->size - 4) {
Eric Anholt673a3942008-07-30 12:06:12 -07002929 DRM_ERROR("Relocation beyond object bounds: "
2930 "obj %p target %d offset %d size %d.\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002931 obj, reloc->target_handle,
2932 (int) reloc->offset, (int) obj->size);
Eric Anholt673a3942008-07-30 12:06:12 -07002933 drm_gem_object_unreference(target_obj);
2934 i915_gem_object_unpin(obj);
2935 return -EINVAL;
2936 }
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002937 if (reloc->offset & 3) {
Eric Anholt673a3942008-07-30 12:06:12 -07002938 DRM_ERROR("Relocation not 4-byte aligned: "
2939 "obj %p target %d offset %d.\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002940 obj, reloc->target_handle,
2941 (int) reloc->offset);
Eric Anholt673a3942008-07-30 12:06:12 -07002942 drm_gem_object_unreference(target_obj);
2943 i915_gem_object_unpin(obj);
2944 return -EINVAL;
2945 }
2946
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002947 if (reloc->write_domain & I915_GEM_DOMAIN_CPU ||
2948 reloc->read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002949 DRM_ERROR("reloc with read/write CPU domains: "
2950 "obj %p target %d offset %d "
2951 "read %08x write %08x",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002952 obj, reloc->target_handle,
2953 (int) reloc->offset,
2954 reloc->read_domains,
2955 reloc->write_domain);
Chris Wilson491152b2009-02-11 14:26:32 +00002956 drm_gem_object_unreference(target_obj);
2957 i915_gem_object_unpin(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002958 return -EINVAL;
2959 }
2960
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002961 if (reloc->write_domain && target_obj->pending_write_domain &&
2962 reloc->write_domain != target_obj->pending_write_domain) {
Eric Anholt673a3942008-07-30 12:06:12 -07002963 DRM_ERROR("Write domain conflict: "
2964 "obj %p target %d offset %d "
2965 "new %08x old %08x\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002966 obj, reloc->target_handle,
2967 (int) reloc->offset,
2968 reloc->write_domain,
Eric Anholt673a3942008-07-30 12:06:12 -07002969 target_obj->pending_write_domain);
2970 drm_gem_object_unreference(target_obj);
2971 i915_gem_object_unpin(obj);
2972 return -EINVAL;
2973 }
2974
2975#if WATCH_RELOC
2976 DRM_INFO("%s: obj %p offset %08x target %d "
2977 "read %08x write %08x gtt %08x "
2978 "presumed %08x delta %08x\n",
2979 __func__,
2980 obj,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002981 (int) reloc->offset,
2982 (int) reloc->target_handle,
2983 (int) reloc->read_domains,
2984 (int) reloc->write_domain,
Eric Anholt673a3942008-07-30 12:06:12 -07002985 (int) target_obj_priv->gtt_offset,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002986 (int) reloc->presumed_offset,
2987 reloc->delta);
Eric Anholt673a3942008-07-30 12:06:12 -07002988#endif
2989
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002990 target_obj->pending_read_domains |= reloc->read_domains;
2991 target_obj->pending_write_domain |= reloc->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07002992
2993 /* If the relocation already has the right value in it, no
2994 * more work needs to be done.
2995 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07002996 if (target_obj_priv->gtt_offset == reloc->presumed_offset) {
Eric Anholt673a3942008-07-30 12:06:12 -07002997 drm_gem_object_unreference(target_obj);
2998 continue;
2999 }
3000
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003001 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
3002 if (ret != 0) {
3003 drm_gem_object_unreference(target_obj);
3004 i915_gem_object_unpin(obj);
3005 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -07003006 }
3007
3008 /* Map the page containing the relocation we're going to
3009 * perform.
3010 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003011 reloc_offset = obj_priv->gtt_offset + reloc->offset;
Keith Packard0839ccb2008-10-30 19:38:48 -07003012 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
3013 (reloc_offset &
3014 ~(PAGE_SIZE - 1)));
Eric Anholt3043c602008-10-02 12:24:47 -07003015 reloc_entry = (uint32_t __iomem *)(reloc_page +
Keith Packard0839ccb2008-10-30 19:38:48 -07003016 (reloc_offset & (PAGE_SIZE - 1)));
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003017 reloc_val = target_obj_priv->gtt_offset + reloc->delta;
Eric Anholt673a3942008-07-30 12:06:12 -07003018
3019#if WATCH_BUF
3020 DRM_INFO("Applied relocation: %p@0x%08x %08x -> %08x\n",
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003021 obj, (unsigned int) reloc->offset,
Eric Anholt673a3942008-07-30 12:06:12 -07003022 readl(reloc_entry), reloc_val);
3023#endif
3024 writel(reloc_val, reloc_entry);
Keith Packard0839ccb2008-10-30 19:38:48 -07003025 io_mapping_unmap_atomic(reloc_page);
Eric Anholt673a3942008-07-30 12:06:12 -07003026
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003027 /* The updated presumed offset for this entry will be
3028 * copied back out to the user.
Eric Anholt673a3942008-07-30 12:06:12 -07003029 */
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003030 reloc->presumed_offset = target_obj_priv->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003031
3032 drm_gem_object_unreference(target_obj);
3033 }
3034
Eric Anholt673a3942008-07-30 12:06:12 -07003035#if WATCH_BUF
3036 if (0)
3037 i915_gem_dump_object(obj, 128, __func__, ~0);
3038#endif
3039 return 0;
3040}
3041
3042/** Dispatch a batchbuffer to the ring
3043 */
3044static int
3045i915_dispatch_gem_execbuffer(struct drm_device *dev,
3046 struct drm_i915_gem_execbuffer *exec,
Eric Anholt201361a2009-03-11 12:30:04 -07003047 struct drm_clip_rect *cliprects,
Eric Anholt673a3942008-07-30 12:06:12 -07003048 uint64_t exec_offset)
3049{
3050 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003051 int nbox = exec->num_cliprects;
3052 int i = 0, count;
3053 uint32_t exec_start, exec_len;
3054 RING_LOCALS;
3055
3056 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3057 exec_len = (uint32_t) exec->batch_len;
3058
3059 if ((exec_start | exec_len) & 0x7) {
3060 DRM_ERROR("alignment\n");
3061 return -EINVAL;
3062 }
3063
3064 if (!exec_start)
3065 return -EINVAL;
3066
3067 count = nbox ? nbox : 1;
3068
3069 for (i = 0; i < count; i++) {
3070 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -07003071 int ret = i915_emit_box(dev, cliprects, i,
Eric Anholt673a3942008-07-30 12:06:12 -07003072 exec->DR1, exec->DR4);
3073 if (ret)
3074 return ret;
3075 }
3076
3077 if (IS_I830(dev) || IS_845G(dev)) {
3078 BEGIN_LP_RING(4);
3079 OUT_RING(MI_BATCH_BUFFER);
3080 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
3081 OUT_RING(exec_start + exec_len - 4);
3082 OUT_RING(0);
3083 ADVANCE_LP_RING();
3084 } else {
3085 BEGIN_LP_RING(2);
3086 if (IS_I965G(dev)) {
3087 OUT_RING(MI_BATCH_BUFFER_START |
3088 (2 << 6) |
3089 MI_BATCH_NON_SECURE_I965);
3090 OUT_RING(exec_start);
3091 } else {
3092 OUT_RING(MI_BATCH_BUFFER_START |
3093 (2 << 6));
3094 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
3095 }
3096 ADVANCE_LP_RING();
3097 }
3098 }
3099
3100 /* XXX breadcrumb */
3101 return 0;
3102}
3103
3104/* Throttle our rendering by waiting until the ring has completed our requests
3105 * emitted over 20 msec ago.
3106 *
Eric Anholtb9624422009-06-03 07:27:35 +00003107 * Note that if we were to use the current jiffies each time around the loop,
3108 * we wouldn't escape the function with any frames outstanding if the time to
3109 * render a frame was over 20ms.
3110 *
Eric Anholt673a3942008-07-30 12:06:12 -07003111 * This should get us reasonable parallelism between CPU and GPU but also
3112 * relatively low latency when blocking on a particular request to finish.
3113 */
3114static int
3115i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file_priv)
3116{
3117 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
3118 int ret = 0;
Eric Anholtb9624422009-06-03 07:27:35 +00003119 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Eric Anholt673a3942008-07-30 12:06:12 -07003120
3121 mutex_lock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003122 while (!list_empty(&i915_file_priv->mm.request_list)) {
3123 struct drm_i915_gem_request *request;
3124
3125 request = list_first_entry(&i915_file_priv->mm.request_list,
3126 struct drm_i915_gem_request,
3127 client_list);
3128
3129 if (time_after_eq(request->emitted_jiffies, recent_enough))
3130 break;
3131
3132 ret = i915_wait_request(dev, request->seqno);
3133 if (ret != 0)
3134 break;
3135 }
Eric Anholt673a3942008-07-30 12:06:12 -07003136 mutex_unlock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003137
Eric Anholt673a3942008-07-30 12:06:12 -07003138 return ret;
3139}
3140
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003141static int
3142i915_gem_get_relocs_from_user(struct drm_i915_gem_exec_object *exec_list,
3143 uint32_t buffer_count,
3144 struct drm_i915_gem_relocation_entry **relocs)
3145{
3146 uint32_t reloc_count = 0, reloc_index = 0, i;
3147 int ret;
3148
3149 *relocs = NULL;
3150 for (i = 0; i < buffer_count; i++) {
3151 if (reloc_count + exec_list[i].relocation_count < reloc_count)
3152 return -EINVAL;
3153 reloc_count += exec_list[i].relocation_count;
3154 }
3155
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003156 *relocs = drm_calloc_large(reloc_count, sizeof(**relocs));
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003157 if (*relocs == NULL)
3158 return -ENOMEM;
3159
3160 for (i = 0; i < buffer_count; i++) {
3161 struct drm_i915_gem_relocation_entry __user *user_relocs;
3162
3163 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3164
3165 ret = copy_from_user(&(*relocs)[reloc_index],
3166 user_relocs,
3167 exec_list[i].relocation_count *
3168 sizeof(**relocs));
3169 if (ret != 0) {
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003170 drm_free_large(*relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003171 *relocs = NULL;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003172 return -EFAULT;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003173 }
3174
3175 reloc_index += exec_list[i].relocation_count;
3176 }
3177
Florian Mickler2bc43b52009-04-06 22:55:41 +02003178 return 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003179}
3180
3181static int
3182i915_gem_put_relocs_to_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, i;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003187 int ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003188
3189 for (i = 0; i < buffer_count; i++) {
3190 struct drm_i915_gem_relocation_entry __user *user_relocs;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003191 int unwritten;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003192
3193 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3194
Florian Mickler2bc43b52009-04-06 22:55:41 +02003195 unwritten = copy_to_user(user_relocs,
3196 &relocs[reloc_count],
3197 exec_list[i].relocation_count *
3198 sizeof(*relocs));
3199
3200 if (unwritten) {
3201 ret = -EFAULT;
3202 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003203 }
3204
3205 reloc_count += exec_list[i].relocation_count;
3206 }
3207
Florian Mickler2bc43b52009-04-06 22:55:41 +02003208err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003209 drm_free_large(relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003210
3211 return ret;
3212}
3213
Eric Anholt673a3942008-07-30 12:06:12 -07003214int
3215i915_gem_execbuffer(struct drm_device *dev, void *data,
3216 struct drm_file *file_priv)
3217{
3218 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003219 struct drm_i915_gem_execbuffer *args = data;
3220 struct drm_i915_gem_exec_object *exec_list = NULL;
3221 struct drm_gem_object **object_list = NULL;
3222 struct drm_gem_object *batch_obj;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003223 struct drm_i915_gem_object *obj_priv;
Eric Anholt201361a2009-03-11 12:30:04 -07003224 struct drm_clip_rect *cliprects = NULL;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003225 struct drm_i915_gem_relocation_entry *relocs;
3226 int ret, ret2, i, pinned = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003227 uint64_t exec_offset;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003228 uint32_t seqno, flush_domains, reloc_index;
Keith Packardac94a962008-11-20 23:30:27 -08003229 int pin_tries;
Eric Anholt673a3942008-07-30 12:06:12 -07003230
3231#if WATCH_EXEC
3232 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3233 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3234#endif
3235
Eric Anholt4f481ed2008-09-10 14:22:49 -07003236 if (args->buffer_count < 1) {
3237 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3238 return -EINVAL;
3239 }
Eric Anholt673a3942008-07-30 12:06:12 -07003240 /* Copy in the exec list from userland */
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003241 exec_list = drm_calloc_large(sizeof(*exec_list), args->buffer_count);
3242 object_list = drm_calloc_large(sizeof(*object_list), args->buffer_count);
Eric Anholt673a3942008-07-30 12:06:12 -07003243 if (exec_list == NULL || object_list == NULL) {
3244 DRM_ERROR("Failed to allocate exec or object list "
3245 "for %d buffers\n",
3246 args->buffer_count);
3247 ret = -ENOMEM;
3248 goto pre_mutex_err;
3249 }
3250 ret = copy_from_user(exec_list,
3251 (struct drm_i915_relocation_entry __user *)
3252 (uintptr_t) args->buffers_ptr,
3253 sizeof(*exec_list) * args->buffer_count);
3254 if (ret != 0) {
3255 DRM_ERROR("copy %d exec entries failed %d\n",
3256 args->buffer_count, ret);
3257 goto pre_mutex_err;
3258 }
3259
Eric Anholt201361a2009-03-11 12:30:04 -07003260 if (args->num_cliprects != 0) {
3261 cliprects = drm_calloc(args->num_cliprects, sizeof(*cliprects),
3262 DRM_MEM_DRIVER);
3263 if (cliprects == NULL)
3264 goto pre_mutex_err;
3265
3266 ret = copy_from_user(cliprects,
3267 (struct drm_clip_rect __user *)
3268 (uintptr_t) args->cliprects_ptr,
3269 sizeof(*cliprects) * args->num_cliprects);
3270 if (ret != 0) {
3271 DRM_ERROR("copy %d cliprects failed: %d\n",
3272 args->num_cliprects, ret);
3273 goto pre_mutex_err;
3274 }
3275 }
3276
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003277 ret = i915_gem_get_relocs_from_user(exec_list, args->buffer_count,
3278 &relocs);
3279 if (ret != 0)
3280 goto pre_mutex_err;
3281
Eric Anholt673a3942008-07-30 12:06:12 -07003282 mutex_lock(&dev->struct_mutex);
3283
3284 i915_verify_inactive(dev, __FILE__, __LINE__);
3285
3286 if (dev_priv->mm.wedged) {
3287 DRM_ERROR("Execbuf while wedged\n");
3288 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003289 ret = -EIO;
3290 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003291 }
3292
3293 if (dev_priv->mm.suspended) {
3294 DRM_ERROR("Execbuf while VT-switched.\n");
3295 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003296 ret = -EBUSY;
3297 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003298 }
3299
Keith Packardac94a962008-11-20 23:30:27 -08003300 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07003301 for (i = 0; i < args->buffer_count; i++) {
3302 object_list[i] = drm_gem_object_lookup(dev, file_priv,
3303 exec_list[i].handle);
3304 if (object_list[i] == NULL) {
3305 DRM_ERROR("Invalid object handle %d at index %d\n",
3306 exec_list[i].handle, i);
3307 ret = -EBADF;
3308 goto err;
3309 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003310
3311 obj_priv = object_list[i]->driver_private;
3312 if (obj_priv->in_execbuffer) {
3313 DRM_ERROR("Object %p appears more than once in object list\n",
3314 object_list[i]);
3315 ret = -EBADF;
3316 goto err;
3317 }
3318 obj_priv->in_execbuffer = true;
Keith Packardac94a962008-11-20 23:30:27 -08003319 }
Eric Anholt673a3942008-07-30 12:06:12 -07003320
Keith Packardac94a962008-11-20 23:30:27 -08003321 /* Pin and relocate */
3322 for (pin_tries = 0; ; pin_tries++) {
3323 ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003324 reloc_index = 0;
3325
Keith Packardac94a962008-11-20 23:30:27 -08003326 for (i = 0; i < args->buffer_count; i++) {
3327 object_list[i]->pending_read_domains = 0;
3328 object_list[i]->pending_write_domain = 0;
3329 ret = i915_gem_object_pin_and_relocate(object_list[i],
3330 file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003331 &exec_list[i],
3332 &relocs[reloc_index]);
Keith Packardac94a962008-11-20 23:30:27 -08003333 if (ret)
3334 break;
3335 pinned = i + 1;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003336 reloc_index += exec_list[i].relocation_count;
Keith Packardac94a962008-11-20 23:30:27 -08003337 }
3338 /* success */
3339 if (ret == 0)
3340 break;
3341
3342 /* error other than GTT full, or we've already tried again */
3343 if (ret != -ENOMEM || pin_tries >= 1) {
Eric Anholtf1acec92008-12-19 14:47:48 -08003344 if (ret != -ERESTARTSYS)
3345 DRM_ERROR("Failed to pin buffers %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003346 goto err;
3347 }
Keith Packardac94a962008-11-20 23:30:27 -08003348
3349 /* unpin all of our buffers */
3350 for (i = 0; i < pinned; i++)
3351 i915_gem_object_unpin(object_list[i]);
Eric Anholtb1177632008-12-10 10:09:41 -08003352 pinned = 0;
Keith Packardac94a962008-11-20 23:30:27 -08003353
3354 /* evict everyone we can from the aperture */
3355 ret = i915_gem_evict_everything(dev);
3356 if (ret)
3357 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003358 }
3359
3360 /* Set the pending read domains for the batch buffer to COMMAND */
3361 batch_obj = object_list[args->buffer_count-1];
3362 batch_obj->pending_read_domains = I915_GEM_DOMAIN_COMMAND;
3363 batch_obj->pending_write_domain = 0;
3364
3365 i915_verify_inactive(dev, __FILE__, __LINE__);
3366
Keith Packard646f0f62008-11-20 23:23:03 -08003367 /* Zero the global flush/invalidate flags. These
3368 * will be modified as new domains are computed
3369 * for each object
3370 */
3371 dev->invalidate_domains = 0;
3372 dev->flush_domains = 0;
3373
Eric Anholt673a3942008-07-30 12:06:12 -07003374 for (i = 0; i < args->buffer_count; i++) {
3375 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003376
Keith Packard646f0f62008-11-20 23:23:03 -08003377 /* Compute new gpu domains and update invalidate/flush */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003378 i915_gem_object_set_to_gpu_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003379 }
3380
3381 i915_verify_inactive(dev, __FILE__, __LINE__);
3382
Keith Packard646f0f62008-11-20 23:23:03 -08003383 if (dev->invalidate_domains | dev->flush_domains) {
3384#if WATCH_EXEC
3385 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3386 __func__,
3387 dev->invalidate_domains,
3388 dev->flush_domains);
3389#endif
3390 i915_gem_flush(dev,
3391 dev->invalidate_domains,
3392 dev->flush_domains);
3393 if (dev->flush_domains)
Eric Anholtb9624422009-06-03 07:27:35 +00003394 (void)i915_add_request(dev, file_priv,
3395 dev->flush_domains);
Keith Packard646f0f62008-11-20 23:23:03 -08003396 }
Eric Anholt673a3942008-07-30 12:06:12 -07003397
Eric Anholtefbeed92009-02-19 14:54:51 -08003398 for (i = 0; i < args->buffer_count; i++) {
3399 struct drm_gem_object *obj = object_list[i];
3400
3401 obj->write_domain = obj->pending_write_domain;
3402 }
3403
Eric Anholt673a3942008-07-30 12:06:12 -07003404 i915_verify_inactive(dev, __FILE__, __LINE__);
3405
3406#if WATCH_COHERENCY
3407 for (i = 0; i < args->buffer_count; i++) {
3408 i915_gem_object_check_coherency(object_list[i],
3409 exec_list[i].handle);
3410 }
3411#endif
3412
3413 exec_offset = exec_list[args->buffer_count - 1].offset;
3414
3415#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07003416 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07003417 args->batch_len,
3418 __func__,
3419 ~0);
3420#endif
3421
Eric Anholt673a3942008-07-30 12:06:12 -07003422 /* Exec the batchbuffer */
Eric Anholt201361a2009-03-11 12:30:04 -07003423 ret = i915_dispatch_gem_execbuffer(dev, args, cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003424 if (ret) {
3425 DRM_ERROR("dispatch failed %d\n", ret);
3426 goto err;
3427 }
3428
3429 /*
3430 * Ensure that the commands in the batch buffer are
3431 * finished before the interrupt fires
3432 */
3433 flush_domains = i915_retire_commands(dev);
3434
3435 i915_verify_inactive(dev, __FILE__, __LINE__);
3436
3437 /*
3438 * Get a seqno representing the execution of the current buffer,
3439 * which we can wait on. We would like to mitigate these interrupts,
3440 * likely by only creating seqnos occasionally (so that we have
3441 * *some* interrupts representing completion of buffers that we can
3442 * wait on when trying to clear up gtt space).
3443 */
Eric Anholtb9624422009-06-03 07:27:35 +00003444 seqno = i915_add_request(dev, file_priv, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07003445 BUG_ON(seqno == 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003446 for (i = 0; i < args->buffer_count; i++) {
3447 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003448
Eric Anholtce44b0e2008-11-06 16:00:31 -08003449 i915_gem_object_move_to_active(obj, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07003450#if WATCH_LRU
3451 DRM_INFO("%s: move to exec list %p\n", __func__, obj);
3452#endif
3453 }
3454#if WATCH_LRU
3455 i915_dump_lru(dev, __func__);
3456#endif
3457
3458 i915_verify_inactive(dev, __FILE__, __LINE__);
3459
Eric Anholt673a3942008-07-30 12:06:12 -07003460err:
Julia Lawallaad87df2008-12-21 16:28:47 +01003461 for (i = 0; i < pinned; i++)
3462 i915_gem_object_unpin(object_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07003463
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003464 for (i = 0; i < args->buffer_count; i++) {
3465 if (object_list[i]) {
3466 obj_priv = object_list[i]->driver_private;
3467 obj_priv->in_execbuffer = false;
3468 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003469 drm_gem_object_unreference(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003470 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003471
Eric Anholt673a3942008-07-30 12:06:12 -07003472 mutex_unlock(&dev->struct_mutex);
3473
Roland Dreiera35f2e22009-02-06 17:48:09 -08003474 if (!ret) {
3475 /* Copy the new buffer offsets back to the user's exec list. */
3476 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
3477 (uintptr_t) args->buffers_ptr,
3478 exec_list,
3479 sizeof(*exec_list) * args->buffer_count);
Florian Mickler2bc43b52009-04-06 22:55:41 +02003480 if (ret) {
3481 ret = -EFAULT;
Roland Dreiera35f2e22009-02-06 17:48:09 -08003482 DRM_ERROR("failed to copy %d exec entries "
3483 "back to user (%d)\n",
3484 args->buffer_count, ret);
Florian Mickler2bc43b52009-04-06 22:55:41 +02003485 }
Roland Dreiera35f2e22009-02-06 17:48:09 -08003486 }
3487
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003488 /* Copy the updated relocations out regardless of current error
3489 * state. Failure to update the relocs would mean that the next
3490 * time userland calls execbuf, it would do so with presumed offset
3491 * state that didn't match the actual object state.
3492 */
3493 ret2 = i915_gem_put_relocs_to_user(exec_list, args->buffer_count,
3494 relocs);
3495 if (ret2 != 0) {
3496 DRM_ERROR("Failed to copy relocations back out: %d\n", ret2);
3497
3498 if (ret == 0)
3499 ret = ret2;
3500 }
3501
Eric Anholt673a3942008-07-30 12:06:12 -07003502pre_mutex_err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003503 drm_free_large(object_list);
3504 drm_free_large(exec_list);
Eric Anholt201361a2009-03-11 12:30:04 -07003505 drm_free(cliprects, sizeof(*cliprects) * args->num_cliprects,
3506 DRM_MEM_DRIVER);
Eric Anholt673a3942008-07-30 12:06:12 -07003507
3508 return ret;
3509}
3510
3511int
3512i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment)
3513{
3514 struct drm_device *dev = obj->dev;
3515 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3516 int ret;
3517
3518 i915_verify_inactive(dev, __FILE__, __LINE__);
3519 if (obj_priv->gtt_space == NULL) {
3520 ret = i915_gem_object_bind_to_gtt(obj, alignment);
3521 if (ret != 0) {
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003522 if (ret != -EBUSY && ret != -ERESTARTSYS)
Kyle McMartin0fce81e2009-02-28 15:01:16 -05003523 DRM_ERROR("Failure to bind: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003524 return ret;
3525 }
Chris Wilson22c344e2009-02-11 14:26:45 +00003526 }
3527 /*
3528 * Pre-965 chips need a fence register set up in order to
3529 * properly handle tiled surfaces.
3530 */
3531 if (!IS_I965G(dev) &&
3532 obj_priv->fence_reg == I915_FENCE_REG_NONE &&
3533 obj_priv->tiling_mode != I915_TILING_NONE) {
3534 ret = i915_gem_object_get_fence_reg(obj, true);
3535 if (ret != 0) {
3536 if (ret != -EBUSY && ret != -ERESTARTSYS)
3537 DRM_ERROR("Failure to install fence: %d\n",
3538 ret);
3539 return ret;
3540 }
Eric Anholt673a3942008-07-30 12:06:12 -07003541 }
3542 obj_priv->pin_count++;
3543
3544 /* If the object is not active and not pending a flush,
3545 * remove it from the inactive list
3546 */
3547 if (obj_priv->pin_count == 1) {
3548 atomic_inc(&dev->pin_count);
3549 atomic_add(obj->size, &dev->pin_memory);
3550 if (!obj_priv->active &&
3551 (obj->write_domain & ~(I915_GEM_DOMAIN_CPU |
3552 I915_GEM_DOMAIN_GTT)) == 0 &&
3553 !list_empty(&obj_priv->list))
3554 list_del_init(&obj_priv->list);
3555 }
3556 i915_verify_inactive(dev, __FILE__, __LINE__);
3557
3558 return 0;
3559}
3560
3561void
3562i915_gem_object_unpin(struct drm_gem_object *obj)
3563{
3564 struct drm_device *dev = obj->dev;
3565 drm_i915_private_t *dev_priv = dev->dev_private;
3566 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3567
3568 i915_verify_inactive(dev, __FILE__, __LINE__);
3569 obj_priv->pin_count--;
3570 BUG_ON(obj_priv->pin_count < 0);
3571 BUG_ON(obj_priv->gtt_space == NULL);
3572
3573 /* If the object is no longer pinned, and is
3574 * neither active nor being flushed, then stick it on
3575 * the inactive list
3576 */
3577 if (obj_priv->pin_count == 0) {
3578 if (!obj_priv->active &&
3579 (obj->write_domain & ~(I915_GEM_DOMAIN_CPU |
3580 I915_GEM_DOMAIN_GTT)) == 0)
3581 list_move_tail(&obj_priv->list,
3582 &dev_priv->mm.inactive_list);
3583 atomic_dec(&dev->pin_count);
3584 atomic_sub(obj->size, &dev->pin_memory);
3585 }
3586 i915_verify_inactive(dev, __FILE__, __LINE__);
3587}
3588
3589int
3590i915_gem_pin_ioctl(struct drm_device *dev, void *data,
3591 struct drm_file *file_priv)
3592{
3593 struct drm_i915_gem_pin *args = data;
3594 struct drm_gem_object *obj;
3595 struct drm_i915_gem_object *obj_priv;
3596 int ret;
3597
3598 mutex_lock(&dev->struct_mutex);
3599
3600 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3601 if (obj == NULL) {
3602 DRM_ERROR("Bad handle in i915_gem_pin_ioctl(): %d\n",
3603 args->handle);
3604 mutex_unlock(&dev->struct_mutex);
3605 return -EBADF;
3606 }
3607 obj_priv = obj->driver_private;
3608
Jesse Barnes79e53942008-11-07 14:24:08 -08003609 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
3610 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3611 args->handle);
Chris Wilson96dec612009-02-08 19:08:04 +00003612 drm_gem_object_unreference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003613 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08003614 return -EINVAL;
3615 }
3616
3617 obj_priv->user_pin_count++;
3618 obj_priv->pin_filp = file_priv;
3619 if (obj_priv->user_pin_count == 1) {
3620 ret = i915_gem_object_pin(obj, args->alignment);
3621 if (ret != 0) {
3622 drm_gem_object_unreference(obj);
3623 mutex_unlock(&dev->struct_mutex);
3624 return ret;
3625 }
Eric Anholt673a3942008-07-30 12:06:12 -07003626 }
3627
3628 /* XXX - flush the CPU caches for pinned objects
3629 * as the X server doesn't manage domains yet
3630 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003631 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003632 args->offset = obj_priv->gtt_offset;
3633 drm_gem_object_unreference(obj);
3634 mutex_unlock(&dev->struct_mutex);
3635
3636 return 0;
3637}
3638
3639int
3640i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
3641 struct drm_file *file_priv)
3642{
3643 struct drm_i915_gem_pin *args = data;
3644 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08003645 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07003646
3647 mutex_lock(&dev->struct_mutex);
3648
3649 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3650 if (obj == NULL) {
3651 DRM_ERROR("Bad handle in i915_gem_unpin_ioctl(): %d\n",
3652 args->handle);
3653 mutex_unlock(&dev->struct_mutex);
3654 return -EBADF;
3655 }
3656
Jesse Barnes79e53942008-11-07 14:24:08 -08003657 obj_priv = obj->driver_private;
3658 if (obj_priv->pin_filp != file_priv) {
3659 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3660 args->handle);
3661 drm_gem_object_unreference(obj);
3662 mutex_unlock(&dev->struct_mutex);
3663 return -EINVAL;
3664 }
3665 obj_priv->user_pin_count--;
3666 if (obj_priv->user_pin_count == 0) {
3667 obj_priv->pin_filp = NULL;
3668 i915_gem_object_unpin(obj);
3669 }
Eric Anholt673a3942008-07-30 12:06:12 -07003670
3671 drm_gem_object_unreference(obj);
3672 mutex_unlock(&dev->struct_mutex);
3673 return 0;
3674}
3675
3676int
3677i915_gem_busy_ioctl(struct drm_device *dev, void *data,
3678 struct drm_file *file_priv)
3679{
3680 struct drm_i915_gem_busy *args = data;
3681 struct drm_gem_object *obj;
3682 struct drm_i915_gem_object *obj_priv;
3683
3684 mutex_lock(&dev->struct_mutex);
3685 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3686 if (obj == NULL) {
3687 DRM_ERROR("Bad handle in i915_gem_busy_ioctl(): %d\n",
3688 args->handle);
3689 mutex_unlock(&dev->struct_mutex);
3690 return -EBADF;
3691 }
3692
Eric Anholtf21289b2009-02-18 09:44:56 -08003693 /* Update the active list for the hardware's current position.
3694 * Otherwise this only updates on a delayed timer or when irqs are
3695 * actually unmasked, and our working set ends up being larger than
3696 * required.
3697 */
3698 i915_gem_retire_requests(dev);
3699
Eric Anholt673a3942008-07-30 12:06:12 -07003700 obj_priv = obj->driver_private;
Eric Anholtc4de0a52008-12-14 19:05:04 -08003701 /* Don't count being on the flushing list against the object being
3702 * done. Otherwise, a buffer left on the flushing list but not getting
3703 * flushed (because nobody's flushing that domain) won't ever return
3704 * unbusy and get reused by libdrm's bo cache. The other expected
3705 * consumer of this interface, OpenGL's occlusion queries, also specs
3706 * that the objects get unbusy "eventually" without any interference.
3707 */
3708 args->busy = obj_priv->active && obj_priv->last_rendering_seqno != 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003709
3710 drm_gem_object_unreference(obj);
3711 mutex_unlock(&dev->struct_mutex);
3712 return 0;
3713}
3714
3715int
3716i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3717 struct drm_file *file_priv)
3718{
3719 return i915_gem_ring_throttle(dev, file_priv);
3720}
3721
3722int i915_gem_init_object(struct drm_gem_object *obj)
3723{
3724 struct drm_i915_gem_object *obj_priv;
3725
3726 obj_priv = drm_calloc(1, sizeof(*obj_priv), DRM_MEM_DRIVER);
3727 if (obj_priv == NULL)
3728 return -ENOMEM;
3729
3730 /*
3731 * We've just allocated pages from the kernel,
3732 * so they've just been written by the CPU with
3733 * zeros. They'll need to be clflushed before we
3734 * use them with the GPU.
3735 */
3736 obj->write_domain = I915_GEM_DOMAIN_CPU;
3737 obj->read_domains = I915_GEM_DOMAIN_CPU;
3738
Keith Packardba1eb1d2008-10-14 19:55:10 -07003739 obj_priv->agp_type = AGP_USER_MEMORY;
3740
Eric Anholt673a3942008-07-30 12:06:12 -07003741 obj->driver_private = obj_priv;
3742 obj_priv->obj = obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003743 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Eric Anholt673a3942008-07-30 12:06:12 -07003744 INIT_LIST_HEAD(&obj_priv->list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003745
Eric Anholt673a3942008-07-30 12:06:12 -07003746 return 0;
3747}
3748
3749void i915_gem_free_object(struct drm_gem_object *obj)
3750{
Jesse Barnesde151cf2008-11-12 10:03:55 -08003751 struct drm_device *dev = obj->dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003752 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3753
3754 while (obj_priv->pin_count > 0)
3755 i915_gem_object_unpin(obj);
3756
Dave Airlie71acb5e2008-12-30 20:31:46 +10003757 if (obj_priv->phys_obj)
3758 i915_gem_detach_phys_object(dev, obj);
3759
Eric Anholt673a3942008-07-30 12:06:12 -07003760 i915_gem_object_unbind(obj);
3761
Jesse Barnesab00b3e2009-02-11 14:01:46 -08003762 i915_gem_free_mmap_offset(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003763
Eric Anholt673a3942008-07-30 12:06:12 -07003764 drm_free(obj_priv->page_cpu_valid, 1, DRM_MEM_DRIVER);
Eric Anholt280b7132009-03-12 16:56:27 -07003765 kfree(obj_priv->bit_17);
Eric Anholt673a3942008-07-30 12:06:12 -07003766 drm_free(obj->driver_private, 1, DRM_MEM_DRIVER);
3767}
3768
Eric Anholt673a3942008-07-30 12:06:12 -07003769/** Unbinds all objects that are on the given buffer list. */
3770static int
3771i915_gem_evict_from_list(struct drm_device *dev, struct list_head *head)
3772{
3773 struct drm_gem_object *obj;
3774 struct drm_i915_gem_object *obj_priv;
3775 int ret;
3776
3777 while (!list_empty(head)) {
3778 obj_priv = list_first_entry(head,
3779 struct drm_i915_gem_object,
3780 list);
3781 obj = obj_priv->obj;
3782
3783 if (obj_priv->pin_count != 0) {
3784 DRM_ERROR("Pinned object in unbind list\n");
3785 mutex_unlock(&dev->struct_mutex);
3786 return -EINVAL;
3787 }
3788
3789 ret = i915_gem_object_unbind(obj);
3790 if (ret != 0) {
3791 DRM_ERROR("Error unbinding object in LeaveVT: %d\n",
3792 ret);
3793 mutex_unlock(&dev->struct_mutex);
3794 return ret;
3795 }
3796 }
3797
3798
3799 return 0;
3800}
3801
Jesse Barnes5669fca2009-02-17 15:13:31 -08003802int
Eric Anholt673a3942008-07-30 12:06:12 -07003803i915_gem_idle(struct drm_device *dev)
3804{
3805 drm_i915_private_t *dev_priv = dev->dev_private;
3806 uint32_t seqno, cur_seqno, last_seqno;
3807 int stuck, ret;
3808
Keith Packard6dbe2772008-10-14 21:41:13 -07003809 mutex_lock(&dev->struct_mutex);
3810
3811 if (dev_priv->mm.suspended || dev_priv->ring.ring_obj == NULL) {
3812 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003813 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003814 }
Eric Anholt673a3942008-07-30 12:06:12 -07003815
3816 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3817 * We need to replace this with a semaphore, or something.
3818 */
3819 dev_priv->mm.suspended = 1;
3820
Keith Packard6dbe2772008-10-14 21:41:13 -07003821 /* Cancel the retire work handler, wait for it to finish if running
3822 */
3823 mutex_unlock(&dev->struct_mutex);
3824 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3825 mutex_lock(&dev->struct_mutex);
3826
Eric Anholt673a3942008-07-30 12:06:12 -07003827 i915_kernel_lost_context(dev);
3828
3829 /* Flush the GPU along with all non-CPU write domains
3830 */
3831 i915_gem_flush(dev, ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT),
3832 ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT));
Eric Anholtb9624422009-06-03 07:27:35 +00003833 seqno = i915_add_request(dev, NULL, ~I915_GEM_DOMAIN_CPU);
Eric Anholt673a3942008-07-30 12:06:12 -07003834
3835 if (seqno == 0) {
3836 mutex_unlock(&dev->struct_mutex);
3837 return -ENOMEM;
3838 }
3839
3840 dev_priv->mm.waiting_gem_seqno = seqno;
3841 last_seqno = 0;
3842 stuck = 0;
3843 for (;;) {
3844 cur_seqno = i915_get_gem_seqno(dev);
3845 if (i915_seqno_passed(cur_seqno, seqno))
3846 break;
3847 if (last_seqno == cur_seqno) {
3848 if (stuck++ > 100) {
3849 DRM_ERROR("hardware wedged\n");
3850 dev_priv->mm.wedged = 1;
3851 DRM_WAKEUP(&dev_priv->irq_queue);
3852 break;
3853 }
3854 }
3855 msleep(10);
3856 last_seqno = cur_seqno;
3857 }
3858 dev_priv->mm.waiting_gem_seqno = 0;
3859
3860 i915_gem_retire_requests(dev);
3861
Carl Worth5e118f42009-03-20 11:54:25 -07003862 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt28dfe522008-11-13 15:00:55 -08003863 if (!dev_priv->mm.wedged) {
3864 /* Active and flushing should now be empty as we've
3865 * waited for a sequence higher than any pending execbuffer
3866 */
3867 WARN_ON(!list_empty(&dev_priv->mm.active_list));
3868 WARN_ON(!list_empty(&dev_priv->mm.flushing_list));
3869 /* Request should now be empty as we've also waited
3870 * for the last request in the list
3871 */
3872 WARN_ON(!list_empty(&dev_priv->mm.request_list));
3873 }
Eric Anholt673a3942008-07-30 12:06:12 -07003874
Eric Anholt28dfe522008-11-13 15:00:55 -08003875 /* Empty the active and flushing lists to inactive. If there's
3876 * anything left at this point, it means that we're wedged and
3877 * nothing good's going to happen by leaving them there. So strip
3878 * the GPU domains and just stuff them onto inactive.
Eric Anholt673a3942008-07-30 12:06:12 -07003879 */
Eric Anholt28dfe522008-11-13 15:00:55 -08003880 while (!list_empty(&dev_priv->mm.active_list)) {
3881 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07003882
Eric Anholt28dfe522008-11-13 15:00:55 -08003883 obj_priv = list_first_entry(&dev_priv->mm.active_list,
3884 struct drm_i915_gem_object,
3885 list);
3886 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3887 i915_gem_object_move_to_inactive(obj_priv->obj);
3888 }
Carl Worth5e118f42009-03-20 11:54:25 -07003889 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholt28dfe522008-11-13 15:00:55 -08003890
3891 while (!list_empty(&dev_priv->mm.flushing_list)) {
3892 struct drm_i915_gem_object *obj_priv;
3893
Eric Anholt151903d2008-12-01 10:23:21 +10003894 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
Eric Anholt28dfe522008-11-13 15:00:55 -08003895 struct drm_i915_gem_object,
3896 list);
3897 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3898 i915_gem_object_move_to_inactive(obj_priv->obj);
3899 }
3900
3901
3902 /* Move all inactive buffers out of the GTT. */
Eric Anholt673a3942008-07-30 12:06:12 -07003903 ret = i915_gem_evict_from_list(dev, &dev_priv->mm.inactive_list);
Eric Anholt28dfe522008-11-13 15:00:55 -08003904 WARN_ON(!list_empty(&dev_priv->mm.inactive_list));
Keith Packard6dbe2772008-10-14 21:41:13 -07003905 if (ret) {
3906 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003907 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003908 }
Eric Anholt673a3942008-07-30 12:06:12 -07003909
Keith Packard6dbe2772008-10-14 21:41:13 -07003910 i915_gem_cleanup_ringbuffer(dev);
3911 mutex_unlock(&dev->struct_mutex);
3912
Eric Anholt673a3942008-07-30 12:06:12 -07003913 return 0;
3914}
3915
3916static int
3917i915_gem_init_hws(struct drm_device *dev)
3918{
3919 drm_i915_private_t *dev_priv = dev->dev_private;
3920 struct drm_gem_object *obj;
3921 struct drm_i915_gem_object *obj_priv;
3922 int ret;
3923
3924 /* If we need a physical address for the status page, it's already
3925 * initialized at driver load time.
3926 */
3927 if (!I915_NEED_GFX_HWS(dev))
3928 return 0;
3929
3930 obj = drm_gem_object_alloc(dev, 4096);
3931 if (obj == NULL) {
3932 DRM_ERROR("Failed to allocate status page\n");
3933 return -ENOMEM;
3934 }
3935 obj_priv = obj->driver_private;
Keith Packardba1eb1d2008-10-14 19:55:10 -07003936 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
Eric Anholt673a3942008-07-30 12:06:12 -07003937
3938 ret = i915_gem_object_pin(obj, 4096);
3939 if (ret != 0) {
3940 drm_gem_object_unreference(obj);
3941 return ret;
3942 }
3943
3944 dev_priv->status_gfx_addr = obj_priv->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003945
Eric Anholt856fa192009-03-19 14:10:50 -07003946 dev_priv->hw_status_page = kmap(obj_priv->pages[0]);
Keith Packardba1eb1d2008-10-14 19:55:10 -07003947 if (dev_priv->hw_status_page == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07003948 DRM_ERROR("Failed to map status page.\n");
3949 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Chris Wilson3eb2ee72009-02-11 14:26:34 +00003950 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003951 drm_gem_object_unreference(obj);
3952 return -EINVAL;
3953 }
3954 dev_priv->hws_obj = obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003955 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
3956 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Keith Packardba1eb1d2008-10-14 19:55:10 -07003957 I915_READ(HWS_PGA); /* posting read */
Eric Anholt673a3942008-07-30 12:06:12 -07003958 DRM_DEBUG("hws offset: 0x%08x\n", dev_priv->status_gfx_addr);
3959
3960 return 0;
3961}
3962
Chris Wilson85a7bb92009-02-11 14:52:44 +00003963static void
3964i915_gem_cleanup_hws(struct drm_device *dev)
3965{
3966 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00003967 struct drm_gem_object *obj;
3968 struct drm_i915_gem_object *obj_priv;
Chris Wilson85a7bb92009-02-11 14:52:44 +00003969
3970 if (dev_priv->hws_obj == NULL)
3971 return;
3972
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00003973 obj = dev_priv->hws_obj;
3974 obj_priv = obj->driver_private;
3975
Eric Anholt856fa192009-03-19 14:10:50 -07003976 kunmap(obj_priv->pages[0]);
Chris Wilson85a7bb92009-02-11 14:52:44 +00003977 i915_gem_object_unpin(obj);
3978 drm_gem_object_unreference(obj);
3979 dev_priv->hws_obj = NULL;
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00003980
Chris Wilson85a7bb92009-02-11 14:52:44 +00003981 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
3982 dev_priv->hw_status_page = NULL;
3983
3984 /* Write high address into HWS_PGA when disabling. */
3985 I915_WRITE(HWS_PGA, 0x1ffff000);
3986}
3987
Jesse Barnes79e53942008-11-07 14:24:08 -08003988int
Eric Anholt673a3942008-07-30 12:06:12 -07003989i915_gem_init_ringbuffer(struct drm_device *dev)
3990{
3991 drm_i915_private_t *dev_priv = dev->dev_private;
3992 struct drm_gem_object *obj;
3993 struct drm_i915_gem_object *obj_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -08003994 drm_i915_ring_buffer_t *ring = &dev_priv->ring;
Eric Anholt673a3942008-07-30 12:06:12 -07003995 int ret;
Keith Packard50aa253d2008-10-14 17:20:35 -07003996 u32 head;
Eric Anholt673a3942008-07-30 12:06:12 -07003997
3998 ret = i915_gem_init_hws(dev);
3999 if (ret != 0)
4000 return ret;
4001
4002 obj = drm_gem_object_alloc(dev, 128 * 1024);
4003 if (obj == NULL) {
4004 DRM_ERROR("Failed to allocate ringbuffer\n");
Chris Wilson85a7bb92009-02-11 14:52:44 +00004005 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004006 return -ENOMEM;
4007 }
4008 obj_priv = obj->driver_private;
4009
4010 ret = i915_gem_object_pin(obj, 4096);
4011 if (ret != 0) {
4012 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00004013 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004014 return ret;
4015 }
4016
4017 /* Set up the kernel mapping for the ring. */
Jesse Barnes79e53942008-11-07 14:24:08 -08004018 ring->Size = obj->size;
4019 ring->tail_mask = obj->size - 1;
Eric Anholt673a3942008-07-30 12:06:12 -07004020
Jesse Barnes79e53942008-11-07 14:24:08 -08004021 ring->map.offset = dev->agp->base + obj_priv->gtt_offset;
4022 ring->map.size = obj->size;
4023 ring->map.type = 0;
4024 ring->map.flags = 0;
4025 ring->map.mtrr = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004026
Jesse Barnes79e53942008-11-07 14:24:08 -08004027 drm_core_ioremap_wc(&ring->map, dev);
4028 if (ring->map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07004029 DRM_ERROR("Failed to map ringbuffer.\n");
4030 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
Chris Wilson47ed1852009-02-11 14:26:33 +00004031 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004032 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00004033 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004034 return -EINVAL;
4035 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004036 ring->ring_obj = obj;
4037 ring->virtual_start = ring->map.handle;
Eric Anholt673a3942008-07-30 12:06:12 -07004038
4039 /* Stop the ring if it's running. */
4040 I915_WRITE(PRB0_CTL, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004041 I915_WRITE(PRB0_TAIL, 0);
Keith Packard50aa253d2008-10-14 17:20:35 -07004042 I915_WRITE(PRB0_HEAD, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004043
4044 /* Initialize the ring. */
4045 I915_WRITE(PRB0_START, obj_priv->gtt_offset);
Keith Packard50aa253d2008-10-14 17:20:35 -07004046 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4047
4048 /* G45 ring initialization fails to reset head to zero */
4049 if (head != 0) {
4050 DRM_ERROR("Ring head not reset to zero "
4051 "ctl %08x head %08x tail %08x start %08x\n",
4052 I915_READ(PRB0_CTL),
4053 I915_READ(PRB0_HEAD),
4054 I915_READ(PRB0_TAIL),
4055 I915_READ(PRB0_START));
4056 I915_WRITE(PRB0_HEAD, 0);
4057
4058 DRM_ERROR("Ring head forced to zero "
4059 "ctl %08x head %08x tail %08x start %08x\n",
4060 I915_READ(PRB0_CTL),
4061 I915_READ(PRB0_HEAD),
4062 I915_READ(PRB0_TAIL),
4063 I915_READ(PRB0_START));
4064 }
4065
Eric Anholt673a3942008-07-30 12:06:12 -07004066 I915_WRITE(PRB0_CTL,
4067 ((obj->size - 4096) & RING_NR_PAGES) |
4068 RING_NO_REPORT |
4069 RING_VALID);
4070
Keith Packard50aa253d2008-10-14 17:20:35 -07004071 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4072
4073 /* If the head is still not zero, the ring is dead */
4074 if (head != 0) {
4075 DRM_ERROR("Ring initialization failed "
4076 "ctl %08x head %08x tail %08x start %08x\n",
4077 I915_READ(PRB0_CTL),
4078 I915_READ(PRB0_HEAD),
4079 I915_READ(PRB0_TAIL),
4080 I915_READ(PRB0_START));
4081 return -EIO;
4082 }
4083
Eric Anholt673a3942008-07-30 12:06:12 -07004084 /* Update our cache of the ring state */
Jesse Barnes79e53942008-11-07 14:24:08 -08004085 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4086 i915_kernel_lost_context(dev);
4087 else {
4088 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4089 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
4090 ring->space = ring->head - (ring->tail + 8);
4091 if (ring->space < 0)
4092 ring->space += ring->Size;
4093 }
Eric Anholt673a3942008-07-30 12:06:12 -07004094
4095 return 0;
4096}
4097
Jesse Barnes79e53942008-11-07 14:24:08 -08004098void
Eric Anholt673a3942008-07-30 12:06:12 -07004099i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4100{
4101 drm_i915_private_t *dev_priv = dev->dev_private;
4102
4103 if (dev_priv->ring.ring_obj == NULL)
4104 return;
4105
4106 drm_core_ioremapfree(&dev_priv->ring.map, dev);
4107
4108 i915_gem_object_unpin(dev_priv->ring.ring_obj);
4109 drm_gem_object_unreference(dev_priv->ring.ring_obj);
4110 dev_priv->ring.ring_obj = NULL;
4111 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
4112
Chris Wilson85a7bb92009-02-11 14:52:44 +00004113 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004114}
4115
4116int
4117i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4118 struct drm_file *file_priv)
4119{
4120 drm_i915_private_t *dev_priv = dev->dev_private;
4121 int ret;
4122
Jesse Barnes79e53942008-11-07 14:24:08 -08004123 if (drm_core_check_feature(dev, DRIVER_MODESET))
4124 return 0;
4125
Eric Anholt673a3942008-07-30 12:06:12 -07004126 if (dev_priv->mm.wedged) {
4127 DRM_ERROR("Reenabling wedged hardware, good luck\n");
4128 dev_priv->mm.wedged = 0;
4129 }
4130
Eric Anholt673a3942008-07-30 12:06:12 -07004131 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004132 dev_priv->mm.suspended = 0;
4133
4134 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004135 if (ret != 0) {
4136 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004137 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004138 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004139
Carl Worth5e118f42009-03-20 11:54:25 -07004140 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004141 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Carl Worth5e118f42009-03-20 11:54:25 -07004142 spin_unlock(&dev_priv->mm.active_list_lock);
4143
Eric Anholt673a3942008-07-30 12:06:12 -07004144 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4145 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
4146 BUG_ON(!list_empty(&dev_priv->mm.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004147 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004148
4149 drm_irq_install(dev);
4150
Eric Anholt673a3942008-07-30 12:06:12 -07004151 return 0;
4152}
4153
4154int
4155i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4156 struct drm_file *file_priv)
4157{
4158 int ret;
4159
Jesse Barnes79e53942008-11-07 14:24:08 -08004160 if (drm_core_check_feature(dev, DRIVER_MODESET))
4161 return 0;
4162
Eric Anholt673a3942008-07-30 12:06:12 -07004163 ret = i915_gem_idle(dev);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004164 drm_irq_uninstall(dev);
4165
Keith Packard6dbe2772008-10-14 21:41:13 -07004166 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004167}
4168
4169void
4170i915_gem_lastclose(struct drm_device *dev)
4171{
4172 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004173
Eric Anholte806b492009-01-22 09:56:58 -08004174 if (drm_core_check_feature(dev, DRIVER_MODESET))
4175 return;
4176
Keith Packard6dbe2772008-10-14 21:41:13 -07004177 ret = i915_gem_idle(dev);
4178 if (ret)
4179 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004180}
4181
4182void
4183i915_gem_load(struct drm_device *dev)
4184{
4185 drm_i915_private_t *dev_priv = dev->dev_private;
4186
Carl Worth5e118f42009-03-20 11:54:25 -07004187 spin_lock_init(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004188 INIT_LIST_HEAD(&dev_priv->mm.active_list);
4189 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
4190 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
4191 INIT_LIST_HEAD(&dev_priv->mm.request_list);
4192 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4193 i915_gem_retire_work_handler);
Eric Anholt673a3942008-07-30 12:06:12 -07004194 dev_priv->mm.next_gem_seqno = 1;
4195
Jesse Barnesde151cf2008-11-12 10:03:55 -08004196 /* Old X drivers will take 0-2 for front, back, depth buffers */
4197 dev_priv->fence_reg_start = 3;
4198
Jesse Barnes0f973f22009-01-26 17:10:45 -08004199 if (IS_I965G(dev) || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004200 dev_priv->num_fence_regs = 16;
4201 else
4202 dev_priv->num_fence_regs = 8;
4203
Eric Anholt673a3942008-07-30 12:06:12 -07004204 i915_gem_detect_bit_6_swizzle(dev);
4205}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004206
4207/*
4208 * Create a physically contiguous memory object for this object
4209 * e.g. for cursor + overlay regs
4210 */
4211int i915_gem_init_phys_object(struct drm_device *dev,
4212 int id, int size)
4213{
4214 drm_i915_private_t *dev_priv = dev->dev_private;
4215 struct drm_i915_gem_phys_object *phys_obj;
4216 int ret;
4217
4218 if (dev_priv->mm.phys_objs[id - 1] || !size)
4219 return 0;
4220
4221 phys_obj = drm_calloc(1, sizeof(struct drm_i915_gem_phys_object), DRM_MEM_DRIVER);
4222 if (!phys_obj)
4223 return -ENOMEM;
4224
4225 phys_obj->id = id;
4226
4227 phys_obj->handle = drm_pci_alloc(dev, size, 0, 0xffffffff);
4228 if (!phys_obj->handle) {
4229 ret = -ENOMEM;
4230 goto kfree_obj;
4231 }
4232#ifdef CONFIG_X86
4233 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4234#endif
4235
4236 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4237
4238 return 0;
4239kfree_obj:
4240 drm_free(phys_obj, sizeof(struct drm_i915_gem_phys_object), DRM_MEM_DRIVER);
4241 return ret;
4242}
4243
4244void i915_gem_free_phys_object(struct drm_device *dev, int id)
4245{
4246 drm_i915_private_t *dev_priv = dev->dev_private;
4247 struct drm_i915_gem_phys_object *phys_obj;
4248
4249 if (!dev_priv->mm.phys_objs[id - 1])
4250 return;
4251
4252 phys_obj = dev_priv->mm.phys_objs[id - 1];
4253 if (phys_obj->cur_obj) {
4254 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4255 }
4256
4257#ifdef CONFIG_X86
4258 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4259#endif
4260 drm_pci_free(dev, phys_obj->handle);
4261 kfree(phys_obj);
4262 dev_priv->mm.phys_objs[id - 1] = NULL;
4263}
4264
4265void i915_gem_free_all_phys_object(struct drm_device *dev)
4266{
4267 int i;
4268
Dave Airlie260883c2009-01-22 17:58:49 +10004269 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004270 i915_gem_free_phys_object(dev, i);
4271}
4272
4273void i915_gem_detach_phys_object(struct drm_device *dev,
4274 struct drm_gem_object *obj)
4275{
4276 struct drm_i915_gem_object *obj_priv;
4277 int i;
4278 int ret;
4279 int page_count;
4280
4281 obj_priv = obj->driver_private;
4282 if (!obj_priv->phys_obj)
4283 return;
4284
Eric Anholt856fa192009-03-19 14:10:50 -07004285 ret = i915_gem_object_get_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004286 if (ret)
4287 goto out;
4288
4289 page_count = obj->size / PAGE_SIZE;
4290
4291 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004292 char *dst = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004293 char *src = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4294
4295 memcpy(dst, src, PAGE_SIZE);
4296 kunmap_atomic(dst, KM_USER0);
4297 }
Eric Anholt856fa192009-03-19 14:10:50 -07004298 drm_clflush_pages(obj_priv->pages, page_count);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004299 drm_agp_chipset_flush(dev);
4300out:
4301 obj_priv->phys_obj->cur_obj = NULL;
4302 obj_priv->phys_obj = NULL;
4303}
4304
4305int
4306i915_gem_attach_phys_object(struct drm_device *dev,
4307 struct drm_gem_object *obj, int id)
4308{
4309 drm_i915_private_t *dev_priv = dev->dev_private;
4310 struct drm_i915_gem_object *obj_priv;
4311 int ret = 0;
4312 int page_count;
4313 int i;
4314
4315 if (id > I915_MAX_PHYS_OBJECT)
4316 return -EINVAL;
4317
4318 obj_priv = obj->driver_private;
4319
4320 if (obj_priv->phys_obj) {
4321 if (obj_priv->phys_obj->id == id)
4322 return 0;
4323 i915_gem_detach_phys_object(dev, obj);
4324 }
4325
4326
4327 /* create a new object */
4328 if (!dev_priv->mm.phys_objs[id - 1]) {
4329 ret = i915_gem_init_phys_object(dev, id,
4330 obj->size);
4331 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08004332 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004333 goto out;
4334 }
4335 }
4336
4337 /* bind to the object */
4338 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
4339 obj_priv->phys_obj->cur_obj = obj;
4340
Eric Anholt856fa192009-03-19 14:10:50 -07004341 ret = i915_gem_object_get_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004342 if (ret) {
4343 DRM_ERROR("failed to get page list\n");
4344 goto out;
4345 }
4346
4347 page_count = obj->size / PAGE_SIZE;
4348
4349 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004350 char *src = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004351 char *dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4352
4353 memcpy(dst, src, PAGE_SIZE);
4354 kunmap_atomic(src, KM_USER0);
4355 }
4356
4357 return 0;
4358out:
4359 return ret;
4360}
4361
4362static int
4363i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
4364 struct drm_i915_gem_pwrite *args,
4365 struct drm_file *file_priv)
4366{
4367 struct drm_i915_gem_object *obj_priv = obj->driver_private;
4368 void *obj_addr;
4369 int ret;
4370 char __user *user_data;
4371
4372 user_data = (char __user *) (uintptr_t) args->data_ptr;
4373 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
4374
Dave Airliee08fb4f2009-02-25 14:52:30 +10004375 DRM_DEBUG("obj_addr %p, %lld\n", obj_addr, args->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004376 ret = copy_from_user(obj_addr, user_data, args->size);
4377 if (ret)
4378 return -EFAULT;
4379
4380 drm_agp_chipset_flush(dev);
4381 return 0;
4382}
Eric Anholtb9624422009-06-03 07:27:35 +00004383
4384void i915_gem_release(struct drm_device * dev, struct drm_file *file_priv)
4385{
4386 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
4387
4388 /* Clean up our request list when the client is going away, so that
4389 * later retire_requests won't dereference our soon-to-be-gone
4390 * file_priv.
4391 */
4392 mutex_lock(&dev->struct_mutex);
4393 while (!list_empty(&i915_file_priv->mm.request_list))
4394 list_del_init(i915_file_priv->mm.request_list.next);
4395 mutex_unlock(&dev->struct_mutex);
4396}