blob: c964dfbdb57777b857fcbf64a41b544be2feea92 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070036#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson88241782011-01-07 17:09:48 +000039static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000040static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
41static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000042static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
43 unsigned alignment,
44 bool map_and_fenceable);
Chris Wilsond9e86c02010-11-10 16:40:20 +000045static void i915_gem_clear_fence_reg(struct drm_device *dev,
46 struct drm_i915_fence_reg *reg);
Chris Wilson05394f32010-11-08 19:18:58 +000047static int i915_gem_phys_pwrite(struct drm_device *dev,
48 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100049 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000050 struct drm_file *file);
51static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070052
Chris Wilson17250b72010-10-28 12:51:39 +010053static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070054 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010055static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010056
Chris Wilson73aa8082010-09-30 11:46:12 +010057/* some bookkeeping */
58static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
59 size_t size)
60{
61 dev_priv->mm.object_count++;
62 dev_priv->mm.object_memory += size;
63}
64
65static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
66 size_t size)
67{
68 dev_priv->mm.object_count--;
69 dev_priv->mm.object_memory -= size;
70}
71
Chris Wilson21dd3732011-01-26 15:55:56 +000072static int
73i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010074{
75 struct drm_i915_private *dev_priv = dev->dev_private;
76 struct completion *x = &dev_priv->error_completion;
77 unsigned long flags;
78 int ret;
79
80 if (!atomic_read(&dev_priv->mm.wedged))
81 return 0;
82
83 ret = wait_for_completion_interruptible(x);
84 if (ret)
85 return ret;
86
Chris Wilson21dd3732011-01-26 15:55:56 +000087 if (atomic_read(&dev_priv->mm.wedged)) {
88 /* GPU is hung, bump the completion count to account for
89 * the token we just consumed so that we never hit zero and
90 * end up waiting upon a subsequent completion event that
91 * will never happen.
92 */
93 spin_lock_irqsave(&x->wait.lock, flags);
94 x->done++;
95 spin_unlock_irqrestore(&x->wait.lock, flags);
96 }
97 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +010098}
99
Chris Wilson54cf91d2010-11-25 18:00:26 +0000100int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100101{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100102 int ret;
103
Chris Wilson21dd3732011-01-26 15:55:56 +0000104 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100105 if (ret)
106 return ret;
107
108 ret = mutex_lock_interruptible(&dev->struct_mutex);
109 if (ret)
110 return ret;
111
Chris Wilson23bc5982010-09-29 16:10:57 +0100112 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100113 return 0;
114}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100115
Chris Wilson7d1c4802010-08-07 21:45:03 +0100116static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000117i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100118{
Chris Wilson05394f32010-11-08 19:18:58 +0000119 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100120}
121
Eric Anholt673a3942008-07-30 12:06:12 -0700122int
123i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000124 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700125{
Eric Anholt673a3942008-07-30 12:06:12 -0700126 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000127
128 if (args->gtt_start >= args->gtt_end ||
129 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
130 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700131
132 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200133 i915_gem_init_global_gtt(dev, args->gtt_start,
134 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700135 mutex_unlock(&dev->struct_mutex);
136
Chris Wilson20217462010-11-23 15:26:33 +0000137 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700138}
139
Eric Anholt5a125c32008-10-22 21:40:13 -0700140int
141i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000142 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700143{
Chris Wilson73aa8082010-09-30 11:46:12 +0100144 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700145 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000146 struct drm_i915_gem_object *obj;
147 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700148
149 if (!(dev->driver->driver_features & DRIVER_GEM))
150 return -ENODEV;
151
Chris Wilson6299f992010-11-24 12:23:44 +0000152 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100153 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000154 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
155 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100156 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700157
Chris Wilson6299f992010-11-24 12:23:44 +0000158 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400159 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000160
Eric Anholt5a125c32008-10-22 21:40:13 -0700161 return 0;
162}
163
Dave Airlieff72145b2011-02-07 12:16:14 +1000164static int
165i915_gem_create(struct drm_file *file,
166 struct drm_device *dev,
167 uint64_t size,
168 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700169{
Chris Wilson05394f32010-11-08 19:18:58 +0000170 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300171 int ret;
172 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700173
Dave Airlieff72145b2011-02-07 12:16:14 +1000174 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200175 if (size == 0)
176 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700177
178 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000179 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700180 if (obj == NULL)
181 return -ENOMEM;
182
Chris Wilson05394f32010-11-08 19:18:58 +0000183 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100184 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000185 drm_gem_object_release(&obj->base);
186 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100187 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700188 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100189 }
190
Chris Wilson202f2fe2010-10-14 13:20:40 +0100191 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000192 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100193 trace_i915_gem_object_create(obj);
194
Dave Airlieff72145b2011-02-07 12:16:14 +1000195 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700196 return 0;
197}
198
Dave Airlieff72145b2011-02-07 12:16:14 +1000199int
200i915_gem_dumb_create(struct drm_file *file,
201 struct drm_device *dev,
202 struct drm_mode_create_dumb *args)
203{
204 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000205 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000206 args->size = args->pitch * args->height;
207 return i915_gem_create(file, dev,
208 args->size, &args->handle);
209}
210
211int i915_gem_dumb_destroy(struct drm_file *file,
212 struct drm_device *dev,
213 uint32_t handle)
214{
215 return drm_gem_handle_delete(file, handle);
216}
217
218/**
219 * Creates a new mm object and returns a handle to it.
220 */
221int
222i915_gem_create_ioctl(struct drm_device *dev, void *data,
223 struct drm_file *file)
224{
225 struct drm_i915_gem_create *args = data;
226 return i915_gem_create(file, dev,
227 args->size, &args->handle);
228}
229
Chris Wilson05394f32010-11-08 19:18:58 +0000230static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700231{
Chris Wilson05394f32010-11-08 19:18:58 +0000232 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700233
234 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000235 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700236}
237
Daniel Vetter8c599672011-12-14 13:57:31 +0100238static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100239__copy_to_user_swizzled(char __user *cpu_vaddr,
240 const char *gpu_vaddr, int gpu_offset,
241 int length)
242{
243 int ret, cpu_offset = 0;
244
245 while (length > 0) {
246 int cacheline_end = ALIGN(gpu_offset + 1, 64);
247 int this_length = min(cacheline_end - gpu_offset, length);
248 int swizzled_gpu_offset = gpu_offset ^ 64;
249
250 ret = __copy_to_user(cpu_vaddr + cpu_offset,
251 gpu_vaddr + swizzled_gpu_offset,
252 this_length);
253 if (ret)
254 return ret + length;
255
256 cpu_offset += this_length;
257 gpu_offset += this_length;
258 length -= this_length;
259 }
260
261 return 0;
262}
263
264static inline int
Daniel Vetter8c599672011-12-14 13:57:31 +0100265__copy_from_user_swizzled(char __user *gpu_vaddr, int gpu_offset,
266 const char *cpu_vaddr,
267 int length)
268{
269 int ret, cpu_offset = 0;
270
271 while (length > 0) {
272 int cacheline_end = ALIGN(gpu_offset + 1, 64);
273 int this_length = min(cacheline_end - gpu_offset, length);
274 int swizzled_gpu_offset = gpu_offset ^ 64;
275
276 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
277 cpu_vaddr + cpu_offset,
278 this_length);
279 if (ret)
280 return ret + length;
281
282 cpu_offset += this_length;
283 gpu_offset += this_length;
284 length -= this_length;
285 }
286
287 return 0;
288}
289
Daniel Vetterd174bd62012-03-25 19:47:40 +0200290/* Per-page copy function for the shmem pread fastpath.
291 * Flushes invalid cachelines before reading the target if
292 * needs_clflush is set. */
293static int
294shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
295 char __user *user_data,
296 bool page_do_bit17_swizzling, bool needs_clflush)
297{
298 char *vaddr;
299 int ret;
300
301 if (page_do_bit17_swizzling)
302 return -EINVAL;
303
304 vaddr = kmap_atomic(page);
305 if (needs_clflush)
306 drm_clflush_virt_range(vaddr + shmem_page_offset,
307 page_length);
308 ret = __copy_to_user_inatomic(user_data,
309 vaddr + shmem_page_offset,
310 page_length);
311 kunmap_atomic(vaddr);
312
313 return ret;
314}
315
Daniel Vetter23c18c72012-03-25 19:47:42 +0200316static void
317shmem_clflush_swizzled_range(char *addr, unsigned long length,
318 bool swizzled)
319{
320 if (swizzled) {
321 unsigned long start = (unsigned long) addr;
322 unsigned long end = (unsigned long) addr + length;
323
324 /* For swizzling simply ensure that we always flush both
325 * channels. Lame, but simple and it works. Swizzled
326 * pwrite/pread is far from a hotpath - current userspace
327 * doesn't use it at all. */
328 start = round_down(start, 128);
329 end = round_up(end, 128);
330
331 drm_clflush_virt_range((void *)start, end - start);
332 } else {
333 drm_clflush_virt_range(addr, length);
334 }
335
336}
337
Daniel Vetterd174bd62012-03-25 19:47:40 +0200338/* Only difference to the fast-path function is that this can handle bit17
339 * and uses non-atomic copy and kmap functions. */
340static int
341shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
342 char __user *user_data,
343 bool page_do_bit17_swizzling, bool needs_clflush)
344{
345 char *vaddr;
346 int ret;
347
348 vaddr = kmap(page);
349 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200350 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
351 page_length,
352 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200353
354 if (page_do_bit17_swizzling)
355 ret = __copy_to_user_swizzled(user_data,
356 vaddr, shmem_page_offset,
357 page_length);
358 else
359 ret = __copy_to_user(user_data,
360 vaddr + shmem_page_offset,
361 page_length);
362 kunmap(page);
363
364 return ret;
365}
366
Eric Anholteb014592009-03-10 11:44:52 -0700367static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200368i915_gem_shmem_pread(struct drm_device *dev,
369 struct drm_i915_gem_object *obj,
370 struct drm_i915_gem_pread *args,
371 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700372{
Chris Wilson05394f32010-11-08 19:18:58 +0000373 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100374 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700375 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100376 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100377 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100378 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200379 int hit_slowpath = 0;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200380 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200381 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200382 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700383
Daniel Vetter8461d222011-12-14 13:57:32 +0100384 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700385 remain = args->size;
386
Daniel Vetter8461d222011-12-14 13:57:32 +0100387 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700388
Daniel Vetter84897312012-03-25 19:47:31 +0200389 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
390 /* If we're not in the cpu read domain, set ourself into the gtt
391 * read domain and manually flush cachelines (if required). This
392 * optimizes for the case when the gpu will dirty the data
393 * anyway again before the next pread happens. */
394 if (obj->cache_level == I915_CACHE_NONE)
395 needs_clflush = 1;
396 ret = i915_gem_object_set_to_gtt_domain(obj, false);
397 if (ret)
398 return ret;
399 }
400
Eric Anholteb014592009-03-10 11:44:52 -0700401 offset = args->offset;
402
403 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100404 struct page *page;
405
Eric Anholteb014592009-03-10 11:44:52 -0700406 /* Operation in this page
407 *
Eric Anholteb014592009-03-10 11:44:52 -0700408 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700409 * page_length = bytes to copy for this page
410 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100411 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700412 page_length = remain;
413 if ((shmem_page_offset + page_length) > PAGE_SIZE)
414 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700415
Daniel Vetter692a5762012-03-25 19:47:34 +0200416 if (obj->pages) {
417 page = obj->pages[offset >> PAGE_SHIFT];
418 release_page = 0;
419 } else {
420 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
421 if (IS_ERR(page)) {
422 ret = PTR_ERR(page);
423 goto out;
424 }
425 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000426 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100427
Daniel Vetter8461d222011-12-14 13:57:32 +0100428 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
429 (page_to_phys(page) & (1 << 17)) != 0;
430
Daniel Vetterd174bd62012-03-25 19:47:40 +0200431 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
432 user_data, page_do_bit17_swizzling,
433 needs_clflush);
434 if (ret == 0)
435 goto next_page;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200436
437 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200438 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200439 mutex_unlock(&dev->struct_mutex);
440
Daniel Vetter96d79b52012-03-25 19:47:36 +0200441 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200442 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200443 /* Userspace is tricking us, but we've already clobbered
444 * its pages with the prefault and promised to write the
445 * data up to the first fault. Hence ignore any errors
446 * and just continue. */
447 (void)ret;
448 prefaulted = 1;
449 }
450
Daniel Vetterd174bd62012-03-25 19:47:40 +0200451 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
452 user_data, page_do_bit17_swizzling,
453 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700454
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200455 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200456 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200457next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100458 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200459 if (release_page)
460 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100461
Daniel Vetter8461d222011-12-14 13:57:32 +0100462 if (ret) {
463 ret = -EFAULT;
464 goto out;
465 }
466
Eric Anholteb014592009-03-10 11:44:52 -0700467 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100468 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700469 offset += page_length;
470 }
471
Chris Wilson4f27b752010-10-14 15:26:45 +0100472out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200473 if (hit_slowpath) {
474 /* Fixup: Kill any reinstated backing storage pages */
475 if (obj->madv == __I915_MADV_PURGED)
476 i915_gem_object_truncate(obj);
477 }
Eric Anholteb014592009-03-10 11:44:52 -0700478
479 return ret;
480}
481
Eric Anholt673a3942008-07-30 12:06:12 -0700482/**
483 * Reads data from the object referenced by handle.
484 *
485 * On error, the contents of *data are undefined.
486 */
487int
488i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000489 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700490{
491 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000492 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100493 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700494
Chris Wilson51311d02010-11-17 09:10:42 +0000495 if (args->size == 0)
496 return 0;
497
498 if (!access_ok(VERIFY_WRITE,
499 (char __user *)(uintptr_t)args->data_ptr,
500 args->size))
501 return -EFAULT;
502
Chris Wilson4f27b752010-10-14 15:26:45 +0100503 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100504 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100505 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700506
Chris Wilson05394f32010-11-08 19:18:58 +0000507 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000508 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100509 ret = -ENOENT;
510 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100511 }
Eric Anholt673a3942008-07-30 12:06:12 -0700512
Chris Wilson7dcd2492010-09-26 20:21:44 +0100513 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000514 if (args->offset > obj->base.size ||
515 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100516 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100517 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100518 }
519
Chris Wilsondb53a302011-02-03 11:57:46 +0000520 trace_i915_gem_object_pread(obj, args->offset, args->size);
521
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200522 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700523
Chris Wilson35b62a82010-09-26 20:23:38 +0100524out:
Chris Wilson05394f32010-11-08 19:18:58 +0000525 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100526unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100527 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700528 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700529}
530
Keith Packard0839ccb2008-10-30 19:38:48 -0700531/* This is the fast write path which cannot handle
532 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700533 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700534
Keith Packard0839ccb2008-10-30 19:38:48 -0700535static inline int
536fast_user_write(struct io_mapping *mapping,
537 loff_t page_base, int page_offset,
538 char __user *user_data,
539 int length)
540{
541 char *vaddr_atomic;
542 unsigned long unwritten;
543
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700544 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700545 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
546 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700547 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100548 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700549}
550
Eric Anholt3de09aa2009-03-09 09:42:23 -0700551/**
552 * This is the fast pwrite path, where we copy the data directly from the
553 * user into the GTT, uncached.
554 */
Eric Anholt673a3942008-07-30 12:06:12 -0700555static int
Chris Wilson05394f32010-11-08 19:18:58 +0000556i915_gem_gtt_pwrite_fast(struct drm_device *dev,
557 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700558 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000559 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700560{
Keith Packard0839ccb2008-10-30 19:38:48 -0700561 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700562 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700563 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700564 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200565 int page_offset, page_length, ret;
566
567 ret = i915_gem_object_pin(obj, 0, true);
568 if (ret)
569 goto out;
570
571 ret = i915_gem_object_set_to_gtt_domain(obj, true);
572 if (ret)
573 goto out_unpin;
574
575 ret = i915_gem_object_put_fence(obj);
576 if (ret)
577 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700578
579 user_data = (char __user *) (uintptr_t) args->data_ptr;
580 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700581
Chris Wilson05394f32010-11-08 19:18:58 +0000582 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700583
584 while (remain > 0) {
585 /* Operation in this page
586 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700587 * page_base = page offset within aperture
588 * page_offset = offset within page
589 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700590 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100591 page_base = offset & PAGE_MASK;
592 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700593 page_length = remain;
594 if ((page_offset + remain) > PAGE_SIZE)
595 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700596
Keith Packard0839ccb2008-10-30 19:38:48 -0700597 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700598 * source page isn't available. Return the error and we'll
599 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700600 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100601 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200602 page_offset, user_data, page_length)) {
603 ret = -EFAULT;
604 goto out_unpin;
605 }
Eric Anholt673a3942008-07-30 12:06:12 -0700606
Keith Packard0839ccb2008-10-30 19:38:48 -0700607 remain -= page_length;
608 user_data += page_length;
609 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700610 }
Eric Anholt673a3942008-07-30 12:06:12 -0700611
Daniel Vetter935aaa62012-03-25 19:47:35 +0200612out_unpin:
613 i915_gem_object_unpin(obj);
614out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700615 return ret;
616}
617
Daniel Vetterd174bd62012-03-25 19:47:40 +0200618/* Per-page copy function for the shmem pwrite fastpath.
619 * Flushes invalid cachelines before writing to the target if
620 * needs_clflush_before is set and flushes out any written cachelines after
621 * writing if needs_clflush is set. */
622static int
623shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
624 char __user *user_data,
625 bool page_do_bit17_swizzling,
626 bool needs_clflush_before,
627 bool needs_clflush_after)
628{
629 char *vaddr;
630 int ret;
631
632 if (page_do_bit17_swizzling)
633 return -EINVAL;
634
635 vaddr = kmap_atomic(page);
636 if (needs_clflush_before)
637 drm_clflush_virt_range(vaddr + shmem_page_offset,
638 page_length);
639 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
640 user_data,
641 page_length);
642 if (needs_clflush_after)
643 drm_clflush_virt_range(vaddr + shmem_page_offset,
644 page_length);
645 kunmap_atomic(vaddr);
646
647 return ret;
648}
649
650/* Only difference to the fast-path function is that this can handle bit17
651 * and uses non-atomic copy and kmap functions. */
652static int
653shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
654 char __user *user_data,
655 bool page_do_bit17_swizzling,
656 bool needs_clflush_before,
657 bool needs_clflush_after)
658{
659 char *vaddr;
660 int ret;
661
662 vaddr = kmap(page);
Daniel Vetter23c18c72012-03-25 19:47:42 +0200663 if (needs_clflush_before || page_do_bit17_swizzling)
664 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
665 page_length,
666 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200667 if (page_do_bit17_swizzling)
668 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
669 user_data,
670 page_length);
671 else
672 ret = __copy_from_user(vaddr + shmem_page_offset,
673 user_data,
674 page_length);
675 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200676 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
677 page_length,
678 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200679 kunmap(page);
680
681 return ret;
682}
683
Eric Anholt3043c602008-10-02 12:24:47 -0700684static int
Daniel Vettere244a442012-03-25 19:47:28 +0200685i915_gem_shmem_pwrite(struct drm_device *dev,
686 struct drm_i915_gem_object *obj,
687 struct drm_i915_gem_pwrite *args,
688 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700689{
Chris Wilson05394f32010-11-08 19:18:58 +0000690 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700691 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100692 loff_t offset;
693 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100694 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100695 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200696 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200697 int needs_clflush_after = 0;
698 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200699 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700700
Daniel Vetter8c599672011-12-14 13:57:31 +0100701 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700702 remain = args->size;
703
Daniel Vetter8c599672011-12-14 13:57:31 +0100704 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700705
Daniel Vetter58642882012-03-25 19:47:37 +0200706 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
707 /* If we're not in the cpu write domain, set ourself into the gtt
708 * write domain and manually flush cachelines (if required). This
709 * optimizes for the case when the gpu will use the data
710 * right away and we therefore have to clflush anyway. */
711 if (obj->cache_level == I915_CACHE_NONE)
712 needs_clflush_after = 1;
713 ret = i915_gem_object_set_to_gtt_domain(obj, true);
714 if (ret)
715 return ret;
716 }
717 /* Same trick applies for invalidate partially written cachelines before
718 * writing. */
719 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
720 && obj->cache_level == I915_CACHE_NONE)
721 needs_clflush_before = 1;
722
Eric Anholt40123c12009-03-09 13:42:30 -0700723 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000724 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700725
726 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100727 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200728 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100729
Eric Anholt40123c12009-03-09 13:42:30 -0700730 /* Operation in this page
731 *
Eric Anholt40123c12009-03-09 13:42:30 -0700732 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700733 * page_length = bytes to copy for this page
734 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100735 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700736
737 page_length = remain;
738 if ((shmem_page_offset + page_length) > PAGE_SIZE)
739 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700740
Daniel Vetter58642882012-03-25 19:47:37 +0200741 /* If we don't overwrite a cacheline completely we need to be
742 * careful to have up-to-date data by first clflushing. Don't
743 * overcomplicate things and flush the entire patch. */
744 partial_cacheline_write = needs_clflush_before &&
745 ((shmem_page_offset | page_length)
746 & (boot_cpu_data.x86_clflush_size - 1));
747
Daniel Vetter692a5762012-03-25 19:47:34 +0200748 if (obj->pages) {
749 page = obj->pages[offset >> PAGE_SHIFT];
750 release_page = 0;
751 } else {
752 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
753 if (IS_ERR(page)) {
754 ret = PTR_ERR(page);
755 goto out;
756 }
757 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100758 }
759
Daniel Vetter8c599672011-12-14 13:57:31 +0100760 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
761 (page_to_phys(page) & (1 << 17)) != 0;
762
Daniel Vetterd174bd62012-03-25 19:47:40 +0200763 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
764 user_data, page_do_bit17_swizzling,
765 partial_cacheline_write,
766 needs_clflush_after);
767 if (ret == 0)
768 goto next_page;
Daniel Vettere244a442012-03-25 19:47:28 +0200769
770 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200771 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200772 mutex_unlock(&dev->struct_mutex);
773
Daniel Vetterd174bd62012-03-25 19:47:40 +0200774 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
775 user_data, page_do_bit17_swizzling,
776 partial_cacheline_write,
777 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700778
Daniel Vettere244a442012-03-25 19:47:28 +0200779 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200780 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200781next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100782 set_page_dirty(page);
783 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200784 if (release_page)
785 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100786
Daniel Vetter8c599672011-12-14 13:57:31 +0100787 if (ret) {
788 ret = -EFAULT;
789 goto out;
790 }
791
Eric Anholt40123c12009-03-09 13:42:30 -0700792 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100793 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700794 offset += page_length;
795 }
796
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100797out:
Daniel Vettere244a442012-03-25 19:47:28 +0200798 if (hit_slowpath) {
799 /* Fixup: Kill any reinstated backing storage pages */
800 if (obj->madv == __I915_MADV_PURGED)
801 i915_gem_object_truncate(obj);
802 /* and flush dirty cachelines in case the object isn't in the cpu write
803 * domain anymore. */
804 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
805 i915_gem_clflush_object(obj);
806 intel_gtt_chipset_flush();
807 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100808 }
Eric Anholt40123c12009-03-09 13:42:30 -0700809
Daniel Vetter58642882012-03-25 19:47:37 +0200810 if (needs_clflush_after)
811 intel_gtt_chipset_flush();
812
Eric Anholt40123c12009-03-09 13:42:30 -0700813 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700814}
815
816/**
817 * Writes data to the object referenced by handle.
818 *
819 * On error, the contents of the buffer that were to be modified are undefined.
820 */
821int
822i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100823 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700824{
825 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000826 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000827 int ret;
828
829 if (args->size == 0)
830 return 0;
831
832 if (!access_ok(VERIFY_READ,
833 (char __user *)(uintptr_t)args->data_ptr,
834 args->size))
835 return -EFAULT;
836
Daniel Vetterf56f8212012-03-25 19:47:41 +0200837 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
838 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000839 if (ret)
840 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700841
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100842 ret = i915_mutex_lock_interruptible(dev);
843 if (ret)
844 return ret;
845
Chris Wilson05394f32010-11-08 19:18:58 +0000846 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000847 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100848 ret = -ENOENT;
849 goto unlock;
850 }
Eric Anholt673a3942008-07-30 12:06:12 -0700851
Chris Wilson7dcd2492010-09-26 20:21:44 +0100852 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000853 if (args->offset > obj->base.size ||
854 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100855 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100856 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100857 }
858
Chris Wilsondb53a302011-02-03 11:57:46 +0000859 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
860
Daniel Vetter935aaa62012-03-25 19:47:35 +0200861 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700862 /* We can only do the GTT pwrite on untiled buffers, as otherwise
863 * it would end up going through the fenced access, and we'll get
864 * different detiling behavior between reading and writing.
865 * pread/pwrite currently are reading and writing from the CPU
866 * perspective, requiring manual detiling by the client.
867 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100868 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100869 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100870 goto out;
871 }
872
873 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200874 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200875 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100876 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100877 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200878 /* Note that the gtt paths might fail with non-page-backed user
879 * pointers (e.g. gtt mappings when moving data between
880 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700881 }
Eric Anholt673a3942008-07-30 12:06:12 -0700882
Daniel Vetter935aaa62012-03-25 19:47:35 +0200883 if (ret == -EFAULT)
884 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100885
Chris Wilson35b62a82010-09-26 20:23:38 +0100886out:
Chris Wilson05394f32010-11-08 19:18:58 +0000887 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100888unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100889 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700890 return ret;
891}
892
893/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800894 * Called when user space prepares to use an object with the CPU, either
895 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700896 */
897int
898i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000899 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700900{
901 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000902 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800903 uint32_t read_domains = args->read_domains;
904 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700905 int ret;
906
907 if (!(dev->driver->driver_features & DRIVER_GEM))
908 return -ENODEV;
909
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800910 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100911 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800912 return -EINVAL;
913
Chris Wilson21d509e2009-06-06 09:46:02 +0100914 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800915 return -EINVAL;
916
917 /* Having something in the write domain implies it's in the read
918 * domain, and only that read domain. Enforce that in the request.
919 */
920 if (write_domain != 0 && read_domains != write_domain)
921 return -EINVAL;
922
Chris Wilson76c1dec2010-09-25 11:22:51 +0100923 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100924 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100925 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700926
Chris Wilson05394f32010-11-08 19:18:58 +0000927 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000928 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100929 ret = -ENOENT;
930 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100931 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700932
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800933 if (read_domains & I915_GEM_DOMAIN_GTT) {
934 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800935
936 /* Silently promote "you're not bound, there was nothing to do"
937 * to success, since the client was just asking us to
938 * make sure everything was done.
939 */
940 if (ret == -EINVAL)
941 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800942 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800943 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800944 }
945
Chris Wilson05394f32010-11-08 19:18:58 +0000946 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100947unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700948 mutex_unlock(&dev->struct_mutex);
949 return ret;
950}
951
952/**
953 * Called when user space has done writes to this buffer
954 */
955int
956i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000957 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700958{
959 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000960 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700961 int ret = 0;
962
963 if (!(dev->driver->driver_features & DRIVER_GEM))
964 return -ENODEV;
965
Chris Wilson76c1dec2010-09-25 11:22:51 +0100966 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100967 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100968 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100969
Chris Wilson05394f32010-11-08 19:18:58 +0000970 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000971 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100972 ret = -ENOENT;
973 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700974 }
975
Eric Anholt673a3942008-07-30 12:06:12 -0700976 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000977 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800978 i915_gem_object_flush_cpu_write_domain(obj);
979
Chris Wilson05394f32010-11-08 19:18:58 +0000980 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100981unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700982 mutex_unlock(&dev->struct_mutex);
983 return ret;
984}
985
986/**
987 * Maps the contents of an object, returning the address it is mapped
988 * into.
989 *
990 * While the mapping holds a reference on the contents of the object, it doesn't
991 * imply a ref on the object itself.
992 */
993int
994i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000995 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700996{
997 struct drm_i915_gem_mmap *args = data;
998 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700999 unsigned long addr;
1000
1001 if (!(dev->driver->driver_features & DRIVER_GEM))
1002 return -ENODEV;
1003
Chris Wilson05394f32010-11-08 19:18:58 +00001004 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001005 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001006 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001007
Eric Anholt673a3942008-07-30 12:06:12 -07001008 down_write(&current->mm->mmap_sem);
1009 addr = do_mmap(obj->filp, 0, args->size,
1010 PROT_READ | PROT_WRITE, MAP_SHARED,
1011 args->offset);
1012 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001013 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001014 if (IS_ERR((void *)addr))
1015 return addr;
1016
1017 args->addr_ptr = (uint64_t) addr;
1018
1019 return 0;
1020}
1021
Jesse Barnesde151cf2008-11-12 10:03:55 -08001022/**
1023 * i915_gem_fault - fault a page into the GTT
1024 * vma: VMA in question
1025 * vmf: fault info
1026 *
1027 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1028 * from userspace. The fault handler takes care of binding the object to
1029 * the GTT (if needed), allocating and programming a fence register (again,
1030 * only if needed based on whether the old reg is still valid or the object
1031 * is tiled) and inserting a new PTE into the faulting process.
1032 *
1033 * Note that the faulting process may involve evicting existing objects
1034 * from the GTT and/or fence registers to make room. So performance may
1035 * suffer if the GTT working set is large or there are few fence registers
1036 * left.
1037 */
1038int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1039{
Chris Wilson05394f32010-11-08 19:18:58 +00001040 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1041 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001042 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001043 pgoff_t page_offset;
1044 unsigned long pfn;
1045 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001046 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001047
1048 /* We don't use vmf->pgoff since that has the fake offset */
1049 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1050 PAGE_SHIFT;
1051
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001052 ret = i915_mutex_lock_interruptible(dev);
1053 if (ret)
1054 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001055
Chris Wilsondb53a302011-02-03 11:57:46 +00001056 trace_i915_gem_object_fault(obj, page_offset, true, write);
1057
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001058 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001059 if (!obj->map_and_fenceable) {
1060 ret = i915_gem_object_unbind(obj);
1061 if (ret)
1062 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001063 }
Chris Wilson05394f32010-11-08 19:18:58 +00001064 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001065 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001066 if (ret)
1067 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001068
Eric Anholte92d03b2011-06-14 16:43:09 -07001069 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1070 if (ret)
1071 goto unlock;
1072 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001073
Daniel Vetter74898d72012-02-15 23:50:22 +01001074 if (!obj->has_global_gtt_mapping)
1075 i915_gem_gtt_bind_object(obj, obj->cache_level);
1076
Chris Wilsond9e86c02010-11-10 16:40:20 +00001077 if (obj->tiling_mode == I915_TILING_NONE)
1078 ret = i915_gem_object_put_fence(obj);
1079 else
Chris Wilsonce453d82011-02-21 14:43:56 +00001080 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001081 if (ret)
1082 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001083
Chris Wilson05394f32010-11-08 19:18:58 +00001084 if (i915_gem_object_is_inactive(obj))
1085 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001086
Chris Wilson6299f992010-11-24 12:23:44 +00001087 obj->fault_mappable = true;
1088
Chris Wilson05394f32010-11-08 19:18:58 +00001089 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001090 page_offset;
1091
1092 /* Finally, remap it using the new GTT offset */
1093 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001094unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001095 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001096out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001097 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001098 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001099 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001100 /* Give the error handler a chance to run and move the
1101 * objects off the GPU active list. Next time we service the
1102 * fault, we should be able to transition the page into the
1103 * GTT without touching the GPU (and so avoid further
1104 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1105 * with coherency, just lost writes.
1106 */
Chris Wilson045e7692010-11-07 09:18:22 +00001107 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001108 case 0:
1109 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001110 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001111 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001112 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001113 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001114 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001115 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001116 }
1117}
1118
1119/**
Chris Wilson901782b2009-07-10 08:18:50 +01001120 * i915_gem_release_mmap - remove physical page mappings
1121 * @obj: obj in question
1122 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001123 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001124 * relinquish ownership of the pages back to the system.
1125 *
1126 * It is vital that we remove the page mapping if we have mapped a tiled
1127 * object through the GTT and then lose the fence register due to
1128 * resource pressure. Similarly if the object has been moved out of the
1129 * aperture, than pages mapped into userspace must be revoked. Removing the
1130 * mapping will then trigger a page fault on the next user access, allowing
1131 * fixup by i915_gem_fault().
1132 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001133void
Chris Wilson05394f32010-11-08 19:18:58 +00001134i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001135{
Chris Wilson6299f992010-11-24 12:23:44 +00001136 if (!obj->fault_mappable)
1137 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001138
Chris Wilsonf6e47882011-03-20 21:09:12 +00001139 if (obj->base.dev->dev_mapping)
1140 unmap_mapping_range(obj->base.dev->dev_mapping,
1141 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1142 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001143
Chris Wilson6299f992010-11-24 12:23:44 +00001144 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001145}
1146
Chris Wilson92b88ae2010-11-09 11:47:32 +00001147static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001148i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001149{
Chris Wilsone28f8712011-07-18 13:11:49 -07001150 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001151
1152 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001153 tiling_mode == I915_TILING_NONE)
1154 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001155
1156 /* Previous chips need a power-of-two fence region when tiling */
1157 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001158 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001159 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001160 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001161
Chris Wilsone28f8712011-07-18 13:11:49 -07001162 while (gtt_size < size)
1163 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001164
Chris Wilsone28f8712011-07-18 13:11:49 -07001165 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001166}
1167
Jesse Barnesde151cf2008-11-12 10:03:55 -08001168/**
1169 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1170 * @obj: object to check
1171 *
1172 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001173 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001174 */
1175static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001176i915_gem_get_gtt_alignment(struct drm_device *dev,
1177 uint32_t size,
1178 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001179{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001180 /*
1181 * Minimum alignment is 4k (GTT page size), but might be greater
1182 * if a fence register is needed for the object.
1183 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001184 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001185 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001186 return 4096;
1187
1188 /*
1189 * Previous chips need to be aligned to the size of the smallest
1190 * fence register that can contain the object.
1191 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001192 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001193}
1194
Daniel Vetter5e783302010-11-14 22:32:36 +01001195/**
1196 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1197 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001198 * @dev: the device
1199 * @size: size of the object
1200 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001201 *
1202 * Return the required GTT alignment for an object, only taking into account
1203 * unfenced tiled surface requirements.
1204 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001205uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001206i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1207 uint32_t size,
1208 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001209{
Daniel Vetter5e783302010-11-14 22:32:36 +01001210 /*
1211 * Minimum alignment is 4k (GTT page size) for sane hw.
1212 */
1213 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001214 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001215 return 4096;
1216
Chris Wilsone28f8712011-07-18 13:11:49 -07001217 /* Previous hardware however needs to be aligned to a power-of-two
1218 * tile height. The simplest method for determining this is to reuse
1219 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001220 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001221 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001222}
1223
Jesse Barnesde151cf2008-11-12 10:03:55 -08001224int
Dave Airlieff72145b2011-02-07 12:16:14 +10001225i915_gem_mmap_gtt(struct drm_file *file,
1226 struct drm_device *dev,
1227 uint32_t handle,
1228 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001229{
Chris Wilsonda761a62010-10-27 17:37:08 +01001230 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001231 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001232 int ret;
1233
1234 if (!(dev->driver->driver_features & DRIVER_GEM))
1235 return -ENODEV;
1236
Chris Wilson76c1dec2010-09-25 11:22:51 +01001237 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001238 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001239 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001240
Dave Airlieff72145b2011-02-07 12:16:14 +10001241 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001242 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001243 ret = -ENOENT;
1244 goto unlock;
1245 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001246
Chris Wilson05394f32010-11-08 19:18:58 +00001247 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001248 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001249 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001250 }
1251
Chris Wilson05394f32010-11-08 19:18:58 +00001252 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001253 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001254 ret = -EINVAL;
1255 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001256 }
1257
Chris Wilson05394f32010-11-08 19:18:58 +00001258 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001259 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001260 if (ret)
1261 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001262 }
1263
Dave Airlieff72145b2011-02-07 12:16:14 +10001264 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001265
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001266out:
Chris Wilson05394f32010-11-08 19:18:58 +00001267 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001268unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001269 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001270 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001271}
1272
Dave Airlieff72145b2011-02-07 12:16:14 +10001273/**
1274 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1275 * @dev: DRM device
1276 * @data: GTT mapping ioctl data
1277 * @file: GEM object info
1278 *
1279 * Simply returns the fake offset to userspace so it can mmap it.
1280 * The mmap call will end up in drm_gem_mmap(), which will set things
1281 * up so we can get faults in the handler above.
1282 *
1283 * The fault handler will take care of binding the object into the GTT
1284 * (since it may have been evicted to make room for something), allocating
1285 * a fence register, and mapping the appropriate aperture address into
1286 * userspace.
1287 */
1288int
1289i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1290 struct drm_file *file)
1291{
1292 struct drm_i915_gem_mmap_gtt *args = data;
1293
1294 if (!(dev->driver->driver_features & DRIVER_GEM))
1295 return -ENODEV;
1296
1297 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1298}
1299
1300
Chris Wilsone5281cc2010-10-28 13:45:36 +01001301static int
Chris Wilson05394f32010-11-08 19:18:58 +00001302i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001303 gfp_t gfpmask)
1304{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001305 int page_count, i;
1306 struct address_space *mapping;
1307 struct inode *inode;
1308 struct page *page;
1309
1310 /* Get the list of pages out of our struct file. They'll be pinned
1311 * at this point until we release them.
1312 */
Chris Wilson05394f32010-11-08 19:18:58 +00001313 page_count = obj->base.size / PAGE_SIZE;
1314 BUG_ON(obj->pages != NULL);
1315 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1316 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001317 return -ENOMEM;
1318
Chris Wilson05394f32010-11-08 19:18:58 +00001319 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001320 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001321 gfpmask |= mapping_gfp_mask(mapping);
1322
Chris Wilsone5281cc2010-10-28 13:45:36 +01001323 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001324 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001325 if (IS_ERR(page))
1326 goto err_pages;
1327
Chris Wilson05394f32010-11-08 19:18:58 +00001328 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001329 }
1330
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001331 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001332 i915_gem_object_do_bit_17_swizzle(obj);
1333
1334 return 0;
1335
1336err_pages:
1337 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001338 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001339
Chris Wilson05394f32010-11-08 19:18:58 +00001340 drm_free_large(obj->pages);
1341 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001342 return PTR_ERR(page);
1343}
1344
Chris Wilson5cdf5882010-09-27 15:51:07 +01001345static void
Chris Wilson05394f32010-11-08 19:18:58 +00001346i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001347{
Chris Wilson05394f32010-11-08 19:18:58 +00001348 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001349 int i;
1350
Chris Wilson05394f32010-11-08 19:18:58 +00001351 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001352
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001353 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001354 i915_gem_object_save_bit_17_swizzle(obj);
1355
Chris Wilson05394f32010-11-08 19:18:58 +00001356 if (obj->madv == I915_MADV_DONTNEED)
1357 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001358
1359 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001360 if (obj->dirty)
1361 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001362
Chris Wilson05394f32010-11-08 19:18:58 +00001363 if (obj->madv == I915_MADV_WILLNEED)
1364 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001365
Chris Wilson05394f32010-11-08 19:18:58 +00001366 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001367 }
Chris Wilson05394f32010-11-08 19:18:58 +00001368 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001369
Chris Wilson05394f32010-11-08 19:18:58 +00001370 drm_free_large(obj->pages);
1371 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001372}
1373
Chris Wilson54cf91d2010-11-25 18:00:26 +00001374void
Chris Wilson05394f32010-11-08 19:18:58 +00001375i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001376 struct intel_ring_buffer *ring,
1377 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001378{
Chris Wilson05394f32010-11-08 19:18:58 +00001379 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001380 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001381
Zou Nan hai852835f2010-05-21 09:08:56 +08001382 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001383 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001384
1385 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001386 if (!obj->active) {
1387 drm_gem_object_reference(&obj->base);
1388 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001389 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001390
Eric Anholt673a3942008-07-30 12:06:12 -07001391 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001392 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1393 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001394
Chris Wilson05394f32010-11-08 19:18:58 +00001395 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001396 if (obj->fenced_gpu_access) {
1397 struct drm_i915_fence_reg *reg;
1398
1399 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1400
1401 obj->last_fenced_seqno = seqno;
1402 obj->last_fenced_ring = ring;
1403
1404 reg = &dev_priv->fence_regs[obj->fence_reg];
1405 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1406 }
1407}
1408
1409static void
1410i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1411{
1412 list_del_init(&obj->ring_list);
1413 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001414}
1415
Eric Anholtce44b0e2008-11-06 16:00:31 -08001416static void
Chris Wilson05394f32010-11-08 19:18:58 +00001417i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001418{
Chris Wilson05394f32010-11-08 19:18:58 +00001419 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001420 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001421
Chris Wilson05394f32010-11-08 19:18:58 +00001422 BUG_ON(!obj->active);
1423 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001424
1425 i915_gem_object_move_off_active(obj);
1426}
1427
1428static void
1429i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1430{
1431 struct drm_device *dev = obj->base.dev;
1432 struct drm_i915_private *dev_priv = dev->dev_private;
1433
1434 if (obj->pin_count != 0)
1435 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1436 else
1437 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1438
1439 BUG_ON(!list_empty(&obj->gpu_write_list));
1440 BUG_ON(!obj->active);
1441 obj->ring = NULL;
1442
1443 i915_gem_object_move_off_active(obj);
1444 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001445
1446 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001447 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001448 drm_gem_object_unreference(&obj->base);
1449
1450 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001451}
Eric Anholt673a3942008-07-30 12:06:12 -07001452
Chris Wilson963b4832009-09-20 23:03:54 +01001453/* Immediately discard the backing storage */
1454static void
Chris Wilson05394f32010-11-08 19:18:58 +00001455i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001456{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001457 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001458
Chris Wilsonae9fed62010-08-07 11:01:30 +01001459 /* Our goal here is to return as much of the memory as
1460 * is possible back to the system as we are called from OOM.
1461 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001462 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001463 */
Chris Wilson05394f32010-11-08 19:18:58 +00001464 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001465 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001466
Chris Wilsona14917e2012-02-24 21:13:38 +00001467 if (obj->base.map_list.map)
1468 drm_gem_free_mmap_offset(&obj->base);
1469
Chris Wilson05394f32010-11-08 19:18:58 +00001470 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001471}
1472
1473static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001474i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001475{
Chris Wilson05394f32010-11-08 19:18:58 +00001476 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001477}
1478
Eric Anholt673a3942008-07-30 12:06:12 -07001479static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001480i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1481 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001482{
Chris Wilson05394f32010-11-08 19:18:58 +00001483 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001484
Chris Wilson05394f32010-11-08 19:18:58 +00001485 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001486 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001487 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001488 if (obj->base.write_domain & flush_domains) {
1489 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001490
Chris Wilson05394f32010-11-08 19:18:58 +00001491 obj->base.write_domain = 0;
1492 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001493 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001494 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001495
Daniel Vetter63560392010-02-19 11:51:59 +01001496 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001497 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001498 old_write_domain);
1499 }
1500 }
1501}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001502
Daniel Vetter53d227f2012-01-25 16:32:49 +01001503static u32
1504i915_gem_get_seqno(struct drm_device *dev)
1505{
1506 drm_i915_private_t *dev_priv = dev->dev_private;
1507 u32 seqno = dev_priv->next_seqno;
1508
1509 /* reserve 0 for non-seqno */
1510 if (++dev_priv->next_seqno == 0)
1511 dev_priv->next_seqno = 1;
1512
1513 return seqno;
1514}
1515
1516u32
1517i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1518{
1519 if (ring->outstanding_lazy_request == 0)
1520 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1521
1522 return ring->outstanding_lazy_request;
1523}
1524
Chris Wilson3cce4692010-10-27 16:11:02 +01001525int
Chris Wilsondb53a302011-02-03 11:57:46 +00001526i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001527 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001528 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001529{
Chris Wilsondb53a302011-02-03 11:57:46 +00001530 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001531 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001532 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001533 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001534 int ret;
1535
1536 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001537 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001538
Chris Wilsona71d8d92012-02-15 11:25:36 +00001539 /* Record the position of the start of the request so that
1540 * should we detect the updated seqno part-way through the
1541 * GPU processing the request, we never over-estimate the
1542 * position of the head.
1543 */
1544 request_ring_position = intel_ring_get_tail(ring);
1545
Chris Wilson3cce4692010-10-27 16:11:02 +01001546 ret = ring->add_request(ring, &seqno);
1547 if (ret)
1548 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001549
Chris Wilsondb53a302011-02-03 11:57:46 +00001550 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001551
1552 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001553 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001554 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001555 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001556 was_empty = list_empty(&ring->request_list);
1557 list_add_tail(&request->list, &ring->request_list);
1558
Chris Wilsondb53a302011-02-03 11:57:46 +00001559 if (file) {
1560 struct drm_i915_file_private *file_priv = file->driver_priv;
1561
Chris Wilson1c255952010-09-26 11:03:27 +01001562 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001563 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001564 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001565 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001566 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001567 }
Eric Anholt673a3942008-07-30 12:06:12 -07001568
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001569 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001570
Ben Gamarif65d9422009-09-14 17:48:44 -04001571 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001572 if (i915_enable_hangcheck) {
1573 mod_timer(&dev_priv->hangcheck_timer,
1574 jiffies +
1575 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1576 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001577 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001578 queue_delayed_work(dev_priv->wq,
1579 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001580 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001581 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001582}
1583
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001584static inline void
1585i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001586{
Chris Wilson1c255952010-09-26 11:03:27 +01001587 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001588
Chris Wilson1c255952010-09-26 11:03:27 +01001589 if (!file_priv)
1590 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001591
Chris Wilson1c255952010-09-26 11:03:27 +01001592 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001593 if (request->file_priv) {
1594 list_del(&request->client_list);
1595 request->file_priv = NULL;
1596 }
Chris Wilson1c255952010-09-26 11:03:27 +01001597 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001598}
1599
Chris Wilsondfaae392010-09-22 10:31:52 +01001600static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1601 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001602{
Chris Wilsondfaae392010-09-22 10:31:52 +01001603 while (!list_empty(&ring->request_list)) {
1604 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001605
Chris Wilsondfaae392010-09-22 10:31:52 +01001606 request = list_first_entry(&ring->request_list,
1607 struct drm_i915_gem_request,
1608 list);
1609
1610 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001611 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001612 kfree(request);
1613 }
1614
1615 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001616 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001617
Chris Wilson05394f32010-11-08 19:18:58 +00001618 obj = list_first_entry(&ring->active_list,
1619 struct drm_i915_gem_object,
1620 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001621
Chris Wilson05394f32010-11-08 19:18:58 +00001622 obj->base.write_domain = 0;
1623 list_del_init(&obj->gpu_write_list);
1624 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001625 }
Eric Anholt673a3942008-07-30 12:06:12 -07001626}
1627
Chris Wilson312817a2010-11-22 11:50:11 +00001628static void i915_gem_reset_fences(struct drm_device *dev)
1629{
1630 struct drm_i915_private *dev_priv = dev->dev_private;
1631 int i;
1632
Daniel Vetter4b9de732011-10-09 21:52:02 +02001633 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001634 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001635 struct drm_i915_gem_object *obj = reg->obj;
1636
1637 if (!obj)
1638 continue;
1639
1640 if (obj->tiling_mode)
1641 i915_gem_release_mmap(obj);
1642
Chris Wilsond9e86c02010-11-10 16:40:20 +00001643 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1644 reg->obj->fenced_gpu_access = false;
1645 reg->obj->last_fenced_seqno = 0;
1646 reg->obj->last_fenced_ring = NULL;
1647 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001648 }
1649}
1650
Chris Wilson069efc12010-09-30 16:53:18 +01001651void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001652{
Chris Wilsondfaae392010-09-22 10:31:52 +01001653 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001654 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001655 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001656
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001657 for (i = 0; i < I915_NUM_RINGS; i++)
1658 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001659
1660 /* Remove anything from the flushing lists. The GPU cache is likely
1661 * to be lost on reset along with the data, so simply move the
1662 * lost bo to the inactive list.
1663 */
1664 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001665 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001666 struct drm_i915_gem_object,
1667 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001668
Chris Wilson05394f32010-11-08 19:18:58 +00001669 obj->base.write_domain = 0;
1670 list_del_init(&obj->gpu_write_list);
1671 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001672 }
Chris Wilson9375e442010-09-19 12:21:28 +01001673
Chris Wilsondfaae392010-09-22 10:31:52 +01001674 /* Move everything out of the GPU domains to ensure we do any
1675 * necessary invalidation upon reuse.
1676 */
Chris Wilson05394f32010-11-08 19:18:58 +00001677 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001678 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001679 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001680 {
Chris Wilson05394f32010-11-08 19:18:58 +00001681 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001682 }
Chris Wilson069efc12010-09-30 16:53:18 +01001683
1684 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001685 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001686}
1687
1688/**
1689 * This function clears the request list as sequence numbers are passed.
1690 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001691void
Chris Wilsondb53a302011-02-03 11:57:46 +00001692i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001693{
Eric Anholt673a3942008-07-30 12:06:12 -07001694 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001695 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001696
Chris Wilsondb53a302011-02-03 11:57:46 +00001697 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001698 return;
1699
Chris Wilsondb53a302011-02-03 11:57:46 +00001700 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001701
Chris Wilson78501ea2010-10-27 12:18:21 +01001702 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001703
Chris Wilson076e2c02011-01-21 10:07:18 +00001704 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001705 if (seqno >= ring->sync_seqno[i])
1706 ring->sync_seqno[i] = 0;
1707
Zou Nan hai852835f2010-05-21 09:08:56 +08001708 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001709 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001710
Zou Nan hai852835f2010-05-21 09:08:56 +08001711 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001712 struct drm_i915_gem_request,
1713 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001714
Chris Wilsondfaae392010-09-22 10:31:52 +01001715 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001716 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001717
Chris Wilsondb53a302011-02-03 11:57:46 +00001718 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001719 /* We know the GPU must have read the request to have
1720 * sent us the seqno + interrupt, so use the position
1721 * of tail of the request to update the last known position
1722 * of the GPU head.
1723 */
1724 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001725
1726 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001727 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001728 kfree(request);
1729 }
1730
1731 /* Move any buffers on the active list that are no longer referenced
1732 * by the ringbuffer to the flushing/inactive lists as appropriate.
1733 */
1734 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001735 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001736
Akshay Joshi0206e352011-08-16 15:34:10 -04001737 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001738 struct drm_i915_gem_object,
1739 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001740
Chris Wilson05394f32010-11-08 19:18:58 +00001741 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001742 break;
1743
Chris Wilson05394f32010-11-08 19:18:58 +00001744 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001745 i915_gem_object_move_to_flushing(obj);
1746 else
1747 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001748 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001749
Chris Wilsondb53a302011-02-03 11:57:46 +00001750 if (unlikely(ring->trace_irq_seqno &&
1751 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001752 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001753 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001754 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001755
Chris Wilsondb53a302011-02-03 11:57:46 +00001756 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001757}
1758
1759void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001760i915_gem_retire_requests(struct drm_device *dev)
1761{
1762 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001763 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001764
Chris Wilsonbe726152010-07-23 23:18:50 +01001765 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001766 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001767
1768 /* We must be careful that during unbind() we do not
1769 * accidentally infinitely recurse into retire requests.
1770 * Currently:
1771 * retire -> free -> unbind -> wait -> retire_ring
1772 */
Chris Wilson05394f32010-11-08 19:18:58 +00001773 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001774 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001775 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001776 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001777 }
1778
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001779 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001780 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001781}
1782
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001783static void
Eric Anholt673a3942008-07-30 12:06:12 -07001784i915_gem_retire_work_handler(struct work_struct *work)
1785{
1786 drm_i915_private_t *dev_priv;
1787 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001788 bool idle;
1789 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001790
1791 dev_priv = container_of(work, drm_i915_private_t,
1792 mm.retire_work.work);
1793 dev = dev_priv->dev;
1794
Chris Wilson891b48c2010-09-29 12:26:37 +01001795 /* Come back later if the device is busy... */
1796 if (!mutex_trylock(&dev->struct_mutex)) {
1797 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1798 return;
1799 }
1800
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001801 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001802
Chris Wilson0a587052011-01-09 21:05:44 +00001803 /* Send a periodic flush down the ring so we don't hold onto GEM
1804 * objects indefinitely.
1805 */
1806 idle = true;
1807 for (i = 0; i < I915_NUM_RINGS; i++) {
1808 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1809
1810 if (!list_empty(&ring->gpu_write_list)) {
1811 struct drm_i915_gem_request *request;
1812 int ret;
1813
Chris Wilsondb53a302011-02-03 11:57:46 +00001814 ret = i915_gem_flush_ring(ring,
1815 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001816 request = kzalloc(sizeof(*request), GFP_KERNEL);
1817 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001818 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001819 kfree(request);
1820 }
1821
1822 idle &= list_empty(&ring->request_list);
1823 }
1824
1825 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001826 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001827
Eric Anholt673a3942008-07-30 12:06:12 -07001828 mutex_unlock(&dev->struct_mutex);
1829}
1830
Chris Wilsondb53a302011-02-03 11:57:46 +00001831/**
1832 * Waits for a sequence number to be signaled, and cleans up the
1833 * request and object lists appropriately for that event.
1834 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001835int
Chris Wilsondb53a302011-02-03 11:57:46 +00001836i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001837 uint32_t seqno,
1838 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001839{
Chris Wilsondb53a302011-02-03 11:57:46 +00001840 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001841 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001842 int ret = 0;
1843
1844 BUG_ON(seqno == 0);
1845
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001846 if (atomic_read(&dev_priv->mm.wedged)) {
1847 struct completion *x = &dev_priv->error_completion;
1848 bool recovery_complete;
1849 unsigned long flags;
1850
1851 /* Give the error handler a chance to run. */
1852 spin_lock_irqsave(&x->wait.lock, flags);
1853 recovery_complete = x->done > 0;
1854 spin_unlock_irqrestore(&x->wait.lock, flags);
1855
1856 return recovery_complete ? -EIO : -EAGAIN;
1857 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001858
Chris Wilson5d97eb62010-11-10 20:40:02 +00001859 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001860 struct drm_i915_gem_request *request;
1861
1862 request = kzalloc(sizeof(*request), GFP_KERNEL);
1863 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001864 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001865
Chris Wilsondb53a302011-02-03 11:57:46 +00001866 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001867 if (ret) {
1868 kfree(request);
1869 return ret;
1870 }
1871
1872 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001873 }
1874
Chris Wilson78501ea2010-10-27 12:18:21 +01001875 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001876 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001877 ier = I915_READ(DEIER) | I915_READ(GTIER);
1878 else
1879 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001880 if (!ier) {
1881 DRM_ERROR("something (likely vbetool) disabled "
1882 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001883 ring->dev->driver->irq_preinstall(ring->dev);
1884 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001885 }
1886
Chris Wilsondb53a302011-02-03 11:57:46 +00001887 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001888
Chris Wilsonb2223492010-10-27 15:27:33 +01001889 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001890 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001891 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001892 ret = wait_event_interruptible(ring->irq_queue,
1893 i915_seqno_passed(ring->get_seqno(ring), seqno)
1894 || atomic_read(&dev_priv->mm.wedged));
1895 else
1896 wait_event(ring->irq_queue,
1897 i915_seqno_passed(ring->get_seqno(ring), seqno)
1898 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001899
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001900 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001901 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1902 seqno) ||
1903 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001904 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001905 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001906
Chris Wilsondb53a302011-02-03 11:57:46 +00001907 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001908 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001909 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001910 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001911
Eric Anholt673a3942008-07-30 12:06:12 -07001912 /* Directly dispatch request retiring. While we have the work queue
1913 * to handle this, the waiter on a request often wants an associated
1914 * buffer to have made it to the inactive list, and we would need
1915 * a separate wait queue to handle that.
1916 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001917 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001918 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001919
1920 return ret;
1921}
1922
Daniel Vetter48764bf2009-09-15 22:57:32 +02001923/**
Eric Anholt673a3942008-07-30 12:06:12 -07001924 * Ensures that all rendering to the object has completed and the object is
1925 * safe to unbind from the GTT or access from the CPU.
1926 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001927int
Chris Wilsonce453d82011-02-21 14:43:56 +00001928i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001929{
Eric Anholt673a3942008-07-30 12:06:12 -07001930 int ret;
1931
Eric Anholte47c68e2008-11-14 13:35:19 -08001932 /* This function only exists to support waiting for existing rendering,
1933 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001934 */
Chris Wilson05394f32010-11-08 19:18:58 +00001935 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001936
1937 /* If there is rendering queued on the buffer being evicted, wait for
1938 * it.
1939 */
Chris Wilson05394f32010-11-08 19:18:58 +00001940 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001941 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1942 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001943 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001944 return ret;
1945 }
1946
1947 return 0;
1948}
1949
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001950static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
1951{
1952 u32 old_write_domain, old_read_domains;
1953
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001954 /* Act a barrier for all accesses through the GTT */
1955 mb();
1956
1957 /* Force a pagefault for domain tracking on next user access */
1958 i915_gem_release_mmap(obj);
1959
Keith Packardb97c3d92011-06-24 21:02:59 -07001960 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
1961 return;
1962
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001963 old_read_domains = obj->base.read_domains;
1964 old_write_domain = obj->base.write_domain;
1965
1966 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
1967 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
1968
1969 trace_i915_gem_object_change_domain(obj,
1970 old_read_domains,
1971 old_write_domain);
1972}
1973
Eric Anholt673a3942008-07-30 12:06:12 -07001974/**
1975 * Unbinds an object from the GTT aperture.
1976 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001977int
Chris Wilson05394f32010-11-08 19:18:58 +00001978i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001979{
Daniel Vetter7bddb012012-02-09 17:15:47 +01001980 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001981 int ret = 0;
1982
Chris Wilson05394f32010-11-08 19:18:58 +00001983 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001984 return 0;
1985
Chris Wilson05394f32010-11-08 19:18:58 +00001986 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07001987 DRM_ERROR("Attempting to unbind pinned buffer\n");
1988 return -EINVAL;
1989 }
1990
Chris Wilsona8198ee2011-04-13 22:04:09 +01001991 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01001992 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07001993 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01001994 /* Continue on if we fail due to EIO, the GPU is hung so we
1995 * should be safe and we need to cleanup or else we might
1996 * cause memory corruption through use-after-free.
1997 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01001998
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001999 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002000
2001 /* Move the object to the CPU domain to ensure that
2002 * any possible CPU writes while it's not in the GTT
2003 * are flushed when we go to remap it.
2004 */
2005 if (ret == 0)
2006 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2007 if (ret == -ERESTARTSYS)
2008 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002009 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002010 /* In the event of a disaster, abandon all caches and
2011 * hope for the best.
2012 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002013 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002014 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002015 }
Eric Anholt673a3942008-07-30 12:06:12 -07002016
Daniel Vetter96b47b62009-12-15 17:50:00 +01002017 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002018 ret = i915_gem_object_put_fence(obj);
2019 if (ret == -ERESTARTSYS)
2020 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002021
Chris Wilsondb53a302011-02-03 11:57:46 +00002022 trace_i915_gem_object_unbind(obj);
2023
Daniel Vetter74898d72012-02-15 23:50:22 +01002024 if (obj->has_global_gtt_mapping)
2025 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002026 if (obj->has_aliasing_ppgtt_mapping) {
2027 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2028 obj->has_aliasing_ppgtt_mapping = 0;
2029 }
Daniel Vetter74163902012-02-15 23:50:21 +01002030 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002031
Chris Wilsone5281cc2010-10-28 13:45:36 +01002032 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002033
Chris Wilson6299f992010-11-24 12:23:44 +00002034 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002035 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002036 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002037 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002038
Chris Wilson05394f32010-11-08 19:18:58 +00002039 drm_mm_put_block(obj->gtt_space);
2040 obj->gtt_space = NULL;
2041 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002042
Chris Wilson05394f32010-11-08 19:18:58 +00002043 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002044 i915_gem_object_truncate(obj);
2045
Chris Wilson8dc17752010-07-23 23:18:51 +01002046 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002047}
2048
Chris Wilson88241782011-01-07 17:09:48 +00002049int
Chris Wilsondb53a302011-02-03 11:57:46 +00002050i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002051 uint32_t invalidate_domains,
2052 uint32_t flush_domains)
2053{
Chris Wilson88241782011-01-07 17:09:48 +00002054 int ret;
2055
Chris Wilson36d527d2011-03-19 22:26:49 +00002056 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2057 return 0;
2058
Chris Wilsondb53a302011-02-03 11:57:46 +00002059 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2060
Chris Wilson88241782011-01-07 17:09:48 +00002061 ret = ring->flush(ring, invalidate_domains, flush_domains);
2062 if (ret)
2063 return ret;
2064
Chris Wilson36d527d2011-03-19 22:26:49 +00002065 if (flush_domains & I915_GEM_GPU_DOMAINS)
2066 i915_gem_process_flushing_list(ring, flush_domains);
2067
Chris Wilson88241782011-01-07 17:09:48 +00002068 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002069}
2070
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002071static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002072{
Chris Wilson88241782011-01-07 17:09:48 +00002073 int ret;
2074
Chris Wilson395b70b2010-10-28 21:28:46 +01002075 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002076 return 0;
2077
Chris Wilson88241782011-01-07 17:09:48 +00002078 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002079 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002080 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002081 if (ret)
2082 return ret;
2083 }
2084
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002085 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2086 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002087}
2088
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002089int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002090{
2091 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002092 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002093
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002094 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002095 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002096 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002097 if (ret)
2098 return ret;
2099 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002100
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002101 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002102}
2103
Daniel Vetterc6642782010-11-12 13:46:18 +00002104static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2105 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002106{
Chris Wilson05394f32010-11-08 19:18:58 +00002107 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002108 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002109 u32 size = obj->gtt_space->size;
2110 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002111 uint64_t val;
2112
Chris Wilson05394f32010-11-08 19:18:58 +00002113 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002114 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002115 val |= obj->gtt_offset & 0xfffff000;
2116 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002117 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2118
Chris Wilson05394f32010-11-08 19:18:58 +00002119 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002120 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2121 val |= I965_FENCE_REG_VALID;
2122
Daniel Vetterc6642782010-11-12 13:46:18 +00002123 if (pipelined) {
2124 int ret = intel_ring_begin(pipelined, 6);
2125 if (ret)
2126 return ret;
2127
2128 intel_ring_emit(pipelined, MI_NOOP);
2129 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2130 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2131 intel_ring_emit(pipelined, (u32)val);
2132 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2133 intel_ring_emit(pipelined, (u32)(val >> 32));
2134 intel_ring_advance(pipelined);
2135 } else
2136 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2137
2138 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002139}
2140
Daniel Vetterc6642782010-11-12 13:46:18 +00002141static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2142 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002143{
Chris Wilson05394f32010-11-08 19:18:58 +00002144 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002145 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002146 u32 size = obj->gtt_space->size;
2147 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002148 uint64_t val;
2149
Chris Wilson05394f32010-11-08 19:18:58 +00002150 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002151 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002152 val |= obj->gtt_offset & 0xfffff000;
2153 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2154 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002155 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2156 val |= I965_FENCE_REG_VALID;
2157
Daniel Vetterc6642782010-11-12 13:46:18 +00002158 if (pipelined) {
2159 int ret = intel_ring_begin(pipelined, 6);
2160 if (ret)
2161 return ret;
2162
2163 intel_ring_emit(pipelined, MI_NOOP);
2164 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2165 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2166 intel_ring_emit(pipelined, (u32)val);
2167 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2168 intel_ring_emit(pipelined, (u32)(val >> 32));
2169 intel_ring_advance(pipelined);
2170 } else
2171 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2172
2173 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002174}
2175
Daniel Vetterc6642782010-11-12 13:46:18 +00002176static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2177 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002178{
Chris Wilson05394f32010-11-08 19:18:58 +00002179 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002180 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002181 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002182 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002183 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002184
Daniel Vetterc6642782010-11-12 13:46:18 +00002185 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2186 (size & -size) != size ||
2187 (obj->gtt_offset & (size - 1)),
2188 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2189 obj->gtt_offset, obj->map_and_fenceable, size))
2190 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002191
Daniel Vetterc6642782010-11-12 13:46:18 +00002192 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002193 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002194 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002195 tile_width = 512;
2196
2197 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002198 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002199 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002200
Chris Wilson05394f32010-11-08 19:18:58 +00002201 val = obj->gtt_offset;
2202 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002203 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002204 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002205 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2206 val |= I830_FENCE_REG_VALID;
2207
Chris Wilson05394f32010-11-08 19:18:58 +00002208 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002209 if (fence_reg < 8)
2210 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002211 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002212 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002213
2214 if (pipelined) {
2215 int ret = intel_ring_begin(pipelined, 4);
2216 if (ret)
2217 return ret;
2218
2219 intel_ring_emit(pipelined, MI_NOOP);
2220 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2221 intel_ring_emit(pipelined, fence_reg);
2222 intel_ring_emit(pipelined, val);
2223 intel_ring_advance(pipelined);
2224 } else
2225 I915_WRITE(fence_reg, val);
2226
2227 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002228}
2229
Daniel Vetterc6642782010-11-12 13:46:18 +00002230static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2231 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002232{
Chris Wilson05394f32010-11-08 19:18:58 +00002233 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002234 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002235 u32 size = obj->gtt_space->size;
2236 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002237 uint32_t val;
2238 uint32_t pitch_val;
2239
Daniel Vetterc6642782010-11-12 13:46:18 +00002240 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2241 (size & -size) != size ||
2242 (obj->gtt_offset & (size - 1)),
2243 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2244 obj->gtt_offset, size))
2245 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002246
Chris Wilson05394f32010-11-08 19:18:58 +00002247 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002248 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002249
Chris Wilson05394f32010-11-08 19:18:58 +00002250 val = obj->gtt_offset;
2251 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002252 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002253 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002254 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2255 val |= I830_FENCE_REG_VALID;
2256
Daniel Vetterc6642782010-11-12 13:46:18 +00002257 if (pipelined) {
2258 int ret = intel_ring_begin(pipelined, 4);
2259 if (ret)
2260 return ret;
2261
2262 intel_ring_emit(pipelined, MI_NOOP);
2263 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2264 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2265 intel_ring_emit(pipelined, val);
2266 intel_ring_advance(pipelined);
2267 } else
2268 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2269
2270 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002271}
2272
Chris Wilsond9e86c02010-11-10 16:40:20 +00002273static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2274{
2275 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2276}
2277
2278static int
2279i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002280 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002281{
2282 int ret;
2283
2284 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002285 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002286 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002287 0, obj->base.write_domain);
2288 if (ret)
2289 return ret;
2290 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002291
2292 obj->fenced_gpu_access = false;
2293 }
2294
2295 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2296 if (!ring_passed_seqno(obj->last_fenced_ring,
2297 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002298 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002299 obj->last_fenced_seqno,
2300 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002301 if (ret)
2302 return ret;
2303 }
2304
2305 obj->last_fenced_seqno = 0;
2306 obj->last_fenced_ring = NULL;
2307 }
2308
Chris Wilson63256ec2011-01-04 18:42:07 +00002309 /* Ensure that all CPU reads are completed before installing a fence
2310 * and all writes before removing the fence.
2311 */
2312 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2313 mb();
2314
Chris Wilsond9e86c02010-11-10 16:40:20 +00002315 return 0;
2316}
2317
2318int
2319i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2320{
2321 int ret;
2322
2323 if (obj->tiling_mode)
2324 i915_gem_release_mmap(obj);
2325
Chris Wilsonce453d82011-02-21 14:43:56 +00002326 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002327 if (ret)
2328 return ret;
2329
2330 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2331 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002332
2333 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002334 i915_gem_clear_fence_reg(obj->base.dev,
2335 &dev_priv->fence_regs[obj->fence_reg]);
2336
2337 obj->fence_reg = I915_FENCE_REG_NONE;
2338 }
2339
2340 return 0;
2341}
2342
2343static struct drm_i915_fence_reg *
2344i915_find_fence_reg(struct drm_device *dev,
2345 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002346{
Daniel Vetterae3db242010-02-19 11:51:58 +01002347 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002348 struct drm_i915_fence_reg *reg, *first, *avail;
2349 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002350
2351 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002352 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002353 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2354 reg = &dev_priv->fence_regs[i];
2355 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002356 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002357
Chris Wilson1690e1e2011-12-14 13:57:08 +01002358 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002359 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002360 }
2361
Chris Wilsond9e86c02010-11-10 16:40:20 +00002362 if (avail == NULL)
2363 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002364
2365 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002366 avail = first = NULL;
2367 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002368 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002369 continue;
2370
Chris Wilsond9e86c02010-11-10 16:40:20 +00002371 if (first == NULL)
2372 first = reg;
2373
2374 if (!pipelined ||
2375 !reg->obj->last_fenced_ring ||
2376 reg->obj->last_fenced_ring == pipelined) {
2377 avail = reg;
2378 break;
2379 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002380 }
2381
Chris Wilsond9e86c02010-11-10 16:40:20 +00002382 if (avail == NULL)
2383 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002384
Chris Wilsona00b10c2010-09-24 21:15:47 +01002385 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002386}
2387
Jesse Barnesde151cf2008-11-12 10:03:55 -08002388/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002389 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002390 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002391 * @pipelined: ring on which to queue the change, or NULL for CPU access
2392 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002393 *
2394 * When mapping objects through the GTT, userspace wants to be able to write
2395 * to them without having to worry about swizzling if the object is tiled.
2396 *
2397 * This function walks the fence regs looking for a free one for @obj,
2398 * stealing one if it can't find any.
2399 *
2400 * It then sets up the reg based on the object's properties: address, pitch
2401 * and tiling format.
2402 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002403int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002404i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002405 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002406{
Chris Wilson05394f32010-11-08 19:18:58 +00002407 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002408 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002409 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002410 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002411
Chris Wilson6bda10d2010-12-05 21:04:18 +00002412 /* XXX disable pipelining. There are bugs. Shocking. */
2413 pipelined = NULL;
2414
Chris Wilsond9e86c02010-11-10 16:40:20 +00002415 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002416 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2417 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002418 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002419
Chris Wilson29c5a582011-03-17 15:23:22 +00002420 if (obj->tiling_changed) {
2421 ret = i915_gem_object_flush_fence(obj, pipelined);
2422 if (ret)
2423 return ret;
2424
2425 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2426 pipelined = NULL;
2427
2428 if (pipelined) {
2429 reg->setup_seqno =
2430 i915_gem_next_request_seqno(pipelined);
2431 obj->last_fenced_seqno = reg->setup_seqno;
2432 obj->last_fenced_ring = pipelined;
2433 }
2434
2435 goto update;
2436 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002437
2438 if (!pipelined) {
2439 if (reg->setup_seqno) {
2440 if (!ring_passed_seqno(obj->last_fenced_ring,
2441 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002442 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002443 reg->setup_seqno,
2444 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002445 if (ret)
2446 return ret;
2447 }
2448
2449 reg->setup_seqno = 0;
2450 }
2451 } else if (obj->last_fenced_ring &&
2452 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002453 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002454 if (ret)
2455 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002456 }
2457
Eric Anholta09ba7f2009-08-29 12:49:51 -07002458 return 0;
2459 }
2460
Chris Wilsond9e86c02010-11-10 16:40:20 +00002461 reg = i915_find_fence_reg(dev, pipelined);
2462 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002463 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002464
Chris Wilsonce453d82011-02-21 14:43:56 +00002465 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002466 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002467 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002468
Chris Wilsond9e86c02010-11-10 16:40:20 +00002469 if (reg->obj) {
2470 struct drm_i915_gem_object *old = reg->obj;
2471
2472 drm_gem_object_reference(&old->base);
2473
2474 if (old->tiling_mode)
2475 i915_gem_release_mmap(old);
2476
Chris Wilsonce453d82011-02-21 14:43:56 +00002477 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002478 if (ret) {
2479 drm_gem_object_unreference(&old->base);
2480 return ret;
2481 }
2482
2483 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2484 pipelined = NULL;
2485
2486 old->fence_reg = I915_FENCE_REG_NONE;
2487 old->last_fenced_ring = pipelined;
2488 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002489 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002490
2491 drm_gem_object_unreference(&old->base);
2492 } else if (obj->last_fenced_seqno == 0)
2493 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002494
Jesse Barnesde151cf2008-11-12 10:03:55 -08002495 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002496 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2497 obj->fence_reg = reg - dev_priv->fence_regs;
2498 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002499
Chris Wilsond9e86c02010-11-10 16:40:20 +00002500 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002501 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002502 obj->last_fenced_seqno = reg->setup_seqno;
2503
2504update:
2505 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002506 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002507 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002508 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002509 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002510 break;
2511 case 5:
2512 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002513 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002514 break;
2515 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002516 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002517 break;
2518 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002519 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002520 break;
2521 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002522
Daniel Vetterc6642782010-11-12 13:46:18 +00002523 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002524}
2525
2526/**
2527 * i915_gem_clear_fence_reg - clear out fence register info
2528 * @obj: object to clear
2529 *
2530 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002531 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002532 */
2533static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002534i915_gem_clear_fence_reg(struct drm_device *dev,
2535 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002536{
Jesse Barnes79e53942008-11-07 14:24:08 -08002537 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002538 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002539
Chris Wilsone259bef2010-09-17 00:32:02 +01002540 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002541 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002542 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002543 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002544 break;
2545 case 5:
2546 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002547 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002548 break;
2549 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002550 if (fence_reg >= 8)
2551 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002552 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002553 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002554 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002555
2556 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002557 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002558 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002559
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002560 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002561 reg->obj = NULL;
2562 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002563 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002564}
2565
2566/**
Eric Anholt673a3942008-07-30 12:06:12 -07002567 * Finds free space in the GTT aperture and binds the object there.
2568 */
2569static int
Chris Wilson05394f32010-11-08 19:18:58 +00002570i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002571 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002572 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002573{
Chris Wilson05394f32010-11-08 19:18:58 +00002574 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002575 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002576 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002577 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002578 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002579 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002580 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002581
Chris Wilson05394f32010-11-08 19:18:58 +00002582 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002583 DRM_ERROR("Attempting to bind a purgeable object\n");
2584 return -EINVAL;
2585 }
2586
Chris Wilsone28f8712011-07-18 13:11:49 -07002587 fence_size = i915_gem_get_gtt_size(dev,
2588 obj->base.size,
2589 obj->tiling_mode);
2590 fence_alignment = i915_gem_get_gtt_alignment(dev,
2591 obj->base.size,
2592 obj->tiling_mode);
2593 unfenced_alignment =
2594 i915_gem_get_unfenced_gtt_alignment(dev,
2595 obj->base.size,
2596 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002597
Eric Anholt673a3942008-07-30 12:06:12 -07002598 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002599 alignment = map_and_fenceable ? fence_alignment :
2600 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002601 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002602 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2603 return -EINVAL;
2604 }
2605
Chris Wilson05394f32010-11-08 19:18:58 +00002606 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002607
Chris Wilson654fc602010-05-27 13:18:21 +01002608 /* If the object is bigger than the entire aperture, reject it early
2609 * before evicting everything in a vain attempt to find space.
2610 */
Chris Wilson05394f32010-11-08 19:18:58 +00002611 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002612 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002613 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2614 return -E2BIG;
2615 }
2616
Eric Anholt673a3942008-07-30 12:06:12 -07002617 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002618 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002619 free_space =
2620 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002621 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002622 dev_priv->mm.gtt_mappable_end,
2623 0);
2624 else
2625 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002626 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002627
2628 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002629 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002630 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002631 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002632 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002633 dev_priv->mm.gtt_mappable_end,
2634 0);
2635 else
Chris Wilson05394f32010-11-08 19:18:58 +00002636 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002637 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002638 }
Chris Wilson05394f32010-11-08 19:18:58 +00002639 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002640 /* If the gtt is empty and we're still having trouble
2641 * fitting our object in, we're out of memory.
2642 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002643 ret = i915_gem_evict_something(dev, size, alignment,
2644 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002645 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002646 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002647
Eric Anholt673a3942008-07-30 12:06:12 -07002648 goto search_free;
2649 }
2650
Chris Wilsone5281cc2010-10-28 13:45:36 +01002651 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002652 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002653 drm_mm_put_block(obj->gtt_space);
2654 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002655
2656 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002657 /* first try to reclaim some memory by clearing the GTT */
2658 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002659 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002660 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002661 if (gfpmask) {
2662 gfpmask = 0;
2663 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002664 }
2665
Chris Wilson809b6332011-01-10 17:33:15 +00002666 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002667 }
2668
2669 goto search_free;
2670 }
2671
Eric Anholt673a3942008-07-30 12:06:12 -07002672 return ret;
2673 }
2674
Daniel Vetter74163902012-02-15 23:50:21 +01002675 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002676 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002677 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002678 drm_mm_put_block(obj->gtt_space);
2679 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002680
Chris Wilson809b6332011-01-10 17:33:15 +00002681 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002682 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002683
2684 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002685 }
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002686
2687 if (!dev_priv->mm.aliasing_ppgtt)
2688 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002689
Chris Wilson6299f992010-11-24 12:23:44 +00002690 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002691 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002692
Eric Anholt673a3942008-07-30 12:06:12 -07002693 /* Assert that the object is not currently in any GPU domain. As it
2694 * wasn't in the GTT, there shouldn't be any way it could have been in
2695 * a GPU cache
2696 */
Chris Wilson05394f32010-11-08 19:18:58 +00002697 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2698 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002699
Chris Wilson6299f992010-11-24 12:23:44 +00002700 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002701
Daniel Vetter75e9e912010-11-04 17:11:09 +01002702 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002703 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002704 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002705
Daniel Vetter75e9e912010-11-04 17:11:09 +01002706 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002707 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002708
Chris Wilson05394f32010-11-08 19:18:58 +00002709 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002710
Chris Wilsondb53a302011-02-03 11:57:46 +00002711 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002712 return 0;
2713}
2714
2715void
Chris Wilson05394f32010-11-08 19:18:58 +00002716i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002717{
Eric Anholt673a3942008-07-30 12:06:12 -07002718 /* If we don't have a page list set up, then we're not pinned
2719 * to GPU, and we can ignore the cache flush because it'll happen
2720 * again at bind time.
2721 */
Chris Wilson05394f32010-11-08 19:18:58 +00002722 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002723 return;
2724
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002725 /* If the GPU is snooping the contents of the CPU cache,
2726 * we do not need to manually clear the CPU cache lines. However,
2727 * the caches are only snooped when the render cache is
2728 * flushed/invalidated. As we always have to emit invalidations
2729 * and flushes when moving into and out of the RENDER domain, correct
2730 * snooping behaviour occurs naturally as the result of our domain
2731 * tracking.
2732 */
2733 if (obj->cache_level != I915_CACHE_NONE)
2734 return;
2735
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002736 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002737
Chris Wilson05394f32010-11-08 19:18:58 +00002738 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002739}
2740
Eric Anholte47c68e2008-11-14 13:35:19 -08002741/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002742static int
Chris Wilson3619df02010-11-28 15:37:17 +00002743i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002744{
Chris Wilson05394f32010-11-08 19:18:58 +00002745 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002746 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002747
2748 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002749 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002750}
2751
2752/** Flushes the GTT write domain for the object if it's dirty. */
2753static void
Chris Wilson05394f32010-11-08 19:18:58 +00002754i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002755{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002756 uint32_t old_write_domain;
2757
Chris Wilson05394f32010-11-08 19:18:58 +00002758 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002759 return;
2760
Chris Wilson63256ec2011-01-04 18:42:07 +00002761 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002762 * to it immediately go to main memory as far as we know, so there's
2763 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002764 *
2765 * However, we do have to enforce the order so that all writes through
2766 * the GTT land before any writes to the device, such as updates to
2767 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002768 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002769 wmb();
2770
Chris Wilson05394f32010-11-08 19:18:58 +00002771 old_write_domain = obj->base.write_domain;
2772 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002773
2774 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002775 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002776 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002777}
2778
2779/** Flushes the CPU write domain for the object if it's dirty. */
2780static void
Chris Wilson05394f32010-11-08 19:18:58 +00002781i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002782{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002783 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002784
Chris Wilson05394f32010-11-08 19:18:58 +00002785 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002786 return;
2787
2788 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002789 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002790 old_write_domain = obj->base.write_domain;
2791 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002792
2793 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002794 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002795 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002796}
2797
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002798/**
2799 * Moves a single object to the GTT read, and possibly write domain.
2800 *
2801 * This function returns when the move is complete, including waiting on
2802 * flushes to occur.
2803 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002804int
Chris Wilson20217462010-11-23 15:26:33 +00002805i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002806{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002807 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002808 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002809
Eric Anholt02354392008-11-26 13:58:13 -08002810 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002811 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002812 return -EINVAL;
2813
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002814 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2815 return 0;
2816
Chris Wilson88241782011-01-07 17:09:48 +00002817 ret = i915_gem_object_flush_gpu_write_domain(obj);
2818 if (ret)
2819 return ret;
2820
Chris Wilson87ca9c82010-12-02 09:42:56 +00002821 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002822 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002823 if (ret)
2824 return ret;
2825 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002826
Chris Wilson72133422010-09-13 23:56:38 +01002827 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002828
Chris Wilson05394f32010-11-08 19:18:58 +00002829 old_write_domain = obj->base.write_domain;
2830 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002831
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002832 /* It should now be out of any other write domains, and we can update
2833 * the domain values for our changes.
2834 */
Chris Wilson05394f32010-11-08 19:18:58 +00002835 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2836 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002837 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002838 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2839 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2840 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002841 }
2842
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002843 trace_i915_gem_object_change_domain(obj,
2844 old_read_domains,
2845 old_write_domain);
2846
Eric Anholte47c68e2008-11-14 13:35:19 -08002847 return 0;
2848}
2849
Chris Wilsone4ffd172011-04-04 09:44:39 +01002850int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2851 enum i915_cache_level cache_level)
2852{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002853 struct drm_device *dev = obj->base.dev;
2854 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002855 int ret;
2856
2857 if (obj->cache_level == cache_level)
2858 return 0;
2859
2860 if (obj->pin_count) {
2861 DRM_DEBUG("can not change the cache level of pinned objects\n");
2862 return -EBUSY;
2863 }
2864
2865 if (obj->gtt_space) {
2866 ret = i915_gem_object_finish_gpu(obj);
2867 if (ret)
2868 return ret;
2869
2870 i915_gem_object_finish_gtt(obj);
2871
2872 /* Before SandyBridge, you could not use tiling or fence
2873 * registers with snooped memory, so relinquish any fences
2874 * currently pointing to our region in the aperture.
2875 */
2876 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2877 ret = i915_gem_object_put_fence(obj);
2878 if (ret)
2879 return ret;
2880 }
2881
Daniel Vetter74898d72012-02-15 23:50:22 +01002882 if (obj->has_global_gtt_mapping)
2883 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002884 if (obj->has_aliasing_ppgtt_mapping)
2885 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2886 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002887 }
2888
2889 if (cache_level == I915_CACHE_NONE) {
2890 u32 old_read_domains, old_write_domain;
2891
2892 /* If we're coming from LLC cached, then we haven't
2893 * actually been tracking whether the data is in the
2894 * CPU cache or not, since we only allow one bit set
2895 * in obj->write_domain and have been skipping the clflushes.
2896 * Just set it to the CPU cache for now.
2897 */
2898 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2899 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2900
2901 old_read_domains = obj->base.read_domains;
2902 old_write_domain = obj->base.write_domain;
2903
2904 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2905 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2906
2907 trace_i915_gem_object_change_domain(obj,
2908 old_read_domains,
2909 old_write_domain);
2910 }
2911
2912 obj->cache_level = cache_level;
2913 return 0;
2914}
2915
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002916/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002917 * Prepare buffer for display plane (scanout, cursors, etc).
2918 * Can be called from an uninterruptible phase (modesetting) and allows
2919 * any flushes to be pipelined (for pageflips).
2920 *
2921 * For the display plane, we want to be in the GTT but out of any write
2922 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
2923 * ability to pipeline the waits, pinning and any additional subtleties
2924 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002925 */
2926int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002927i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2928 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002929 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002930{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002931 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002932 int ret;
2933
Chris Wilson88241782011-01-07 17:09:48 +00002934 ret = i915_gem_object_flush_gpu_write_domain(obj);
2935 if (ret)
2936 return ret;
2937
Chris Wilson0be73282010-12-06 14:36:27 +00002938 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002939 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07002940 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002941 return ret;
2942 }
2943
Eric Anholta7ef0642011-03-29 16:59:54 -07002944 /* The display engine is not coherent with the LLC cache on gen6. As
2945 * a result, we make sure that the pinning that is about to occur is
2946 * done with uncached PTEs. This is lowest common denominator for all
2947 * chipsets.
2948 *
2949 * However for gen6+, we could do better by using the GFDT bit instead
2950 * of uncaching, which would allow us to flush all the LLC-cached data
2951 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2952 */
2953 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2954 if (ret)
2955 return ret;
2956
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002957 /* As the user may map the buffer once pinned in the display plane
2958 * (e.g. libkms for the bootup splash), we have to ensure that we
2959 * always use map_and_fenceable for all scanout buffers.
2960 */
2961 ret = i915_gem_object_pin(obj, alignment, true);
2962 if (ret)
2963 return ret;
2964
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002965 i915_gem_object_flush_cpu_write_domain(obj);
2966
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002967 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002968 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002969
2970 /* It should now be out of any other write domains, and we can update
2971 * the domain values for our changes.
2972 */
2973 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002974 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002975
2976 trace_i915_gem_object_change_domain(obj,
2977 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002978 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002979
2980 return 0;
2981}
2982
Chris Wilson85345512010-11-13 09:49:11 +00002983int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002984i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002985{
Chris Wilson88241782011-01-07 17:09:48 +00002986 int ret;
2987
Chris Wilsona8198ee2011-04-13 22:04:09 +01002988 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002989 return 0;
2990
Chris Wilson88241782011-01-07 17:09:48 +00002991 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002992 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002993 if (ret)
2994 return ret;
2995 }
Chris Wilson85345512010-11-13 09:49:11 +00002996
Chris Wilsonc501ae72011-12-14 13:57:23 +01002997 ret = i915_gem_object_wait_rendering(obj);
2998 if (ret)
2999 return ret;
3000
Chris Wilsona8198ee2011-04-13 22:04:09 +01003001 /* Ensure that we invalidate the GPU's caches and TLBs. */
3002 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003003 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003004}
3005
Eric Anholte47c68e2008-11-14 13:35:19 -08003006/**
3007 * Moves a single object to the CPU read, and possibly write domain.
3008 *
3009 * This function returns when the move is complete, including waiting on
3010 * flushes to occur.
3011 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003012int
Chris Wilson919926a2010-11-12 13:42:53 +00003013i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003014{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003015 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003016 int ret;
3017
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003018 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3019 return 0;
3020
Chris Wilson88241782011-01-07 17:09:48 +00003021 ret = i915_gem_object_flush_gpu_write_domain(obj);
3022 if (ret)
3023 return ret;
3024
Chris Wilsonce453d82011-02-21 14:43:56 +00003025 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003026 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003027 return ret;
3028
3029 i915_gem_object_flush_gtt_write_domain(obj);
3030
Chris Wilson05394f32010-11-08 19:18:58 +00003031 old_write_domain = obj->base.write_domain;
3032 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003033
Eric Anholte47c68e2008-11-14 13:35:19 -08003034 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003035 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003036 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003037
Chris Wilson05394f32010-11-08 19:18:58 +00003038 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003039 }
3040
3041 /* It should now be out of any other write domains, and we can update
3042 * the domain values for our changes.
3043 */
Chris Wilson05394f32010-11-08 19:18:58 +00003044 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003045
3046 /* If we're writing through the CPU, then the GPU read domains will
3047 * need to be invalidated at next use.
3048 */
3049 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003050 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3051 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003052 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003053
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003054 trace_i915_gem_object_change_domain(obj,
3055 old_read_domains,
3056 old_write_domain);
3057
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003058 return 0;
3059}
3060
Eric Anholt673a3942008-07-30 12:06:12 -07003061/* Throttle our rendering by waiting until the ring has completed our requests
3062 * emitted over 20 msec ago.
3063 *
Eric Anholtb9624422009-06-03 07:27:35 +00003064 * Note that if we were to use the current jiffies each time around the loop,
3065 * we wouldn't escape the function with any frames outstanding if the time to
3066 * render a frame was over 20ms.
3067 *
Eric Anholt673a3942008-07-30 12:06:12 -07003068 * This should get us reasonable parallelism between CPU and GPU but also
3069 * relatively low latency when blocking on a particular request to finish.
3070 */
3071static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003072i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003073{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003074 struct drm_i915_private *dev_priv = dev->dev_private;
3075 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003076 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003077 struct drm_i915_gem_request *request;
3078 struct intel_ring_buffer *ring = NULL;
3079 u32 seqno = 0;
3080 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003081
Chris Wilsone110e8d2011-01-26 15:39:14 +00003082 if (atomic_read(&dev_priv->mm.wedged))
3083 return -EIO;
3084
Chris Wilson1c255952010-09-26 11:03:27 +01003085 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003086 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003087 if (time_after_eq(request->emitted_jiffies, recent_enough))
3088 break;
3089
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003090 ring = request->ring;
3091 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003092 }
Chris Wilson1c255952010-09-26 11:03:27 +01003093 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003094
3095 if (seqno == 0)
3096 return 0;
3097
3098 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003099 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003100 /* And wait for the seqno passing without holding any locks and
3101 * causing extra latency for others. This is safe as the irq
3102 * generation is designed to be run atomically and so is
3103 * lockless.
3104 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003105 if (ring->irq_get(ring)) {
3106 ret = wait_event_interruptible(ring->irq_queue,
3107 i915_seqno_passed(ring->get_seqno(ring), seqno)
3108 || atomic_read(&dev_priv->mm.wedged));
3109 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003110
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003111 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3112 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003113 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3114 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003115 atomic_read(&dev_priv->mm.wedged), 3000)) {
3116 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003117 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003118 }
3119
3120 if (ret == 0)
3121 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003122
Eric Anholt673a3942008-07-30 12:06:12 -07003123 return ret;
3124}
3125
Eric Anholt673a3942008-07-30 12:06:12 -07003126int
Chris Wilson05394f32010-11-08 19:18:58 +00003127i915_gem_object_pin(struct drm_i915_gem_object *obj,
3128 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003129 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003130{
Chris Wilson05394f32010-11-08 19:18:58 +00003131 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003132 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003133 int ret;
3134
Chris Wilson05394f32010-11-08 19:18:58 +00003135 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003136 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003137
Chris Wilson05394f32010-11-08 19:18:58 +00003138 if (obj->gtt_space != NULL) {
3139 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3140 (map_and_fenceable && !obj->map_and_fenceable)) {
3141 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003142 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003143 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3144 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003145 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003146 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003147 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003148 ret = i915_gem_object_unbind(obj);
3149 if (ret)
3150 return ret;
3151 }
3152 }
3153
Chris Wilson05394f32010-11-08 19:18:58 +00003154 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003155 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003156 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003157 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003158 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003159 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003160
Daniel Vetter74898d72012-02-15 23:50:22 +01003161 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3162 i915_gem_gtt_bind_object(obj, obj->cache_level);
3163
Chris Wilson05394f32010-11-08 19:18:58 +00003164 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003165 if (!obj->active)
3166 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003167 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003168 }
Chris Wilson6299f992010-11-24 12:23:44 +00003169 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003170
Chris Wilson23bc5982010-09-29 16:10:57 +01003171 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003172 return 0;
3173}
3174
3175void
Chris Wilson05394f32010-11-08 19:18:58 +00003176i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003177{
Chris Wilson05394f32010-11-08 19:18:58 +00003178 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003179 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003180
Chris Wilson23bc5982010-09-29 16:10:57 +01003181 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003182 BUG_ON(obj->pin_count == 0);
3183 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003184
Chris Wilson05394f32010-11-08 19:18:58 +00003185 if (--obj->pin_count == 0) {
3186 if (!obj->active)
3187 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003188 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003189 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003190 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003191 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003192}
3193
3194int
3195i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003196 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003197{
3198 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003199 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003200 int ret;
3201
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003202 ret = i915_mutex_lock_interruptible(dev);
3203 if (ret)
3204 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003205
Chris Wilson05394f32010-11-08 19:18:58 +00003206 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003207 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003208 ret = -ENOENT;
3209 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003210 }
Eric Anholt673a3942008-07-30 12:06:12 -07003211
Chris Wilson05394f32010-11-08 19:18:58 +00003212 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003213 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003214 ret = -EINVAL;
3215 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003216 }
3217
Chris Wilson05394f32010-11-08 19:18:58 +00003218 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003219 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3220 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003221 ret = -EINVAL;
3222 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003223 }
3224
Chris Wilson05394f32010-11-08 19:18:58 +00003225 obj->user_pin_count++;
3226 obj->pin_filp = file;
3227 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003228 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003229 if (ret)
3230 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003231 }
3232
3233 /* XXX - flush the CPU caches for pinned objects
3234 * as the X server doesn't manage domains yet
3235 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003236 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003237 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003238out:
Chris Wilson05394f32010-11-08 19:18:58 +00003239 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003240unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003241 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003242 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003243}
3244
3245int
3246i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003247 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003248{
3249 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003250 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003251 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003252
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003253 ret = i915_mutex_lock_interruptible(dev);
3254 if (ret)
3255 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003256
Chris Wilson05394f32010-11-08 19:18:58 +00003257 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003258 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003259 ret = -ENOENT;
3260 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003261 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003262
Chris Wilson05394f32010-11-08 19:18:58 +00003263 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003264 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3265 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003266 ret = -EINVAL;
3267 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003268 }
Chris Wilson05394f32010-11-08 19:18:58 +00003269 obj->user_pin_count--;
3270 if (obj->user_pin_count == 0) {
3271 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003272 i915_gem_object_unpin(obj);
3273 }
Eric Anholt673a3942008-07-30 12:06:12 -07003274
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003275out:
Chris Wilson05394f32010-11-08 19:18:58 +00003276 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003277unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003278 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003279 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003280}
3281
3282int
3283i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003284 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003285{
3286 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003287 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003288 int ret;
3289
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003290 ret = i915_mutex_lock_interruptible(dev);
3291 if (ret)
3292 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003293
Chris Wilson05394f32010-11-08 19:18:58 +00003294 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003295 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003296 ret = -ENOENT;
3297 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003298 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003299
Chris Wilson0be555b2010-08-04 15:36:30 +01003300 /* Count all active objects as busy, even if they are currently not used
3301 * by the gpu. Users of this interface expect objects to eventually
3302 * become non-busy without any further actions, therefore emit any
3303 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003304 */
Chris Wilson05394f32010-11-08 19:18:58 +00003305 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003306 if (args->busy) {
3307 /* Unconditionally flush objects, even when the gpu still uses this
3308 * object. Userspace calling this function indicates that it wants to
3309 * use this buffer rather sooner than later, so issuing the required
3310 * flush earlier is beneficial.
3311 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003312 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003313 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003314 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003315 } else if (obj->ring->outstanding_lazy_request ==
3316 obj->last_rendering_seqno) {
3317 struct drm_i915_gem_request *request;
3318
Chris Wilson7a194872010-12-07 10:38:40 +00003319 /* This ring is not being cleared by active usage,
3320 * so emit a request to do so.
3321 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003322 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003323 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003324 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003325 if (ret)
3326 kfree(request);
3327 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003328 ret = -ENOMEM;
3329 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003330
3331 /* Update the active list for the hardware's current position.
3332 * Otherwise this only updates on a delayed timer or when irqs
3333 * are actually unmasked, and our working set ends up being
3334 * larger than required.
3335 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003336 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003337
Chris Wilson05394f32010-11-08 19:18:58 +00003338 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003339 }
Eric Anholt673a3942008-07-30 12:06:12 -07003340
Chris Wilson05394f32010-11-08 19:18:58 +00003341 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003342unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003343 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003344 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003345}
3346
3347int
3348i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3349 struct drm_file *file_priv)
3350{
Akshay Joshi0206e352011-08-16 15:34:10 -04003351 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003352}
3353
Chris Wilson3ef94da2009-09-14 16:50:29 +01003354int
3355i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3356 struct drm_file *file_priv)
3357{
3358 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003359 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003360 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003361
3362 switch (args->madv) {
3363 case I915_MADV_DONTNEED:
3364 case I915_MADV_WILLNEED:
3365 break;
3366 default:
3367 return -EINVAL;
3368 }
3369
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003370 ret = i915_mutex_lock_interruptible(dev);
3371 if (ret)
3372 return ret;
3373
Chris Wilson05394f32010-11-08 19:18:58 +00003374 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003375 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003376 ret = -ENOENT;
3377 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003378 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003379
Chris Wilson05394f32010-11-08 19:18:58 +00003380 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003381 ret = -EINVAL;
3382 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003383 }
3384
Chris Wilson05394f32010-11-08 19:18:58 +00003385 if (obj->madv != __I915_MADV_PURGED)
3386 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003387
Chris Wilson2d7ef392009-09-20 23:13:10 +01003388 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003389 if (i915_gem_object_is_purgeable(obj) &&
3390 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003391 i915_gem_object_truncate(obj);
3392
Chris Wilson05394f32010-11-08 19:18:58 +00003393 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003394
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003395out:
Chris Wilson05394f32010-11-08 19:18:58 +00003396 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003397unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003398 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003399 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003400}
3401
Chris Wilson05394f32010-11-08 19:18:58 +00003402struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3403 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003404{
Chris Wilson73aa8082010-09-30 11:46:12 +01003405 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003406 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003407 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003408
3409 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3410 if (obj == NULL)
3411 return NULL;
3412
3413 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3414 kfree(obj);
3415 return NULL;
3416 }
3417
Hugh Dickins5949eac2011-06-27 16:18:18 -07003418 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3419 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3420
Chris Wilson73aa8082010-09-30 11:46:12 +01003421 i915_gem_info_add_obj(dev_priv, size);
3422
Daniel Vetterc397b902010-04-09 19:05:07 +00003423 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3424 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3425
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003426 if (HAS_LLC(dev)) {
3427 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003428 * cache) for about a 10% performance improvement
3429 * compared to uncached. Graphics requests other than
3430 * display scanout are coherent with the CPU in
3431 * accessing this cache. This means in this mode we
3432 * don't need to clflush on the CPU side, and on the
3433 * GPU side we only need to flush internal caches to
3434 * get data visible to the CPU.
3435 *
3436 * However, we maintain the display planes as UC, and so
3437 * need to rebind when first used as such.
3438 */
3439 obj->cache_level = I915_CACHE_LLC;
3440 } else
3441 obj->cache_level = I915_CACHE_NONE;
3442
Daniel Vetter62b8b212010-04-09 19:05:08 +00003443 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003444 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003445 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003446 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003447 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003448 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003449 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003450 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003451 /* Avoid an unnecessary call to unbind on the first bind. */
3452 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003453
Chris Wilson05394f32010-11-08 19:18:58 +00003454 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003455}
3456
Eric Anholt673a3942008-07-30 12:06:12 -07003457int i915_gem_init_object(struct drm_gem_object *obj)
3458{
Daniel Vetterc397b902010-04-09 19:05:07 +00003459 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003460
Eric Anholt673a3942008-07-30 12:06:12 -07003461 return 0;
3462}
3463
Chris Wilson05394f32010-11-08 19:18:58 +00003464static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003465{
Chris Wilson05394f32010-11-08 19:18:58 +00003466 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003467 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003468 int ret;
3469
3470 ret = i915_gem_object_unbind(obj);
3471 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003472 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003473 &dev_priv->mm.deferred_free_list);
3474 return;
3475 }
3476
Chris Wilson26e12f892011-03-20 11:20:19 +00003477 trace_i915_gem_object_destroy(obj);
3478
Chris Wilson05394f32010-11-08 19:18:58 +00003479 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003480 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003481
Chris Wilson05394f32010-11-08 19:18:58 +00003482 drm_gem_object_release(&obj->base);
3483 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003484
Chris Wilson05394f32010-11-08 19:18:58 +00003485 kfree(obj->bit_17);
3486 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003487}
3488
Chris Wilson05394f32010-11-08 19:18:58 +00003489void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003490{
Chris Wilson05394f32010-11-08 19:18:58 +00003491 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3492 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003493
Chris Wilson05394f32010-11-08 19:18:58 +00003494 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003495 i915_gem_object_unpin(obj);
3496
Chris Wilson05394f32010-11-08 19:18:58 +00003497 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003498 i915_gem_detach_phys_object(dev, obj);
3499
Chris Wilsonbe726152010-07-23 23:18:50 +01003500 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003501}
3502
Jesse Barnes5669fca2009-02-17 15:13:31 -08003503int
Eric Anholt673a3942008-07-30 12:06:12 -07003504i915_gem_idle(struct drm_device *dev)
3505{
3506 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003507 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003508
Keith Packard6dbe2772008-10-14 21:41:13 -07003509 mutex_lock(&dev->struct_mutex);
3510
Chris Wilson87acb0a2010-10-19 10:13:00 +01003511 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003512 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003513 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003514 }
Eric Anholt673a3942008-07-30 12:06:12 -07003515
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003516 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003517 if (ret) {
3518 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003519 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003520 }
Eric Anholt673a3942008-07-30 12:06:12 -07003521
Chris Wilson29105cc2010-01-07 10:39:13 +00003522 /* Under UMS, be paranoid and evict. */
3523 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003524 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003525 if (ret) {
3526 mutex_unlock(&dev->struct_mutex);
3527 return ret;
3528 }
3529 }
3530
Chris Wilson312817a2010-11-22 11:50:11 +00003531 i915_gem_reset_fences(dev);
3532
Chris Wilson29105cc2010-01-07 10:39:13 +00003533 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3534 * We need to replace this with a semaphore, or something.
3535 * And not confound mm.suspended!
3536 */
3537 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003538 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003539
3540 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003541 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003542
Keith Packard6dbe2772008-10-14 21:41:13 -07003543 mutex_unlock(&dev->struct_mutex);
3544
Chris Wilson29105cc2010-01-07 10:39:13 +00003545 /* Cancel the retire work handler, which should be idle now. */
3546 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3547
Eric Anholt673a3942008-07-30 12:06:12 -07003548 return 0;
3549}
3550
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003551void i915_gem_init_swizzling(struct drm_device *dev)
3552{
3553 drm_i915_private_t *dev_priv = dev->dev_private;
3554
Daniel Vetter11782b02012-01-31 16:47:55 +01003555 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003556 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3557 return;
3558
3559 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3560 DISP_TILE_SURFACE_SWIZZLING);
3561
Daniel Vetter11782b02012-01-31 16:47:55 +01003562 if (IS_GEN5(dev))
3563 return;
3564
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003565 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3566 if (IS_GEN6(dev))
3567 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3568 else
3569 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3570}
Daniel Vettere21af882012-02-09 20:53:27 +01003571
3572void i915_gem_init_ppgtt(struct drm_device *dev)
3573{
3574 drm_i915_private_t *dev_priv = dev->dev_private;
3575 uint32_t pd_offset;
3576 struct intel_ring_buffer *ring;
3577 int i;
3578
3579 if (!dev_priv->mm.aliasing_ppgtt)
3580 return;
3581
3582 pd_offset = dev_priv->mm.aliasing_ppgtt->pd_offset;
3583 pd_offset /= 64; /* in cachelines, */
3584 pd_offset <<= 16;
3585
3586 if (INTEL_INFO(dev)->gen == 6) {
3587 uint32_t ecochk = I915_READ(GAM_ECOCHK);
3588 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3589 ECOCHK_PPGTT_CACHE64B);
3590 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3591 } else if (INTEL_INFO(dev)->gen >= 7) {
3592 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3593 /* GFX_MODE is per-ring on gen7+ */
3594 }
3595
3596 for (i = 0; i < I915_NUM_RINGS; i++) {
3597 ring = &dev_priv->ring[i];
3598
3599 if (INTEL_INFO(dev)->gen >= 7)
3600 I915_WRITE(RING_MODE_GEN7(ring),
3601 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3602
3603 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3604 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3605 }
3606}
3607
Eric Anholt673a3942008-07-30 12:06:12 -07003608int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003609i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003610{
3611 drm_i915_private_t *dev_priv = dev->dev_private;
3612 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003613
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003614 i915_gem_init_swizzling(dev);
3615
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003616 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003617 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003618 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003619
3620 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003621 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003622 if (ret)
3623 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003624 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003625
Chris Wilson549f7362010-10-19 11:19:32 +01003626 if (HAS_BLT(dev)) {
3627 ret = intel_init_blt_ring_buffer(dev);
3628 if (ret)
3629 goto cleanup_bsd_ring;
3630 }
3631
Chris Wilson6f392d5482010-08-07 11:01:22 +01003632 dev_priv->next_seqno = 1;
3633
Daniel Vettere21af882012-02-09 20:53:27 +01003634 i915_gem_init_ppgtt(dev);
3635
Chris Wilson68f95ba2010-05-27 13:18:22 +01003636 return 0;
3637
Chris Wilson549f7362010-10-19 11:19:32 +01003638cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003639 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003640cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003641 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003642 return ret;
3643}
3644
3645void
3646i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3647{
3648 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003649 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003650
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003651 for (i = 0; i < I915_NUM_RINGS; i++)
3652 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003653}
3654
3655int
Eric Anholt673a3942008-07-30 12:06:12 -07003656i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3657 struct drm_file *file_priv)
3658{
3659 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003660 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003661
Jesse Barnes79e53942008-11-07 14:24:08 -08003662 if (drm_core_check_feature(dev, DRIVER_MODESET))
3663 return 0;
3664
Ben Gamariba1234d2009-09-14 17:48:47 -04003665 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003666 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003667 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003668 }
3669
Eric Anholt673a3942008-07-30 12:06:12 -07003670 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003671 dev_priv->mm.suspended = 0;
3672
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003673 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003674 if (ret != 0) {
3675 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003676 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003677 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003678
Chris Wilson69dc4982010-10-19 10:36:51 +01003679 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003680 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3681 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003682 for (i = 0; i < I915_NUM_RINGS; i++) {
3683 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3684 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3685 }
Eric Anholt673a3942008-07-30 12:06:12 -07003686 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003687
Chris Wilson5f353082010-06-07 14:03:03 +01003688 ret = drm_irq_install(dev);
3689 if (ret)
3690 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003691
Eric Anholt673a3942008-07-30 12:06:12 -07003692 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003693
3694cleanup_ringbuffer:
3695 mutex_lock(&dev->struct_mutex);
3696 i915_gem_cleanup_ringbuffer(dev);
3697 dev_priv->mm.suspended = 1;
3698 mutex_unlock(&dev->struct_mutex);
3699
3700 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003701}
3702
3703int
3704i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3705 struct drm_file *file_priv)
3706{
Jesse Barnes79e53942008-11-07 14:24:08 -08003707 if (drm_core_check_feature(dev, DRIVER_MODESET))
3708 return 0;
3709
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003710 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003711 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003712}
3713
3714void
3715i915_gem_lastclose(struct drm_device *dev)
3716{
3717 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003718
Eric Anholte806b492009-01-22 09:56:58 -08003719 if (drm_core_check_feature(dev, DRIVER_MODESET))
3720 return;
3721
Keith Packard6dbe2772008-10-14 21:41:13 -07003722 ret = i915_gem_idle(dev);
3723 if (ret)
3724 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003725}
3726
Chris Wilson64193402010-10-24 12:38:05 +01003727static void
3728init_ring_lists(struct intel_ring_buffer *ring)
3729{
3730 INIT_LIST_HEAD(&ring->active_list);
3731 INIT_LIST_HEAD(&ring->request_list);
3732 INIT_LIST_HEAD(&ring->gpu_write_list);
3733}
3734
Eric Anholt673a3942008-07-30 12:06:12 -07003735void
3736i915_gem_load(struct drm_device *dev)
3737{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003738 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003739 drm_i915_private_t *dev_priv = dev->dev_private;
3740
Chris Wilson69dc4982010-10-19 10:36:51 +01003741 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003742 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3743 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003744 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003745 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003746 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003747 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003748 for (i = 0; i < I915_NUM_RINGS; i++)
3749 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003750 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003751 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003752 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3753 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003754 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003755
Dave Airlie94400122010-07-20 13:15:31 +10003756 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3757 if (IS_GEN3(dev)) {
3758 u32 tmp = I915_READ(MI_ARB_STATE);
3759 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3760 /* arb state is a masked write, so set bit + bit in mask */
3761 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3762 I915_WRITE(MI_ARB_STATE, tmp);
3763 }
3764 }
3765
Chris Wilson72bfa192010-12-19 11:42:05 +00003766 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3767
Jesse Barnesde151cf2008-11-12 10:03:55 -08003768 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003769 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3770 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003771
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003772 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003773 dev_priv->num_fence_regs = 16;
3774 else
3775 dev_priv->num_fence_regs = 8;
3776
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003777 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003778 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3779 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003780 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003781
Eric Anholt673a3942008-07-30 12:06:12 -07003782 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003783 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003784
Chris Wilsonce453d82011-02-21 14:43:56 +00003785 dev_priv->mm.interruptible = true;
3786
Chris Wilson17250b72010-10-28 12:51:39 +01003787 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3788 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3789 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003790}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003791
3792/*
3793 * Create a physically contiguous memory object for this object
3794 * e.g. for cursor + overlay regs
3795 */
Chris Wilson995b6762010-08-20 13:23:26 +01003796static int i915_gem_init_phys_object(struct drm_device *dev,
3797 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003798{
3799 drm_i915_private_t *dev_priv = dev->dev_private;
3800 struct drm_i915_gem_phys_object *phys_obj;
3801 int ret;
3802
3803 if (dev_priv->mm.phys_objs[id - 1] || !size)
3804 return 0;
3805
Eric Anholt9a298b22009-03-24 12:23:04 -07003806 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003807 if (!phys_obj)
3808 return -ENOMEM;
3809
3810 phys_obj->id = id;
3811
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003812 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003813 if (!phys_obj->handle) {
3814 ret = -ENOMEM;
3815 goto kfree_obj;
3816 }
3817#ifdef CONFIG_X86
3818 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3819#endif
3820
3821 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3822
3823 return 0;
3824kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003825 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003826 return ret;
3827}
3828
Chris Wilson995b6762010-08-20 13:23:26 +01003829static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003830{
3831 drm_i915_private_t *dev_priv = dev->dev_private;
3832 struct drm_i915_gem_phys_object *phys_obj;
3833
3834 if (!dev_priv->mm.phys_objs[id - 1])
3835 return;
3836
3837 phys_obj = dev_priv->mm.phys_objs[id - 1];
3838 if (phys_obj->cur_obj) {
3839 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3840 }
3841
3842#ifdef CONFIG_X86
3843 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3844#endif
3845 drm_pci_free(dev, phys_obj->handle);
3846 kfree(phys_obj);
3847 dev_priv->mm.phys_objs[id - 1] = NULL;
3848}
3849
3850void i915_gem_free_all_phys_object(struct drm_device *dev)
3851{
3852 int i;
3853
Dave Airlie260883c2009-01-22 17:58:49 +10003854 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003855 i915_gem_free_phys_object(dev, i);
3856}
3857
3858void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003859 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003860{
Chris Wilson05394f32010-11-08 19:18:58 +00003861 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003862 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003863 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003864 int page_count;
3865
Chris Wilson05394f32010-11-08 19:18:58 +00003866 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003867 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003868 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003869
Chris Wilson05394f32010-11-08 19:18:58 +00003870 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003871 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003872 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003873 if (!IS_ERR(page)) {
3874 char *dst = kmap_atomic(page);
3875 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3876 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003877
Chris Wilsone5281cc2010-10-28 13:45:36 +01003878 drm_clflush_pages(&page, 1);
3879
3880 set_page_dirty(page);
3881 mark_page_accessed(page);
3882 page_cache_release(page);
3883 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003884 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003885 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003886
Chris Wilson05394f32010-11-08 19:18:58 +00003887 obj->phys_obj->cur_obj = NULL;
3888 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003889}
3890
3891int
3892i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003893 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003894 int id,
3895 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003896{
Chris Wilson05394f32010-11-08 19:18:58 +00003897 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003898 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003899 int ret = 0;
3900 int page_count;
3901 int i;
3902
3903 if (id > I915_MAX_PHYS_OBJECT)
3904 return -EINVAL;
3905
Chris Wilson05394f32010-11-08 19:18:58 +00003906 if (obj->phys_obj) {
3907 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003908 return 0;
3909 i915_gem_detach_phys_object(dev, obj);
3910 }
3911
Dave Airlie71acb5e2008-12-30 20:31:46 +10003912 /* create a new object */
3913 if (!dev_priv->mm.phys_objs[id - 1]) {
3914 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003915 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003916 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003917 DRM_ERROR("failed to init phys object %d size: %zu\n",
3918 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003919 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003920 }
3921 }
3922
3923 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003924 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3925 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003926
Chris Wilson05394f32010-11-08 19:18:58 +00003927 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003928
3929 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003930 struct page *page;
3931 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003932
Hugh Dickins5949eac2011-06-27 16:18:18 -07003933 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003934 if (IS_ERR(page))
3935 return PTR_ERR(page);
3936
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003937 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003938 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003939 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003940 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003941
3942 mark_page_accessed(page);
3943 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003944 }
3945
3946 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003947}
3948
3949static int
Chris Wilson05394f32010-11-08 19:18:58 +00003950i915_gem_phys_pwrite(struct drm_device *dev,
3951 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003952 struct drm_i915_gem_pwrite *args,
3953 struct drm_file *file_priv)
3954{
Chris Wilson05394f32010-11-08 19:18:58 +00003955 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003956 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003957
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003958 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3959 unsigned long unwritten;
3960
3961 /* The physical object once assigned is fixed for the lifetime
3962 * of the obj, so we can safely drop the lock and continue
3963 * to access vaddr.
3964 */
3965 mutex_unlock(&dev->struct_mutex);
3966 unwritten = copy_from_user(vaddr, user_data, args->size);
3967 mutex_lock(&dev->struct_mutex);
3968 if (unwritten)
3969 return -EFAULT;
3970 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003971
Daniel Vetter40ce6572010-11-05 18:12:18 +01003972 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003973 return 0;
3974}
Eric Anholtb9624422009-06-03 07:27:35 +00003975
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003976void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003977{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003978 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003979
3980 /* Clean up our request list when the client is going away, so that
3981 * later retire_requests won't dereference our soon-to-be-gone
3982 * file_priv.
3983 */
Chris Wilson1c255952010-09-26 11:03:27 +01003984 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003985 while (!list_empty(&file_priv->mm.request_list)) {
3986 struct drm_i915_gem_request *request;
3987
3988 request = list_first_entry(&file_priv->mm.request_list,
3989 struct drm_i915_gem_request,
3990 client_list);
3991 list_del(&request->client_list);
3992 request->file_priv = NULL;
3993 }
Chris Wilson1c255952010-09-26 11:03:27 +01003994 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003995}
Chris Wilson31169712009-09-14 16:50:28 +01003996
Chris Wilson31169712009-09-14 16:50:28 +01003997static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003998i915_gpu_is_active(struct drm_device *dev)
3999{
4000 drm_i915_private_t *dev_priv = dev->dev_private;
4001 int lists_empty;
4002
Chris Wilson1637ef42010-04-20 17:10:35 +01004003 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004004 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004005
4006 return !lists_empty;
4007}
4008
4009static int
Ying Han1495f232011-05-24 17:12:27 -07004010i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004011{
Chris Wilson17250b72010-10-28 12:51:39 +01004012 struct drm_i915_private *dev_priv =
4013 container_of(shrinker,
4014 struct drm_i915_private,
4015 mm.inactive_shrinker);
4016 struct drm_device *dev = dev_priv->dev;
4017 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004018 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004019 int cnt;
4020
4021 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004022 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004023
4024 /* "fast-path" to count number of available objects */
4025 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004026 cnt = 0;
4027 list_for_each_entry(obj,
4028 &dev_priv->mm.inactive_list,
4029 mm_list)
4030 cnt++;
4031 mutex_unlock(&dev->struct_mutex);
4032 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004033 }
4034
Chris Wilson1637ef42010-04-20 17:10:35 +01004035rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004036 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004037 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004038
Chris Wilson17250b72010-10-28 12:51:39 +01004039 list_for_each_entry_safe(obj, next,
4040 &dev_priv->mm.inactive_list,
4041 mm_list) {
4042 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004043 if (i915_gem_object_unbind(obj) == 0 &&
4044 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004045 break;
Chris Wilson31169712009-09-14 16:50:28 +01004046 }
Chris Wilson31169712009-09-14 16:50:28 +01004047 }
4048
4049 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004050 cnt = 0;
4051 list_for_each_entry_safe(obj, next,
4052 &dev_priv->mm.inactive_list,
4053 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004054 if (nr_to_scan &&
4055 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004056 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004057 else
Chris Wilson17250b72010-10-28 12:51:39 +01004058 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004059 }
4060
Chris Wilson17250b72010-10-28 12:51:39 +01004061 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004062 /*
4063 * We are desperate for pages, so as a last resort, wait
4064 * for the GPU to finish and discard whatever we can.
4065 * This has a dramatic impact to reduce the number of
4066 * OOM-killer events whilst running the GPU aggressively.
4067 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004068 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004069 goto rescan;
4070 }
Chris Wilson17250b72010-10-28 12:51:39 +01004071 mutex_unlock(&dev->struct_mutex);
4072 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004073}