blob: 744bf9803ea3d53713b8e273ffa5fd481a0d08af [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;
Chris Wilson83d60792009-06-06 09:45:57 +01003053 uint32_t exec_start, exec_len;
Eric Anholt673a3942008-07-30 12:06:12 -07003054 RING_LOCALS;
3055
3056 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3057 exec_len = (uint32_t) exec->batch_len;
3058
Eric Anholt673a3942008-07-30 12:06:12 -07003059 count = nbox ? nbox : 1;
3060
3061 for (i = 0; i < count; i++) {
3062 if (i < nbox) {
Eric Anholt201361a2009-03-11 12:30:04 -07003063 int ret = i915_emit_box(dev, cliprects, i,
Eric Anholt673a3942008-07-30 12:06:12 -07003064 exec->DR1, exec->DR4);
3065 if (ret)
3066 return ret;
3067 }
3068
3069 if (IS_I830(dev) || IS_845G(dev)) {
3070 BEGIN_LP_RING(4);
3071 OUT_RING(MI_BATCH_BUFFER);
3072 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
3073 OUT_RING(exec_start + exec_len - 4);
3074 OUT_RING(0);
3075 ADVANCE_LP_RING();
3076 } else {
3077 BEGIN_LP_RING(2);
3078 if (IS_I965G(dev)) {
3079 OUT_RING(MI_BATCH_BUFFER_START |
3080 (2 << 6) |
3081 MI_BATCH_NON_SECURE_I965);
3082 OUT_RING(exec_start);
3083 } else {
3084 OUT_RING(MI_BATCH_BUFFER_START |
3085 (2 << 6));
3086 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
3087 }
3088 ADVANCE_LP_RING();
3089 }
3090 }
3091
3092 /* XXX breadcrumb */
3093 return 0;
3094}
3095
3096/* Throttle our rendering by waiting until the ring has completed our requests
3097 * emitted over 20 msec ago.
3098 *
Eric Anholtb9624422009-06-03 07:27:35 +00003099 * Note that if we were to use the current jiffies each time around the loop,
3100 * we wouldn't escape the function with any frames outstanding if the time to
3101 * render a frame was over 20ms.
3102 *
Eric Anholt673a3942008-07-30 12:06:12 -07003103 * This should get us reasonable parallelism between CPU and GPU but also
3104 * relatively low latency when blocking on a particular request to finish.
3105 */
3106static int
3107i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file_priv)
3108{
3109 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
3110 int ret = 0;
Eric Anholtb9624422009-06-03 07:27:35 +00003111 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Eric Anholt673a3942008-07-30 12:06:12 -07003112
3113 mutex_lock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003114 while (!list_empty(&i915_file_priv->mm.request_list)) {
3115 struct drm_i915_gem_request *request;
3116
3117 request = list_first_entry(&i915_file_priv->mm.request_list,
3118 struct drm_i915_gem_request,
3119 client_list);
3120
3121 if (time_after_eq(request->emitted_jiffies, recent_enough))
3122 break;
3123
3124 ret = i915_wait_request(dev, request->seqno);
3125 if (ret != 0)
3126 break;
3127 }
Eric Anholt673a3942008-07-30 12:06:12 -07003128 mutex_unlock(&dev->struct_mutex);
Eric Anholtb9624422009-06-03 07:27:35 +00003129
Eric Anholt673a3942008-07-30 12:06:12 -07003130 return ret;
3131}
3132
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003133static int
3134i915_gem_get_relocs_from_user(struct drm_i915_gem_exec_object *exec_list,
3135 uint32_t buffer_count,
3136 struct drm_i915_gem_relocation_entry **relocs)
3137{
3138 uint32_t reloc_count = 0, reloc_index = 0, i;
3139 int ret;
3140
3141 *relocs = NULL;
3142 for (i = 0; i < buffer_count; i++) {
3143 if (reloc_count + exec_list[i].relocation_count < reloc_count)
3144 return -EINVAL;
3145 reloc_count += exec_list[i].relocation_count;
3146 }
3147
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003148 *relocs = drm_calloc_large(reloc_count, sizeof(**relocs));
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003149 if (*relocs == NULL)
3150 return -ENOMEM;
3151
3152 for (i = 0; i < buffer_count; i++) {
3153 struct drm_i915_gem_relocation_entry __user *user_relocs;
3154
3155 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3156
3157 ret = copy_from_user(&(*relocs)[reloc_index],
3158 user_relocs,
3159 exec_list[i].relocation_count *
3160 sizeof(**relocs));
3161 if (ret != 0) {
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003162 drm_free_large(*relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003163 *relocs = NULL;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003164 return -EFAULT;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003165 }
3166
3167 reloc_index += exec_list[i].relocation_count;
3168 }
3169
Florian Mickler2bc43b52009-04-06 22:55:41 +02003170 return 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003171}
3172
3173static int
3174i915_gem_put_relocs_to_user(struct drm_i915_gem_exec_object *exec_list,
3175 uint32_t buffer_count,
3176 struct drm_i915_gem_relocation_entry *relocs)
3177{
3178 uint32_t reloc_count = 0, i;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003179 int ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003180
3181 for (i = 0; i < buffer_count; i++) {
3182 struct drm_i915_gem_relocation_entry __user *user_relocs;
Florian Mickler2bc43b52009-04-06 22:55:41 +02003183 int unwritten;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003184
3185 user_relocs = (void __user *)(uintptr_t)exec_list[i].relocs_ptr;
3186
Florian Mickler2bc43b52009-04-06 22:55:41 +02003187 unwritten = copy_to_user(user_relocs,
3188 &relocs[reloc_count],
3189 exec_list[i].relocation_count *
3190 sizeof(*relocs));
3191
3192 if (unwritten) {
3193 ret = -EFAULT;
3194 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003195 }
3196
3197 reloc_count += exec_list[i].relocation_count;
3198 }
3199
Florian Mickler2bc43b52009-04-06 22:55:41 +02003200err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003201 drm_free_large(relocs);
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003202
3203 return ret;
3204}
3205
Chris Wilson83d60792009-06-06 09:45:57 +01003206static int
3207i915_gem_check_execbuffer (struct drm_i915_gem_execbuffer *exec,
3208 uint64_t exec_offset)
3209{
3210 uint32_t exec_start, exec_len;
3211
3212 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3213 exec_len = (uint32_t) exec->batch_len;
3214
3215 if ((exec_start | exec_len) & 0x7)
3216 return -EINVAL;
3217
3218 if (!exec_start)
3219 return -EINVAL;
3220
3221 return 0;
3222}
3223
Eric Anholt673a3942008-07-30 12:06:12 -07003224int
3225i915_gem_execbuffer(struct drm_device *dev, void *data,
3226 struct drm_file *file_priv)
3227{
3228 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003229 struct drm_i915_gem_execbuffer *args = data;
3230 struct drm_i915_gem_exec_object *exec_list = NULL;
3231 struct drm_gem_object **object_list = NULL;
3232 struct drm_gem_object *batch_obj;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003233 struct drm_i915_gem_object *obj_priv;
Eric Anholt201361a2009-03-11 12:30:04 -07003234 struct drm_clip_rect *cliprects = NULL;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003235 struct drm_i915_gem_relocation_entry *relocs;
3236 int ret, ret2, i, pinned = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003237 uint64_t exec_offset;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003238 uint32_t seqno, flush_domains, reloc_index;
Keith Packardac94a962008-11-20 23:30:27 -08003239 int pin_tries;
Eric Anholt673a3942008-07-30 12:06:12 -07003240
3241#if WATCH_EXEC
3242 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3243 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3244#endif
3245
Eric Anholt4f481ed2008-09-10 14:22:49 -07003246 if (args->buffer_count < 1) {
3247 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3248 return -EINVAL;
3249 }
Eric Anholt673a3942008-07-30 12:06:12 -07003250 /* Copy in the exec list from userland */
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003251 exec_list = drm_calloc_large(sizeof(*exec_list), args->buffer_count);
3252 object_list = drm_calloc_large(sizeof(*object_list), args->buffer_count);
Eric Anholt673a3942008-07-30 12:06:12 -07003253 if (exec_list == NULL || object_list == NULL) {
3254 DRM_ERROR("Failed to allocate exec or object list "
3255 "for %d buffers\n",
3256 args->buffer_count);
3257 ret = -ENOMEM;
3258 goto pre_mutex_err;
3259 }
3260 ret = copy_from_user(exec_list,
3261 (struct drm_i915_relocation_entry __user *)
3262 (uintptr_t) args->buffers_ptr,
3263 sizeof(*exec_list) * args->buffer_count);
3264 if (ret != 0) {
3265 DRM_ERROR("copy %d exec entries failed %d\n",
3266 args->buffer_count, ret);
3267 goto pre_mutex_err;
3268 }
3269
Eric Anholt201361a2009-03-11 12:30:04 -07003270 if (args->num_cliprects != 0) {
3271 cliprects = drm_calloc(args->num_cliprects, sizeof(*cliprects),
3272 DRM_MEM_DRIVER);
3273 if (cliprects == NULL)
3274 goto pre_mutex_err;
3275
3276 ret = copy_from_user(cliprects,
3277 (struct drm_clip_rect __user *)
3278 (uintptr_t) args->cliprects_ptr,
3279 sizeof(*cliprects) * args->num_cliprects);
3280 if (ret != 0) {
3281 DRM_ERROR("copy %d cliprects failed: %d\n",
3282 args->num_cliprects, ret);
3283 goto pre_mutex_err;
3284 }
3285 }
3286
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003287 ret = i915_gem_get_relocs_from_user(exec_list, args->buffer_count,
3288 &relocs);
3289 if (ret != 0)
3290 goto pre_mutex_err;
3291
Eric Anholt673a3942008-07-30 12:06:12 -07003292 mutex_lock(&dev->struct_mutex);
3293
3294 i915_verify_inactive(dev, __FILE__, __LINE__);
3295
3296 if (dev_priv->mm.wedged) {
3297 DRM_ERROR("Execbuf while wedged\n");
3298 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003299 ret = -EIO;
3300 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003301 }
3302
3303 if (dev_priv->mm.suspended) {
3304 DRM_ERROR("Execbuf while VT-switched.\n");
3305 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003306 ret = -EBUSY;
3307 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003308 }
3309
Keith Packardac94a962008-11-20 23:30:27 -08003310 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07003311 for (i = 0; i < args->buffer_count; i++) {
3312 object_list[i] = drm_gem_object_lookup(dev, file_priv,
3313 exec_list[i].handle);
3314 if (object_list[i] == NULL) {
3315 DRM_ERROR("Invalid object handle %d at index %d\n",
3316 exec_list[i].handle, i);
3317 ret = -EBADF;
3318 goto err;
3319 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003320
3321 obj_priv = object_list[i]->driver_private;
3322 if (obj_priv->in_execbuffer) {
3323 DRM_ERROR("Object %p appears more than once in object list\n",
3324 object_list[i]);
3325 ret = -EBADF;
3326 goto err;
3327 }
3328 obj_priv->in_execbuffer = true;
Keith Packardac94a962008-11-20 23:30:27 -08003329 }
Eric Anholt673a3942008-07-30 12:06:12 -07003330
Keith Packardac94a962008-11-20 23:30:27 -08003331 /* Pin and relocate */
3332 for (pin_tries = 0; ; pin_tries++) {
3333 ret = 0;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003334 reloc_index = 0;
3335
Keith Packardac94a962008-11-20 23:30:27 -08003336 for (i = 0; i < args->buffer_count; i++) {
3337 object_list[i]->pending_read_domains = 0;
3338 object_list[i]->pending_write_domain = 0;
3339 ret = i915_gem_object_pin_and_relocate(object_list[i],
3340 file_priv,
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003341 &exec_list[i],
3342 &relocs[reloc_index]);
Keith Packardac94a962008-11-20 23:30:27 -08003343 if (ret)
3344 break;
3345 pinned = i + 1;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003346 reloc_index += exec_list[i].relocation_count;
Keith Packardac94a962008-11-20 23:30:27 -08003347 }
3348 /* success */
3349 if (ret == 0)
3350 break;
3351
3352 /* error other than GTT full, or we've already tried again */
3353 if (ret != -ENOMEM || pin_tries >= 1) {
Eric Anholtf1acec92008-12-19 14:47:48 -08003354 if (ret != -ERESTARTSYS)
3355 DRM_ERROR("Failed to pin buffers %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003356 goto err;
3357 }
Keith Packardac94a962008-11-20 23:30:27 -08003358
3359 /* unpin all of our buffers */
3360 for (i = 0; i < pinned; i++)
3361 i915_gem_object_unpin(object_list[i]);
Eric Anholtb1177632008-12-10 10:09:41 -08003362 pinned = 0;
Keith Packardac94a962008-11-20 23:30:27 -08003363
3364 /* evict everyone we can from the aperture */
3365 ret = i915_gem_evict_everything(dev);
3366 if (ret)
3367 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003368 }
3369
3370 /* Set the pending read domains for the batch buffer to COMMAND */
3371 batch_obj = object_list[args->buffer_count-1];
Chris Wilson5f26a2c2009-06-06 09:45:58 +01003372 if (batch_obj->pending_write_domain) {
3373 DRM_ERROR("Attempting to use self-modifying batch buffer\n");
3374 ret = -EINVAL;
3375 goto err;
3376 }
3377 batch_obj->pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Eric Anholt673a3942008-07-30 12:06:12 -07003378
Chris Wilson83d60792009-06-06 09:45:57 +01003379 /* Sanity check the batch buffer, prior to moving objects */
3380 exec_offset = exec_list[args->buffer_count - 1].offset;
3381 ret = i915_gem_check_execbuffer (args, exec_offset);
3382 if (ret != 0) {
3383 DRM_ERROR("execbuf with invalid offset/length\n");
3384 goto err;
3385 }
3386
Eric Anholt673a3942008-07-30 12:06:12 -07003387 i915_verify_inactive(dev, __FILE__, __LINE__);
3388
Keith Packard646f0f62008-11-20 23:23:03 -08003389 /* Zero the global flush/invalidate flags. These
3390 * will be modified as new domains are computed
3391 * for each object
3392 */
3393 dev->invalidate_domains = 0;
3394 dev->flush_domains = 0;
3395
Eric Anholt673a3942008-07-30 12:06:12 -07003396 for (i = 0; i < args->buffer_count; i++) {
3397 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003398
Keith Packard646f0f62008-11-20 23:23:03 -08003399 /* Compute new gpu domains and update invalidate/flush */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003400 i915_gem_object_set_to_gpu_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003401 }
3402
3403 i915_verify_inactive(dev, __FILE__, __LINE__);
3404
Keith Packard646f0f62008-11-20 23:23:03 -08003405 if (dev->invalidate_domains | dev->flush_domains) {
3406#if WATCH_EXEC
3407 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3408 __func__,
3409 dev->invalidate_domains,
3410 dev->flush_domains);
3411#endif
3412 i915_gem_flush(dev,
3413 dev->invalidate_domains,
3414 dev->flush_domains);
3415 if (dev->flush_domains)
Eric Anholtb9624422009-06-03 07:27:35 +00003416 (void)i915_add_request(dev, file_priv,
3417 dev->flush_domains);
Keith Packard646f0f62008-11-20 23:23:03 -08003418 }
Eric Anholt673a3942008-07-30 12:06:12 -07003419
Eric Anholtefbeed92009-02-19 14:54:51 -08003420 for (i = 0; i < args->buffer_count; i++) {
3421 struct drm_gem_object *obj = object_list[i];
3422
3423 obj->write_domain = obj->pending_write_domain;
3424 }
3425
Eric Anholt673a3942008-07-30 12:06:12 -07003426 i915_verify_inactive(dev, __FILE__, __LINE__);
3427
3428#if WATCH_COHERENCY
3429 for (i = 0; i < args->buffer_count; i++) {
3430 i915_gem_object_check_coherency(object_list[i],
3431 exec_list[i].handle);
3432 }
3433#endif
3434
Eric Anholt673a3942008-07-30 12:06:12 -07003435#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07003436 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07003437 args->batch_len,
3438 __func__,
3439 ~0);
3440#endif
3441
Eric Anholt673a3942008-07-30 12:06:12 -07003442 /* Exec the batchbuffer */
Eric Anholt201361a2009-03-11 12:30:04 -07003443 ret = i915_dispatch_gem_execbuffer(dev, args, cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003444 if (ret) {
3445 DRM_ERROR("dispatch failed %d\n", ret);
3446 goto err;
3447 }
3448
3449 /*
3450 * Ensure that the commands in the batch buffer are
3451 * finished before the interrupt fires
3452 */
3453 flush_domains = i915_retire_commands(dev);
3454
3455 i915_verify_inactive(dev, __FILE__, __LINE__);
3456
3457 /*
3458 * Get a seqno representing the execution of the current buffer,
3459 * which we can wait on. We would like to mitigate these interrupts,
3460 * likely by only creating seqnos occasionally (so that we have
3461 * *some* interrupts representing completion of buffers that we can
3462 * wait on when trying to clear up gtt space).
3463 */
Eric Anholtb9624422009-06-03 07:27:35 +00003464 seqno = i915_add_request(dev, file_priv, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07003465 BUG_ON(seqno == 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003466 for (i = 0; i < args->buffer_count; i++) {
3467 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07003468
Eric Anholtce44b0e2008-11-06 16:00:31 -08003469 i915_gem_object_move_to_active(obj, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07003470#if WATCH_LRU
3471 DRM_INFO("%s: move to exec list %p\n", __func__, obj);
3472#endif
3473 }
3474#if WATCH_LRU
3475 i915_dump_lru(dev, __func__);
3476#endif
3477
3478 i915_verify_inactive(dev, __FILE__, __LINE__);
3479
Eric Anholt673a3942008-07-30 12:06:12 -07003480err:
Julia Lawallaad87df2008-12-21 16:28:47 +01003481 for (i = 0; i < pinned; i++)
3482 i915_gem_object_unpin(object_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07003483
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003484 for (i = 0; i < args->buffer_count; i++) {
3485 if (object_list[i]) {
3486 obj_priv = object_list[i]->driver_private;
3487 obj_priv->in_execbuffer = false;
3488 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003489 drm_gem_object_unreference(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003490 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003491
Eric Anholt673a3942008-07-30 12:06:12 -07003492 mutex_unlock(&dev->struct_mutex);
3493
Roland Dreiera35f2e22009-02-06 17:48:09 -08003494 if (!ret) {
3495 /* Copy the new buffer offsets back to the user's exec list. */
3496 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
3497 (uintptr_t) args->buffers_ptr,
3498 exec_list,
3499 sizeof(*exec_list) * args->buffer_count);
Florian Mickler2bc43b52009-04-06 22:55:41 +02003500 if (ret) {
3501 ret = -EFAULT;
Roland Dreiera35f2e22009-02-06 17:48:09 -08003502 DRM_ERROR("failed to copy %d exec entries "
3503 "back to user (%d)\n",
3504 args->buffer_count, ret);
Florian Mickler2bc43b52009-04-06 22:55:41 +02003505 }
Roland Dreiera35f2e22009-02-06 17:48:09 -08003506 }
3507
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003508 /* Copy the updated relocations out regardless of current error
3509 * state. Failure to update the relocs would mean that the next
3510 * time userland calls execbuf, it would do so with presumed offset
3511 * state that didn't match the actual object state.
3512 */
3513 ret2 = i915_gem_put_relocs_to_user(exec_list, args->buffer_count,
3514 relocs);
3515 if (ret2 != 0) {
3516 DRM_ERROR("Failed to copy relocations back out: %d\n", ret2);
3517
3518 if (ret == 0)
3519 ret = ret2;
3520 }
3521
Eric Anholt673a3942008-07-30 12:06:12 -07003522pre_mutex_err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003523 drm_free_large(object_list);
3524 drm_free_large(exec_list);
Eric Anholt201361a2009-03-11 12:30:04 -07003525 drm_free(cliprects, sizeof(*cliprects) * args->num_cliprects,
3526 DRM_MEM_DRIVER);
Eric Anholt673a3942008-07-30 12:06:12 -07003527
3528 return ret;
3529}
3530
3531int
3532i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment)
3533{
3534 struct drm_device *dev = obj->dev;
3535 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3536 int ret;
3537
3538 i915_verify_inactive(dev, __FILE__, __LINE__);
3539 if (obj_priv->gtt_space == NULL) {
3540 ret = i915_gem_object_bind_to_gtt(obj, alignment);
3541 if (ret != 0) {
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003542 if (ret != -EBUSY && ret != -ERESTARTSYS)
Kyle McMartin0fce81e2009-02-28 15:01:16 -05003543 DRM_ERROR("Failure to bind: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003544 return ret;
3545 }
Chris Wilson22c344e2009-02-11 14:26:45 +00003546 }
3547 /*
3548 * Pre-965 chips need a fence register set up in order to
3549 * properly handle tiled surfaces.
3550 */
3551 if (!IS_I965G(dev) &&
3552 obj_priv->fence_reg == I915_FENCE_REG_NONE &&
3553 obj_priv->tiling_mode != I915_TILING_NONE) {
3554 ret = i915_gem_object_get_fence_reg(obj, true);
3555 if (ret != 0) {
3556 if (ret != -EBUSY && ret != -ERESTARTSYS)
3557 DRM_ERROR("Failure to install fence: %d\n",
3558 ret);
3559 return ret;
3560 }
Eric Anholt673a3942008-07-30 12:06:12 -07003561 }
3562 obj_priv->pin_count++;
3563
3564 /* If the object is not active and not pending a flush,
3565 * remove it from the inactive list
3566 */
3567 if (obj_priv->pin_count == 1) {
3568 atomic_inc(&dev->pin_count);
3569 atomic_add(obj->size, &dev->pin_memory);
3570 if (!obj_priv->active &&
3571 (obj->write_domain & ~(I915_GEM_DOMAIN_CPU |
3572 I915_GEM_DOMAIN_GTT)) == 0 &&
3573 !list_empty(&obj_priv->list))
3574 list_del_init(&obj_priv->list);
3575 }
3576 i915_verify_inactive(dev, __FILE__, __LINE__);
3577
3578 return 0;
3579}
3580
3581void
3582i915_gem_object_unpin(struct drm_gem_object *obj)
3583{
3584 struct drm_device *dev = obj->dev;
3585 drm_i915_private_t *dev_priv = dev->dev_private;
3586 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3587
3588 i915_verify_inactive(dev, __FILE__, __LINE__);
3589 obj_priv->pin_count--;
3590 BUG_ON(obj_priv->pin_count < 0);
3591 BUG_ON(obj_priv->gtt_space == NULL);
3592
3593 /* If the object is no longer pinned, and is
3594 * neither active nor being flushed, then stick it on
3595 * the inactive list
3596 */
3597 if (obj_priv->pin_count == 0) {
3598 if (!obj_priv->active &&
3599 (obj->write_domain & ~(I915_GEM_DOMAIN_CPU |
3600 I915_GEM_DOMAIN_GTT)) == 0)
3601 list_move_tail(&obj_priv->list,
3602 &dev_priv->mm.inactive_list);
3603 atomic_dec(&dev->pin_count);
3604 atomic_sub(obj->size, &dev->pin_memory);
3605 }
3606 i915_verify_inactive(dev, __FILE__, __LINE__);
3607}
3608
3609int
3610i915_gem_pin_ioctl(struct drm_device *dev, void *data,
3611 struct drm_file *file_priv)
3612{
3613 struct drm_i915_gem_pin *args = data;
3614 struct drm_gem_object *obj;
3615 struct drm_i915_gem_object *obj_priv;
3616 int ret;
3617
3618 mutex_lock(&dev->struct_mutex);
3619
3620 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3621 if (obj == NULL) {
3622 DRM_ERROR("Bad handle in i915_gem_pin_ioctl(): %d\n",
3623 args->handle);
3624 mutex_unlock(&dev->struct_mutex);
3625 return -EBADF;
3626 }
3627 obj_priv = obj->driver_private;
3628
Jesse Barnes79e53942008-11-07 14:24:08 -08003629 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
3630 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3631 args->handle);
Chris Wilson96dec612009-02-08 19:08:04 +00003632 drm_gem_object_unreference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003633 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08003634 return -EINVAL;
3635 }
3636
3637 obj_priv->user_pin_count++;
3638 obj_priv->pin_filp = file_priv;
3639 if (obj_priv->user_pin_count == 1) {
3640 ret = i915_gem_object_pin(obj, args->alignment);
3641 if (ret != 0) {
3642 drm_gem_object_unreference(obj);
3643 mutex_unlock(&dev->struct_mutex);
3644 return ret;
3645 }
Eric Anholt673a3942008-07-30 12:06:12 -07003646 }
3647
3648 /* XXX - flush the CPU caches for pinned objects
3649 * as the X server doesn't manage domains yet
3650 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003651 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003652 args->offset = obj_priv->gtt_offset;
3653 drm_gem_object_unreference(obj);
3654 mutex_unlock(&dev->struct_mutex);
3655
3656 return 0;
3657}
3658
3659int
3660i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
3661 struct drm_file *file_priv)
3662{
3663 struct drm_i915_gem_pin *args = data;
3664 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08003665 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07003666
3667 mutex_lock(&dev->struct_mutex);
3668
3669 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3670 if (obj == NULL) {
3671 DRM_ERROR("Bad handle in i915_gem_unpin_ioctl(): %d\n",
3672 args->handle);
3673 mutex_unlock(&dev->struct_mutex);
3674 return -EBADF;
3675 }
3676
Jesse Barnes79e53942008-11-07 14:24:08 -08003677 obj_priv = obj->driver_private;
3678 if (obj_priv->pin_filp != file_priv) {
3679 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3680 args->handle);
3681 drm_gem_object_unreference(obj);
3682 mutex_unlock(&dev->struct_mutex);
3683 return -EINVAL;
3684 }
3685 obj_priv->user_pin_count--;
3686 if (obj_priv->user_pin_count == 0) {
3687 obj_priv->pin_filp = NULL;
3688 i915_gem_object_unpin(obj);
3689 }
Eric Anholt673a3942008-07-30 12:06:12 -07003690
3691 drm_gem_object_unreference(obj);
3692 mutex_unlock(&dev->struct_mutex);
3693 return 0;
3694}
3695
3696int
3697i915_gem_busy_ioctl(struct drm_device *dev, void *data,
3698 struct drm_file *file_priv)
3699{
3700 struct drm_i915_gem_busy *args = data;
3701 struct drm_gem_object *obj;
3702 struct drm_i915_gem_object *obj_priv;
3703
Eric Anholt673a3942008-07-30 12:06:12 -07003704 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
3705 if (obj == NULL) {
3706 DRM_ERROR("Bad handle in i915_gem_busy_ioctl(): %d\n",
3707 args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07003708 return -EBADF;
3709 }
3710
Chris Wilsonb1ce7862009-06-06 09:46:00 +01003711 mutex_lock(&dev->struct_mutex);
Eric Anholtf21289b2009-02-18 09:44:56 -08003712 /* Update the active list for the hardware's current position.
3713 * Otherwise this only updates on a delayed timer or when irqs are
3714 * actually unmasked, and our working set ends up being larger than
3715 * required.
3716 */
3717 i915_gem_retire_requests(dev);
3718
Eric Anholt673a3942008-07-30 12:06:12 -07003719 obj_priv = obj->driver_private;
Eric Anholtc4de0a52008-12-14 19:05:04 -08003720 /* Don't count being on the flushing list against the object being
3721 * done. Otherwise, a buffer left on the flushing list but not getting
3722 * flushed (because nobody's flushing that domain) won't ever return
3723 * unbusy and get reused by libdrm's bo cache. The other expected
3724 * consumer of this interface, OpenGL's occlusion queries, also specs
3725 * that the objects get unbusy "eventually" without any interference.
3726 */
3727 args->busy = obj_priv->active && obj_priv->last_rendering_seqno != 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003728
3729 drm_gem_object_unreference(obj);
3730 mutex_unlock(&dev->struct_mutex);
3731 return 0;
3732}
3733
3734int
3735i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3736 struct drm_file *file_priv)
3737{
3738 return i915_gem_ring_throttle(dev, file_priv);
3739}
3740
3741int i915_gem_init_object(struct drm_gem_object *obj)
3742{
3743 struct drm_i915_gem_object *obj_priv;
3744
3745 obj_priv = drm_calloc(1, sizeof(*obj_priv), DRM_MEM_DRIVER);
3746 if (obj_priv == NULL)
3747 return -ENOMEM;
3748
3749 /*
3750 * We've just allocated pages from the kernel,
3751 * so they've just been written by the CPU with
3752 * zeros. They'll need to be clflushed before we
3753 * use them with the GPU.
3754 */
3755 obj->write_domain = I915_GEM_DOMAIN_CPU;
3756 obj->read_domains = I915_GEM_DOMAIN_CPU;
3757
Keith Packardba1eb1d2008-10-14 19:55:10 -07003758 obj_priv->agp_type = AGP_USER_MEMORY;
3759
Eric Anholt673a3942008-07-30 12:06:12 -07003760 obj->driver_private = obj_priv;
3761 obj_priv->obj = obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003762 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Eric Anholt673a3942008-07-30 12:06:12 -07003763 INIT_LIST_HEAD(&obj_priv->list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003764
Eric Anholt673a3942008-07-30 12:06:12 -07003765 return 0;
3766}
3767
3768void i915_gem_free_object(struct drm_gem_object *obj)
3769{
Jesse Barnesde151cf2008-11-12 10:03:55 -08003770 struct drm_device *dev = obj->dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003771 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3772
3773 while (obj_priv->pin_count > 0)
3774 i915_gem_object_unpin(obj);
3775
Dave Airlie71acb5e2008-12-30 20:31:46 +10003776 if (obj_priv->phys_obj)
3777 i915_gem_detach_phys_object(dev, obj);
3778
Eric Anholt673a3942008-07-30 12:06:12 -07003779 i915_gem_object_unbind(obj);
3780
Jesse Barnesab00b3e2009-02-11 14:01:46 -08003781 i915_gem_free_mmap_offset(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003782
Eric Anholt673a3942008-07-30 12:06:12 -07003783 drm_free(obj_priv->page_cpu_valid, 1, DRM_MEM_DRIVER);
Eric Anholt280b7132009-03-12 16:56:27 -07003784 kfree(obj_priv->bit_17);
Eric Anholt673a3942008-07-30 12:06:12 -07003785 drm_free(obj->driver_private, 1, DRM_MEM_DRIVER);
3786}
3787
Eric Anholt673a3942008-07-30 12:06:12 -07003788/** Unbinds all objects that are on the given buffer list. */
3789static int
3790i915_gem_evict_from_list(struct drm_device *dev, struct list_head *head)
3791{
3792 struct drm_gem_object *obj;
3793 struct drm_i915_gem_object *obj_priv;
3794 int ret;
3795
3796 while (!list_empty(head)) {
3797 obj_priv = list_first_entry(head,
3798 struct drm_i915_gem_object,
3799 list);
3800 obj = obj_priv->obj;
3801
3802 if (obj_priv->pin_count != 0) {
3803 DRM_ERROR("Pinned object in unbind list\n");
3804 mutex_unlock(&dev->struct_mutex);
3805 return -EINVAL;
3806 }
3807
3808 ret = i915_gem_object_unbind(obj);
3809 if (ret != 0) {
3810 DRM_ERROR("Error unbinding object in LeaveVT: %d\n",
3811 ret);
3812 mutex_unlock(&dev->struct_mutex);
3813 return ret;
3814 }
3815 }
3816
3817
3818 return 0;
3819}
3820
Jesse Barnes5669fca2009-02-17 15:13:31 -08003821int
Eric Anholt673a3942008-07-30 12:06:12 -07003822i915_gem_idle(struct drm_device *dev)
3823{
3824 drm_i915_private_t *dev_priv = dev->dev_private;
3825 uint32_t seqno, cur_seqno, last_seqno;
3826 int stuck, ret;
3827
Keith Packard6dbe2772008-10-14 21:41:13 -07003828 mutex_lock(&dev->struct_mutex);
3829
3830 if (dev_priv->mm.suspended || dev_priv->ring.ring_obj == NULL) {
3831 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003832 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003833 }
Eric Anholt673a3942008-07-30 12:06:12 -07003834
3835 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3836 * We need to replace this with a semaphore, or something.
3837 */
3838 dev_priv->mm.suspended = 1;
3839
Keith Packard6dbe2772008-10-14 21:41:13 -07003840 /* Cancel the retire work handler, wait for it to finish if running
3841 */
3842 mutex_unlock(&dev->struct_mutex);
3843 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3844 mutex_lock(&dev->struct_mutex);
3845
Eric Anholt673a3942008-07-30 12:06:12 -07003846 i915_kernel_lost_context(dev);
3847
3848 /* Flush the GPU along with all non-CPU write domains
3849 */
3850 i915_gem_flush(dev, ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT),
3851 ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT));
Eric Anholtb9624422009-06-03 07:27:35 +00003852 seqno = i915_add_request(dev, NULL, ~I915_GEM_DOMAIN_CPU);
Eric Anholt673a3942008-07-30 12:06:12 -07003853
3854 if (seqno == 0) {
3855 mutex_unlock(&dev->struct_mutex);
3856 return -ENOMEM;
3857 }
3858
3859 dev_priv->mm.waiting_gem_seqno = seqno;
3860 last_seqno = 0;
3861 stuck = 0;
3862 for (;;) {
3863 cur_seqno = i915_get_gem_seqno(dev);
3864 if (i915_seqno_passed(cur_seqno, seqno))
3865 break;
3866 if (last_seqno == cur_seqno) {
3867 if (stuck++ > 100) {
3868 DRM_ERROR("hardware wedged\n");
3869 dev_priv->mm.wedged = 1;
3870 DRM_WAKEUP(&dev_priv->irq_queue);
3871 break;
3872 }
3873 }
3874 msleep(10);
3875 last_seqno = cur_seqno;
3876 }
3877 dev_priv->mm.waiting_gem_seqno = 0;
3878
3879 i915_gem_retire_requests(dev);
3880
Carl Worth5e118f42009-03-20 11:54:25 -07003881 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt28dfe522008-11-13 15:00:55 -08003882 if (!dev_priv->mm.wedged) {
3883 /* Active and flushing should now be empty as we've
3884 * waited for a sequence higher than any pending execbuffer
3885 */
3886 WARN_ON(!list_empty(&dev_priv->mm.active_list));
3887 WARN_ON(!list_empty(&dev_priv->mm.flushing_list));
3888 /* Request should now be empty as we've also waited
3889 * for the last request in the list
3890 */
3891 WARN_ON(!list_empty(&dev_priv->mm.request_list));
3892 }
Eric Anholt673a3942008-07-30 12:06:12 -07003893
Eric Anholt28dfe522008-11-13 15:00:55 -08003894 /* Empty the active and flushing lists to inactive. If there's
3895 * anything left at this point, it means that we're wedged and
3896 * nothing good's going to happen by leaving them there. So strip
3897 * the GPU domains and just stuff them onto inactive.
Eric Anholt673a3942008-07-30 12:06:12 -07003898 */
Eric Anholt28dfe522008-11-13 15:00:55 -08003899 while (!list_empty(&dev_priv->mm.active_list)) {
3900 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07003901
Eric Anholt28dfe522008-11-13 15:00:55 -08003902 obj_priv = list_first_entry(&dev_priv->mm.active_list,
3903 struct drm_i915_gem_object,
3904 list);
3905 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3906 i915_gem_object_move_to_inactive(obj_priv->obj);
3907 }
Carl Worth5e118f42009-03-20 11:54:25 -07003908 spin_unlock(&dev_priv->mm.active_list_lock);
Eric Anholt28dfe522008-11-13 15:00:55 -08003909
3910 while (!list_empty(&dev_priv->mm.flushing_list)) {
3911 struct drm_i915_gem_object *obj_priv;
3912
Eric Anholt151903d2008-12-01 10:23:21 +10003913 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
Eric Anholt28dfe522008-11-13 15:00:55 -08003914 struct drm_i915_gem_object,
3915 list);
3916 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3917 i915_gem_object_move_to_inactive(obj_priv->obj);
3918 }
3919
3920
3921 /* Move all inactive buffers out of the GTT. */
Eric Anholt673a3942008-07-30 12:06:12 -07003922 ret = i915_gem_evict_from_list(dev, &dev_priv->mm.inactive_list);
Eric Anholt28dfe522008-11-13 15:00:55 -08003923 WARN_ON(!list_empty(&dev_priv->mm.inactive_list));
Keith Packard6dbe2772008-10-14 21:41:13 -07003924 if (ret) {
3925 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003926 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003927 }
Eric Anholt673a3942008-07-30 12:06:12 -07003928
Keith Packard6dbe2772008-10-14 21:41:13 -07003929 i915_gem_cleanup_ringbuffer(dev);
3930 mutex_unlock(&dev->struct_mutex);
3931
Eric Anholt673a3942008-07-30 12:06:12 -07003932 return 0;
3933}
3934
3935static int
3936i915_gem_init_hws(struct drm_device *dev)
3937{
3938 drm_i915_private_t *dev_priv = dev->dev_private;
3939 struct drm_gem_object *obj;
3940 struct drm_i915_gem_object *obj_priv;
3941 int ret;
3942
3943 /* If we need a physical address for the status page, it's already
3944 * initialized at driver load time.
3945 */
3946 if (!I915_NEED_GFX_HWS(dev))
3947 return 0;
3948
3949 obj = drm_gem_object_alloc(dev, 4096);
3950 if (obj == NULL) {
3951 DRM_ERROR("Failed to allocate status page\n");
3952 return -ENOMEM;
3953 }
3954 obj_priv = obj->driver_private;
Keith Packardba1eb1d2008-10-14 19:55:10 -07003955 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
Eric Anholt673a3942008-07-30 12:06:12 -07003956
3957 ret = i915_gem_object_pin(obj, 4096);
3958 if (ret != 0) {
3959 drm_gem_object_unreference(obj);
3960 return ret;
3961 }
3962
3963 dev_priv->status_gfx_addr = obj_priv->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003964
Eric Anholt856fa192009-03-19 14:10:50 -07003965 dev_priv->hw_status_page = kmap(obj_priv->pages[0]);
Keith Packardba1eb1d2008-10-14 19:55:10 -07003966 if (dev_priv->hw_status_page == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07003967 DRM_ERROR("Failed to map status page.\n");
3968 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Chris Wilson3eb2ee72009-02-11 14:26:34 +00003969 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003970 drm_gem_object_unreference(obj);
3971 return -EINVAL;
3972 }
3973 dev_priv->hws_obj = obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003974 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
3975 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Keith Packardba1eb1d2008-10-14 19:55:10 -07003976 I915_READ(HWS_PGA); /* posting read */
Eric Anholt673a3942008-07-30 12:06:12 -07003977 DRM_DEBUG("hws offset: 0x%08x\n", dev_priv->status_gfx_addr);
3978
3979 return 0;
3980}
3981
Chris Wilson85a7bb92009-02-11 14:52:44 +00003982static void
3983i915_gem_cleanup_hws(struct drm_device *dev)
3984{
3985 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00003986 struct drm_gem_object *obj;
3987 struct drm_i915_gem_object *obj_priv;
Chris Wilson85a7bb92009-02-11 14:52:44 +00003988
3989 if (dev_priv->hws_obj == NULL)
3990 return;
3991
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00003992 obj = dev_priv->hws_obj;
3993 obj_priv = obj->driver_private;
3994
Eric Anholt856fa192009-03-19 14:10:50 -07003995 kunmap(obj_priv->pages[0]);
Chris Wilson85a7bb92009-02-11 14:52:44 +00003996 i915_gem_object_unpin(obj);
3997 drm_gem_object_unreference(obj);
3998 dev_priv->hws_obj = NULL;
Chris Wilsonbab2d1f2009-02-20 17:52:20 +00003999
Chris Wilson85a7bb92009-02-11 14:52:44 +00004000 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
4001 dev_priv->hw_status_page = NULL;
4002
4003 /* Write high address into HWS_PGA when disabling. */
4004 I915_WRITE(HWS_PGA, 0x1ffff000);
4005}
4006
Jesse Barnes79e53942008-11-07 14:24:08 -08004007int
Eric Anholt673a3942008-07-30 12:06:12 -07004008i915_gem_init_ringbuffer(struct drm_device *dev)
4009{
4010 drm_i915_private_t *dev_priv = dev->dev_private;
4011 struct drm_gem_object *obj;
4012 struct drm_i915_gem_object *obj_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -08004013 drm_i915_ring_buffer_t *ring = &dev_priv->ring;
Eric Anholt673a3942008-07-30 12:06:12 -07004014 int ret;
Keith Packard50aa253d2008-10-14 17:20:35 -07004015 u32 head;
Eric Anholt673a3942008-07-30 12:06:12 -07004016
4017 ret = i915_gem_init_hws(dev);
4018 if (ret != 0)
4019 return ret;
4020
4021 obj = drm_gem_object_alloc(dev, 128 * 1024);
4022 if (obj == NULL) {
4023 DRM_ERROR("Failed to allocate ringbuffer\n");
Chris Wilson85a7bb92009-02-11 14:52:44 +00004024 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004025 return -ENOMEM;
4026 }
4027 obj_priv = obj->driver_private;
4028
4029 ret = i915_gem_object_pin(obj, 4096);
4030 if (ret != 0) {
4031 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00004032 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004033 return ret;
4034 }
4035
4036 /* Set up the kernel mapping for the ring. */
Jesse Barnes79e53942008-11-07 14:24:08 -08004037 ring->Size = obj->size;
4038 ring->tail_mask = obj->size - 1;
Eric Anholt673a3942008-07-30 12:06:12 -07004039
Jesse Barnes79e53942008-11-07 14:24:08 -08004040 ring->map.offset = dev->agp->base + obj_priv->gtt_offset;
4041 ring->map.size = obj->size;
4042 ring->map.type = 0;
4043 ring->map.flags = 0;
4044 ring->map.mtrr = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004045
Jesse Barnes79e53942008-11-07 14:24:08 -08004046 drm_core_ioremap_wc(&ring->map, dev);
4047 if (ring->map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07004048 DRM_ERROR("Failed to map ringbuffer.\n");
4049 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
Chris Wilson47ed1852009-02-11 14:26:33 +00004050 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004051 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00004052 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004053 return -EINVAL;
4054 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004055 ring->ring_obj = obj;
4056 ring->virtual_start = ring->map.handle;
Eric Anholt673a3942008-07-30 12:06:12 -07004057
4058 /* Stop the ring if it's running. */
4059 I915_WRITE(PRB0_CTL, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004060 I915_WRITE(PRB0_TAIL, 0);
Keith Packard50aa253d2008-10-14 17:20:35 -07004061 I915_WRITE(PRB0_HEAD, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004062
4063 /* Initialize the ring. */
4064 I915_WRITE(PRB0_START, obj_priv->gtt_offset);
Keith Packard50aa253d2008-10-14 17:20:35 -07004065 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4066
4067 /* G45 ring initialization fails to reset head to zero */
4068 if (head != 0) {
4069 DRM_ERROR("Ring head not reset to zero "
4070 "ctl %08x head %08x tail %08x start %08x\n",
4071 I915_READ(PRB0_CTL),
4072 I915_READ(PRB0_HEAD),
4073 I915_READ(PRB0_TAIL),
4074 I915_READ(PRB0_START));
4075 I915_WRITE(PRB0_HEAD, 0);
4076
4077 DRM_ERROR("Ring head forced to zero "
4078 "ctl %08x head %08x tail %08x start %08x\n",
4079 I915_READ(PRB0_CTL),
4080 I915_READ(PRB0_HEAD),
4081 I915_READ(PRB0_TAIL),
4082 I915_READ(PRB0_START));
4083 }
4084
Eric Anholt673a3942008-07-30 12:06:12 -07004085 I915_WRITE(PRB0_CTL,
4086 ((obj->size - 4096) & RING_NR_PAGES) |
4087 RING_NO_REPORT |
4088 RING_VALID);
4089
Keith Packard50aa253d2008-10-14 17:20:35 -07004090 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4091
4092 /* If the head is still not zero, the ring is dead */
4093 if (head != 0) {
4094 DRM_ERROR("Ring initialization failed "
4095 "ctl %08x head %08x tail %08x start %08x\n",
4096 I915_READ(PRB0_CTL),
4097 I915_READ(PRB0_HEAD),
4098 I915_READ(PRB0_TAIL),
4099 I915_READ(PRB0_START));
4100 return -EIO;
4101 }
4102
Eric Anholt673a3942008-07-30 12:06:12 -07004103 /* Update our cache of the ring state */
Jesse Barnes79e53942008-11-07 14:24:08 -08004104 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4105 i915_kernel_lost_context(dev);
4106 else {
4107 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
4108 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
4109 ring->space = ring->head - (ring->tail + 8);
4110 if (ring->space < 0)
4111 ring->space += ring->Size;
4112 }
Eric Anholt673a3942008-07-30 12:06:12 -07004113
4114 return 0;
4115}
4116
Jesse Barnes79e53942008-11-07 14:24:08 -08004117void
Eric Anholt673a3942008-07-30 12:06:12 -07004118i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4119{
4120 drm_i915_private_t *dev_priv = dev->dev_private;
4121
4122 if (dev_priv->ring.ring_obj == NULL)
4123 return;
4124
4125 drm_core_ioremapfree(&dev_priv->ring.map, dev);
4126
4127 i915_gem_object_unpin(dev_priv->ring.ring_obj);
4128 drm_gem_object_unreference(dev_priv->ring.ring_obj);
4129 dev_priv->ring.ring_obj = NULL;
4130 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
4131
Chris Wilson85a7bb92009-02-11 14:52:44 +00004132 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004133}
4134
4135int
4136i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4137 struct drm_file *file_priv)
4138{
4139 drm_i915_private_t *dev_priv = dev->dev_private;
4140 int ret;
4141
Jesse Barnes79e53942008-11-07 14:24:08 -08004142 if (drm_core_check_feature(dev, DRIVER_MODESET))
4143 return 0;
4144
Eric Anholt673a3942008-07-30 12:06:12 -07004145 if (dev_priv->mm.wedged) {
4146 DRM_ERROR("Reenabling wedged hardware, good luck\n");
4147 dev_priv->mm.wedged = 0;
4148 }
4149
Eric Anholt673a3942008-07-30 12:06:12 -07004150 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004151 dev_priv->mm.suspended = 0;
4152
4153 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004154 if (ret != 0) {
4155 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004156 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004157 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004158
Carl Worth5e118f42009-03-20 11:54:25 -07004159 spin_lock(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004160 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Carl Worth5e118f42009-03-20 11:54:25 -07004161 spin_unlock(&dev_priv->mm.active_list_lock);
4162
Eric Anholt673a3942008-07-30 12:06:12 -07004163 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4164 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
4165 BUG_ON(!list_empty(&dev_priv->mm.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004166 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004167
4168 drm_irq_install(dev);
4169
Eric Anholt673a3942008-07-30 12:06:12 -07004170 return 0;
4171}
4172
4173int
4174i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4175 struct drm_file *file_priv)
4176{
4177 int ret;
4178
Jesse Barnes79e53942008-11-07 14:24:08 -08004179 if (drm_core_check_feature(dev, DRIVER_MODESET))
4180 return 0;
4181
Eric Anholt673a3942008-07-30 12:06:12 -07004182 ret = i915_gem_idle(dev);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004183 drm_irq_uninstall(dev);
4184
Keith Packard6dbe2772008-10-14 21:41:13 -07004185 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004186}
4187
4188void
4189i915_gem_lastclose(struct drm_device *dev)
4190{
4191 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004192
Eric Anholte806b492009-01-22 09:56:58 -08004193 if (drm_core_check_feature(dev, DRIVER_MODESET))
4194 return;
4195
Keith Packard6dbe2772008-10-14 21:41:13 -07004196 ret = i915_gem_idle(dev);
4197 if (ret)
4198 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004199}
4200
4201void
4202i915_gem_load(struct drm_device *dev)
4203{
4204 drm_i915_private_t *dev_priv = dev->dev_private;
4205
Carl Worth5e118f42009-03-20 11:54:25 -07004206 spin_lock_init(&dev_priv->mm.active_list_lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004207 INIT_LIST_HEAD(&dev_priv->mm.active_list);
4208 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
4209 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
4210 INIT_LIST_HEAD(&dev_priv->mm.request_list);
4211 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4212 i915_gem_retire_work_handler);
Eric Anholt673a3942008-07-30 12:06:12 -07004213 dev_priv->mm.next_gem_seqno = 1;
4214
Jesse Barnesde151cf2008-11-12 10:03:55 -08004215 /* Old X drivers will take 0-2 for front, back, depth buffers */
4216 dev_priv->fence_reg_start = 3;
4217
Jesse Barnes0f973f22009-01-26 17:10:45 -08004218 if (IS_I965G(dev) || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004219 dev_priv->num_fence_regs = 16;
4220 else
4221 dev_priv->num_fence_regs = 8;
4222
Eric Anholt673a3942008-07-30 12:06:12 -07004223 i915_gem_detect_bit_6_swizzle(dev);
4224}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004225
4226/*
4227 * Create a physically contiguous memory object for this object
4228 * e.g. for cursor + overlay regs
4229 */
4230int i915_gem_init_phys_object(struct drm_device *dev,
4231 int id, int size)
4232{
4233 drm_i915_private_t *dev_priv = dev->dev_private;
4234 struct drm_i915_gem_phys_object *phys_obj;
4235 int ret;
4236
4237 if (dev_priv->mm.phys_objs[id - 1] || !size)
4238 return 0;
4239
4240 phys_obj = drm_calloc(1, sizeof(struct drm_i915_gem_phys_object), DRM_MEM_DRIVER);
4241 if (!phys_obj)
4242 return -ENOMEM;
4243
4244 phys_obj->id = id;
4245
4246 phys_obj->handle = drm_pci_alloc(dev, size, 0, 0xffffffff);
4247 if (!phys_obj->handle) {
4248 ret = -ENOMEM;
4249 goto kfree_obj;
4250 }
4251#ifdef CONFIG_X86
4252 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4253#endif
4254
4255 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4256
4257 return 0;
4258kfree_obj:
4259 drm_free(phys_obj, sizeof(struct drm_i915_gem_phys_object), DRM_MEM_DRIVER);
4260 return ret;
4261}
4262
4263void i915_gem_free_phys_object(struct drm_device *dev, int id)
4264{
4265 drm_i915_private_t *dev_priv = dev->dev_private;
4266 struct drm_i915_gem_phys_object *phys_obj;
4267
4268 if (!dev_priv->mm.phys_objs[id - 1])
4269 return;
4270
4271 phys_obj = dev_priv->mm.phys_objs[id - 1];
4272 if (phys_obj->cur_obj) {
4273 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4274 }
4275
4276#ifdef CONFIG_X86
4277 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4278#endif
4279 drm_pci_free(dev, phys_obj->handle);
4280 kfree(phys_obj);
4281 dev_priv->mm.phys_objs[id - 1] = NULL;
4282}
4283
4284void i915_gem_free_all_phys_object(struct drm_device *dev)
4285{
4286 int i;
4287
Dave Airlie260883c2009-01-22 17:58:49 +10004288 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004289 i915_gem_free_phys_object(dev, i);
4290}
4291
4292void i915_gem_detach_phys_object(struct drm_device *dev,
4293 struct drm_gem_object *obj)
4294{
4295 struct drm_i915_gem_object *obj_priv;
4296 int i;
4297 int ret;
4298 int page_count;
4299
4300 obj_priv = obj->driver_private;
4301 if (!obj_priv->phys_obj)
4302 return;
4303
Eric Anholt856fa192009-03-19 14:10:50 -07004304 ret = i915_gem_object_get_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004305 if (ret)
4306 goto out;
4307
4308 page_count = obj->size / PAGE_SIZE;
4309
4310 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004311 char *dst = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004312 char *src = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4313
4314 memcpy(dst, src, PAGE_SIZE);
4315 kunmap_atomic(dst, KM_USER0);
4316 }
Eric Anholt856fa192009-03-19 14:10:50 -07004317 drm_clflush_pages(obj_priv->pages, page_count);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004318 drm_agp_chipset_flush(dev);
4319out:
4320 obj_priv->phys_obj->cur_obj = NULL;
4321 obj_priv->phys_obj = NULL;
4322}
4323
4324int
4325i915_gem_attach_phys_object(struct drm_device *dev,
4326 struct drm_gem_object *obj, int id)
4327{
4328 drm_i915_private_t *dev_priv = dev->dev_private;
4329 struct drm_i915_gem_object *obj_priv;
4330 int ret = 0;
4331 int page_count;
4332 int i;
4333
4334 if (id > I915_MAX_PHYS_OBJECT)
4335 return -EINVAL;
4336
4337 obj_priv = obj->driver_private;
4338
4339 if (obj_priv->phys_obj) {
4340 if (obj_priv->phys_obj->id == id)
4341 return 0;
4342 i915_gem_detach_phys_object(dev, obj);
4343 }
4344
4345
4346 /* create a new object */
4347 if (!dev_priv->mm.phys_objs[id - 1]) {
4348 ret = i915_gem_init_phys_object(dev, id,
4349 obj->size);
4350 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08004351 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004352 goto out;
4353 }
4354 }
4355
4356 /* bind to the object */
4357 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
4358 obj_priv->phys_obj->cur_obj = obj;
4359
Eric Anholt856fa192009-03-19 14:10:50 -07004360 ret = i915_gem_object_get_pages(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004361 if (ret) {
4362 DRM_ERROR("failed to get page list\n");
4363 goto out;
4364 }
4365
4366 page_count = obj->size / PAGE_SIZE;
4367
4368 for (i = 0; i < page_count; i++) {
Eric Anholt856fa192009-03-19 14:10:50 -07004369 char *src = kmap_atomic(obj_priv->pages[i], KM_USER0);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004370 char *dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
4371
4372 memcpy(dst, src, PAGE_SIZE);
4373 kunmap_atomic(src, KM_USER0);
4374 }
4375
4376 return 0;
4377out:
4378 return ret;
4379}
4380
4381static int
4382i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
4383 struct drm_i915_gem_pwrite *args,
4384 struct drm_file *file_priv)
4385{
4386 struct drm_i915_gem_object *obj_priv = obj->driver_private;
4387 void *obj_addr;
4388 int ret;
4389 char __user *user_data;
4390
4391 user_data = (char __user *) (uintptr_t) args->data_ptr;
4392 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
4393
Dave Airliee08fb4f2009-02-25 14:52:30 +10004394 DRM_DEBUG("obj_addr %p, %lld\n", obj_addr, args->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004395 ret = copy_from_user(obj_addr, user_data, args->size);
4396 if (ret)
4397 return -EFAULT;
4398
4399 drm_agp_chipset_flush(dev);
4400 return 0;
4401}
Eric Anholtb9624422009-06-03 07:27:35 +00004402
4403void i915_gem_release(struct drm_device * dev, struct drm_file *file_priv)
4404{
4405 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
4406
4407 /* Clean up our request list when the client is going away, so that
4408 * later retire_requests won't dereference our soon-to-be-gone
4409 * file_priv.
4410 */
4411 mutex_lock(&dev->struct_mutex);
4412 while (!list_empty(&i915_file_priv->mm.request_list))
4413 list_del_init(i915_file_priv->mm.request_list.next);
4414 mutex_unlock(&dev->struct_mutex);
4415}