blob: 58c789da95a312410e9a7ad47ac7270704ae218a [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_get_page_list(struct drm_gem_object *obj);
47static void i915_gem_object_free_page_list(struct drm_gem_object *obj);
48static int i915_gem_object_wait_rendering(struct drm_gem_object *obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -080049static int i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
50 unsigned alignment);
Jesse Barnes0f973f22009-01-26 17:10:45 -080051static int i915_gem_object_get_fence_reg(struct drm_gem_object *obj, bool write);
Jesse Barnesde151cf2008-11-12 10:03:55 -080052static void i915_gem_clear_fence_reg(struct drm_gem_object *obj);
53static int i915_gem_evict_something(struct drm_device *dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +100054static int i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
55 struct drm_i915_gem_pwrite *args,
56 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -070057
Jesse Barnes79e53942008-11-07 14:24:08 -080058int i915_gem_do_init(struct drm_device *dev, unsigned long start,
59 unsigned long end)
60{
61 drm_i915_private_t *dev_priv = dev->dev_private;
62
63 if (start >= end ||
64 (start & (PAGE_SIZE - 1)) != 0 ||
65 (end & (PAGE_SIZE - 1)) != 0) {
66 return -EINVAL;
67 }
68
69 drm_mm_init(&dev_priv->mm.gtt_space, start,
70 end - start);
71
72 dev->gtt_total = (uint32_t) (end - start);
73
74 return 0;
75}
Keith Packard6dbe2772008-10-14 21:41:13 -070076
Eric Anholt673a3942008-07-30 12:06:12 -070077int
78i915_gem_init_ioctl(struct drm_device *dev, void *data,
79 struct drm_file *file_priv)
80{
Eric Anholt673a3942008-07-30 12:06:12 -070081 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -080082 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -070083
84 mutex_lock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080085 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -070086 mutex_unlock(&dev->struct_mutex);
87
Jesse Barnes79e53942008-11-07 14:24:08 -080088 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -070089}
90
Eric Anholt5a125c32008-10-22 21:40:13 -070091int
92i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
93 struct drm_file *file_priv)
94{
Eric Anholt5a125c32008-10-22 21:40:13 -070095 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -070096
97 if (!(dev->driver->driver_features & DRIVER_GEM))
98 return -ENODEV;
99
100 args->aper_size = dev->gtt_total;
Keith Packard2678d9d2008-11-20 22:54:54 -0800101 args->aper_available_size = (args->aper_size -
102 atomic_read(&dev->pin_memory));
Eric Anholt5a125c32008-10-22 21:40:13 -0700103
104 return 0;
105}
106
Eric Anholt673a3942008-07-30 12:06:12 -0700107
108/**
109 * Creates a new mm object and returns a handle to it.
110 */
111int
112i915_gem_create_ioctl(struct drm_device *dev, void *data,
113 struct drm_file *file_priv)
114{
115 struct drm_i915_gem_create *args = data;
116 struct drm_gem_object *obj;
117 int handle, ret;
118
119 args->size = roundup(args->size, PAGE_SIZE);
120
121 /* Allocate the new object */
122 obj = drm_gem_object_alloc(dev, args->size);
123 if (obj == NULL)
124 return -ENOMEM;
125
126 ret = drm_gem_handle_create(file_priv, obj, &handle);
127 mutex_lock(&dev->struct_mutex);
128 drm_gem_object_handle_unreference(obj);
129 mutex_unlock(&dev->struct_mutex);
130
131 if (ret)
132 return ret;
133
134 args->handle = handle;
135
136 return 0;
137}
138
139/**
140 * Reads data from the object referenced by handle.
141 *
142 * On error, the contents of *data are undefined.
143 */
144int
145i915_gem_pread_ioctl(struct drm_device *dev, void *data,
146 struct drm_file *file_priv)
147{
148 struct drm_i915_gem_pread *args = data;
149 struct drm_gem_object *obj;
150 struct drm_i915_gem_object *obj_priv;
151 ssize_t read;
152 loff_t offset;
153 int ret;
154
155 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
156 if (obj == NULL)
157 return -EBADF;
158 obj_priv = obj->driver_private;
159
160 /* Bounds check source.
161 *
162 * XXX: This could use review for overflow issues...
163 */
164 if (args->offset > obj->size || args->size > obj->size ||
165 args->offset + args->size > obj->size) {
166 drm_gem_object_unreference(obj);
167 return -EINVAL;
168 }
169
170 mutex_lock(&dev->struct_mutex);
171
Eric Anholte47c68e2008-11-14 13:35:19 -0800172 ret = i915_gem_object_set_cpu_read_domain_range(obj, args->offset,
173 args->size);
Eric Anholt673a3942008-07-30 12:06:12 -0700174 if (ret != 0) {
175 drm_gem_object_unreference(obj);
176 mutex_unlock(&dev->struct_mutex);
Dave Airliee7d22bc2008-10-07 13:40:36 +1000177 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700178 }
179
180 offset = args->offset;
181
182 read = vfs_read(obj->filp, (char __user *)(uintptr_t)args->data_ptr,
183 args->size, &offset);
184 if (read != args->size) {
185 drm_gem_object_unreference(obj);
186 mutex_unlock(&dev->struct_mutex);
187 if (read < 0)
188 return read;
189 else
190 return -EINVAL;
191 }
192
193 drm_gem_object_unreference(obj);
194 mutex_unlock(&dev->struct_mutex);
195
196 return 0;
197}
198
Keith Packard0839ccb2008-10-30 19:38:48 -0700199/* This is the fast write path which cannot handle
200 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700201 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700202
Keith Packard0839ccb2008-10-30 19:38:48 -0700203static inline int
204fast_user_write(struct io_mapping *mapping,
205 loff_t page_base, int page_offset,
206 char __user *user_data,
207 int length)
208{
209 char *vaddr_atomic;
210 unsigned long unwritten;
211
212 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
213 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
214 user_data, length);
215 io_mapping_unmap_atomic(vaddr_atomic);
216 if (unwritten)
217 return -EFAULT;
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700218 return 0;
Keith Packard0839ccb2008-10-30 19:38:48 -0700219}
220
221/* Here's the write path which can sleep for
222 * page faults
223 */
224
225static inline int
226slow_user_write(struct io_mapping *mapping,
227 loff_t page_base, int page_offset,
228 char __user *user_data,
229 int length)
230{
231 char __iomem *vaddr;
232 unsigned long unwritten;
233
234 vaddr = io_mapping_map_wc(mapping, page_base);
235 if (vaddr == NULL)
236 return -EFAULT;
237 unwritten = __copy_from_user(vaddr + page_offset,
238 user_data, length);
239 io_mapping_unmap(vaddr);
240 if (unwritten)
241 return -EFAULT;
242 return 0;
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700243}
244
Eric Anholt673a3942008-07-30 12:06:12 -0700245static int
246i915_gem_gtt_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
247 struct drm_i915_gem_pwrite *args,
248 struct drm_file *file_priv)
249{
250 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Keith Packard0839ccb2008-10-30 19:38:48 -0700251 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700252 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700253 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700254 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700255 int page_offset, page_length;
256 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700257
258 user_data = (char __user *) (uintptr_t) args->data_ptr;
259 remain = args->size;
260 if (!access_ok(VERIFY_READ, user_data, remain))
261 return -EFAULT;
262
263
264 mutex_lock(&dev->struct_mutex);
265 ret = i915_gem_object_pin(obj, 0);
266 if (ret) {
267 mutex_unlock(&dev->struct_mutex);
268 return ret;
269 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800270 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -0700271 if (ret)
272 goto fail;
273
274 obj_priv = obj->driver_private;
275 offset = obj_priv->gtt_offset + args->offset;
276 obj_priv->dirty = 1;
277
278 while (remain > 0) {
279 /* Operation in this page
280 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700281 * page_base = page offset within aperture
282 * page_offset = offset within page
283 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700284 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700285 page_base = (offset & ~(PAGE_SIZE-1));
286 page_offset = offset & (PAGE_SIZE-1);
287 page_length = remain;
288 if ((page_offset + remain) > PAGE_SIZE)
289 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700290
Keith Packard0839ccb2008-10-30 19:38:48 -0700291 ret = fast_user_write (dev_priv->mm.gtt_mapping, page_base,
292 page_offset, user_data, page_length);
Eric Anholt673a3942008-07-30 12:06:12 -0700293
Keith Packard0839ccb2008-10-30 19:38:48 -0700294 /* If we get a fault while copying data, then (presumably) our
295 * source page isn't available. In this case, use the
296 * non-atomic function
297 */
298 if (ret) {
299 ret = slow_user_write (dev_priv->mm.gtt_mapping,
300 page_base, page_offset,
301 user_data, page_length);
302 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -0700303 goto fail;
Eric Anholt673a3942008-07-30 12:06:12 -0700304 }
305
Keith Packard0839ccb2008-10-30 19:38:48 -0700306 remain -= page_length;
307 user_data += page_length;
308 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700309 }
Eric Anholt673a3942008-07-30 12:06:12 -0700310
311fail:
312 i915_gem_object_unpin(obj);
313 mutex_unlock(&dev->struct_mutex);
314
315 return ret;
316}
317
Eric Anholt3043c602008-10-02 12:24:47 -0700318static int
Eric Anholt673a3942008-07-30 12:06:12 -0700319i915_gem_shmem_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
320 struct drm_i915_gem_pwrite *args,
321 struct drm_file *file_priv)
322{
323 int ret;
324 loff_t offset;
325 ssize_t written;
326
327 mutex_lock(&dev->struct_mutex);
328
Eric Anholte47c68e2008-11-14 13:35:19 -0800329 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -0700330 if (ret) {
331 mutex_unlock(&dev->struct_mutex);
332 return ret;
333 }
334
335 offset = args->offset;
336
337 written = vfs_write(obj->filp,
338 (char __user *)(uintptr_t) args->data_ptr,
339 args->size, &offset);
340 if (written != args->size) {
341 mutex_unlock(&dev->struct_mutex);
342 if (written < 0)
343 return written;
344 else
345 return -EINVAL;
346 }
347
348 mutex_unlock(&dev->struct_mutex);
349
350 return 0;
351}
352
353/**
354 * Writes data to the object referenced by handle.
355 *
356 * On error, the contents of the buffer that were to be modified are undefined.
357 */
358int
359i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
360 struct drm_file *file_priv)
361{
362 struct drm_i915_gem_pwrite *args = data;
363 struct drm_gem_object *obj;
364 struct drm_i915_gem_object *obj_priv;
365 int ret = 0;
366
367 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
368 if (obj == NULL)
369 return -EBADF;
370 obj_priv = obj->driver_private;
371
372 /* Bounds check destination.
373 *
374 * XXX: This could use review for overflow issues...
375 */
376 if (args->offset > obj->size || args->size > obj->size ||
377 args->offset + args->size > obj->size) {
378 drm_gem_object_unreference(obj);
379 return -EINVAL;
380 }
381
382 /* We can only do the GTT pwrite on untiled buffers, as otherwise
383 * it would end up going through the fenced access, and we'll get
384 * different detiling behavior between reading and writing.
385 * pread/pwrite currently are reading and writing from the CPU
386 * perspective, requiring manual detiling by the client.
387 */
Dave Airlie71acb5e2008-12-30 20:31:46 +1000388 if (obj_priv->phys_obj)
389 ret = i915_gem_phys_pwrite(dev, obj, args, file_priv);
390 else if (obj_priv->tiling_mode == I915_TILING_NONE &&
391 dev->gtt_total != 0)
Eric Anholt673a3942008-07-30 12:06:12 -0700392 ret = i915_gem_gtt_pwrite(dev, obj, args, file_priv);
393 else
394 ret = i915_gem_shmem_pwrite(dev, obj, args, file_priv);
395
396#if WATCH_PWRITE
397 if (ret)
398 DRM_INFO("pwrite failed %d\n", ret);
399#endif
400
401 drm_gem_object_unreference(obj);
402
403 return ret;
404}
405
406/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800407 * Called when user space prepares to use an object with the CPU, either
408 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700409 */
410int
411i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
412 struct drm_file *file_priv)
413{
414 struct drm_i915_gem_set_domain *args = data;
415 struct drm_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800416 uint32_t read_domains = args->read_domains;
417 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700418 int ret;
419
420 if (!(dev->driver->driver_features & DRIVER_GEM))
421 return -ENODEV;
422
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800423 /* Only handle setting domains to types used by the CPU. */
424 if (write_domain & ~(I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT))
425 return -EINVAL;
426
427 if (read_domains & ~(I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT))
428 return -EINVAL;
429
430 /* Having something in the write domain implies it's in the read
431 * domain, and only that read domain. Enforce that in the request.
432 */
433 if (write_domain != 0 && read_domains != write_domain)
434 return -EINVAL;
435
Eric Anholt673a3942008-07-30 12:06:12 -0700436 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
437 if (obj == NULL)
438 return -EBADF;
439
440 mutex_lock(&dev->struct_mutex);
441#if WATCH_BUF
442 DRM_INFO("set_domain_ioctl %p(%d), %08x %08x\n",
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800443 obj, obj->size, read_domains, write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -0700444#endif
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800445 if (read_domains & I915_GEM_DOMAIN_GTT) {
446 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800447
448 /* Silently promote "you're not bound, there was nothing to do"
449 * to success, since the client was just asking us to
450 * make sure everything was done.
451 */
452 if (ret == -EINVAL)
453 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800454 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800455 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800456 }
457
Eric Anholt673a3942008-07-30 12:06:12 -0700458 drm_gem_object_unreference(obj);
459 mutex_unlock(&dev->struct_mutex);
460 return ret;
461}
462
463/**
464 * Called when user space has done writes to this buffer
465 */
466int
467i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
468 struct drm_file *file_priv)
469{
470 struct drm_i915_gem_sw_finish *args = data;
471 struct drm_gem_object *obj;
472 struct drm_i915_gem_object *obj_priv;
473 int ret = 0;
474
475 if (!(dev->driver->driver_features & DRIVER_GEM))
476 return -ENODEV;
477
478 mutex_lock(&dev->struct_mutex);
479 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
480 if (obj == NULL) {
481 mutex_unlock(&dev->struct_mutex);
482 return -EBADF;
483 }
484
485#if WATCH_BUF
486 DRM_INFO("%s: sw_finish %d (%p %d)\n",
487 __func__, args->handle, obj, obj->size);
488#endif
489 obj_priv = obj->driver_private;
490
491 /* Pinned buffers may be scanout, so flush the cache */
Eric Anholte47c68e2008-11-14 13:35:19 -0800492 if (obj_priv->pin_count)
493 i915_gem_object_flush_cpu_write_domain(obj);
494
Eric Anholt673a3942008-07-30 12:06:12 -0700495 drm_gem_object_unreference(obj);
496 mutex_unlock(&dev->struct_mutex);
497 return ret;
498}
499
500/**
501 * Maps the contents of an object, returning the address it is mapped
502 * into.
503 *
504 * While the mapping holds a reference on the contents of the object, it doesn't
505 * imply a ref on the object itself.
506 */
507int
508i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
509 struct drm_file *file_priv)
510{
511 struct drm_i915_gem_mmap *args = data;
512 struct drm_gem_object *obj;
513 loff_t offset;
514 unsigned long addr;
515
516 if (!(dev->driver->driver_features & DRIVER_GEM))
517 return -ENODEV;
518
519 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
520 if (obj == NULL)
521 return -EBADF;
522
523 offset = args->offset;
524
525 down_write(&current->mm->mmap_sem);
526 addr = do_mmap(obj->filp, 0, args->size,
527 PROT_READ | PROT_WRITE, MAP_SHARED,
528 args->offset);
529 up_write(&current->mm->mmap_sem);
530 mutex_lock(&dev->struct_mutex);
531 drm_gem_object_unreference(obj);
532 mutex_unlock(&dev->struct_mutex);
533 if (IS_ERR((void *)addr))
534 return addr;
535
536 args->addr_ptr = (uint64_t) addr;
537
538 return 0;
539}
540
Jesse Barnesde151cf2008-11-12 10:03:55 -0800541/**
542 * i915_gem_fault - fault a page into the GTT
543 * vma: VMA in question
544 * vmf: fault info
545 *
546 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
547 * from userspace. The fault handler takes care of binding the object to
548 * the GTT (if needed), allocating and programming a fence register (again,
549 * only if needed based on whether the old reg is still valid or the object
550 * is tiled) and inserting a new PTE into the faulting process.
551 *
552 * Note that the faulting process may involve evicting existing objects
553 * from the GTT and/or fence registers to make room. So performance may
554 * suffer if the GTT working set is large or there are few fence registers
555 * left.
556 */
557int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
558{
559 struct drm_gem_object *obj = vma->vm_private_data;
560 struct drm_device *dev = obj->dev;
561 struct drm_i915_private *dev_priv = dev->dev_private;
562 struct drm_i915_gem_object *obj_priv = obj->driver_private;
563 pgoff_t page_offset;
564 unsigned long pfn;
565 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800566 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -0800567
568 /* We don't use vmf->pgoff since that has the fake offset */
569 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
570 PAGE_SHIFT;
571
572 /* Now bind it into the GTT if needed */
573 mutex_lock(&dev->struct_mutex);
574 if (!obj_priv->gtt_space) {
575 ret = i915_gem_object_bind_to_gtt(obj, obj_priv->gtt_alignment);
576 if (ret) {
577 mutex_unlock(&dev->struct_mutex);
578 return VM_FAULT_SIGBUS;
579 }
580 list_add(&obj_priv->list, &dev_priv->mm.inactive_list);
581 }
582
583 /* Need a new fence register? */
584 if (obj_priv->fence_reg == I915_FENCE_REG_NONE &&
Eric Anholtd9ddcb92009-01-27 10:33:49 -0800585 obj_priv->tiling_mode != I915_TILING_NONE) {
Jesse Barnes0f973f22009-01-26 17:10:45 -0800586 ret = i915_gem_object_get_fence_reg(obj, write);
Chris Wilson7d8d58b2009-02-04 14:15:10 +0000587 if (ret) {
588 mutex_unlock(&dev->struct_mutex);
Eric Anholtd9ddcb92009-01-27 10:33:49 -0800589 return VM_FAULT_SIGBUS;
Chris Wilson7d8d58b2009-02-04 14:15:10 +0000590 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -0800591 }
Jesse Barnesde151cf2008-11-12 10:03:55 -0800592
593 pfn = ((dev->agp->base + obj_priv->gtt_offset) >> PAGE_SHIFT) +
594 page_offset;
595
596 /* Finally, remap it using the new GTT offset */
597 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
598
599 mutex_unlock(&dev->struct_mutex);
600
601 switch (ret) {
602 case -ENOMEM:
603 case -EAGAIN:
604 return VM_FAULT_OOM;
605 case -EFAULT:
Jesse Barnesde151cf2008-11-12 10:03:55 -0800606 return VM_FAULT_SIGBUS;
607 default:
608 return VM_FAULT_NOPAGE;
609 }
610}
611
612/**
613 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
614 * @obj: obj in question
615 *
616 * GEM memory mapping works by handing back to userspace a fake mmap offset
617 * it can use in a subsequent mmap(2) call. The DRM core code then looks
618 * up the object based on the offset and sets up the various memory mapping
619 * structures.
620 *
621 * This routine allocates and attaches a fake offset for @obj.
622 */
623static int
624i915_gem_create_mmap_offset(struct drm_gem_object *obj)
625{
626 struct drm_device *dev = obj->dev;
627 struct drm_gem_mm *mm = dev->mm_private;
628 struct drm_i915_gem_object *obj_priv = obj->driver_private;
629 struct drm_map_list *list;
630 struct drm_map *map;
631 int ret = 0;
632
633 /* Set the object up for mmap'ing */
634 list = &obj->map_list;
635 list->map = drm_calloc(1, sizeof(struct drm_map_list),
636 DRM_MEM_DRIVER);
637 if (!list->map)
638 return -ENOMEM;
639
640 map = list->map;
641 map->type = _DRM_GEM;
642 map->size = obj->size;
643 map->handle = obj;
644
645 /* Get a DRM GEM mmap offset allocated... */
646 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
647 obj->size / PAGE_SIZE, 0, 0);
648 if (!list->file_offset_node) {
649 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
650 ret = -ENOMEM;
651 goto out_free_list;
652 }
653
654 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
655 obj->size / PAGE_SIZE, 0);
656 if (!list->file_offset_node) {
657 ret = -ENOMEM;
658 goto out_free_list;
659 }
660
661 list->hash.key = list->file_offset_node->start;
662 if (drm_ht_insert_item(&mm->offset_hash, &list->hash)) {
663 DRM_ERROR("failed to add to map hash\n");
664 goto out_free_mm;
665 }
666
667 /* By now we should be all set, any drm_mmap request on the offset
668 * below will get to our mmap & fault handler */
669 obj_priv->mmap_offset = ((uint64_t) list->hash.key) << PAGE_SHIFT;
670
671 return 0;
672
673out_free_mm:
674 drm_mm_put_block(list->file_offset_node);
675out_free_list:
676 drm_free(list->map, sizeof(struct drm_map_list), DRM_MEM_DRIVER);
677
678 return ret;
679}
680
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800681static void
682i915_gem_free_mmap_offset(struct drm_gem_object *obj)
683{
684 struct drm_device *dev = obj->dev;
685 struct drm_i915_gem_object *obj_priv = obj->driver_private;
686 struct drm_gem_mm *mm = dev->mm_private;
687 struct drm_map_list *list;
688
689 list = &obj->map_list;
690 drm_ht_remove_item(&mm->offset_hash, &list->hash);
691
692 if (list->file_offset_node) {
693 drm_mm_put_block(list->file_offset_node);
694 list->file_offset_node = NULL;
695 }
696
697 if (list->map) {
698 drm_free(list->map, sizeof(struct drm_map), DRM_MEM_DRIVER);
699 list->map = NULL;
700 }
701
702 obj_priv->mmap_offset = 0;
703}
704
Jesse Barnesde151cf2008-11-12 10:03:55 -0800705/**
706 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
707 * @obj: object to check
708 *
709 * Return the required GTT alignment for an object, taking into account
710 * potential fence register mapping if needed.
711 */
712static uint32_t
713i915_gem_get_gtt_alignment(struct drm_gem_object *obj)
714{
715 struct drm_device *dev = obj->dev;
716 struct drm_i915_gem_object *obj_priv = obj->driver_private;
717 int start, i;
718
719 /*
720 * Minimum alignment is 4k (GTT page size), but might be greater
721 * if a fence register is needed for the object.
722 */
723 if (IS_I965G(dev) || obj_priv->tiling_mode == I915_TILING_NONE)
724 return 4096;
725
726 /*
727 * Previous chips need to be aligned to the size of the smallest
728 * fence register that can contain the object.
729 */
730 if (IS_I9XX(dev))
731 start = 1024*1024;
732 else
733 start = 512*1024;
734
735 for (i = start; i < obj->size; i <<= 1)
736 ;
737
738 return i;
739}
740
741/**
742 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
743 * @dev: DRM device
744 * @data: GTT mapping ioctl data
745 * @file_priv: GEM object info
746 *
747 * Simply returns the fake offset to userspace so it can mmap it.
748 * The mmap call will end up in drm_gem_mmap(), which will set things
749 * up so we can get faults in the handler above.
750 *
751 * The fault handler will take care of binding the object into the GTT
752 * (since it may have been evicted to make room for something), allocating
753 * a fence register, and mapping the appropriate aperture address into
754 * userspace.
755 */
756int
757i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
758 struct drm_file *file_priv)
759{
760 struct drm_i915_gem_mmap_gtt *args = data;
761 struct drm_i915_private *dev_priv = dev->dev_private;
762 struct drm_gem_object *obj;
763 struct drm_i915_gem_object *obj_priv;
764 int ret;
765
766 if (!(dev->driver->driver_features & DRIVER_GEM))
767 return -ENODEV;
768
769 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
770 if (obj == NULL)
771 return -EBADF;
772
773 mutex_lock(&dev->struct_mutex);
774
775 obj_priv = obj->driver_private;
776
777 if (!obj_priv->mmap_offset) {
778 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson13af1062009-02-11 14:26:31 +0000779 if (ret) {
780 drm_gem_object_unreference(obj);
781 mutex_unlock(&dev->struct_mutex);
Jesse Barnesde151cf2008-11-12 10:03:55 -0800782 return ret;
Chris Wilson13af1062009-02-11 14:26:31 +0000783 }
Jesse Barnesde151cf2008-11-12 10:03:55 -0800784 }
785
786 args->offset = obj_priv->mmap_offset;
787
788 obj_priv->gtt_alignment = i915_gem_get_gtt_alignment(obj);
789
790 /* Make sure the alignment is correct for fence regs etc */
791 if (obj_priv->agp_mem &&
792 (obj_priv->gtt_offset & (obj_priv->gtt_alignment - 1))) {
793 drm_gem_object_unreference(obj);
794 mutex_unlock(&dev->struct_mutex);
795 return -EINVAL;
796 }
797
798 /*
799 * Pull it into the GTT so that we have a page list (makes the
800 * initial fault faster and any subsequent flushing possible).
801 */
802 if (!obj_priv->agp_mem) {
803 ret = i915_gem_object_bind_to_gtt(obj, obj_priv->gtt_alignment);
804 if (ret) {
805 drm_gem_object_unreference(obj);
806 mutex_unlock(&dev->struct_mutex);
807 return ret;
808 }
809 list_add(&obj_priv->list, &dev_priv->mm.inactive_list);
810 }
811
812 drm_gem_object_unreference(obj);
813 mutex_unlock(&dev->struct_mutex);
814
815 return 0;
816}
817
Eric Anholt673a3942008-07-30 12:06:12 -0700818static void
819i915_gem_object_free_page_list(struct drm_gem_object *obj)
820{
821 struct drm_i915_gem_object *obj_priv = obj->driver_private;
822 int page_count = obj->size / PAGE_SIZE;
823 int i;
824
825 if (obj_priv->page_list == NULL)
826 return;
827
828
829 for (i = 0; i < page_count; i++)
830 if (obj_priv->page_list[i] != NULL) {
831 if (obj_priv->dirty)
832 set_page_dirty(obj_priv->page_list[i]);
833 mark_page_accessed(obj_priv->page_list[i]);
834 page_cache_release(obj_priv->page_list[i]);
835 }
836 obj_priv->dirty = 0;
837
838 drm_free(obj_priv->page_list,
839 page_count * sizeof(struct page *),
840 DRM_MEM_DRIVER);
841 obj_priv->page_list = NULL;
842}
843
844static void
Eric Anholtce44b0e2008-11-06 16:00:31 -0800845i915_gem_object_move_to_active(struct drm_gem_object *obj, uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -0700846{
847 struct drm_device *dev = obj->dev;
848 drm_i915_private_t *dev_priv = dev->dev_private;
849 struct drm_i915_gem_object *obj_priv = obj->driver_private;
850
851 /* Add a reference if we're newly entering the active list. */
852 if (!obj_priv->active) {
853 drm_gem_object_reference(obj);
854 obj_priv->active = 1;
855 }
856 /* Move from whatever list we were on to the tail of execution. */
857 list_move_tail(&obj_priv->list,
858 &dev_priv->mm.active_list);
Eric Anholtce44b0e2008-11-06 16:00:31 -0800859 obj_priv->last_rendering_seqno = seqno;
Eric Anholt673a3942008-07-30 12:06:12 -0700860}
861
Eric Anholtce44b0e2008-11-06 16:00:31 -0800862static void
863i915_gem_object_move_to_flushing(struct drm_gem_object *obj)
864{
865 struct drm_device *dev = obj->dev;
866 drm_i915_private_t *dev_priv = dev->dev_private;
867 struct drm_i915_gem_object *obj_priv = obj->driver_private;
868
869 BUG_ON(!obj_priv->active);
870 list_move_tail(&obj_priv->list, &dev_priv->mm.flushing_list);
871 obj_priv->last_rendering_seqno = 0;
872}
Eric Anholt673a3942008-07-30 12:06:12 -0700873
874static void
875i915_gem_object_move_to_inactive(struct drm_gem_object *obj)
876{
877 struct drm_device *dev = obj->dev;
878 drm_i915_private_t *dev_priv = dev->dev_private;
879 struct drm_i915_gem_object *obj_priv = obj->driver_private;
880
881 i915_verify_inactive(dev, __FILE__, __LINE__);
882 if (obj_priv->pin_count != 0)
883 list_del_init(&obj_priv->list);
884 else
885 list_move_tail(&obj_priv->list, &dev_priv->mm.inactive_list);
886
Eric Anholtce44b0e2008-11-06 16:00:31 -0800887 obj_priv->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700888 if (obj_priv->active) {
889 obj_priv->active = 0;
890 drm_gem_object_unreference(obj);
891 }
892 i915_verify_inactive(dev, __FILE__, __LINE__);
893}
894
895/**
896 * Creates a new sequence number, emitting a write of it to the status page
897 * plus an interrupt, which will trigger i915_user_interrupt_handler.
898 *
899 * Must be called with struct_lock held.
900 *
901 * Returned sequence numbers are nonzero on success.
902 */
903static uint32_t
904i915_add_request(struct drm_device *dev, uint32_t flush_domains)
905{
906 drm_i915_private_t *dev_priv = dev->dev_private;
907 struct drm_i915_gem_request *request;
908 uint32_t seqno;
909 int was_empty;
910 RING_LOCALS;
911
912 request = drm_calloc(1, sizeof(*request), DRM_MEM_DRIVER);
913 if (request == NULL)
914 return 0;
915
916 /* Grab the seqno we're going to make this request be, and bump the
917 * next (skipping 0 so it can be the reserved no-seqno value).
918 */
919 seqno = dev_priv->mm.next_gem_seqno;
920 dev_priv->mm.next_gem_seqno++;
921 if (dev_priv->mm.next_gem_seqno == 0)
922 dev_priv->mm.next_gem_seqno++;
923
924 BEGIN_LP_RING(4);
925 OUT_RING(MI_STORE_DWORD_INDEX);
926 OUT_RING(I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
927 OUT_RING(seqno);
928
929 OUT_RING(MI_USER_INTERRUPT);
930 ADVANCE_LP_RING();
931
932 DRM_DEBUG("%d\n", seqno);
933
934 request->seqno = seqno;
935 request->emitted_jiffies = jiffies;
Eric Anholt673a3942008-07-30 12:06:12 -0700936 was_empty = list_empty(&dev_priv->mm.request_list);
937 list_add_tail(&request->list, &dev_priv->mm.request_list);
938
Eric Anholtce44b0e2008-11-06 16:00:31 -0800939 /* Associate any objects on the flushing list matching the write
940 * domain we're flushing with our flush.
941 */
942 if (flush_domains != 0) {
943 struct drm_i915_gem_object *obj_priv, *next;
944
945 list_for_each_entry_safe(obj_priv, next,
946 &dev_priv->mm.flushing_list, list) {
947 struct drm_gem_object *obj = obj_priv->obj;
948
949 if ((obj->write_domain & flush_domains) ==
950 obj->write_domain) {
951 obj->write_domain = 0;
952 i915_gem_object_move_to_active(obj, seqno);
953 }
954 }
955
956 }
957
Keith Packard6dbe2772008-10-14 21:41:13 -0700958 if (was_empty && !dev_priv->mm.suspended)
Eric Anholt673a3942008-07-30 12:06:12 -0700959 schedule_delayed_work(&dev_priv->mm.retire_work, HZ);
960 return seqno;
961}
962
963/**
964 * Command execution barrier
965 *
966 * Ensures that all commands in the ring are finished
967 * before signalling the CPU
968 */
Eric Anholt3043c602008-10-02 12:24:47 -0700969static uint32_t
Eric Anholt673a3942008-07-30 12:06:12 -0700970i915_retire_commands(struct drm_device *dev)
971{
972 drm_i915_private_t *dev_priv = dev->dev_private;
973 uint32_t cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
974 uint32_t flush_domains = 0;
975 RING_LOCALS;
976
977 /* The sampler always gets flushed on i965 (sigh) */
978 if (IS_I965G(dev))
979 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
980 BEGIN_LP_RING(2);
981 OUT_RING(cmd);
982 OUT_RING(0); /* noop */
983 ADVANCE_LP_RING();
984 return flush_domains;
985}
986
987/**
988 * Moves buffers associated only with the given active seqno from the active
989 * to inactive list, potentially freeing them.
990 */
991static void
992i915_gem_retire_request(struct drm_device *dev,
993 struct drm_i915_gem_request *request)
994{
995 drm_i915_private_t *dev_priv = dev->dev_private;
996
997 /* Move any buffers on the active list that are no longer referenced
998 * by the ringbuffer to the flushing/inactive lists as appropriate.
999 */
1000 while (!list_empty(&dev_priv->mm.active_list)) {
1001 struct drm_gem_object *obj;
1002 struct drm_i915_gem_object *obj_priv;
1003
1004 obj_priv = list_first_entry(&dev_priv->mm.active_list,
1005 struct drm_i915_gem_object,
1006 list);
1007 obj = obj_priv->obj;
1008
1009 /* If the seqno being retired doesn't match the oldest in the
1010 * list, then the oldest in the list must still be newer than
1011 * this seqno.
1012 */
1013 if (obj_priv->last_rendering_seqno != request->seqno)
1014 return;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001015
Eric Anholt673a3942008-07-30 12:06:12 -07001016#if WATCH_LRU
1017 DRM_INFO("%s: retire %d moves to inactive list %p\n",
1018 __func__, request->seqno, obj);
1019#endif
1020
Eric Anholtce44b0e2008-11-06 16:00:31 -08001021 if (obj->write_domain != 0)
1022 i915_gem_object_move_to_flushing(obj);
1023 else
Eric Anholt673a3942008-07-30 12:06:12 -07001024 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001025 }
1026}
1027
1028/**
1029 * Returns true if seq1 is later than seq2.
1030 */
1031static int
1032i915_seqno_passed(uint32_t seq1, uint32_t seq2)
1033{
1034 return (int32_t)(seq1 - seq2) >= 0;
1035}
1036
1037uint32_t
1038i915_get_gem_seqno(struct drm_device *dev)
1039{
1040 drm_i915_private_t *dev_priv = dev->dev_private;
1041
1042 return READ_HWSP(dev_priv, I915_GEM_HWS_INDEX);
1043}
1044
1045/**
1046 * This function clears the request list as sequence numbers are passed.
1047 */
1048void
1049i915_gem_retire_requests(struct drm_device *dev)
1050{
1051 drm_i915_private_t *dev_priv = dev->dev_private;
1052 uint32_t seqno;
1053
1054 seqno = i915_get_gem_seqno(dev);
1055
1056 while (!list_empty(&dev_priv->mm.request_list)) {
1057 struct drm_i915_gem_request *request;
1058 uint32_t retiring_seqno;
1059
1060 request = list_first_entry(&dev_priv->mm.request_list,
1061 struct drm_i915_gem_request,
1062 list);
1063 retiring_seqno = request->seqno;
1064
1065 if (i915_seqno_passed(seqno, retiring_seqno) ||
1066 dev_priv->mm.wedged) {
1067 i915_gem_retire_request(dev, request);
1068
1069 list_del(&request->list);
1070 drm_free(request, sizeof(*request), DRM_MEM_DRIVER);
1071 } else
1072 break;
1073 }
1074}
1075
1076void
1077i915_gem_retire_work_handler(struct work_struct *work)
1078{
1079 drm_i915_private_t *dev_priv;
1080 struct drm_device *dev;
1081
1082 dev_priv = container_of(work, drm_i915_private_t,
1083 mm.retire_work.work);
1084 dev = dev_priv->dev;
1085
1086 mutex_lock(&dev->struct_mutex);
1087 i915_gem_retire_requests(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07001088 if (!dev_priv->mm.suspended &&
1089 !list_empty(&dev_priv->mm.request_list))
Eric Anholt673a3942008-07-30 12:06:12 -07001090 schedule_delayed_work(&dev_priv->mm.retire_work, HZ);
1091 mutex_unlock(&dev->struct_mutex);
1092}
1093
1094/**
1095 * Waits for a sequence number to be signaled, and cleans up the
1096 * request and object lists appropriately for that event.
1097 */
Eric Anholt3043c602008-10-02 12:24:47 -07001098static int
Eric Anholt673a3942008-07-30 12:06:12 -07001099i915_wait_request(struct drm_device *dev, uint32_t seqno)
1100{
1101 drm_i915_private_t *dev_priv = dev->dev_private;
1102 int ret = 0;
1103
1104 BUG_ON(seqno == 0);
1105
1106 if (!i915_seqno_passed(i915_get_gem_seqno(dev), seqno)) {
1107 dev_priv->mm.waiting_gem_seqno = seqno;
1108 i915_user_irq_get(dev);
1109 ret = wait_event_interruptible(dev_priv->irq_queue,
1110 i915_seqno_passed(i915_get_gem_seqno(dev),
1111 seqno) ||
1112 dev_priv->mm.wedged);
1113 i915_user_irq_put(dev);
1114 dev_priv->mm.waiting_gem_seqno = 0;
1115 }
1116 if (dev_priv->mm.wedged)
1117 ret = -EIO;
1118
1119 if (ret && ret != -ERESTARTSYS)
1120 DRM_ERROR("%s returns %d (awaiting %d at %d)\n",
1121 __func__, ret, seqno, i915_get_gem_seqno(dev));
1122
1123 /* Directly dispatch request retiring. While we have the work queue
1124 * to handle this, the waiter on a request often wants an associated
1125 * buffer to have made it to the inactive list, and we would need
1126 * a separate wait queue to handle that.
1127 */
1128 if (ret == 0)
1129 i915_gem_retire_requests(dev);
1130
1131 return ret;
1132}
1133
1134static void
1135i915_gem_flush(struct drm_device *dev,
1136 uint32_t invalidate_domains,
1137 uint32_t flush_domains)
1138{
1139 drm_i915_private_t *dev_priv = dev->dev_private;
1140 uint32_t cmd;
1141 RING_LOCALS;
1142
1143#if WATCH_EXEC
1144 DRM_INFO("%s: invalidate %08x flush %08x\n", __func__,
1145 invalidate_domains, flush_domains);
1146#endif
1147
1148 if (flush_domains & I915_GEM_DOMAIN_CPU)
1149 drm_agp_chipset_flush(dev);
1150
1151 if ((invalidate_domains | flush_domains) & ~(I915_GEM_DOMAIN_CPU |
1152 I915_GEM_DOMAIN_GTT)) {
1153 /*
1154 * read/write caches:
1155 *
1156 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
1157 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
1158 * also flushed at 2d versus 3d pipeline switches.
1159 *
1160 * read-only caches:
1161 *
1162 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
1163 * MI_READ_FLUSH is set, and is always flushed on 965.
1164 *
1165 * I915_GEM_DOMAIN_COMMAND may not exist?
1166 *
1167 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
1168 * invalidated when MI_EXE_FLUSH is set.
1169 *
1170 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
1171 * invalidated with every MI_FLUSH.
1172 *
1173 * TLBs:
1174 *
1175 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
1176 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
1177 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
1178 * are flushed at any MI_FLUSH.
1179 */
1180
1181 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
1182 if ((invalidate_domains|flush_domains) &
1183 I915_GEM_DOMAIN_RENDER)
1184 cmd &= ~MI_NO_WRITE_FLUSH;
1185 if (!IS_I965G(dev)) {
1186 /*
1187 * On the 965, the sampler cache always gets flushed
1188 * and this bit is reserved.
1189 */
1190 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
1191 cmd |= MI_READ_FLUSH;
1192 }
1193 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
1194 cmd |= MI_EXE_FLUSH;
1195
1196#if WATCH_EXEC
1197 DRM_INFO("%s: queue flush %08x to ring\n", __func__, cmd);
1198#endif
1199 BEGIN_LP_RING(2);
1200 OUT_RING(cmd);
1201 OUT_RING(0); /* noop */
1202 ADVANCE_LP_RING();
1203 }
1204}
1205
1206/**
1207 * Ensures that all rendering to the object has completed and the object is
1208 * safe to unbind from the GTT or access from the CPU.
1209 */
1210static int
1211i915_gem_object_wait_rendering(struct drm_gem_object *obj)
1212{
1213 struct drm_device *dev = obj->dev;
1214 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1215 int ret;
1216
Eric Anholte47c68e2008-11-14 13:35:19 -08001217 /* This function only exists to support waiting for existing rendering,
1218 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001219 */
Eric Anholte47c68e2008-11-14 13:35:19 -08001220 BUG_ON((obj->write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001221
1222 /* If there is rendering queued on the buffer being evicted, wait for
1223 * it.
1224 */
1225 if (obj_priv->active) {
1226#if WATCH_BUF
1227 DRM_INFO("%s: object %p wait for seqno %08x\n",
1228 __func__, obj, obj_priv->last_rendering_seqno);
1229#endif
1230 ret = i915_wait_request(dev, obj_priv->last_rendering_seqno);
1231 if (ret != 0)
1232 return ret;
1233 }
1234
1235 return 0;
1236}
1237
1238/**
1239 * Unbinds an object from the GTT aperture.
1240 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001241int
Eric Anholt673a3942008-07-30 12:06:12 -07001242i915_gem_object_unbind(struct drm_gem_object *obj)
1243{
1244 struct drm_device *dev = obj->dev;
1245 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001246 loff_t offset;
Eric Anholt673a3942008-07-30 12:06:12 -07001247 int ret = 0;
1248
1249#if WATCH_BUF
1250 DRM_INFO("%s:%d %p\n", __func__, __LINE__, obj);
1251 DRM_INFO("gtt_space %p\n", obj_priv->gtt_space);
1252#endif
1253 if (obj_priv->gtt_space == NULL)
1254 return 0;
1255
1256 if (obj_priv->pin_count != 0) {
1257 DRM_ERROR("Attempting to unbind pinned buffer\n");
1258 return -EINVAL;
1259 }
1260
Eric Anholt673a3942008-07-30 12:06:12 -07001261 /* Move the object to the CPU domain to ensure that
1262 * any possible CPU writes while it's not in the GTT
1263 * are flushed when we go to remap it. This will
1264 * also ensure that all pending GPU writes are finished
1265 * before we unbind.
1266 */
Eric Anholte47c68e2008-11-14 13:35:19 -08001267 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07001268 if (ret) {
Eric Anholte47c68e2008-11-14 13:35:19 -08001269 if (ret != -ERESTARTSYS)
1270 DRM_ERROR("set_domain failed: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07001271 return ret;
1272 }
1273
1274 if (obj_priv->agp_mem != NULL) {
1275 drm_unbind_agp(obj_priv->agp_mem);
1276 drm_free_agp(obj_priv->agp_mem, obj->size / PAGE_SIZE);
1277 obj_priv->agp_mem = NULL;
1278 }
1279
1280 BUG_ON(obj_priv->active);
1281
Jesse Barnesde151cf2008-11-12 10:03:55 -08001282 /* blow away mappings if mapped through GTT */
1283 offset = ((loff_t) obj->map_list.hash.key) << PAGE_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08001284 if (dev->dev_mapping)
1285 unmap_mapping_range(dev->dev_mapping, offset, obj->size, 1);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001286
1287 if (obj_priv->fence_reg != I915_FENCE_REG_NONE)
1288 i915_gem_clear_fence_reg(obj);
1289
Eric Anholt673a3942008-07-30 12:06:12 -07001290 i915_gem_object_free_page_list(obj);
1291
1292 if (obj_priv->gtt_space) {
1293 atomic_dec(&dev->gtt_count);
1294 atomic_sub(obj->size, &dev->gtt_memory);
1295
1296 drm_mm_put_block(obj_priv->gtt_space);
1297 obj_priv->gtt_space = NULL;
1298 }
1299
1300 /* Remove ourselves from the LRU list if present. */
1301 if (!list_empty(&obj_priv->list))
1302 list_del_init(&obj_priv->list);
1303
1304 return 0;
1305}
1306
1307static int
1308i915_gem_evict_something(struct drm_device *dev)
1309{
1310 drm_i915_private_t *dev_priv = dev->dev_private;
1311 struct drm_gem_object *obj;
1312 struct drm_i915_gem_object *obj_priv;
1313 int ret = 0;
1314
1315 for (;;) {
1316 /* If there's an inactive buffer available now, grab it
1317 * and be done.
1318 */
1319 if (!list_empty(&dev_priv->mm.inactive_list)) {
1320 obj_priv = list_first_entry(&dev_priv->mm.inactive_list,
1321 struct drm_i915_gem_object,
1322 list);
1323 obj = obj_priv->obj;
1324 BUG_ON(obj_priv->pin_count != 0);
1325#if WATCH_LRU
1326 DRM_INFO("%s: evicting %p\n", __func__, obj);
1327#endif
1328 BUG_ON(obj_priv->active);
1329
1330 /* Wait on the rendering and unbind the buffer. */
1331 ret = i915_gem_object_unbind(obj);
1332 break;
1333 }
1334
1335 /* If we didn't get anything, but the ring is still processing
1336 * things, wait for one of those things to finish and hopefully
1337 * leave us a buffer to evict.
1338 */
1339 if (!list_empty(&dev_priv->mm.request_list)) {
1340 struct drm_i915_gem_request *request;
1341
1342 request = list_first_entry(&dev_priv->mm.request_list,
1343 struct drm_i915_gem_request,
1344 list);
1345
1346 ret = i915_wait_request(dev, request->seqno);
1347 if (ret)
1348 break;
1349
1350 /* if waiting caused an object to become inactive,
1351 * then loop around and wait for it. Otherwise, we
1352 * assume that waiting freed and unbound something,
1353 * so there should now be some space in the GTT
1354 */
1355 if (!list_empty(&dev_priv->mm.inactive_list))
1356 continue;
1357 break;
1358 }
1359
1360 /* If we didn't have anything on the request list but there
1361 * are buffers awaiting a flush, emit one and try again.
1362 * When we wait on it, those buffers waiting for that flush
1363 * will get moved to inactive.
1364 */
1365 if (!list_empty(&dev_priv->mm.flushing_list)) {
1366 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
1367 struct drm_i915_gem_object,
1368 list);
1369 obj = obj_priv->obj;
1370
1371 i915_gem_flush(dev,
1372 obj->write_domain,
1373 obj->write_domain);
1374 i915_add_request(dev, obj->write_domain);
1375
1376 obj = NULL;
1377 continue;
1378 }
1379
1380 DRM_ERROR("inactive empty %d request empty %d "
1381 "flushing empty %d\n",
1382 list_empty(&dev_priv->mm.inactive_list),
1383 list_empty(&dev_priv->mm.request_list),
1384 list_empty(&dev_priv->mm.flushing_list));
1385 /* If we didn't do any of the above, there's nothing to be done
1386 * and we just can't fit it in.
1387 */
1388 return -ENOMEM;
1389 }
1390 return ret;
1391}
1392
1393static int
Keith Packardac94a962008-11-20 23:30:27 -08001394i915_gem_evict_everything(struct drm_device *dev)
1395{
1396 int ret;
1397
1398 for (;;) {
1399 ret = i915_gem_evict_something(dev);
1400 if (ret != 0)
1401 break;
1402 }
Owain Ainsworth15c35332008-12-06 20:42:20 -08001403 if (ret == -ENOMEM)
1404 return 0;
Keith Packardac94a962008-11-20 23:30:27 -08001405 return ret;
1406}
1407
1408static int
Eric Anholt673a3942008-07-30 12:06:12 -07001409i915_gem_object_get_page_list(struct drm_gem_object *obj)
1410{
1411 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1412 int page_count, i;
1413 struct address_space *mapping;
1414 struct inode *inode;
1415 struct page *page;
1416 int ret;
1417
1418 if (obj_priv->page_list)
1419 return 0;
1420
1421 /* Get the list of pages out of our struct file. They'll be pinned
1422 * at this point until we release them.
1423 */
1424 page_count = obj->size / PAGE_SIZE;
1425 BUG_ON(obj_priv->page_list != NULL);
1426 obj_priv->page_list = drm_calloc(page_count, sizeof(struct page *),
1427 DRM_MEM_DRIVER);
1428 if (obj_priv->page_list == NULL) {
1429 DRM_ERROR("Faled to allocate page list\n");
1430 return -ENOMEM;
1431 }
1432
1433 inode = obj->filp->f_path.dentry->d_inode;
1434 mapping = inode->i_mapping;
1435 for (i = 0; i < page_count; i++) {
1436 page = read_mapping_page(mapping, i, NULL);
1437 if (IS_ERR(page)) {
1438 ret = PTR_ERR(page);
1439 DRM_ERROR("read_mapping_page failed: %d\n", ret);
1440 i915_gem_object_free_page_list(obj);
1441 return ret;
1442 }
1443 obj_priv->page_list[i] = page;
1444 }
1445 return 0;
1446}
1447
Jesse Barnesde151cf2008-11-12 10:03:55 -08001448static void i965_write_fence_reg(struct drm_i915_fence_reg *reg)
1449{
1450 struct drm_gem_object *obj = reg->obj;
1451 struct drm_device *dev = obj->dev;
1452 drm_i915_private_t *dev_priv = dev->dev_private;
1453 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1454 int regnum = obj_priv->fence_reg;
1455 uint64_t val;
1456
1457 val = (uint64_t)((obj_priv->gtt_offset + obj->size - 4096) &
1458 0xfffff000) << 32;
1459 val |= obj_priv->gtt_offset & 0xfffff000;
1460 val |= ((obj_priv->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
1461 if (obj_priv->tiling_mode == I915_TILING_Y)
1462 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
1463 val |= I965_FENCE_REG_VALID;
1464
1465 I915_WRITE64(FENCE_REG_965_0 + (regnum * 8), val);
1466}
1467
1468static void i915_write_fence_reg(struct drm_i915_fence_reg *reg)
1469{
1470 struct drm_gem_object *obj = reg->obj;
1471 struct drm_device *dev = obj->dev;
1472 drm_i915_private_t *dev_priv = dev->dev_private;
1473 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1474 int regnum = obj_priv->fence_reg;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001475 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001476 uint32_t val;
1477 uint32_t pitch_val;
1478
1479 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
1480 (obj_priv->gtt_offset & (obj->size - 1))) {
Linus Torvaldsf06da262009-02-09 08:57:29 -08001481 WARN(1, "%s: object 0x%08x not 1M or size (0x%zx) aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08001482 __func__, obj_priv->gtt_offset, obj->size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001483 return;
1484 }
1485
Jesse Barnes0f973f22009-01-26 17:10:45 -08001486 if (obj_priv->tiling_mode == I915_TILING_Y &&
1487 HAS_128_BYTE_Y_TILING(dev))
1488 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001489 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08001490 tile_width = 512;
1491
1492 /* Note: pitch better be a power of two tile widths */
1493 pitch_val = obj_priv->stride / tile_width;
1494 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001495
1496 val = obj_priv->gtt_offset;
1497 if (obj_priv->tiling_mode == I915_TILING_Y)
1498 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
1499 val |= I915_FENCE_SIZE_BITS(obj->size);
1500 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
1501 val |= I830_FENCE_REG_VALID;
1502
1503 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
1504}
1505
1506static void i830_write_fence_reg(struct drm_i915_fence_reg *reg)
1507{
1508 struct drm_gem_object *obj = reg->obj;
1509 struct drm_device *dev = obj->dev;
1510 drm_i915_private_t *dev_priv = dev->dev_private;
1511 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1512 int regnum = obj_priv->fence_reg;
1513 uint32_t val;
1514 uint32_t pitch_val;
1515
1516 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
1517 (obj_priv->gtt_offset & (obj->size - 1))) {
Jesse Barnes0f973f22009-01-26 17:10:45 -08001518 WARN(1, "%s: object 0x%08x not 1M or size aligned\n",
1519 __func__, obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001520 return;
1521 }
1522
1523 pitch_val = (obj_priv->stride / 128) - 1;
1524
1525 val = obj_priv->gtt_offset;
1526 if (obj_priv->tiling_mode == I915_TILING_Y)
1527 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
1528 val |= I830_FENCE_SIZE_BITS(obj->size);
1529 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
1530 val |= I830_FENCE_REG_VALID;
1531
1532 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
1533
1534}
1535
1536/**
1537 * i915_gem_object_get_fence_reg - set up a fence reg for an object
1538 * @obj: object to map through a fence reg
Jesse Barnes0f973f22009-01-26 17:10:45 -08001539 * @write: object is about to be written
Jesse Barnesde151cf2008-11-12 10:03:55 -08001540 *
1541 * When mapping objects through the GTT, userspace wants to be able to write
1542 * to them without having to worry about swizzling if the object is tiled.
1543 *
1544 * This function walks the fence regs looking for a free one for @obj,
1545 * stealing one if it can't find any.
1546 *
1547 * It then sets up the reg based on the object's properties: address, pitch
1548 * and tiling format.
1549 */
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001550static int
Jesse Barnes0f973f22009-01-26 17:10:45 -08001551i915_gem_object_get_fence_reg(struct drm_gem_object *obj, bool write)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001552{
1553 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08001554 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001555 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1556 struct drm_i915_fence_reg *reg = NULL;
1557 int i, ret;
1558
1559 switch (obj_priv->tiling_mode) {
1560 case I915_TILING_NONE:
1561 WARN(1, "allocating a fence for non-tiled object?\n");
1562 break;
1563 case I915_TILING_X:
Jesse Barnes0f973f22009-01-26 17:10:45 -08001564 if (!obj_priv->stride)
1565 return -EINVAL;
1566 WARN((obj_priv->stride & (512 - 1)),
1567 "object 0x%08x is X tiled but has non-512B pitch\n",
1568 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001569 break;
1570 case I915_TILING_Y:
Jesse Barnes0f973f22009-01-26 17:10:45 -08001571 if (!obj_priv->stride)
1572 return -EINVAL;
1573 WARN((obj_priv->stride & (128 - 1)),
1574 "object 0x%08x is Y tiled but has non-128B pitch\n",
1575 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001576 break;
1577 }
1578
1579 /* First try to find a free reg */
1580 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
1581 reg = &dev_priv->fence_regs[i];
1582 if (!reg->obj)
1583 break;
1584 }
1585
1586 /* None available, try to steal one or wait for a user to finish */
1587 if (i == dev_priv->num_fence_regs) {
1588 struct drm_i915_gem_object *old_obj_priv = NULL;
1589 loff_t offset;
1590
1591try_again:
1592 /* Could try to use LRU here instead... */
1593 for (i = dev_priv->fence_reg_start;
1594 i < dev_priv->num_fence_regs; i++) {
1595 reg = &dev_priv->fence_regs[i];
1596 old_obj_priv = reg->obj->driver_private;
1597 if (!old_obj_priv->pin_count)
1598 break;
1599 }
1600
1601 /*
1602 * Now things get ugly... we have to wait for one of the
1603 * objects to finish before trying again.
1604 */
1605 if (i == dev_priv->num_fence_regs) {
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001606 ret = i915_gem_object_set_to_gtt_domain(reg->obj, 0);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001607 if (ret) {
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001608 WARN(ret != -ERESTARTSYS,
1609 "switch to GTT domain failed: %d\n", ret);
1610 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001611 }
1612 goto try_again;
1613 }
1614
1615 /*
1616 * Zap this virtual mapping so we can set up a fence again
1617 * for this object next time we need it.
1618 */
1619 offset = ((loff_t) reg->obj->map_list.hash.key) << PAGE_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08001620 if (dev->dev_mapping)
1621 unmap_mapping_range(dev->dev_mapping, offset,
1622 reg->obj->size, 1);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001623 old_obj_priv->fence_reg = I915_FENCE_REG_NONE;
1624 }
1625
1626 obj_priv->fence_reg = i;
1627 reg->obj = obj;
1628
1629 if (IS_I965G(dev))
1630 i965_write_fence_reg(reg);
1631 else if (IS_I9XX(dev))
1632 i915_write_fence_reg(reg);
1633 else
1634 i830_write_fence_reg(reg);
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001635
1636 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001637}
1638
1639/**
1640 * i915_gem_clear_fence_reg - clear out fence register info
1641 * @obj: object to clear
1642 *
1643 * Zeroes out the fence register itself and clears out the associated
1644 * data structures in dev_priv and obj_priv.
1645 */
1646static void
1647i915_gem_clear_fence_reg(struct drm_gem_object *obj)
1648{
1649 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08001650 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001651 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1652
1653 if (IS_I965G(dev))
1654 I915_WRITE64(FENCE_REG_965_0 + (obj_priv->fence_reg * 8), 0);
1655 else
1656 I915_WRITE(FENCE_REG_830_0 + (obj_priv->fence_reg * 4), 0);
1657
1658 dev_priv->fence_regs[obj_priv->fence_reg].obj = NULL;
1659 obj_priv->fence_reg = I915_FENCE_REG_NONE;
1660}
1661
Eric Anholt673a3942008-07-30 12:06:12 -07001662/**
1663 * Finds free space in the GTT aperture and binds the object there.
1664 */
1665static int
1666i915_gem_object_bind_to_gtt(struct drm_gem_object *obj, unsigned alignment)
1667{
1668 struct drm_device *dev = obj->dev;
1669 drm_i915_private_t *dev_priv = dev->dev_private;
1670 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1671 struct drm_mm_node *free_space;
1672 int page_count, ret;
1673
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08001674 if (dev_priv->mm.suspended)
1675 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07001676 if (alignment == 0)
Jesse Barnes0f973f22009-01-26 17:10:45 -08001677 alignment = i915_gem_get_gtt_alignment(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001678 if (alignment & (PAGE_SIZE - 1)) {
1679 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
1680 return -EINVAL;
1681 }
1682
1683 search_free:
1684 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
1685 obj->size, alignment, 0);
1686 if (free_space != NULL) {
1687 obj_priv->gtt_space = drm_mm_get_block(free_space, obj->size,
1688 alignment);
1689 if (obj_priv->gtt_space != NULL) {
1690 obj_priv->gtt_space->private = obj;
1691 obj_priv->gtt_offset = obj_priv->gtt_space->start;
1692 }
1693 }
1694 if (obj_priv->gtt_space == NULL) {
1695 /* If the gtt is empty and we're still having trouble
1696 * fitting our object in, we're out of memory.
1697 */
1698#if WATCH_LRU
1699 DRM_INFO("%s: GTT full, evicting something\n", __func__);
1700#endif
1701 if (list_empty(&dev_priv->mm.inactive_list) &&
1702 list_empty(&dev_priv->mm.flushing_list) &&
1703 list_empty(&dev_priv->mm.active_list)) {
1704 DRM_ERROR("GTT full, but LRU list empty\n");
1705 return -ENOMEM;
1706 }
1707
1708 ret = i915_gem_evict_something(dev);
1709 if (ret != 0) {
Keith Packardac94a962008-11-20 23:30:27 -08001710 if (ret != -ERESTARTSYS)
1711 DRM_ERROR("Failed to evict a buffer %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07001712 return ret;
1713 }
1714 goto search_free;
1715 }
1716
1717#if WATCH_BUF
1718 DRM_INFO("Binding object of size %d at 0x%08x\n",
1719 obj->size, obj_priv->gtt_offset);
1720#endif
1721 ret = i915_gem_object_get_page_list(obj);
1722 if (ret) {
1723 drm_mm_put_block(obj_priv->gtt_space);
1724 obj_priv->gtt_space = NULL;
1725 return ret;
1726 }
1727
1728 page_count = obj->size / PAGE_SIZE;
1729 /* Create an AGP memory structure pointing at our pages, and bind it
1730 * into the GTT.
1731 */
1732 obj_priv->agp_mem = drm_agp_bind_pages(dev,
1733 obj_priv->page_list,
1734 page_count,
Keith Packardba1eb1d2008-10-14 19:55:10 -07001735 obj_priv->gtt_offset,
1736 obj_priv->agp_type);
Eric Anholt673a3942008-07-30 12:06:12 -07001737 if (obj_priv->agp_mem == NULL) {
1738 i915_gem_object_free_page_list(obj);
1739 drm_mm_put_block(obj_priv->gtt_space);
1740 obj_priv->gtt_space = NULL;
1741 return -ENOMEM;
1742 }
1743 atomic_inc(&dev->gtt_count);
1744 atomic_add(obj->size, &dev->gtt_memory);
1745
1746 /* Assert that the object is not currently in any GPU domain. As it
1747 * wasn't in the GTT, there shouldn't be any way it could have been in
1748 * a GPU cache
1749 */
1750 BUG_ON(obj->read_domains & ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT));
1751 BUG_ON(obj->write_domain & ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT));
1752
1753 return 0;
1754}
1755
1756void
1757i915_gem_clflush_object(struct drm_gem_object *obj)
1758{
1759 struct drm_i915_gem_object *obj_priv = obj->driver_private;
1760
1761 /* If we don't have a page list set up, then we're not pinned
1762 * to GPU, and we can ignore the cache flush because it'll happen
1763 * again at bind time.
1764 */
1765 if (obj_priv->page_list == NULL)
1766 return;
1767
1768 drm_clflush_pages(obj_priv->page_list, obj->size / PAGE_SIZE);
1769}
1770
Eric Anholte47c68e2008-11-14 13:35:19 -08001771/** Flushes any GPU write domain for the object if it's dirty. */
1772static void
1773i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj)
1774{
1775 struct drm_device *dev = obj->dev;
1776 uint32_t seqno;
1777
1778 if ((obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
1779 return;
1780
1781 /* Queue the GPU write cache flushing we need. */
1782 i915_gem_flush(dev, 0, obj->write_domain);
1783 seqno = i915_add_request(dev, obj->write_domain);
1784 obj->write_domain = 0;
1785 i915_gem_object_move_to_active(obj, seqno);
1786}
1787
1788/** Flushes the GTT write domain for the object if it's dirty. */
1789static void
1790i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj)
1791{
1792 if (obj->write_domain != I915_GEM_DOMAIN_GTT)
1793 return;
1794
1795 /* No actual flushing is required for the GTT write domain. Writes
1796 * to it immediately go to main memory as far as we know, so there's
1797 * no chipset flush. It also doesn't land in render cache.
1798 */
1799 obj->write_domain = 0;
1800}
1801
1802/** Flushes the CPU write domain for the object if it's dirty. */
1803static void
1804i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj)
1805{
1806 struct drm_device *dev = obj->dev;
1807
1808 if (obj->write_domain != I915_GEM_DOMAIN_CPU)
1809 return;
1810
1811 i915_gem_clflush_object(obj);
1812 drm_agp_chipset_flush(dev);
1813 obj->write_domain = 0;
1814}
1815
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001816/**
1817 * Moves a single object to the GTT read, and possibly write domain.
1818 *
1819 * This function returns when the move is complete, including waiting on
1820 * flushes to occur.
1821 */
Jesse Barnes79e53942008-11-07 14:24:08 -08001822int
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001823i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write)
1824{
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001825 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Eric Anholte47c68e2008-11-14 13:35:19 -08001826 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001827
Eric Anholt02354392008-11-26 13:58:13 -08001828 /* Not valid to be called on unbound objects. */
1829 if (obj_priv->gtt_space == NULL)
1830 return -EINVAL;
1831
Eric Anholte47c68e2008-11-14 13:35:19 -08001832 i915_gem_object_flush_gpu_write_domain(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001833 /* Wait on any GPU rendering and flushing to occur. */
Eric Anholte47c68e2008-11-14 13:35:19 -08001834 ret = i915_gem_object_wait_rendering(obj);
1835 if (ret != 0)
1836 return ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001837
1838 /* If we're writing through the GTT domain, then CPU and GPU caches
1839 * will need to be invalidated at next use.
1840 */
1841 if (write)
Eric Anholte47c68e2008-11-14 13:35:19 -08001842 obj->read_domains &= I915_GEM_DOMAIN_GTT;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001843
Eric Anholte47c68e2008-11-14 13:35:19 -08001844 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001845
1846 /* It should now be out of any other write domains, and we can update
1847 * the domain values for our changes.
1848 */
1849 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
1850 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08001851 if (write) {
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001852 obj->write_domain = I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08001853 obj_priv->dirty = 1;
1854 }
1855
1856 return 0;
1857}
1858
1859/**
1860 * Moves a single object to the CPU read, and possibly write domain.
1861 *
1862 * This function returns when the move is complete, including waiting on
1863 * flushes to occur.
1864 */
1865static int
1866i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj, int write)
1867{
1868 struct drm_device *dev = obj->dev;
1869 int ret;
1870
1871 i915_gem_object_flush_gpu_write_domain(obj);
1872 /* Wait on any GPU rendering and flushing to occur. */
1873 ret = i915_gem_object_wait_rendering(obj);
1874 if (ret != 0)
1875 return ret;
1876
1877 i915_gem_object_flush_gtt_write_domain(obj);
1878
1879 /* If we have a partially-valid cache of the object in the CPU,
1880 * finish invalidating it and free the per-page flags.
1881 */
1882 i915_gem_object_set_to_full_cpu_read_domain(obj);
1883
1884 /* Flush the CPU cache if it's still invalid. */
1885 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
1886 i915_gem_clflush_object(obj);
1887 drm_agp_chipset_flush(dev);
1888
1889 obj->read_domains |= I915_GEM_DOMAIN_CPU;
1890 }
1891
1892 /* It should now be out of any other write domains, and we can update
1893 * the domain values for our changes.
1894 */
1895 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
1896
1897 /* If we're writing through the CPU, then the GPU read domains will
1898 * need to be invalidated at next use.
1899 */
1900 if (write) {
1901 obj->read_domains &= I915_GEM_DOMAIN_CPU;
1902 obj->write_domain = I915_GEM_DOMAIN_CPU;
1903 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001904
1905 return 0;
1906}
1907
Eric Anholt673a3942008-07-30 12:06:12 -07001908/*
1909 * Set the next domain for the specified object. This
1910 * may not actually perform the necessary flushing/invaliding though,
1911 * as that may want to be batched with other set_domain operations
1912 *
1913 * This is (we hope) the only really tricky part of gem. The goal
1914 * is fairly simple -- track which caches hold bits of the object
1915 * and make sure they remain coherent. A few concrete examples may
1916 * help to explain how it works. For shorthand, we use the notation
1917 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
1918 * a pair of read and write domain masks.
1919 *
1920 * Case 1: the batch buffer
1921 *
1922 * 1. Allocated
1923 * 2. Written by CPU
1924 * 3. Mapped to GTT
1925 * 4. Read by GPU
1926 * 5. Unmapped from GTT
1927 * 6. Freed
1928 *
1929 * Let's take these a step at a time
1930 *
1931 * 1. Allocated
1932 * Pages allocated from the kernel may still have
1933 * cache contents, so we set them to (CPU, CPU) always.
1934 * 2. Written by CPU (using pwrite)
1935 * The pwrite function calls set_domain (CPU, CPU) and
1936 * this function does nothing (as nothing changes)
1937 * 3. Mapped by GTT
1938 * This function asserts that the object is not
1939 * currently in any GPU-based read or write domains
1940 * 4. Read by GPU
1941 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
1942 * As write_domain is zero, this function adds in the
1943 * current read domains (CPU+COMMAND, 0).
1944 * flush_domains is set to CPU.
1945 * invalidate_domains is set to COMMAND
1946 * clflush is run to get data out of the CPU caches
1947 * then i915_dev_set_domain calls i915_gem_flush to
1948 * emit an MI_FLUSH and drm_agp_chipset_flush
1949 * 5. Unmapped from GTT
1950 * i915_gem_object_unbind calls set_domain (CPU, CPU)
1951 * flush_domains and invalidate_domains end up both zero
1952 * so no flushing/invalidating happens
1953 * 6. Freed
1954 * yay, done
1955 *
1956 * Case 2: The shared render buffer
1957 *
1958 * 1. Allocated
1959 * 2. Mapped to GTT
1960 * 3. Read/written by GPU
1961 * 4. set_domain to (CPU,CPU)
1962 * 5. Read/written by CPU
1963 * 6. Read/written by GPU
1964 *
1965 * 1. Allocated
1966 * Same as last example, (CPU, CPU)
1967 * 2. Mapped to GTT
1968 * Nothing changes (assertions find that it is not in the GPU)
1969 * 3. Read/written by GPU
1970 * execbuffer calls set_domain (RENDER, RENDER)
1971 * flush_domains gets CPU
1972 * invalidate_domains gets GPU
1973 * clflush (obj)
1974 * MI_FLUSH and drm_agp_chipset_flush
1975 * 4. set_domain (CPU, CPU)
1976 * flush_domains gets GPU
1977 * invalidate_domains gets CPU
1978 * wait_rendering (obj) to make sure all drawing is complete.
1979 * This will include an MI_FLUSH to get the data from GPU
1980 * to memory
1981 * clflush (obj) to invalidate the CPU cache
1982 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
1983 * 5. Read/written by CPU
1984 * cache lines are loaded and dirtied
1985 * 6. Read written by GPU
1986 * Same as last GPU access
1987 *
1988 * Case 3: The constant buffer
1989 *
1990 * 1. Allocated
1991 * 2. Written by CPU
1992 * 3. Read by GPU
1993 * 4. Updated (written) by CPU again
1994 * 5. Read by GPU
1995 *
1996 * 1. Allocated
1997 * (CPU, CPU)
1998 * 2. Written by CPU
1999 * (CPU, CPU)
2000 * 3. Read by GPU
2001 * (CPU+RENDER, 0)
2002 * flush_domains = CPU
2003 * invalidate_domains = RENDER
2004 * clflush (obj)
2005 * MI_FLUSH
2006 * drm_agp_chipset_flush
2007 * 4. Updated (written) by CPU again
2008 * (CPU, CPU)
2009 * flush_domains = 0 (no previous write domain)
2010 * invalidate_domains = 0 (no new read domains)
2011 * 5. Read by GPU
2012 * (CPU+RENDER, 0)
2013 * flush_domains = CPU
2014 * invalidate_domains = RENDER
2015 * clflush (obj)
2016 * MI_FLUSH
2017 * drm_agp_chipset_flush
2018 */
Keith Packardc0d90822008-11-20 23:11:08 -08002019static void
Eric Anholt8b0e3782009-02-19 14:40:50 -08002020i915_gem_object_set_to_gpu_domain(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002021{
2022 struct drm_device *dev = obj->dev;
2023 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2024 uint32_t invalidate_domains = 0;
2025 uint32_t flush_domains = 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002026
Eric Anholt8b0e3782009-02-19 14:40:50 -08002027 BUG_ON(obj->pending_read_domains & I915_GEM_DOMAIN_CPU);
2028 BUG_ON(obj->pending_write_domain == I915_GEM_DOMAIN_CPU);
Eric Anholt673a3942008-07-30 12:06:12 -07002029
2030#if WATCH_BUF
2031 DRM_INFO("%s: object %p read %08x -> %08x write %08x -> %08x\n",
2032 __func__, obj,
Eric Anholt8b0e3782009-02-19 14:40:50 -08002033 obj->read_domains, obj->pending_read_domains,
2034 obj->write_domain, obj->pending_write_domain);
Eric Anholt673a3942008-07-30 12:06:12 -07002035#endif
2036 /*
2037 * If the object isn't moving to a new write domain,
2038 * let the object stay in multiple read domains
2039 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002040 if (obj->pending_write_domain == 0)
2041 obj->pending_read_domains |= obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002042 else
2043 obj_priv->dirty = 1;
2044
2045 /*
2046 * Flush the current write domain if
2047 * the new read domains don't match. Invalidate
2048 * any read domains which differ from the old
2049 * write domain
2050 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002051 if (obj->write_domain &&
2052 obj->write_domain != obj->pending_read_domains) {
Eric Anholt673a3942008-07-30 12:06:12 -07002053 flush_domains |= obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08002054 invalidate_domains |=
2055 obj->pending_read_domains & ~obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07002056 }
2057 /*
2058 * Invalidate any read caches which may have
2059 * stale data. That is, any new read domains.
2060 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002061 invalidate_domains |= obj->pending_read_domains & ~obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002062 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU) {
2063#if WATCH_BUF
2064 DRM_INFO("%s: CPU domain flush %08x invalidate %08x\n",
2065 __func__, flush_domains, invalidate_domains);
2066#endif
Eric Anholt673a3942008-07-30 12:06:12 -07002067 i915_gem_clflush_object(obj);
2068 }
2069
Eric Anholtefbeed92009-02-19 14:54:51 -08002070 /* The actual obj->write_domain will be updated with
2071 * pending_write_domain after we emit the accumulated flush for all
2072 * of our domain changes in execbuffers (which clears objects'
2073 * write_domains). So if we have a current write domain that we
2074 * aren't changing, set pending_write_domain to that.
2075 */
2076 if (flush_domains == 0 && obj->pending_write_domain == 0)
2077 obj->pending_write_domain = obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08002078 obj->read_domains = obj->pending_read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07002079
2080 dev->invalidate_domains |= invalidate_domains;
2081 dev->flush_domains |= flush_domains;
2082#if WATCH_BUF
2083 DRM_INFO("%s: read %08x write %08x invalidate %08x flush %08x\n",
2084 __func__,
2085 obj->read_domains, obj->write_domain,
2086 dev->invalidate_domains, dev->flush_domains);
2087#endif
Eric Anholt673a3942008-07-30 12:06:12 -07002088}
2089
2090/**
Eric Anholte47c68e2008-11-14 13:35:19 -08002091 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07002092 *
Eric Anholte47c68e2008-11-14 13:35:19 -08002093 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
2094 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
2095 */
2096static void
2097i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj)
2098{
2099 struct drm_device *dev = obj->dev;
2100 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2101
2102 if (!obj_priv->page_cpu_valid)
2103 return;
2104
2105 /* If we're partially in the CPU read domain, finish moving it in.
2106 */
2107 if (obj->read_domains & I915_GEM_DOMAIN_CPU) {
2108 int i;
2109
2110 for (i = 0; i <= (obj->size - 1) / PAGE_SIZE; i++) {
2111 if (obj_priv->page_cpu_valid[i])
2112 continue;
2113 drm_clflush_pages(obj_priv->page_list + i, 1);
2114 }
2115 drm_agp_chipset_flush(dev);
2116 }
2117
2118 /* Free the page_cpu_valid mappings which are now stale, whether
2119 * or not we've got I915_GEM_DOMAIN_CPU.
2120 */
2121 drm_free(obj_priv->page_cpu_valid, obj->size / PAGE_SIZE,
2122 DRM_MEM_DRIVER);
2123 obj_priv->page_cpu_valid = NULL;
2124}
2125
2126/**
2127 * Set the CPU read domain on a range of the object.
2128 *
2129 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
2130 * not entirely valid. The page_cpu_valid member of the object flags which
2131 * pages have been flushed, and will be respected by
2132 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
2133 * of the whole object.
2134 *
2135 * This function returns when the move is complete, including waiting on
2136 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07002137 */
2138static int
Eric Anholte47c68e2008-11-14 13:35:19 -08002139i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
2140 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07002141{
2142 struct drm_i915_gem_object *obj_priv = obj->driver_private;
Eric Anholte47c68e2008-11-14 13:35:19 -08002143 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002144
Eric Anholte47c68e2008-11-14 13:35:19 -08002145 if (offset == 0 && size == obj->size)
2146 return i915_gem_object_set_to_cpu_domain(obj, 0);
2147
2148 i915_gem_object_flush_gpu_write_domain(obj);
2149 /* Wait on any GPU rendering and flushing to occur. */
2150 ret = i915_gem_object_wait_rendering(obj);
2151 if (ret != 0)
2152 return ret;
2153 i915_gem_object_flush_gtt_write_domain(obj);
2154
2155 /* If we're already fully in the CPU read domain, we're done. */
2156 if (obj_priv->page_cpu_valid == NULL &&
2157 (obj->read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07002158 return 0;
2159
Eric Anholte47c68e2008-11-14 13:35:19 -08002160 /* Otherwise, create/clear the per-page CPU read domain flag if we're
2161 * newly adding I915_GEM_DOMAIN_CPU
2162 */
Eric Anholt673a3942008-07-30 12:06:12 -07002163 if (obj_priv->page_cpu_valid == NULL) {
2164 obj_priv->page_cpu_valid = drm_calloc(1, obj->size / PAGE_SIZE,
2165 DRM_MEM_DRIVER);
Eric Anholte47c68e2008-11-14 13:35:19 -08002166 if (obj_priv->page_cpu_valid == NULL)
2167 return -ENOMEM;
2168 } else if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0)
2169 memset(obj_priv->page_cpu_valid, 0, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002170
2171 /* Flush the cache on any pages that are still invalid from the CPU's
2172 * perspective.
2173 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002174 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
2175 i++) {
Eric Anholt673a3942008-07-30 12:06:12 -07002176 if (obj_priv->page_cpu_valid[i])
2177 continue;
2178
2179 drm_clflush_pages(obj_priv->page_list + i, 1);
2180
2181 obj_priv->page_cpu_valid[i] = 1;
2182 }
2183
Eric Anholte47c68e2008-11-14 13:35:19 -08002184 /* It should now be out of any other write domains, and we can update
2185 * the domain values for our changes.
2186 */
2187 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
2188
2189 obj->read_domains |= I915_GEM_DOMAIN_CPU;
2190
Eric Anholt673a3942008-07-30 12:06:12 -07002191 return 0;
2192}
2193
2194/**
Eric Anholt673a3942008-07-30 12:06:12 -07002195 * Pin an object to the GTT and evaluate the relocations landing in it.
2196 */
2197static int
2198i915_gem_object_pin_and_relocate(struct drm_gem_object *obj,
2199 struct drm_file *file_priv,
2200 struct drm_i915_gem_exec_object *entry)
2201{
2202 struct drm_device *dev = obj->dev;
Keith Packard0839ccb2008-10-30 19:38:48 -07002203 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002204 struct drm_i915_gem_relocation_entry reloc;
2205 struct drm_i915_gem_relocation_entry __user *relocs;
2206 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2207 int i, ret;
Keith Packard0839ccb2008-10-30 19:38:48 -07002208 void __iomem *reloc_page;
Eric Anholt673a3942008-07-30 12:06:12 -07002209
2210 /* Choose the GTT offset for our buffer and put it there. */
2211 ret = i915_gem_object_pin(obj, (uint32_t) entry->alignment);
2212 if (ret)
2213 return ret;
2214
2215 entry->offset = obj_priv->gtt_offset;
2216
2217 relocs = (struct drm_i915_gem_relocation_entry __user *)
2218 (uintptr_t) entry->relocs_ptr;
2219 /* Apply the relocations, using the GTT aperture to avoid cache
2220 * flushing requirements.
2221 */
2222 for (i = 0; i < entry->relocation_count; i++) {
2223 struct drm_gem_object *target_obj;
2224 struct drm_i915_gem_object *target_obj_priv;
Eric Anholt3043c602008-10-02 12:24:47 -07002225 uint32_t reloc_val, reloc_offset;
2226 uint32_t __iomem *reloc_entry;
Eric Anholt673a3942008-07-30 12:06:12 -07002227
2228 ret = copy_from_user(&reloc, relocs + i, sizeof(reloc));
2229 if (ret != 0) {
2230 i915_gem_object_unpin(obj);
2231 return ret;
2232 }
2233
2234 target_obj = drm_gem_object_lookup(obj->dev, file_priv,
2235 reloc.target_handle);
2236 if (target_obj == NULL) {
2237 i915_gem_object_unpin(obj);
2238 return -EBADF;
2239 }
2240 target_obj_priv = target_obj->driver_private;
2241
2242 /* The target buffer should have appeared before us in the
2243 * exec_object list, so it should have a GTT space bound by now.
2244 */
2245 if (target_obj_priv->gtt_space == NULL) {
2246 DRM_ERROR("No GTT space found for object %d\n",
2247 reloc.target_handle);
2248 drm_gem_object_unreference(target_obj);
2249 i915_gem_object_unpin(obj);
2250 return -EINVAL;
2251 }
2252
2253 if (reloc.offset > obj->size - 4) {
2254 DRM_ERROR("Relocation beyond object bounds: "
2255 "obj %p target %d offset %d size %d.\n",
2256 obj, reloc.target_handle,
2257 (int) reloc.offset, (int) obj->size);
2258 drm_gem_object_unreference(target_obj);
2259 i915_gem_object_unpin(obj);
2260 return -EINVAL;
2261 }
2262 if (reloc.offset & 3) {
2263 DRM_ERROR("Relocation not 4-byte aligned: "
2264 "obj %p target %d offset %d.\n",
2265 obj, reloc.target_handle,
2266 (int) reloc.offset);
2267 drm_gem_object_unreference(target_obj);
2268 i915_gem_object_unpin(obj);
2269 return -EINVAL;
2270 }
2271
Eric Anholte47c68e2008-11-14 13:35:19 -08002272 if (reloc.write_domain & I915_GEM_DOMAIN_CPU ||
2273 reloc.read_domains & I915_GEM_DOMAIN_CPU) {
2274 DRM_ERROR("reloc with read/write CPU domains: "
2275 "obj %p target %d offset %d "
2276 "read %08x write %08x",
2277 obj, reloc.target_handle,
2278 (int) reloc.offset,
2279 reloc.read_domains,
2280 reloc.write_domain);
Chris Wilson491152b2009-02-11 14:26:32 +00002281 drm_gem_object_unreference(target_obj);
2282 i915_gem_object_unpin(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002283 return -EINVAL;
2284 }
2285
Eric Anholt673a3942008-07-30 12:06:12 -07002286 if (reloc.write_domain && target_obj->pending_write_domain &&
2287 reloc.write_domain != target_obj->pending_write_domain) {
2288 DRM_ERROR("Write domain conflict: "
2289 "obj %p target %d offset %d "
2290 "new %08x old %08x\n",
2291 obj, reloc.target_handle,
2292 (int) reloc.offset,
2293 reloc.write_domain,
2294 target_obj->pending_write_domain);
2295 drm_gem_object_unreference(target_obj);
2296 i915_gem_object_unpin(obj);
2297 return -EINVAL;
2298 }
2299
2300#if WATCH_RELOC
2301 DRM_INFO("%s: obj %p offset %08x target %d "
2302 "read %08x write %08x gtt %08x "
2303 "presumed %08x delta %08x\n",
2304 __func__,
2305 obj,
2306 (int) reloc.offset,
2307 (int) reloc.target_handle,
2308 (int) reloc.read_domains,
2309 (int) reloc.write_domain,
2310 (int) target_obj_priv->gtt_offset,
2311 (int) reloc.presumed_offset,
2312 reloc.delta);
2313#endif
2314
2315 target_obj->pending_read_domains |= reloc.read_domains;
2316 target_obj->pending_write_domain |= reloc.write_domain;
2317
2318 /* If the relocation already has the right value in it, no
2319 * more work needs to be done.
2320 */
2321 if (target_obj_priv->gtt_offset == reloc.presumed_offset) {
2322 drm_gem_object_unreference(target_obj);
2323 continue;
2324 }
2325
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002326 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
2327 if (ret != 0) {
2328 drm_gem_object_unreference(target_obj);
2329 i915_gem_object_unpin(obj);
2330 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -07002331 }
2332
2333 /* Map the page containing the relocation we're going to
2334 * perform.
2335 */
2336 reloc_offset = obj_priv->gtt_offset + reloc.offset;
Keith Packard0839ccb2008-10-30 19:38:48 -07002337 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
2338 (reloc_offset &
2339 ~(PAGE_SIZE - 1)));
Eric Anholt3043c602008-10-02 12:24:47 -07002340 reloc_entry = (uint32_t __iomem *)(reloc_page +
Keith Packard0839ccb2008-10-30 19:38:48 -07002341 (reloc_offset & (PAGE_SIZE - 1)));
Eric Anholt673a3942008-07-30 12:06:12 -07002342 reloc_val = target_obj_priv->gtt_offset + reloc.delta;
2343
2344#if WATCH_BUF
2345 DRM_INFO("Applied relocation: %p@0x%08x %08x -> %08x\n",
2346 obj, (unsigned int) reloc.offset,
2347 readl(reloc_entry), reloc_val);
2348#endif
2349 writel(reloc_val, reloc_entry);
Keith Packard0839ccb2008-10-30 19:38:48 -07002350 io_mapping_unmap_atomic(reloc_page);
Eric Anholt673a3942008-07-30 12:06:12 -07002351
2352 /* Write the updated presumed offset for this entry back out
2353 * to the user.
2354 */
2355 reloc.presumed_offset = target_obj_priv->gtt_offset;
2356 ret = copy_to_user(relocs + i, &reloc, sizeof(reloc));
2357 if (ret != 0) {
2358 drm_gem_object_unreference(target_obj);
2359 i915_gem_object_unpin(obj);
2360 return ret;
2361 }
2362
2363 drm_gem_object_unreference(target_obj);
2364 }
2365
Eric Anholt673a3942008-07-30 12:06:12 -07002366#if WATCH_BUF
2367 if (0)
2368 i915_gem_dump_object(obj, 128, __func__, ~0);
2369#endif
2370 return 0;
2371}
2372
2373/** Dispatch a batchbuffer to the ring
2374 */
2375static int
2376i915_dispatch_gem_execbuffer(struct drm_device *dev,
2377 struct drm_i915_gem_execbuffer *exec,
2378 uint64_t exec_offset)
2379{
2380 drm_i915_private_t *dev_priv = dev->dev_private;
2381 struct drm_clip_rect __user *boxes = (struct drm_clip_rect __user *)
2382 (uintptr_t) exec->cliprects_ptr;
2383 int nbox = exec->num_cliprects;
2384 int i = 0, count;
2385 uint32_t exec_start, exec_len;
2386 RING_LOCALS;
2387
2388 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
2389 exec_len = (uint32_t) exec->batch_len;
2390
2391 if ((exec_start | exec_len) & 0x7) {
2392 DRM_ERROR("alignment\n");
2393 return -EINVAL;
2394 }
2395
2396 if (!exec_start)
2397 return -EINVAL;
2398
2399 count = nbox ? nbox : 1;
2400
2401 for (i = 0; i < count; i++) {
2402 if (i < nbox) {
2403 int ret = i915_emit_box(dev, boxes, i,
2404 exec->DR1, exec->DR4);
2405 if (ret)
2406 return ret;
2407 }
2408
2409 if (IS_I830(dev) || IS_845G(dev)) {
2410 BEGIN_LP_RING(4);
2411 OUT_RING(MI_BATCH_BUFFER);
2412 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
2413 OUT_RING(exec_start + exec_len - 4);
2414 OUT_RING(0);
2415 ADVANCE_LP_RING();
2416 } else {
2417 BEGIN_LP_RING(2);
2418 if (IS_I965G(dev)) {
2419 OUT_RING(MI_BATCH_BUFFER_START |
2420 (2 << 6) |
2421 MI_BATCH_NON_SECURE_I965);
2422 OUT_RING(exec_start);
2423 } else {
2424 OUT_RING(MI_BATCH_BUFFER_START |
2425 (2 << 6));
2426 OUT_RING(exec_start | MI_BATCH_NON_SECURE);
2427 }
2428 ADVANCE_LP_RING();
2429 }
2430 }
2431
2432 /* XXX breadcrumb */
2433 return 0;
2434}
2435
2436/* Throttle our rendering by waiting until the ring has completed our requests
2437 * emitted over 20 msec ago.
2438 *
2439 * This should get us reasonable parallelism between CPU and GPU but also
2440 * relatively low latency when blocking on a particular request to finish.
2441 */
2442static int
2443i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file_priv)
2444{
2445 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
2446 int ret = 0;
2447 uint32_t seqno;
2448
2449 mutex_lock(&dev->struct_mutex);
2450 seqno = i915_file_priv->mm.last_gem_throttle_seqno;
2451 i915_file_priv->mm.last_gem_throttle_seqno =
2452 i915_file_priv->mm.last_gem_seqno;
2453 if (seqno)
2454 ret = i915_wait_request(dev, seqno);
2455 mutex_unlock(&dev->struct_mutex);
2456 return ret;
2457}
2458
2459int
2460i915_gem_execbuffer(struct drm_device *dev, void *data,
2461 struct drm_file *file_priv)
2462{
2463 drm_i915_private_t *dev_priv = dev->dev_private;
2464 struct drm_i915_file_private *i915_file_priv = file_priv->driver_priv;
2465 struct drm_i915_gem_execbuffer *args = data;
2466 struct drm_i915_gem_exec_object *exec_list = NULL;
2467 struct drm_gem_object **object_list = NULL;
2468 struct drm_gem_object *batch_obj;
2469 int ret, i, pinned = 0;
2470 uint64_t exec_offset;
2471 uint32_t seqno, flush_domains;
Keith Packardac94a962008-11-20 23:30:27 -08002472 int pin_tries;
Eric Anholt673a3942008-07-30 12:06:12 -07002473
2474#if WATCH_EXEC
2475 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
2476 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
2477#endif
2478
Eric Anholt4f481ed2008-09-10 14:22:49 -07002479 if (args->buffer_count < 1) {
2480 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
2481 return -EINVAL;
2482 }
Eric Anholt673a3942008-07-30 12:06:12 -07002483 /* Copy in the exec list from userland */
2484 exec_list = drm_calloc(sizeof(*exec_list), args->buffer_count,
2485 DRM_MEM_DRIVER);
2486 object_list = drm_calloc(sizeof(*object_list), args->buffer_count,
2487 DRM_MEM_DRIVER);
2488 if (exec_list == NULL || object_list == NULL) {
2489 DRM_ERROR("Failed to allocate exec or object list "
2490 "for %d buffers\n",
2491 args->buffer_count);
2492 ret = -ENOMEM;
2493 goto pre_mutex_err;
2494 }
2495 ret = copy_from_user(exec_list,
2496 (struct drm_i915_relocation_entry __user *)
2497 (uintptr_t) args->buffers_ptr,
2498 sizeof(*exec_list) * args->buffer_count);
2499 if (ret != 0) {
2500 DRM_ERROR("copy %d exec entries failed %d\n",
2501 args->buffer_count, ret);
2502 goto pre_mutex_err;
2503 }
2504
2505 mutex_lock(&dev->struct_mutex);
2506
2507 i915_verify_inactive(dev, __FILE__, __LINE__);
2508
2509 if (dev_priv->mm.wedged) {
2510 DRM_ERROR("Execbuf while wedged\n");
2511 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00002512 ret = -EIO;
2513 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07002514 }
2515
2516 if (dev_priv->mm.suspended) {
2517 DRM_ERROR("Execbuf while VT-switched.\n");
2518 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00002519 ret = -EBUSY;
2520 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07002521 }
2522
Keith Packardac94a962008-11-20 23:30:27 -08002523 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07002524 for (i = 0; i < args->buffer_count; i++) {
2525 object_list[i] = drm_gem_object_lookup(dev, file_priv,
2526 exec_list[i].handle);
2527 if (object_list[i] == NULL) {
2528 DRM_ERROR("Invalid object handle %d at index %d\n",
2529 exec_list[i].handle, i);
2530 ret = -EBADF;
2531 goto err;
2532 }
Keith Packardac94a962008-11-20 23:30:27 -08002533 }
Eric Anholt673a3942008-07-30 12:06:12 -07002534
Keith Packardac94a962008-11-20 23:30:27 -08002535 /* Pin and relocate */
2536 for (pin_tries = 0; ; pin_tries++) {
2537 ret = 0;
2538 for (i = 0; i < args->buffer_count; i++) {
2539 object_list[i]->pending_read_domains = 0;
2540 object_list[i]->pending_write_domain = 0;
2541 ret = i915_gem_object_pin_and_relocate(object_list[i],
2542 file_priv,
2543 &exec_list[i]);
2544 if (ret)
2545 break;
2546 pinned = i + 1;
2547 }
2548 /* success */
2549 if (ret == 0)
2550 break;
2551
2552 /* error other than GTT full, or we've already tried again */
2553 if (ret != -ENOMEM || pin_tries >= 1) {
Eric Anholtf1acec92008-12-19 14:47:48 -08002554 if (ret != -ERESTARTSYS)
2555 DRM_ERROR("Failed to pin buffers %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07002556 goto err;
2557 }
Keith Packardac94a962008-11-20 23:30:27 -08002558
2559 /* unpin all of our buffers */
2560 for (i = 0; i < pinned; i++)
2561 i915_gem_object_unpin(object_list[i]);
Eric Anholtb1177632008-12-10 10:09:41 -08002562 pinned = 0;
Keith Packardac94a962008-11-20 23:30:27 -08002563
2564 /* evict everyone we can from the aperture */
2565 ret = i915_gem_evict_everything(dev);
2566 if (ret)
2567 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07002568 }
2569
2570 /* Set the pending read domains for the batch buffer to COMMAND */
2571 batch_obj = object_list[args->buffer_count-1];
2572 batch_obj->pending_read_domains = I915_GEM_DOMAIN_COMMAND;
2573 batch_obj->pending_write_domain = 0;
2574
2575 i915_verify_inactive(dev, __FILE__, __LINE__);
2576
Keith Packard646f0f62008-11-20 23:23:03 -08002577 /* Zero the global flush/invalidate flags. These
2578 * will be modified as new domains are computed
2579 * for each object
2580 */
2581 dev->invalidate_domains = 0;
2582 dev->flush_domains = 0;
2583
Eric Anholt673a3942008-07-30 12:06:12 -07002584 for (i = 0; i < args->buffer_count; i++) {
2585 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07002586
Keith Packard646f0f62008-11-20 23:23:03 -08002587 /* Compute new gpu domains and update invalidate/flush */
Eric Anholt8b0e3782009-02-19 14:40:50 -08002588 i915_gem_object_set_to_gpu_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002589 }
2590
2591 i915_verify_inactive(dev, __FILE__, __LINE__);
2592
Keith Packard646f0f62008-11-20 23:23:03 -08002593 if (dev->invalidate_domains | dev->flush_domains) {
2594#if WATCH_EXEC
2595 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
2596 __func__,
2597 dev->invalidate_domains,
2598 dev->flush_domains);
2599#endif
2600 i915_gem_flush(dev,
2601 dev->invalidate_domains,
2602 dev->flush_domains);
2603 if (dev->flush_domains)
2604 (void)i915_add_request(dev, dev->flush_domains);
2605 }
Eric Anholt673a3942008-07-30 12:06:12 -07002606
Eric Anholtefbeed92009-02-19 14:54:51 -08002607 for (i = 0; i < args->buffer_count; i++) {
2608 struct drm_gem_object *obj = object_list[i];
2609
2610 obj->write_domain = obj->pending_write_domain;
2611 }
2612
Eric Anholt673a3942008-07-30 12:06:12 -07002613 i915_verify_inactive(dev, __FILE__, __LINE__);
2614
2615#if WATCH_COHERENCY
2616 for (i = 0; i < args->buffer_count; i++) {
2617 i915_gem_object_check_coherency(object_list[i],
2618 exec_list[i].handle);
2619 }
2620#endif
2621
2622 exec_offset = exec_list[args->buffer_count - 1].offset;
2623
2624#if WATCH_EXEC
2625 i915_gem_dump_object(object_list[args->buffer_count - 1],
2626 args->batch_len,
2627 __func__,
2628 ~0);
2629#endif
2630
Eric Anholt673a3942008-07-30 12:06:12 -07002631 /* Exec the batchbuffer */
2632 ret = i915_dispatch_gem_execbuffer(dev, args, exec_offset);
2633 if (ret) {
2634 DRM_ERROR("dispatch failed %d\n", ret);
2635 goto err;
2636 }
2637
2638 /*
2639 * Ensure that the commands in the batch buffer are
2640 * finished before the interrupt fires
2641 */
2642 flush_domains = i915_retire_commands(dev);
2643
2644 i915_verify_inactive(dev, __FILE__, __LINE__);
2645
2646 /*
2647 * Get a seqno representing the execution of the current buffer,
2648 * which we can wait on. We would like to mitigate these interrupts,
2649 * likely by only creating seqnos occasionally (so that we have
2650 * *some* interrupts representing completion of buffers that we can
2651 * wait on when trying to clear up gtt space).
2652 */
2653 seqno = i915_add_request(dev, flush_domains);
2654 BUG_ON(seqno == 0);
2655 i915_file_priv->mm.last_gem_seqno = seqno;
2656 for (i = 0; i < args->buffer_count; i++) {
2657 struct drm_gem_object *obj = object_list[i];
Eric Anholt673a3942008-07-30 12:06:12 -07002658
Eric Anholtce44b0e2008-11-06 16:00:31 -08002659 i915_gem_object_move_to_active(obj, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002660#if WATCH_LRU
2661 DRM_INFO("%s: move to exec list %p\n", __func__, obj);
2662#endif
2663 }
2664#if WATCH_LRU
2665 i915_dump_lru(dev, __func__);
2666#endif
2667
2668 i915_verify_inactive(dev, __FILE__, __LINE__);
2669
Eric Anholt673a3942008-07-30 12:06:12 -07002670err:
Julia Lawallaad87df2008-12-21 16:28:47 +01002671 for (i = 0; i < pinned; i++)
2672 i915_gem_object_unpin(object_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07002673
Julia Lawallaad87df2008-12-21 16:28:47 +01002674 for (i = 0; i < args->buffer_count; i++)
2675 drm_gem_object_unreference(object_list[i]);
2676
Eric Anholt673a3942008-07-30 12:06:12 -07002677 mutex_unlock(&dev->struct_mutex);
2678
Roland Dreiera35f2e22009-02-06 17:48:09 -08002679 if (!ret) {
2680 /* Copy the new buffer offsets back to the user's exec list. */
2681 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
2682 (uintptr_t) args->buffers_ptr,
2683 exec_list,
2684 sizeof(*exec_list) * args->buffer_count);
2685 if (ret)
2686 DRM_ERROR("failed to copy %d exec entries "
2687 "back to user (%d)\n",
2688 args->buffer_count, ret);
2689 }
2690
Eric Anholt673a3942008-07-30 12:06:12 -07002691pre_mutex_err:
2692 drm_free(object_list, sizeof(*object_list) * args->buffer_count,
2693 DRM_MEM_DRIVER);
2694 drm_free(exec_list, sizeof(*exec_list) * args->buffer_count,
2695 DRM_MEM_DRIVER);
2696
2697 return ret;
2698}
2699
2700int
2701i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment)
2702{
2703 struct drm_device *dev = obj->dev;
2704 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2705 int ret;
2706
2707 i915_verify_inactive(dev, __FILE__, __LINE__);
2708 if (obj_priv->gtt_space == NULL) {
2709 ret = i915_gem_object_bind_to_gtt(obj, alignment);
2710 if (ret != 0) {
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08002711 if (ret != -EBUSY && ret != -ERESTARTSYS)
Eric Anholtf1acec92008-12-19 14:47:48 -08002712 DRM_ERROR("Failure to bind: %d", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07002713 return ret;
2714 }
Jesse Barnes0f973f22009-01-26 17:10:45 -08002715 /*
2716 * Pre-965 chips need a fence register set up in order to
2717 * properly handle tiled surfaces.
2718 */
2719 if (!IS_I965G(dev) &&
2720 obj_priv->fence_reg == I915_FENCE_REG_NONE &&
2721 obj_priv->tiling_mode != I915_TILING_NONE)
2722 i915_gem_object_get_fence_reg(obj, true);
Eric Anholt673a3942008-07-30 12:06:12 -07002723 }
2724 obj_priv->pin_count++;
2725
2726 /* If the object is not active and not pending a flush,
2727 * remove it from the inactive list
2728 */
2729 if (obj_priv->pin_count == 1) {
2730 atomic_inc(&dev->pin_count);
2731 atomic_add(obj->size, &dev->pin_memory);
2732 if (!obj_priv->active &&
2733 (obj->write_domain & ~(I915_GEM_DOMAIN_CPU |
2734 I915_GEM_DOMAIN_GTT)) == 0 &&
2735 !list_empty(&obj_priv->list))
2736 list_del_init(&obj_priv->list);
2737 }
2738 i915_verify_inactive(dev, __FILE__, __LINE__);
2739
2740 return 0;
2741}
2742
2743void
2744i915_gem_object_unpin(struct drm_gem_object *obj)
2745{
2746 struct drm_device *dev = obj->dev;
2747 drm_i915_private_t *dev_priv = dev->dev_private;
2748 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2749
2750 i915_verify_inactive(dev, __FILE__, __LINE__);
2751 obj_priv->pin_count--;
2752 BUG_ON(obj_priv->pin_count < 0);
2753 BUG_ON(obj_priv->gtt_space == NULL);
2754
2755 /* If the object is no longer pinned, and is
2756 * neither active nor being flushed, then stick it on
2757 * the inactive list
2758 */
2759 if (obj_priv->pin_count == 0) {
2760 if (!obj_priv->active &&
2761 (obj->write_domain & ~(I915_GEM_DOMAIN_CPU |
2762 I915_GEM_DOMAIN_GTT)) == 0)
2763 list_move_tail(&obj_priv->list,
2764 &dev_priv->mm.inactive_list);
2765 atomic_dec(&dev->pin_count);
2766 atomic_sub(obj->size, &dev->pin_memory);
2767 }
2768 i915_verify_inactive(dev, __FILE__, __LINE__);
2769}
2770
2771int
2772i915_gem_pin_ioctl(struct drm_device *dev, void *data,
2773 struct drm_file *file_priv)
2774{
2775 struct drm_i915_gem_pin *args = data;
2776 struct drm_gem_object *obj;
2777 struct drm_i915_gem_object *obj_priv;
2778 int ret;
2779
2780 mutex_lock(&dev->struct_mutex);
2781
2782 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
2783 if (obj == NULL) {
2784 DRM_ERROR("Bad handle in i915_gem_pin_ioctl(): %d\n",
2785 args->handle);
2786 mutex_unlock(&dev->struct_mutex);
2787 return -EBADF;
2788 }
2789 obj_priv = obj->driver_private;
2790
Jesse Barnes79e53942008-11-07 14:24:08 -08002791 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
2792 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
2793 args->handle);
Chris Wilson96dec612009-02-08 19:08:04 +00002794 drm_gem_object_unreference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002795 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002796 return -EINVAL;
2797 }
2798
2799 obj_priv->user_pin_count++;
2800 obj_priv->pin_filp = file_priv;
2801 if (obj_priv->user_pin_count == 1) {
2802 ret = i915_gem_object_pin(obj, args->alignment);
2803 if (ret != 0) {
2804 drm_gem_object_unreference(obj);
2805 mutex_unlock(&dev->struct_mutex);
2806 return ret;
2807 }
Eric Anholt673a3942008-07-30 12:06:12 -07002808 }
2809
2810 /* XXX - flush the CPU caches for pinned objects
2811 * as the X server doesn't manage domains yet
2812 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002813 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002814 args->offset = obj_priv->gtt_offset;
2815 drm_gem_object_unreference(obj);
2816 mutex_unlock(&dev->struct_mutex);
2817
2818 return 0;
2819}
2820
2821int
2822i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
2823 struct drm_file *file_priv)
2824{
2825 struct drm_i915_gem_pin *args = data;
2826 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08002827 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002828
2829 mutex_lock(&dev->struct_mutex);
2830
2831 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
2832 if (obj == NULL) {
2833 DRM_ERROR("Bad handle in i915_gem_unpin_ioctl(): %d\n",
2834 args->handle);
2835 mutex_unlock(&dev->struct_mutex);
2836 return -EBADF;
2837 }
2838
Jesse Barnes79e53942008-11-07 14:24:08 -08002839 obj_priv = obj->driver_private;
2840 if (obj_priv->pin_filp != file_priv) {
2841 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
2842 args->handle);
2843 drm_gem_object_unreference(obj);
2844 mutex_unlock(&dev->struct_mutex);
2845 return -EINVAL;
2846 }
2847 obj_priv->user_pin_count--;
2848 if (obj_priv->user_pin_count == 0) {
2849 obj_priv->pin_filp = NULL;
2850 i915_gem_object_unpin(obj);
2851 }
Eric Anholt673a3942008-07-30 12:06:12 -07002852
2853 drm_gem_object_unreference(obj);
2854 mutex_unlock(&dev->struct_mutex);
2855 return 0;
2856}
2857
2858int
2859i915_gem_busy_ioctl(struct drm_device *dev, void *data,
2860 struct drm_file *file_priv)
2861{
2862 struct drm_i915_gem_busy *args = data;
2863 struct drm_gem_object *obj;
2864 struct drm_i915_gem_object *obj_priv;
2865
2866 mutex_lock(&dev->struct_mutex);
2867 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
2868 if (obj == NULL) {
2869 DRM_ERROR("Bad handle in i915_gem_busy_ioctl(): %d\n",
2870 args->handle);
2871 mutex_unlock(&dev->struct_mutex);
2872 return -EBADF;
2873 }
2874
2875 obj_priv = obj->driver_private;
Eric Anholtc4de0a52008-12-14 19:05:04 -08002876 /* Don't count being on the flushing list against the object being
2877 * done. Otherwise, a buffer left on the flushing list but not getting
2878 * flushed (because nobody's flushing that domain) won't ever return
2879 * unbusy and get reused by libdrm's bo cache. The other expected
2880 * consumer of this interface, OpenGL's occlusion queries, also specs
2881 * that the objects get unbusy "eventually" without any interference.
2882 */
2883 args->busy = obj_priv->active && obj_priv->last_rendering_seqno != 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002884
2885 drm_gem_object_unreference(obj);
2886 mutex_unlock(&dev->struct_mutex);
2887 return 0;
2888}
2889
2890int
2891i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
2892 struct drm_file *file_priv)
2893{
2894 return i915_gem_ring_throttle(dev, file_priv);
2895}
2896
2897int i915_gem_init_object(struct drm_gem_object *obj)
2898{
2899 struct drm_i915_gem_object *obj_priv;
2900
2901 obj_priv = drm_calloc(1, sizeof(*obj_priv), DRM_MEM_DRIVER);
2902 if (obj_priv == NULL)
2903 return -ENOMEM;
2904
2905 /*
2906 * We've just allocated pages from the kernel,
2907 * so they've just been written by the CPU with
2908 * zeros. They'll need to be clflushed before we
2909 * use them with the GPU.
2910 */
2911 obj->write_domain = I915_GEM_DOMAIN_CPU;
2912 obj->read_domains = I915_GEM_DOMAIN_CPU;
2913
Keith Packardba1eb1d2008-10-14 19:55:10 -07002914 obj_priv->agp_type = AGP_USER_MEMORY;
2915
Eric Anholt673a3942008-07-30 12:06:12 -07002916 obj->driver_private = obj_priv;
2917 obj_priv->obj = obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002918 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Eric Anholt673a3942008-07-30 12:06:12 -07002919 INIT_LIST_HEAD(&obj_priv->list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002920
Eric Anholt673a3942008-07-30 12:06:12 -07002921 return 0;
2922}
2923
2924void i915_gem_free_object(struct drm_gem_object *obj)
2925{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002926 struct drm_device *dev = obj->dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002927 struct drm_i915_gem_object *obj_priv = obj->driver_private;
2928
2929 while (obj_priv->pin_count > 0)
2930 i915_gem_object_unpin(obj);
2931
Dave Airlie71acb5e2008-12-30 20:31:46 +10002932 if (obj_priv->phys_obj)
2933 i915_gem_detach_phys_object(dev, obj);
2934
Eric Anholt673a3942008-07-30 12:06:12 -07002935 i915_gem_object_unbind(obj);
2936
Jesse Barnesab00b3e2009-02-11 14:01:46 -08002937 i915_gem_free_mmap_offset(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002938
Eric Anholt673a3942008-07-30 12:06:12 -07002939 drm_free(obj_priv->page_cpu_valid, 1, DRM_MEM_DRIVER);
2940 drm_free(obj->driver_private, 1, DRM_MEM_DRIVER);
2941}
2942
Eric Anholt673a3942008-07-30 12:06:12 -07002943/** Unbinds all objects that are on the given buffer list. */
2944static int
2945i915_gem_evict_from_list(struct drm_device *dev, struct list_head *head)
2946{
2947 struct drm_gem_object *obj;
2948 struct drm_i915_gem_object *obj_priv;
2949 int ret;
2950
2951 while (!list_empty(head)) {
2952 obj_priv = list_first_entry(head,
2953 struct drm_i915_gem_object,
2954 list);
2955 obj = obj_priv->obj;
2956
2957 if (obj_priv->pin_count != 0) {
2958 DRM_ERROR("Pinned object in unbind list\n");
2959 mutex_unlock(&dev->struct_mutex);
2960 return -EINVAL;
2961 }
2962
2963 ret = i915_gem_object_unbind(obj);
2964 if (ret != 0) {
2965 DRM_ERROR("Error unbinding object in LeaveVT: %d\n",
2966 ret);
2967 mutex_unlock(&dev->struct_mutex);
2968 return ret;
2969 }
2970 }
2971
2972
2973 return 0;
2974}
2975
Jesse Barnes5669fca2009-02-17 15:13:31 -08002976int
Eric Anholt673a3942008-07-30 12:06:12 -07002977i915_gem_idle(struct drm_device *dev)
2978{
2979 drm_i915_private_t *dev_priv = dev->dev_private;
2980 uint32_t seqno, cur_seqno, last_seqno;
2981 int stuck, ret;
2982
Keith Packard6dbe2772008-10-14 21:41:13 -07002983 mutex_lock(&dev->struct_mutex);
2984
2985 if (dev_priv->mm.suspended || dev_priv->ring.ring_obj == NULL) {
2986 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07002987 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07002988 }
Eric Anholt673a3942008-07-30 12:06:12 -07002989
2990 /* Hack! Don't let anybody do execbuf while we don't control the chip.
2991 * We need to replace this with a semaphore, or something.
2992 */
2993 dev_priv->mm.suspended = 1;
2994
Keith Packard6dbe2772008-10-14 21:41:13 -07002995 /* Cancel the retire work handler, wait for it to finish if running
2996 */
2997 mutex_unlock(&dev->struct_mutex);
2998 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
2999 mutex_lock(&dev->struct_mutex);
3000
Eric Anholt673a3942008-07-30 12:06:12 -07003001 i915_kernel_lost_context(dev);
3002
3003 /* Flush the GPU along with all non-CPU write domains
3004 */
3005 i915_gem_flush(dev, ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT),
3006 ~(I915_GEM_DOMAIN_CPU|I915_GEM_DOMAIN_GTT));
Jesse Barnesde151cf2008-11-12 10:03:55 -08003007 seqno = i915_add_request(dev, ~I915_GEM_DOMAIN_CPU);
Eric Anholt673a3942008-07-30 12:06:12 -07003008
3009 if (seqno == 0) {
3010 mutex_unlock(&dev->struct_mutex);
3011 return -ENOMEM;
3012 }
3013
3014 dev_priv->mm.waiting_gem_seqno = seqno;
3015 last_seqno = 0;
3016 stuck = 0;
3017 for (;;) {
3018 cur_seqno = i915_get_gem_seqno(dev);
3019 if (i915_seqno_passed(cur_seqno, seqno))
3020 break;
3021 if (last_seqno == cur_seqno) {
3022 if (stuck++ > 100) {
3023 DRM_ERROR("hardware wedged\n");
3024 dev_priv->mm.wedged = 1;
3025 DRM_WAKEUP(&dev_priv->irq_queue);
3026 break;
3027 }
3028 }
3029 msleep(10);
3030 last_seqno = cur_seqno;
3031 }
3032 dev_priv->mm.waiting_gem_seqno = 0;
3033
3034 i915_gem_retire_requests(dev);
3035
Eric Anholt28dfe522008-11-13 15:00:55 -08003036 if (!dev_priv->mm.wedged) {
3037 /* Active and flushing should now be empty as we've
3038 * waited for a sequence higher than any pending execbuffer
3039 */
3040 WARN_ON(!list_empty(&dev_priv->mm.active_list));
3041 WARN_ON(!list_empty(&dev_priv->mm.flushing_list));
3042 /* Request should now be empty as we've also waited
3043 * for the last request in the list
3044 */
3045 WARN_ON(!list_empty(&dev_priv->mm.request_list));
3046 }
Eric Anholt673a3942008-07-30 12:06:12 -07003047
Eric Anholt28dfe522008-11-13 15:00:55 -08003048 /* Empty the active and flushing lists to inactive. If there's
3049 * anything left at this point, it means that we're wedged and
3050 * nothing good's going to happen by leaving them there. So strip
3051 * the GPU domains and just stuff them onto inactive.
Eric Anholt673a3942008-07-30 12:06:12 -07003052 */
Eric Anholt28dfe522008-11-13 15:00:55 -08003053 while (!list_empty(&dev_priv->mm.active_list)) {
3054 struct drm_i915_gem_object *obj_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07003055
Eric Anholt28dfe522008-11-13 15:00:55 -08003056 obj_priv = list_first_entry(&dev_priv->mm.active_list,
3057 struct drm_i915_gem_object,
3058 list);
3059 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3060 i915_gem_object_move_to_inactive(obj_priv->obj);
3061 }
3062
3063 while (!list_empty(&dev_priv->mm.flushing_list)) {
3064 struct drm_i915_gem_object *obj_priv;
3065
Eric Anholt151903d2008-12-01 10:23:21 +10003066 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
Eric Anholt28dfe522008-11-13 15:00:55 -08003067 struct drm_i915_gem_object,
3068 list);
3069 obj_priv->obj->write_domain &= ~I915_GEM_GPU_DOMAINS;
3070 i915_gem_object_move_to_inactive(obj_priv->obj);
3071 }
3072
3073
3074 /* Move all inactive buffers out of the GTT. */
Eric Anholt673a3942008-07-30 12:06:12 -07003075 ret = i915_gem_evict_from_list(dev, &dev_priv->mm.inactive_list);
Eric Anholt28dfe522008-11-13 15:00:55 -08003076 WARN_ON(!list_empty(&dev_priv->mm.inactive_list));
Keith Packard6dbe2772008-10-14 21:41:13 -07003077 if (ret) {
3078 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003079 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003080 }
Eric Anholt673a3942008-07-30 12:06:12 -07003081
Keith Packard6dbe2772008-10-14 21:41:13 -07003082 i915_gem_cleanup_ringbuffer(dev);
3083 mutex_unlock(&dev->struct_mutex);
3084
Eric Anholt673a3942008-07-30 12:06:12 -07003085 return 0;
3086}
3087
3088static int
3089i915_gem_init_hws(struct drm_device *dev)
3090{
3091 drm_i915_private_t *dev_priv = dev->dev_private;
3092 struct drm_gem_object *obj;
3093 struct drm_i915_gem_object *obj_priv;
3094 int ret;
3095
3096 /* If we need a physical address for the status page, it's already
3097 * initialized at driver load time.
3098 */
3099 if (!I915_NEED_GFX_HWS(dev))
3100 return 0;
3101
3102 obj = drm_gem_object_alloc(dev, 4096);
3103 if (obj == NULL) {
3104 DRM_ERROR("Failed to allocate status page\n");
3105 return -ENOMEM;
3106 }
3107 obj_priv = obj->driver_private;
Keith Packardba1eb1d2008-10-14 19:55:10 -07003108 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
Eric Anholt673a3942008-07-30 12:06:12 -07003109
3110 ret = i915_gem_object_pin(obj, 4096);
3111 if (ret != 0) {
3112 drm_gem_object_unreference(obj);
3113 return ret;
3114 }
3115
3116 dev_priv->status_gfx_addr = obj_priv->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003117
Keith Packardba1eb1d2008-10-14 19:55:10 -07003118 dev_priv->hw_status_page = kmap(obj_priv->page_list[0]);
3119 if (dev_priv->hw_status_page == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07003120 DRM_ERROR("Failed to map status page.\n");
3121 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
Chris Wilson3eb2ee72009-02-11 14:26:34 +00003122 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003123 drm_gem_object_unreference(obj);
3124 return -EINVAL;
3125 }
3126 dev_priv->hws_obj = obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003127 memset(dev_priv->hw_status_page, 0, PAGE_SIZE);
3128 I915_WRITE(HWS_PGA, dev_priv->status_gfx_addr);
Keith Packardba1eb1d2008-10-14 19:55:10 -07003129 I915_READ(HWS_PGA); /* posting read */
Eric Anholt673a3942008-07-30 12:06:12 -07003130 DRM_DEBUG("hws offset: 0x%08x\n", dev_priv->status_gfx_addr);
3131
3132 return 0;
3133}
3134
Chris Wilson85a7bb92009-02-11 14:52:44 +00003135static void
3136i915_gem_cleanup_hws(struct drm_device *dev)
3137{
3138 drm_i915_private_t *dev_priv = dev->dev_private;
3139 struct drm_gem_object *obj = dev_priv->hws_obj;
3140 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3141
3142 if (dev_priv->hws_obj == NULL)
3143 return;
3144
3145 kunmap(obj_priv->page_list[0]);
3146 i915_gem_object_unpin(obj);
3147 drm_gem_object_unreference(obj);
3148 dev_priv->hws_obj = NULL;
3149 memset(&dev_priv->hws_map, 0, sizeof(dev_priv->hws_map));
3150 dev_priv->hw_status_page = NULL;
3151
3152 /* Write high address into HWS_PGA when disabling. */
3153 I915_WRITE(HWS_PGA, 0x1ffff000);
3154}
3155
Jesse Barnes79e53942008-11-07 14:24:08 -08003156int
Eric Anholt673a3942008-07-30 12:06:12 -07003157i915_gem_init_ringbuffer(struct drm_device *dev)
3158{
3159 drm_i915_private_t *dev_priv = dev->dev_private;
3160 struct drm_gem_object *obj;
3161 struct drm_i915_gem_object *obj_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -08003162 drm_i915_ring_buffer_t *ring = &dev_priv->ring;
Eric Anholt673a3942008-07-30 12:06:12 -07003163 int ret;
Keith Packard50aa253d2008-10-14 17:20:35 -07003164 u32 head;
Eric Anholt673a3942008-07-30 12:06:12 -07003165
3166 ret = i915_gem_init_hws(dev);
3167 if (ret != 0)
3168 return ret;
3169
3170 obj = drm_gem_object_alloc(dev, 128 * 1024);
3171 if (obj == NULL) {
3172 DRM_ERROR("Failed to allocate ringbuffer\n");
Chris Wilson85a7bb92009-02-11 14:52:44 +00003173 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003174 return -ENOMEM;
3175 }
3176 obj_priv = obj->driver_private;
3177
3178 ret = i915_gem_object_pin(obj, 4096);
3179 if (ret != 0) {
3180 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00003181 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003182 return ret;
3183 }
3184
3185 /* Set up the kernel mapping for the ring. */
Jesse Barnes79e53942008-11-07 14:24:08 -08003186 ring->Size = obj->size;
3187 ring->tail_mask = obj->size - 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003188
Jesse Barnes79e53942008-11-07 14:24:08 -08003189 ring->map.offset = dev->agp->base + obj_priv->gtt_offset;
3190 ring->map.size = obj->size;
3191 ring->map.type = 0;
3192 ring->map.flags = 0;
3193 ring->map.mtrr = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003194
Jesse Barnes79e53942008-11-07 14:24:08 -08003195 drm_core_ioremap_wc(&ring->map, dev);
3196 if (ring->map.handle == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07003197 DRM_ERROR("Failed to map ringbuffer.\n");
3198 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
Chris Wilson47ed1852009-02-11 14:26:33 +00003199 i915_gem_object_unpin(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003200 drm_gem_object_unreference(obj);
Chris Wilson85a7bb92009-02-11 14:52:44 +00003201 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003202 return -EINVAL;
3203 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003204 ring->ring_obj = obj;
3205 ring->virtual_start = ring->map.handle;
Eric Anholt673a3942008-07-30 12:06:12 -07003206
3207 /* Stop the ring if it's running. */
3208 I915_WRITE(PRB0_CTL, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003209 I915_WRITE(PRB0_TAIL, 0);
Keith Packard50aa253d2008-10-14 17:20:35 -07003210 I915_WRITE(PRB0_HEAD, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003211
3212 /* Initialize the ring. */
3213 I915_WRITE(PRB0_START, obj_priv->gtt_offset);
Keith Packard50aa253d2008-10-14 17:20:35 -07003214 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
3215
3216 /* G45 ring initialization fails to reset head to zero */
3217 if (head != 0) {
3218 DRM_ERROR("Ring head not reset to zero "
3219 "ctl %08x head %08x tail %08x start %08x\n",
3220 I915_READ(PRB0_CTL),
3221 I915_READ(PRB0_HEAD),
3222 I915_READ(PRB0_TAIL),
3223 I915_READ(PRB0_START));
3224 I915_WRITE(PRB0_HEAD, 0);
3225
3226 DRM_ERROR("Ring head forced to zero "
3227 "ctl %08x head %08x tail %08x start %08x\n",
3228 I915_READ(PRB0_CTL),
3229 I915_READ(PRB0_HEAD),
3230 I915_READ(PRB0_TAIL),
3231 I915_READ(PRB0_START));
3232 }
3233
Eric Anholt673a3942008-07-30 12:06:12 -07003234 I915_WRITE(PRB0_CTL,
3235 ((obj->size - 4096) & RING_NR_PAGES) |
3236 RING_NO_REPORT |
3237 RING_VALID);
3238
Keith Packard50aa253d2008-10-14 17:20:35 -07003239 head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
3240
3241 /* If the head is still not zero, the ring is dead */
3242 if (head != 0) {
3243 DRM_ERROR("Ring initialization failed "
3244 "ctl %08x head %08x tail %08x start %08x\n",
3245 I915_READ(PRB0_CTL),
3246 I915_READ(PRB0_HEAD),
3247 I915_READ(PRB0_TAIL),
3248 I915_READ(PRB0_START));
3249 return -EIO;
3250 }
3251
Eric Anholt673a3942008-07-30 12:06:12 -07003252 /* Update our cache of the ring state */
Jesse Barnes79e53942008-11-07 14:24:08 -08003253 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3254 i915_kernel_lost_context(dev);
3255 else {
3256 ring->head = I915_READ(PRB0_HEAD) & HEAD_ADDR;
3257 ring->tail = I915_READ(PRB0_TAIL) & TAIL_ADDR;
3258 ring->space = ring->head - (ring->tail + 8);
3259 if (ring->space < 0)
3260 ring->space += ring->Size;
3261 }
Eric Anholt673a3942008-07-30 12:06:12 -07003262
3263 return 0;
3264}
3265
Jesse Barnes79e53942008-11-07 14:24:08 -08003266void
Eric Anholt673a3942008-07-30 12:06:12 -07003267i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3268{
3269 drm_i915_private_t *dev_priv = dev->dev_private;
3270
3271 if (dev_priv->ring.ring_obj == NULL)
3272 return;
3273
3274 drm_core_ioremapfree(&dev_priv->ring.map, dev);
3275
3276 i915_gem_object_unpin(dev_priv->ring.ring_obj);
3277 drm_gem_object_unreference(dev_priv->ring.ring_obj);
3278 dev_priv->ring.ring_obj = NULL;
3279 memset(&dev_priv->ring, 0, sizeof(dev_priv->ring));
3280
Chris Wilson85a7bb92009-02-11 14:52:44 +00003281 i915_gem_cleanup_hws(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003282}
3283
3284int
3285i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3286 struct drm_file *file_priv)
3287{
3288 drm_i915_private_t *dev_priv = dev->dev_private;
3289 int ret;
3290
Jesse Barnes79e53942008-11-07 14:24:08 -08003291 if (drm_core_check_feature(dev, DRIVER_MODESET))
3292 return 0;
3293
Eric Anholt673a3942008-07-30 12:06:12 -07003294 if (dev_priv->mm.wedged) {
3295 DRM_ERROR("Reenabling wedged hardware, good luck\n");
3296 dev_priv->mm.wedged = 0;
3297 }
3298
Eric Anholt673a3942008-07-30 12:06:12 -07003299 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003300 dev_priv->mm.suspended = 0;
3301
3302 ret = i915_gem_init_ringbuffer(dev);
3303 if (ret != 0)
3304 return ret;
3305
Eric Anholt673a3942008-07-30 12:06:12 -07003306 BUG_ON(!list_empty(&dev_priv->mm.active_list));
3307 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3308 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
3309 BUG_ON(!list_empty(&dev_priv->mm.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003310 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003311
3312 drm_irq_install(dev);
3313
Eric Anholt673a3942008-07-30 12:06:12 -07003314 return 0;
3315}
3316
3317int
3318i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3319 struct drm_file *file_priv)
3320{
3321 int ret;
3322
Jesse Barnes79e53942008-11-07 14:24:08 -08003323 if (drm_core_check_feature(dev, DRIVER_MODESET))
3324 return 0;
3325
Eric Anholt673a3942008-07-30 12:06:12 -07003326 ret = i915_gem_idle(dev);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003327 drm_irq_uninstall(dev);
3328
Keith Packard6dbe2772008-10-14 21:41:13 -07003329 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003330}
3331
3332void
3333i915_gem_lastclose(struct drm_device *dev)
3334{
3335 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003336
Eric Anholte806b492009-01-22 09:56:58 -08003337 if (drm_core_check_feature(dev, DRIVER_MODESET))
3338 return;
3339
Keith Packard6dbe2772008-10-14 21:41:13 -07003340 ret = i915_gem_idle(dev);
3341 if (ret)
3342 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003343}
3344
3345void
3346i915_gem_load(struct drm_device *dev)
3347{
3348 drm_i915_private_t *dev_priv = dev->dev_private;
3349
3350 INIT_LIST_HEAD(&dev_priv->mm.active_list);
3351 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3352 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
3353 INIT_LIST_HEAD(&dev_priv->mm.request_list);
3354 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3355 i915_gem_retire_work_handler);
Eric Anholt673a3942008-07-30 12:06:12 -07003356 dev_priv->mm.next_gem_seqno = 1;
3357
Jesse Barnesde151cf2008-11-12 10:03:55 -08003358 /* Old X drivers will take 0-2 for front, back, depth buffers */
3359 dev_priv->fence_reg_start = 3;
3360
Jesse Barnes0f973f22009-01-26 17:10:45 -08003361 if (IS_I965G(dev) || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003362 dev_priv->num_fence_regs = 16;
3363 else
3364 dev_priv->num_fence_regs = 8;
3365
Eric Anholt673a3942008-07-30 12:06:12 -07003366 i915_gem_detect_bit_6_swizzle(dev);
3367}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003368
3369/*
3370 * Create a physically contiguous memory object for this object
3371 * e.g. for cursor + overlay regs
3372 */
3373int i915_gem_init_phys_object(struct drm_device *dev,
3374 int id, int size)
3375{
3376 drm_i915_private_t *dev_priv = dev->dev_private;
3377 struct drm_i915_gem_phys_object *phys_obj;
3378 int ret;
3379
3380 if (dev_priv->mm.phys_objs[id - 1] || !size)
3381 return 0;
3382
3383 phys_obj = drm_calloc(1, sizeof(struct drm_i915_gem_phys_object), DRM_MEM_DRIVER);
3384 if (!phys_obj)
3385 return -ENOMEM;
3386
3387 phys_obj->id = id;
3388
3389 phys_obj->handle = drm_pci_alloc(dev, size, 0, 0xffffffff);
3390 if (!phys_obj->handle) {
3391 ret = -ENOMEM;
3392 goto kfree_obj;
3393 }
3394#ifdef CONFIG_X86
3395 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3396#endif
3397
3398 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3399
3400 return 0;
3401kfree_obj:
3402 drm_free(phys_obj, sizeof(struct drm_i915_gem_phys_object), DRM_MEM_DRIVER);
3403 return ret;
3404}
3405
3406void i915_gem_free_phys_object(struct drm_device *dev, int id)
3407{
3408 drm_i915_private_t *dev_priv = dev->dev_private;
3409 struct drm_i915_gem_phys_object *phys_obj;
3410
3411 if (!dev_priv->mm.phys_objs[id - 1])
3412 return;
3413
3414 phys_obj = dev_priv->mm.phys_objs[id - 1];
3415 if (phys_obj->cur_obj) {
3416 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3417 }
3418
3419#ifdef CONFIG_X86
3420 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3421#endif
3422 drm_pci_free(dev, phys_obj->handle);
3423 kfree(phys_obj);
3424 dev_priv->mm.phys_objs[id - 1] = NULL;
3425}
3426
3427void i915_gem_free_all_phys_object(struct drm_device *dev)
3428{
3429 int i;
3430
Dave Airlie260883c2009-01-22 17:58:49 +10003431 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003432 i915_gem_free_phys_object(dev, i);
3433}
3434
3435void i915_gem_detach_phys_object(struct drm_device *dev,
3436 struct drm_gem_object *obj)
3437{
3438 struct drm_i915_gem_object *obj_priv;
3439 int i;
3440 int ret;
3441 int page_count;
3442
3443 obj_priv = obj->driver_private;
3444 if (!obj_priv->phys_obj)
3445 return;
3446
3447 ret = i915_gem_object_get_page_list(obj);
3448 if (ret)
3449 goto out;
3450
3451 page_count = obj->size / PAGE_SIZE;
3452
3453 for (i = 0; i < page_count; i++) {
3454 char *dst = kmap_atomic(obj_priv->page_list[i], KM_USER0);
3455 char *src = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
3456
3457 memcpy(dst, src, PAGE_SIZE);
3458 kunmap_atomic(dst, KM_USER0);
3459 }
3460 drm_clflush_pages(obj_priv->page_list, page_count);
3461 drm_agp_chipset_flush(dev);
3462out:
3463 obj_priv->phys_obj->cur_obj = NULL;
3464 obj_priv->phys_obj = NULL;
3465}
3466
3467int
3468i915_gem_attach_phys_object(struct drm_device *dev,
3469 struct drm_gem_object *obj, int id)
3470{
3471 drm_i915_private_t *dev_priv = dev->dev_private;
3472 struct drm_i915_gem_object *obj_priv;
3473 int ret = 0;
3474 int page_count;
3475 int i;
3476
3477 if (id > I915_MAX_PHYS_OBJECT)
3478 return -EINVAL;
3479
3480 obj_priv = obj->driver_private;
3481
3482 if (obj_priv->phys_obj) {
3483 if (obj_priv->phys_obj->id == id)
3484 return 0;
3485 i915_gem_detach_phys_object(dev, obj);
3486 }
3487
3488
3489 /* create a new object */
3490 if (!dev_priv->mm.phys_objs[id - 1]) {
3491 ret = i915_gem_init_phys_object(dev, id,
3492 obj->size);
3493 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08003494 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003495 goto out;
3496 }
3497 }
3498
3499 /* bind to the object */
3500 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
3501 obj_priv->phys_obj->cur_obj = obj;
3502
3503 ret = i915_gem_object_get_page_list(obj);
3504 if (ret) {
3505 DRM_ERROR("failed to get page list\n");
3506 goto out;
3507 }
3508
3509 page_count = obj->size / PAGE_SIZE;
3510
3511 for (i = 0; i < page_count; i++) {
3512 char *src = kmap_atomic(obj_priv->page_list[i], KM_USER0);
3513 char *dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
3514
3515 memcpy(dst, src, PAGE_SIZE);
3516 kunmap_atomic(src, KM_USER0);
3517 }
3518
3519 return 0;
3520out:
3521 return ret;
3522}
3523
3524static int
3525i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
3526 struct drm_i915_gem_pwrite *args,
3527 struct drm_file *file_priv)
3528{
3529 struct drm_i915_gem_object *obj_priv = obj->driver_private;
3530 void *obj_addr;
3531 int ret;
3532 char __user *user_data;
3533
3534 user_data = (char __user *) (uintptr_t) args->data_ptr;
3535 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
3536
3537 DRM_ERROR("obj_addr %p, %lld\n", obj_addr, args->size);
3538 ret = copy_from_user(obj_addr, user_data, args->size);
3539 if (ret)
3540 return -EFAULT;
3541
3542 drm_agp_chipset_flush(dev);
3543 return 0;
3544}