blob: 3601b8b6e45f31e3284567340100071f99000ac3 [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 Wilson61050802012-04-17 15:31:31 +010053static void i915_gem_write_fence(struct drm_device *dev, int reg,
54 struct drm_i915_gem_object *obj);
55static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
56 struct drm_i915_fence_reg *fence,
57 bool enable);
58
Chris Wilson17250b72010-10-28 12:51:39 +010059static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070060 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010061static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010062
Chris Wilson61050802012-04-17 15:31:31 +010063static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
64{
65 if (obj->tiling_mode)
66 i915_gem_release_mmap(obj);
67
68 /* As we do not have an associated fence register, we will force
69 * a tiling change if we ever need to acquire one.
70 */
71 obj->tiling_changed = false;
72 obj->fence_reg = I915_FENCE_REG_NONE;
73}
74
Chris Wilson73aa8082010-09-30 11:46:12 +010075/* some bookkeeping */
76static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
77 size_t size)
78{
79 dev_priv->mm.object_count++;
80 dev_priv->mm.object_memory += size;
81}
82
83static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
84 size_t size)
85{
86 dev_priv->mm.object_count--;
87 dev_priv->mm.object_memory -= size;
88}
89
Chris Wilson21dd3732011-01-26 15:55:56 +000090static int
91i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010092{
93 struct drm_i915_private *dev_priv = dev->dev_private;
94 struct completion *x = &dev_priv->error_completion;
95 unsigned long flags;
96 int ret;
97
98 if (!atomic_read(&dev_priv->mm.wedged))
99 return 0;
100
101 ret = wait_for_completion_interruptible(x);
102 if (ret)
103 return ret;
104
Chris Wilson21dd3732011-01-26 15:55:56 +0000105 if (atomic_read(&dev_priv->mm.wedged)) {
106 /* GPU is hung, bump the completion count to account for
107 * the token we just consumed so that we never hit zero and
108 * end up waiting upon a subsequent completion event that
109 * will never happen.
110 */
111 spin_lock_irqsave(&x->wait.lock, flags);
112 x->done++;
113 spin_unlock_irqrestore(&x->wait.lock, flags);
114 }
115 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100116}
117
Chris Wilson54cf91d2010-11-25 18:00:26 +0000118int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100119{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100120 int ret;
121
Chris Wilson21dd3732011-01-26 15:55:56 +0000122 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100123 if (ret)
124 return ret;
125
126 ret = mutex_lock_interruptible(&dev->struct_mutex);
127 if (ret)
128 return ret;
129
Chris Wilson23bc5982010-09-29 16:10:57 +0100130 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100131 return 0;
132}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100133
Chris Wilson7d1c4802010-08-07 21:45:03 +0100134static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000135i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100136{
Chris Wilson05394f32010-11-08 19:18:58 +0000137 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100138}
139
Eric Anholt673a3942008-07-30 12:06:12 -0700140int
141i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000142 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700143{
Eric Anholt673a3942008-07-30 12:06:12 -0700144 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000145
146 if (args->gtt_start >= args->gtt_end ||
147 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
148 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700149
Daniel Vetterf534bc02012-03-26 22:37:04 +0200150 /* GEM with user mode setting was never supported on ilk and later. */
151 if (INTEL_INFO(dev)->gen >= 5)
152 return -ENODEV;
153
Eric Anholt673a3942008-07-30 12:06:12 -0700154 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200155 i915_gem_init_global_gtt(dev, args->gtt_start,
156 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700157 mutex_unlock(&dev->struct_mutex);
158
Chris Wilson20217462010-11-23 15:26:33 +0000159 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700160}
161
Eric Anholt5a125c32008-10-22 21:40:13 -0700162int
163i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700165{
Chris Wilson73aa8082010-09-30 11:46:12 +0100166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700167 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000168 struct drm_i915_gem_object *obj;
169 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700170
171 if (!(dev->driver->driver_features & DRIVER_GEM))
172 return -ENODEV;
173
Chris Wilson6299f992010-11-24 12:23:44 +0000174 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100175 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000176 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
177 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100178 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700179
Chris Wilson6299f992010-11-24 12:23:44 +0000180 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400181 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000182
Eric Anholt5a125c32008-10-22 21:40:13 -0700183 return 0;
184}
185
Dave Airlieff72145b2011-02-07 12:16:14 +1000186static int
187i915_gem_create(struct drm_file *file,
188 struct drm_device *dev,
189 uint64_t size,
190 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700191{
Chris Wilson05394f32010-11-08 19:18:58 +0000192 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300193 int ret;
194 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700195
Dave Airlieff72145b2011-02-07 12:16:14 +1000196 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200197 if (size == 0)
198 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700199
200 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000201 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700202 if (obj == NULL)
203 return -ENOMEM;
204
Chris Wilson05394f32010-11-08 19:18:58 +0000205 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100206 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000207 drm_gem_object_release(&obj->base);
208 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100209 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700210 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100211 }
212
Chris Wilson202f2fe2010-10-14 13:20:40 +0100213 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000214 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100215 trace_i915_gem_object_create(obj);
216
Dave Airlieff72145b2011-02-07 12:16:14 +1000217 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700218 return 0;
219}
220
Dave Airlieff72145b2011-02-07 12:16:14 +1000221int
222i915_gem_dumb_create(struct drm_file *file,
223 struct drm_device *dev,
224 struct drm_mode_create_dumb *args)
225{
226 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000227 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000228 args->size = args->pitch * args->height;
229 return i915_gem_create(file, dev,
230 args->size, &args->handle);
231}
232
233int i915_gem_dumb_destroy(struct drm_file *file,
234 struct drm_device *dev,
235 uint32_t handle)
236{
237 return drm_gem_handle_delete(file, handle);
238}
239
240/**
241 * Creates a new mm object and returns a handle to it.
242 */
243int
244i915_gem_create_ioctl(struct drm_device *dev, void *data,
245 struct drm_file *file)
246{
247 struct drm_i915_gem_create *args = data;
248 return i915_gem_create(file, dev,
249 args->size, &args->handle);
250}
251
Chris Wilson05394f32010-11-08 19:18:58 +0000252static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700253{
Chris Wilson05394f32010-11-08 19:18:58 +0000254 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700255
256 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000257 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700258}
259
Daniel Vetter8c599672011-12-14 13:57:31 +0100260static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100261__copy_to_user_swizzled(char __user *cpu_vaddr,
262 const char *gpu_vaddr, int gpu_offset,
263 int length)
264{
265 int ret, cpu_offset = 0;
266
267 while (length > 0) {
268 int cacheline_end = ALIGN(gpu_offset + 1, 64);
269 int this_length = min(cacheline_end - gpu_offset, length);
270 int swizzled_gpu_offset = gpu_offset ^ 64;
271
272 ret = __copy_to_user(cpu_vaddr + cpu_offset,
273 gpu_vaddr + swizzled_gpu_offset,
274 this_length);
275 if (ret)
276 return ret + length;
277
278 cpu_offset += this_length;
279 gpu_offset += this_length;
280 length -= this_length;
281 }
282
283 return 0;
284}
285
286static inline int
Daniel Vetter8c599672011-12-14 13:57:31 +0100287__copy_from_user_swizzled(char __user *gpu_vaddr, int gpu_offset,
288 const char *cpu_vaddr,
289 int length)
290{
291 int ret, cpu_offset = 0;
292
293 while (length > 0) {
294 int cacheline_end = ALIGN(gpu_offset + 1, 64);
295 int this_length = min(cacheline_end - gpu_offset, length);
296 int swizzled_gpu_offset = gpu_offset ^ 64;
297
298 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
299 cpu_vaddr + cpu_offset,
300 this_length);
301 if (ret)
302 return ret + length;
303
304 cpu_offset += this_length;
305 gpu_offset += this_length;
306 length -= this_length;
307 }
308
309 return 0;
310}
311
Daniel Vetterd174bd62012-03-25 19:47:40 +0200312/* Per-page copy function for the shmem pread fastpath.
313 * Flushes invalid cachelines before reading the target if
314 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700315static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200316shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
317 char __user *user_data,
318 bool page_do_bit17_swizzling, bool needs_clflush)
319{
320 char *vaddr;
321 int ret;
322
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200323 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200324 return -EINVAL;
325
326 vaddr = kmap_atomic(page);
327 if (needs_clflush)
328 drm_clflush_virt_range(vaddr + shmem_page_offset,
329 page_length);
330 ret = __copy_to_user_inatomic(user_data,
331 vaddr + shmem_page_offset,
332 page_length);
333 kunmap_atomic(vaddr);
334
335 return ret;
336}
337
Daniel Vetter23c18c72012-03-25 19:47:42 +0200338static void
339shmem_clflush_swizzled_range(char *addr, unsigned long length,
340 bool swizzled)
341{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200342 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200343 unsigned long start = (unsigned long) addr;
344 unsigned long end = (unsigned long) addr + length;
345
346 /* For swizzling simply ensure that we always flush both
347 * channels. Lame, but simple and it works. Swizzled
348 * pwrite/pread is far from a hotpath - current userspace
349 * doesn't use it at all. */
350 start = round_down(start, 128);
351 end = round_up(end, 128);
352
353 drm_clflush_virt_range((void *)start, end - start);
354 } else {
355 drm_clflush_virt_range(addr, length);
356 }
357
358}
359
Daniel Vetterd174bd62012-03-25 19:47:40 +0200360/* Only difference to the fast-path function is that this can handle bit17
361 * and uses non-atomic copy and kmap functions. */
362static int
363shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
364 char __user *user_data,
365 bool page_do_bit17_swizzling, bool needs_clflush)
366{
367 char *vaddr;
368 int ret;
369
370 vaddr = kmap(page);
371 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200372 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
373 page_length,
374 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200375
376 if (page_do_bit17_swizzling)
377 ret = __copy_to_user_swizzled(user_data,
378 vaddr, shmem_page_offset,
379 page_length);
380 else
381 ret = __copy_to_user(user_data,
382 vaddr + shmem_page_offset,
383 page_length);
384 kunmap(page);
385
386 return ret;
387}
388
Eric Anholteb014592009-03-10 11:44:52 -0700389static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200390i915_gem_shmem_pread(struct drm_device *dev,
391 struct drm_i915_gem_object *obj,
392 struct drm_i915_gem_pread *args,
393 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700394{
Chris Wilson05394f32010-11-08 19:18:58 +0000395 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100396 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700397 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100398 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100399 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100400 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200401 int hit_slowpath = 0;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200402 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200403 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200404 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700405
Daniel Vetter8461d222011-12-14 13:57:32 +0100406 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700407 remain = args->size;
408
Daniel Vetter8461d222011-12-14 13:57:32 +0100409 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700410
Daniel Vetter84897312012-03-25 19:47:31 +0200411 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
412 /* If we're not in the cpu read domain, set ourself into the gtt
413 * read domain and manually flush cachelines (if required). This
414 * optimizes for the case when the gpu will dirty the data
415 * anyway again before the next pread happens. */
416 if (obj->cache_level == I915_CACHE_NONE)
417 needs_clflush = 1;
418 ret = i915_gem_object_set_to_gtt_domain(obj, false);
419 if (ret)
420 return ret;
421 }
Eric Anholteb014592009-03-10 11:44:52 -0700422
Eric Anholteb014592009-03-10 11:44:52 -0700423 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100424
Eric Anholteb014592009-03-10 11:44:52 -0700425 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100426 struct page *page;
427
Eric Anholteb014592009-03-10 11:44:52 -0700428 /* Operation in this page
429 *
Eric Anholteb014592009-03-10 11:44:52 -0700430 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700431 * page_length = bytes to copy for this page
432 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100433 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700434 page_length = remain;
435 if ((shmem_page_offset + page_length) > PAGE_SIZE)
436 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700437
Daniel Vetter692a5762012-03-25 19:47:34 +0200438 if (obj->pages) {
439 page = obj->pages[offset >> PAGE_SHIFT];
440 release_page = 0;
441 } else {
442 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
443 if (IS_ERR(page)) {
444 ret = PTR_ERR(page);
445 goto out;
446 }
447 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000448 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100449
Daniel Vetter8461d222011-12-14 13:57:32 +0100450 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
451 (page_to_phys(page) & (1 << 17)) != 0;
452
Daniel Vetterd174bd62012-03-25 19:47:40 +0200453 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
454 user_data, page_do_bit17_swizzling,
455 needs_clflush);
456 if (ret == 0)
457 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700458
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200459 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200460 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200461 mutex_unlock(&dev->struct_mutex);
462
Daniel Vetter96d79b52012-03-25 19:47:36 +0200463 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200464 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200465 /* Userspace is tricking us, but we've already clobbered
466 * its pages with the prefault and promised to write the
467 * data up to the first fault. Hence ignore any errors
468 * and just continue. */
469 (void)ret;
470 prefaulted = 1;
471 }
472
Daniel Vetterd174bd62012-03-25 19:47:40 +0200473 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
474 user_data, page_do_bit17_swizzling,
475 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700476
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200477 mutex_lock(&dev->struct_mutex);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100478 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200479next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100480 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200481 if (release_page)
482 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100483
Daniel Vetter8461d222011-12-14 13:57:32 +0100484 if (ret) {
485 ret = -EFAULT;
486 goto out;
487 }
488
Eric Anholteb014592009-03-10 11:44:52 -0700489 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100490 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700491 offset += page_length;
492 }
493
Chris Wilson4f27b752010-10-14 15:26:45 +0100494out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200495 if (hit_slowpath) {
496 /* Fixup: Kill any reinstated backing storage pages */
497 if (obj->madv == __I915_MADV_PURGED)
498 i915_gem_object_truncate(obj);
499 }
Eric Anholteb014592009-03-10 11:44:52 -0700500
501 return ret;
502}
503
Eric Anholt673a3942008-07-30 12:06:12 -0700504/**
505 * Reads data from the object referenced by handle.
506 *
507 * On error, the contents of *data are undefined.
508 */
509int
510i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000511 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700512{
513 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000514 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100515 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700516
Chris Wilson51311d02010-11-17 09:10:42 +0000517 if (args->size == 0)
518 return 0;
519
520 if (!access_ok(VERIFY_WRITE,
521 (char __user *)(uintptr_t)args->data_ptr,
522 args->size))
523 return -EFAULT;
524
Chris Wilson4f27b752010-10-14 15:26:45 +0100525 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100526 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100527 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700528
Chris Wilson05394f32010-11-08 19:18:58 +0000529 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000530 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100531 ret = -ENOENT;
532 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100533 }
Eric Anholt673a3942008-07-30 12:06:12 -0700534
Chris Wilson7dcd2492010-09-26 20:21:44 +0100535 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000536 if (args->offset > obj->base.size ||
537 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100538 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100539 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100540 }
541
Chris Wilsondb53a302011-02-03 11:57:46 +0000542 trace_i915_gem_object_pread(obj, args->offset, args->size);
543
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200544 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700545
Chris Wilson35b62a82010-09-26 20:23:38 +0100546out:
Chris Wilson05394f32010-11-08 19:18:58 +0000547 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100548unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100549 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700550 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700551}
552
Keith Packard0839ccb2008-10-30 19:38:48 -0700553/* This is the fast write path which cannot handle
554 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700555 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700556
Keith Packard0839ccb2008-10-30 19:38:48 -0700557static inline int
558fast_user_write(struct io_mapping *mapping,
559 loff_t page_base, int page_offset,
560 char __user *user_data,
561 int length)
562{
563 char *vaddr_atomic;
564 unsigned long unwritten;
565
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700566 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700567 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
568 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700569 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100570 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700571}
572
Eric Anholt3de09aa2009-03-09 09:42:23 -0700573/**
574 * This is the fast pwrite path, where we copy the data directly from the
575 * user into the GTT, uncached.
576 */
Eric Anholt673a3942008-07-30 12:06:12 -0700577static int
Chris Wilson05394f32010-11-08 19:18:58 +0000578i915_gem_gtt_pwrite_fast(struct drm_device *dev,
579 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700580 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000581 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700582{
Keith Packard0839ccb2008-10-30 19:38:48 -0700583 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700584 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700585 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700586 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200587 int page_offset, page_length, ret;
588
589 ret = i915_gem_object_pin(obj, 0, true);
590 if (ret)
591 goto out;
592
593 ret = i915_gem_object_set_to_gtt_domain(obj, true);
594 if (ret)
595 goto out_unpin;
596
597 ret = i915_gem_object_put_fence(obj);
598 if (ret)
599 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700600
601 user_data = (char __user *) (uintptr_t) args->data_ptr;
602 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700603
Chris Wilson05394f32010-11-08 19:18:58 +0000604 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700605
606 while (remain > 0) {
607 /* Operation in this page
608 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700609 * page_base = page offset within aperture
610 * page_offset = offset within page
611 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700612 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100613 page_base = offset & PAGE_MASK;
614 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700615 page_length = remain;
616 if ((page_offset + remain) > PAGE_SIZE)
617 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700618
Keith Packard0839ccb2008-10-30 19:38:48 -0700619 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700620 * source page isn't available. Return the error and we'll
621 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700622 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100623 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200624 page_offset, user_data, page_length)) {
625 ret = -EFAULT;
626 goto out_unpin;
627 }
Eric Anholt673a3942008-07-30 12:06:12 -0700628
Keith Packard0839ccb2008-10-30 19:38:48 -0700629 remain -= page_length;
630 user_data += page_length;
631 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700632 }
Eric Anholt673a3942008-07-30 12:06:12 -0700633
Daniel Vetter935aaa62012-03-25 19:47:35 +0200634out_unpin:
635 i915_gem_object_unpin(obj);
636out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700637 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700638}
639
Daniel Vetterd174bd62012-03-25 19:47:40 +0200640/* Per-page copy function for the shmem pwrite fastpath.
641 * Flushes invalid cachelines before writing to the target if
642 * needs_clflush_before is set and flushes out any written cachelines after
643 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700644static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200645shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
646 char __user *user_data,
647 bool page_do_bit17_swizzling,
648 bool needs_clflush_before,
649 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700650{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200651 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700652 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700653
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200654 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200655 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700656
Daniel Vetterd174bd62012-03-25 19:47:40 +0200657 vaddr = kmap_atomic(page);
658 if (needs_clflush_before)
659 drm_clflush_virt_range(vaddr + shmem_page_offset,
660 page_length);
661 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
662 user_data,
663 page_length);
664 if (needs_clflush_after)
665 drm_clflush_virt_range(vaddr + shmem_page_offset,
666 page_length);
667 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700668
669 return ret;
670}
671
Daniel Vetterd174bd62012-03-25 19:47:40 +0200672/* Only difference to the fast-path function is that this can handle bit17
673 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700674static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200675shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
676 char __user *user_data,
677 bool page_do_bit17_swizzling,
678 bool needs_clflush_before,
679 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700680{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200681 char *vaddr;
682 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700683
Daniel Vetterd174bd62012-03-25 19:47:40 +0200684 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200685 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200686 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
687 page_length,
688 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200689 if (page_do_bit17_swizzling)
690 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100691 user_data,
692 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200693 else
694 ret = __copy_from_user(vaddr + shmem_page_offset,
695 user_data,
696 page_length);
697 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200698 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
699 page_length,
700 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200701 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100702
Daniel Vetterd174bd62012-03-25 19:47:40 +0200703 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700704}
705
Eric Anholt40123c12009-03-09 13:42:30 -0700706static int
Daniel Vettere244a442012-03-25 19:47:28 +0200707i915_gem_shmem_pwrite(struct drm_device *dev,
708 struct drm_i915_gem_object *obj,
709 struct drm_i915_gem_pwrite *args,
710 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700711{
Chris Wilson05394f32010-11-08 19:18:58 +0000712 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700713 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100714 loff_t offset;
715 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100716 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100717 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200718 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200719 int needs_clflush_after = 0;
720 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200721 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700722
Daniel Vetter8c599672011-12-14 13:57:31 +0100723 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700724 remain = args->size;
725
Daniel Vetter8c599672011-12-14 13:57:31 +0100726 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700727
Daniel Vetter58642882012-03-25 19:47:37 +0200728 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
729 /* If we're not in the cpu write domain, set ourself into the gtt
730 * write domain and manually flush cachelines (if required). This
731 * optimizes for the case when the gpu will use the data
732 * right away and we therefore have to clflush anyway. */
733 if (obj->cache_level == I915_CACHE_NONE)
734 needs_clflush_after = 1;
735 ret = i915_gem_object_set_to_gtt_domain(obj, true);
736 if (ret)
737 return ret;
738 }
739 /* Same trick applies for invalidate partially written cachelines before
740 * writing. */
741 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
742 && obj->cache_level == I915_CACHE_NONE)
743 needs_clflush_before = 1;
744
Eric Anholt40123c12009-03-09 13:42:30 -0700745 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000746 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700747
748 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100749 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200750 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100751
Eric Anholt40123c12009-03-09 13:42:30 -0700752 /* Operation in this page
753 *
Eric Anholt40123c12009-03-09 13:42:30 -0700754 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700755 * page_length = bytes to copy for this page
756 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100757 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700758
759 page_length = remain;
760 if ((shmem_page_offset + page_length) > PAGE_SIZE)
761 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700762
Daniel Vetter58642882012-03-25 19:47:37 +0200763 /* If we don't overwrite a cacheline completely we need to be
764 * careful to have up-to-date data by first clflushing. Don't
765 * overcomplicate things and flush the entire patch. */
766 partial_cacheline_write = needs_clflush_before &&
767 ((shmem_page_offset | page_length)
768 & (boot_cpu_data.x86_clflush_size - 1));
769
Daniel Vetter692a5762012-03-25 19:47:34 +0200770 if (obj->pages) {
771 page = obj->pages[offset >> PAGE_SHIFT];
772 release_page = 0;
773 } else {
774 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
775 if (IS_ERR(page)) {
776 ret = PTR_ERR(page);
777 goto out;
778 }
779 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100780 }
781
Daniel Vetter8c599672011-12-14 13:57:31 +0100782 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
783 (page_to_phys(page) & (1 << 17)) != 0;
784
Daniel Vetterd174bd62012-03-25 19:47:40 +0200785 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
786 user_data, page_do_bit17_swizzling,
787 partial_cacheline_write,
788 needs_clflush_after);
789 if (ret == 0)
790 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700791
Daniel Vettere244a442012-03-25 19:47:28 +0200792 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200793 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200794 mutex_unlock(&dev->struct_mutex);
795
Daniel Vetterd174bd62012-03-25 19:47:40 +0200796 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
797 user_data, page_do_bit17_swizzling,
798 partial_cacheline_write,
799 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700800
Daniel Vettere244a442012-03-25 19:47:28 +0200801 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200802 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200803next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100804 set_page_dirty(page);
805 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200806 if (release_page)
807 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100808
Daniel Vetter8c599672011-12-14 13:57:31 +0100809 if (ret) {
810 ret = -EFAULT;
811 goto out;
812 }
813
Eric Anholt40123c12009-03-09 13:42:30 -0700814 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100815 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700816 offset += page_length;
817 }
818
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100819out:
Daniel Vettere244a442012-03-25 19:47:28 +0200820 if (hit_slowpath) {
821 /* Fixup: Kill any reinstated backing storage pages */
822 if (obj->madv == __I915_MADV_PURGED)
823 i915_gem_object_truncate(obj);
824 /* and flush dirty cachelines in case the object isn't in the cpu write
825 * domain anymore. */
826 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
827 i915_gem_clflush_object(obj);
828 intel_gtt_chipset_flush();
829 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100830 }
Eric Anholt40123c12009-03-09 13:42:30 -0700831
Daniel Vetter58642882012-03-25 19:47:37 +0200832 if (needs_clflush_after)
833 intel_gtt_chipset_flush();
834
Eric Anholt40123c12009-03-09 13:42:30 -0700835 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700836}
837
838/**
839 * Writes data to the object referenced by handle.
840 *
841 * On error, the contents of the buffer that were to be modified are undefined.
842 */
843int
844i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100845 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700846{
847 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000848 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000849 int ret;
850
851 if (args->size == 0)
852 return 0;
853
854 if (!access_ok(VERIFY_READ,
855 (char __user *)(uintptr_t)args->data_ptr,
856 args->size))
857 return -EFAULT;
858
Daniel Vetterf56f8212012-03-25 19:47:41 +0200859 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
860 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000861 if (ret)
862 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700863
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100864 ret = i915_mutex_lock_interruptible(dev);
865 if (ret)
866 return ret;
867
Chris Wilson05394f32010-11-08 19:18:58 +0000868 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000869 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100870 ret = -ENOENT;
871 goto unlock;
872 }
Eric Anholt673a3942008-07-30 12:06:12 -0700873
Chris Wilson7dcd2492010-09-26 20:21:44 +0100874 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000875 if (args->offset > obj->base.size ||
876 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100877 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100878 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100879 }
880
Chris Wilsondb53a302011-02-03 11:57:46 +0000881 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
882
Daniel Vetter935aaa62012-03-25 19:47:35 +0200883 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700884 /* We can only do the GTT pwrite on untiled buffers, as otherwise
885 * it would end up going through the fenced access, and we'll get
886 * different detiling behavior between reading and writing.
887 * pread/pwrite currently are reading and writing from the CPU
888 * perspective, requiring manual detiling by the client.
889 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100890 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100891 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100892 goto out;
893 }
894
895 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200896 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200897 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200898 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100899 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100900 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200901 /* Note that the gtt paths might fail with non-page-backed user
902 * pointers (e.g. gtt mappings when moving data between
903 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700904 }
Eric Anholt673a3942008-07-30 12:06:12 -0700905
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100906 if (ret == -EFAULT)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200907 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100908
Chris Wilson35b62a82010-09-26 20:23:38 +0100909out:
Chris Wilson05394f32010-11-08 19:18:58 +0000910 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100911unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100912 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700913 return ret;
914}
915
916/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800917 * Called when user space prepares to use an object with the CPU, either
918 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700919 */
920int
921i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000922 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700923{
924 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000925 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800926 uint32_t read_domains = args->read_domains;
927 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700928 int ret;
929
930 if (!(dev->driver->driver_features & DRIVER_GEM))
931 return -ENODEV;
932
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800933 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100934 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800935 return -EINVAL;
936
Chris Wilson21d509e2009-06-06 09:46:02 +0100937 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800938 return -EINVAL;
939
940 /* Having something in the write domain implies it's in the read
941 * domain, and only that read domain. Enforce that in the request.
942 */
943 if (write_domain != 0 && read_domains != write_domain)
944 return -EINVAL;
945
Chris Wilson76c1dec2010-09-25 11:22:51 +0100946 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100947 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100948 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700949
Chris Wilson05394f32010-11-08 19:18:58 +0000950 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000951 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100952 ret = -ENOENT;
953 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100954 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700955
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800956 if (read_domains & I915_GEM_DOMAIN_GTT) {
957 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800958
959 /* Silently promote "you're not bound, there was nothing to do"
960 * to success, since the client was just asking us to
961 * make sure everything was done.
962 */
963 if (ret == -EINVAL)
964 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800965 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800966 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800967 }
968
Chris Wilson05394f32010-11-08 19:18:58 +0000969 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100970unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700971 mutex_unlock(&dev->struct_mutex);
972 return ret;
973}
974
975/**
976 * Called when user space has done writes to this buffer
977 */
978int
979i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000980 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700981{
982 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000983 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700984 int ret = 0;
985
986 if (!(dev->driver->driver_features & DRIVER_GEM))
987 return -ENODEV;
988
Chris Wilson76c1dec2010-09-25 11:22:51 +0100989 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100990 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100991 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100992
Chris Wilson05394f32010-11-08 19:18:58 +0000993 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000994 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100995 ret = -ENOENT;
996 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700997 }
998
Eric Anholt673a3942008-07-30 12:06:12 -0700999 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001000 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001001 i915_gem_object_flush_cpu_write_domain(obj);
1002
Chris Wilson05394f32010-11-08 19:18:58 +00001003 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001004unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001005 mutex_unlock(&dev->struct_mutex);
1006 return ret;
1007}
1008
1009/**
1010 * Maps the contents of an object, returning the address it is mapped
1011 * into.
1012 *
1013 * While the mapping holds a reference on the contents of the object, it doesn't
1014 * imply a ref on the object itself.
1015 */
1016int
1017i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001018 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001019{
1020 struct drm_i915_gem_mmap *args = data;
1021 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001022 unsigned long addr;
1023
1024 if (!(dev->driver->driver_features & DRIVER_GEM))
1025 return -ENODEV;
1026
Chris Wilson05394f32010-11-08 19:18:58 +00001027 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001028 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001029 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001030
Eric Anholt673a3942008-07-30 12:06:12 -07001031 down_write(&current->mm->mmap_sem);
1032 addr = do_mmap(obj->filp, 0, args->size,
1033 PROT_READ | PROT_WRITE, MAP_SHARED,
1034 args->offset);
1035 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001036 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001037 if (IS_ERR((void *)addr))
1038 return addr;
1039
1040 args->addr_ptr = (uint64_t) addr;
1041
1042 return 0;
1043}
1044
Jesse Barnesde151cf2008-11-12 10:03:55 -08001045/**
1046 * i915_gem_fault - fault a page into the GTT
1047 * vma: VMA in question
1048 * vmf: fault info
1049 *
1050 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1051 * from userspace. The fault handler takes care of binding the object to
1052 * the GTT (if needed), allocating and programming a fence register (again,
1053 * only if needed based on whether the old reg is still valid or the object
1054 * is tiled) and inserting a new PTE into the faulting process.
1055 *
1056 * Note that the faulting process may involve evicting existing objects
1057 * from the GTT and/or fence registers to make room. So performance may
1058 * suffer if the GTT working set is large or there are few fence registers
1059 * left.
1060 */
1061int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1062{
Chris Wilson05394f32010-11-08 19:18:58 +00001063 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1064 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001065 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001066 pgoff_t page_offset;
1067 unsigned long pfn;
1068 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001069 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001070
1071 /* We don't use vmf->pgoff since that has the fake offset */
1072 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1073 PAGE_SHIFT;
1074
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001075 ret = i915_mutex_lock_interruptible(dev);
1076 if (ret)
1077 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001078
Chris Wilsondb53a302011-02-03 11:57:46 +00001079 trace_i915_gem_object_fault(obj, page_offset, true, write);
1080
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001081 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001082 if (!obj->map_and_fenceable) {
1083 ret = i915_gem_object_unbind(obj);
1084 if (ret)
1085 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001086 }
Chris Wilson05394f32010-11-08 19:18:58 +00001087 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001088 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001089 if (ret)
1090 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001091
Eric Anholte92d03b2011-06-14 16:43:09 -07001092 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1093 if (ret)
1094 goto unlock;
1095 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001096
Daniel Vetter74898d72012-02-15 23:50:22 +01001097 if (!obj->has_global_gtt_mapping)
1098 i915_gem_gtt_bind_object(obj, obj->cache_level);
1099
Chris Wilson06d98132012-04-17 15:31:24 +01001100 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001101 if (ret)
1102 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001103
Chris Wilson05394f32010-11-08 19:18:58 +00001104 if (i915_gem_object_is_inactive(obj))
1105 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001106
Chris Wilson6299f992010-11-24 12:23:44 +00001107 obj->fault_mappable = true;
1108
Chris Wilson05394f32010-11-08 19:18:58 +00001109 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001110 page_offset;
1111
1112 /* Finally, remap it using the new GTT offset */
1113 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001114unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001115 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001116out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001117 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001118 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001119 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001120 /* Give the error handler a chance to run and move the
1121 * objects off the GPU active list. Next time we service the
1122 * fault, we should be able to transition the page into the
1123 * GTT without touching the GPU (and so avoid further
1124 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1125 * with coherency, just lost writes.
1126 */
Chris Wilson045e7692010-11-07 09:18:22 +00001127 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001128 case 0:
1129 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001130 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001131 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001132 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001133 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001134 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001135 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001136 }
1137}
1138
1139/**
Chris Wilson901782b2009-07-10 08:18:50 +01001140 * i915_gem_release_mmap - remove physical page mappings
1141 * @obj: obj in question
1142 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001143 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001144 * relinquish ownership of the pages back to the system.
1145 *
1146 * It is vital that we remove the page mapping if we have mapped a tiled
1147 * object through the GTT and then lose the fence register due to
1148 * resource pressure. Similarly if the object has been moved out of the
1149 * aperture, than pages mapped into userspace must be revoked. Removing the
1150 * mapping will then trigger a page fault on the next user access, allowing
1151 * fixup by i915_gem_fault().
1152 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001153void
Chris Wilson05394f32010-11-08 19:18:58 +00001154i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001155{
Chris Wilson6299f992010-11-24 12:23:44 +00001156 if (!obj->fault_mappable)
1157 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001158
Chris Wilsonf6e47882011-03-20 21:09:12 +00001159 if (obj->base.dev->dev_mapping)
1160 unmap_mapping_range(obj->base.dev->dev_mapping,
1161 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1162 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001163
Chris Wilson6299f992010-11-24 12:23:44 +00001164 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001165}
1166
Chris Wilson92b88ae2010-11-09 11:47:32 +00001167static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001168i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001169{
Chris Wilsone28f8712011-07-18 13:11:49 -07001170 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001171
1172 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001173 tiling_mode == I915_TILING_NONE)
1174 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001175
1176 /* Previous chips need a power-of-two fence region when tiling */
1177 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001178 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001179 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001180 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001181
Chris Wilsone28f8712011-07-18 13:11:49 -07001182 while (gtt_size < size)
1183 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001184
Chris Wilsone28f8712011-07-18 13:11:49 -07001185 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001186}
1187
Jesse Barnesde151cf2008-11-12 10:03:55 -08001188/**
1189 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1190 * @obj: object to check
1191 *
1192 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001193 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001194 */
1195static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001196i915_gem_get_gtt_alignment(struct drm_device *dev,
1197 uint32_t size,
1198 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001199{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001200 /*
1201 * Minimum alignment is 4k (GTT page size), but might be greater
1202 * if a fence register is needed for the object.
1203 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001204 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001205 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001206 return 4096;
1207
1208 /*
1209 * Previous chips need to be aligned to the size of the smallest
1210 * fence register that can contain the object.
1211 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001212 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001213}
1214
Daniel Vetter5e783302010-11-14 22:32:36 +01001215/**
1216 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1217 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001218 * @dev: the device
1219 * @size: size of the object
1220 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001221 *
1222 * Return the required GTT alignment for an object, only taking into account
1223 * unfenced tiled surface requirements.
1224 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001225uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001226i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1227 uint32_t size,
1228 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001229{
Daniel Vetter5e783302010-11-14 22:32:36 +01001230 /*
1231 * Minimum alignment is 4k (GTT page size) for sane hw.
1232 */
1233 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001234 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001235 return 4096;
1236
Chris Wilsone28f8712011-07-18 13:11:49 -07001237 /* Previous hardware however needs to be aligned to a power-of-two
1238 * tile height. The simplest method for determining this is to reuse
1239 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001240 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001241 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001242}
1243
Jesse Barnesde151cf2008-11-12 10:03:55 -08001244int
Dave Airlieff72145b2011-02-07 12:16:14 +10001245i915_gem_mmap_gtt(struct drm_file *file,
1246 struct drm_device *dev,
1247 uint32_t handle,
1248 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001249{
Chris Wilsonda761a62010-10-27 17:37:08 +01001250 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001251 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001252 int ret;
1253
1254 if (!(dev->driver->driver_features & DRIVER_GEM))
1255 return -ENODEV;
1256
Chris Wilson76c1dec2010-09-25 11:22:51 +01001257 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001258 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001259 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001260
Dave Airlieff72145b2011-02-07 12:16:14 +10001261 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001262 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001263 ret = -ENOENT;
1264 goto unlock;
1265 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001266
Chris Wilson05394f32010-11-08 19:18:58 +00001267 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001268 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001269 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001270 }
1271
Chris Wilson05394f32010-11-08 19:18:58 +00001272 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001273 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001274 ret = -EINVAL;
1275 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001276 }
1277
Chris Wilson05394f32010-11-08 19:18:58 +00001278 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001279 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001280 if (ret)
1281 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001282 }
1283
Dave Airlieff72145b2011-02-07 12:16:14 +10001284 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001285
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001286out:
Chris Wilson05394f32010-11-08 19:18:58 +00001287 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001288unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001289 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001290 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001291}
1292
Dave Airlieff72145b2011-02-07 12:16:14 +10001293/**
1294 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1295 * @dev: DRM device
1296 * @data: GTT mapping ioctl data
1297 * @file: GEM object info
1298 *
1299 * Simply returns the fake offset to userspace so it can mmap it.
1300 * The mmap call will end up in drm_gem_mmap(), which will set things
1301 * up so we can get faults in the handler above.
1302 *
1303 * The fault handler will take care of binding the object into the GTT
1304 * (since it may have been evicted to make room for something), allocating
1305 * a fence register, and mapping the appropriate aperture address into
1306 * userspace.
1307 */
1308int
1309i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1310 struct drm_file *file)
1311{
1312 struct drm_i915_gem_mmap_gtt *args = data;
1313
1314 if (!(dev->driver->driver_features & DRIVER_GEM))
1315 return -ENODEV;
1316
1317 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1318}
1319
1320
Chris Wilsone5281cc2010-10-28 13:45:36 +01001321static int
Chris Wilson05394f32010-11-08 19:18:58 +00001322i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001323 gfp_t gfpmask)
1324{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001325 int page_count, i;
1326 struct address_space *mapping;
1327 struct inode *inode;
1328 struct page *page;
1329
1330 /* Get the list of pages out of our struct file. They'll be pinned
1331 * at this point until we release them.
1332 */
Chris Wilson05394f32010-11-08 19:18:58 +00001333 page_count = obj->base.size / PAGE_SIZE;
1334 BUG_ON(obj->pages != NULL);
1335 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1336 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001337 return -ENOMEM;
1338
Chris Wilson05394f32010-11-08 19:18:58 +00001339 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001340 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001341 gfpmask |= mapping_gfp_mask(mapping);
1342
Chris Wilsone5281cc2010-10-28 13:45:36 +01001343 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001344 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001345 if (IS_ERR(page))
1346 goto err_pages;
1347
Chris Wilson05394f32010-11-08 19:18:58 +00001348 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001349 }
1350
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001351 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001352 i915_gem_object_do_bit_17_swizzle(obj);
1353
1354 return 0;
1355
1356err_pages:
1357 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001358 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001359
Chris Wilson05394f32010-11-08 19:18:58 +00001360 drm_free_large(obj->pages);
1361 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001362 return PTR_ERR(page);
1363}
1364
Chris Wilson5cdf5882010-09-27 15:51:07 +01001365static void
Chris Wilson05394f32010-11-08 19:18:58 +00001366i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001367{
Chris Wilson05394f32010-11-08 19:18:58 +00001368 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001369 int i;
1370
Chris Wilson05394f32010-11-08 19:18:58 +00001371 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001372
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001373 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001374 i915_gem_object_save_bit_17_swizzle(obj);
1375
Chris Wilson05394f32010-11-08 19:18:58 +00001376 if (obj->madv == I915_MADV_DONTNEED)
1377 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001378
1379 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001380 if (obj->dirty)
1381 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001382
Chris Wilson05394f32010-11-08 19:18:58 +00001383 if (obj->madv == I915_MADV_WILLNEED)
1384 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001385
Chris Wilson05394f32010-11-08 19:18:58 +00001386 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001387 }
Chris Wilson05394f32010-11-08 19:18:58 +00001388 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001389
Chris Wilson05394f32010-11-08 19:18:58 +00001390 drm_free_large(obj->pages);
1391 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001392}
1393
Chris Wilson54cf91d2010-11-25 18:00:26 +00001394void
Chris Wilson05394f32010-11-08 19:18:58 +00001395i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001396 struct intel_ring_buffer *ring,
1397 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001398{
Chris Wilson05394f32010-11-08 19:18:58 +00001399 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001400 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001401
Zou Nan hai852835f2010-05-21 09:08:56 +08001402 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001403 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001404
1405 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001406 if (!obj->active) {
1407 drm_gem_object_reference(&obj->base);
1408 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001409 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001410
Eric Anholt673a3942008-07-30 12:06:12 -07001411 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001412 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1413 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001414
Chris Wilson05394f32010-11-08 19:18:58 +00001415 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001416
Chris Wilsoncaea7472010-11-12 13:53:37 +00001417 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001418 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001419
Chris Wilson7dd49062012-03-21 10:48:18 +00001420 /* Bump MRU to take account of the delayed flush */
1421 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1422 struct drm_i915_fence_reg *reg;
1423
1424 reg = &dev_priv->fence_regs[obj->fence_reg];
1425 list_move_tail(&reg->lru_list,
1426 &dev_priv->mm.fence_list);
1427 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001428 }
1429}
1430
1431static void
1432i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1433{
1434 list_del_init(&obj->ring_list);
1435 obj->last_rendering_seqno = 0;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001436 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001437}
1438
Eric Anholtce44b0e2008-11-06 16:00:31 -08001439static void
Chris Wilson05394f32010-11-08 19:18:58 +00001440i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001441{
Chris Wilson05394f32010-11-08 19:18:58 +00001442 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001443 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001444
Chris Wilson05394f32010-11-08 19:18:58 +00001445 BUG_ON(!obj->active);
1446 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001447
1448 i915_gem_object_move_off_active(obj);
1449}
1450
1451static void
1452i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1453{
1454 struct drm_device *dev = obj->base.dev;
1455 struct drm_i915_private *dev_priv = dev->dev_private;
1456
1457 if (obj->pin_count != 0)
1458 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1459 else
1460 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1461
1462 BUG_ON(!list_empty(&obj->gpu_write_list));
1463 BUG_ON(!obj->active);
1464 obj->ring = NULL;
1465
1466 i915_gem_object_move_off_active(obj);
1467 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001468
1469 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001470 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001471 drm_gem_object_unreference(&obj->base);
1472
1473 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001474}
Eric Anholt673a3942008-07-30 12:06:12 -07001475
Chris Wilson963b4832009-09-20 23:03:54 +01001476/* Immediately discard the backing storage */
1477static void
Chris Wilson05394f32010-11-08 19:18:58 +00001478i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001479{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001480 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001481
Chris Wilsonae9fed62010-08-07 11:01:30 +01001482 /* Our goal here is to return as much of the memory as
1483 * is possible back to the system as we are called from OOM.
1484 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001485 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001486 */
Chris Wilson05394f32010-11-08 19:18:58 +00001487 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001488 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001489
Chris Wilsona14917e2012-02-24 21:13:38 +00001490 if (obj->base.map_list.map)
1491 drm_gem_free_mmap_offset(&obj->base);
1492
Chris Wilson05394f32010-11-08 19:18:58 +00001493 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001494}
1495
1496static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001497i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001498{
Chris Wilson05394f32010-11-08 19:18:58 +00001499 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001500}
1501
Eric Anholt673a3942008-07-30 12:06:12 -07001502static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001503i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1504 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001505{
Chris Wilson05394f32010-11-08 19:18:58 +00001506 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001507
Chris Wilson05394f32010-11-08 19:18:58 +00001508 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001509 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001510 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001511 if (obj->base.write_domain & flush_domains) {
1512 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001513
Chris Wilson05394f32010-11-08 19:18:58 +00001514 obj->base.write_domain = 0;
1515 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001516 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001517 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001518
Daniel Vetter63560392010-02-19 11:51:59 +01001519 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001520 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001521 old_write_domain);
1522 }
1523 }
1524}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001525
Daniel Vetter53d227f2012-01-25 16:32:49 +01001526static u32
1527i915_gem_get_seqno(struct drm_device *dev)
1528{
1529 drm_i915_private_t *dev_priv = dev->dev_private;
1530 u32 seqno = dev_priv->next_seqno;
1531
1532 /* reserve 0 for non-seqno */
1533 if (++dev_priv->next_seqno == 0)
1534 dev_priv->next_seqno = 1;
1535
1536 return seqno;
1537}
1538
1539u32
1540i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1541{
1542 if (ring->outstanding_lazy_request == 0)
1543 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1544
1545 return ring->outstanding_lazy_request;
1546}
1547
Chris Wilson3cce4692010-10-27 16:11:02 +01001548int
Chris Wilsondb53a302011-02-03 11:57:46 +00001549i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001550 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001551 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001552{
Chris Wilsondb53a302011-02-03 11:57:46 +00001553 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001554 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001555 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001556 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001557 int ret;
1558
1559 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001560 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001561
Chris Wilsona71d8d92012-02-15 11:25:36 +00001562 /* Record the position of the start of the request so that
1563 * should we detect the updated seqno part-way through the
1564 * GPU processing the request, we never over-estimate the
1565 * position of the head.
1566 */
1567 request_ring_position = intel_ring_get_tail(ring);
1568
Chris Wilson3cce4692010-10-27 16:11:02 +01001569 ret = ring->add_request(ring, &seqno);
1570 if (ret)
1571 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001572
Chris Wilsondb53a302011-02-03 11:57:46 +00001573 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001574
1575 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001576 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001577 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001578 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001579 was_empty = list_empty(&ring->request_list);
1580 list_add_tail(&request->list, &ring->request_list);
1581
Chris Wilsondb53a302011-02-03 11:57:46 +00001582 if (file) {
1583 struct drm_i915_file_private *file_priv = file->driver_priv;
1584
Chris Wilson1c255952010-09-26 11:03:27 +01001585 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001586 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001587 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001588 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001589 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001590 }
Eric Anholt673a3942008-07-30 12:06:12 -07001591
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001592 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001593
Ben Gamarif65d9422009-09-14 17:48:44 -04001594 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001595 if (i915_enable_hangcheck) {
1596 mod_timer(&dev_priv->hangcheck_timer,
1597 jiffies +
1598 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1599 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001600 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001601 queue_delayed_work(dev_priv->wq,
1602 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001603 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001604 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001605}
1606
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001607static inline void
1608i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001609{
Chris Wilson1c255952010-09-26 11:03:27 +01001610 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001611
Chris Wilson1c255952010-09-26 11:03:27 +01001612 if (!file_priv)
1613 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001614
Chris Wilson1c255952010-09-26 11:03:27 +01001615 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001616 if (request->file_priv) {
1617 list_del(&request->client_list);
1618 request->file_priv = NULL;
1619 }
Chris Wilson1c255952010-09-26 11:03:27 +01001620 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001621}
1622
Chris Wilsondfaae392010-09-22 10:31:52 +01001623static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1624 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001625{
Chris Wilsondfaae392010-09-22 10:31:52 +01001626 while (!list_empty(&ring->request_list)) {
1627 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001628
Chris Wilsondfaae392010-09-22 10:31:52 +01001629 request = list_first_entry(&ring->request_list,
1630 struct drm_i915_gem_request,
1631 list);
1632
1633 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001634 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001635 kfree(request);
1636 }
1637
1638 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001639 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001640
Chris Wilson05394f32010-11-08 19:18:58 +00001641 obj = list_first_entry(&ring->active_list,
1642 struct drm_i915_gem_object,
1643 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001644
Chris Wilson05394f32010-11-08 19:18:58 +00001645 obj->base.write_domain = 0;
1646 list_del_init(&obj->gpu_write_list);
1647 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001648 }
Eric Anholt673a3942008-07-30 12:06:12 -07001649}
1650
Chris Wilson312817a2010-11-22 11:50:11 +00001651static void i915_gem_reset_fences(struct drm_device *dev)
1652{
1653 struct drm_i915_private *dev_priv = dev->dev_private;
1654 int i;
1655
Daniel Vetter4b9de732011-10-09 21:52:02 +02001656 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001657 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001658 struct drm_i915_gem_object *obj = reg->obj;
1659
1660 if (!obj)
1661 continue;
1662
1663 if (obj->tiling_mode)
1664 i915_gem_release_mmap(obj);
1665
Chris Wilsond9e86c02010-11-10 16:40:20 +00001666 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1667 reg->obj->fenced_gpu_access = false;
1668 reg->obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00001669 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001670 }
1671}
1672
Chris Wilson069efc12010-09-30 16:53:18 +01001673void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001674{
Chris Wilsondfaae392010-09-22 10:31:52 +01001675 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001676 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001677 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001678
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001679 for (i = 0; i < I915_NUM_RINGS; i++)
1680 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001681
1682 /* Remove anything from the flushing lists. The GPU cache is likely
1683 * to be lost on reset along with the data, so simply move the
1684 * lost bo to the inactive list.
1685 */
1686 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001687 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001688 struct drm_i915_gem_object,
1689 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001690
Chris Wilson05394f32010-11-08 19:18:58 +00001691 obj->base.write_domain = 0;
1692 list_del_init(&obj->gpu_write_list);
1693 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001694 }
Chris Wilson9375e442010-09-19 12:21:28 +01001695
Chris Wilsondfaae392010-09-22 10:31:52 +01001696 /* Move everything out of the GPU domains to ensure we do any
1697 * necessary invalidation upon reuse.
1698 */
Chris Wilson05394f32010-11-08 19:18:58 +00001699 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001700 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001701 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001702 {
Chris Wilson05394f32010-11-08 19:18:58 +00001703 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001704 }
Chris Wilson069efc12010-09-30 16:53:18 +01001705
1706 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001707 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001708}
1709
1710/**
1711 * This function clears the request list as sequence numbers are passed.
1712 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001713void
Chris Wilsondb53a302011-02-03 11:57:46 +00001714i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001715{
Eric Anholt673a3942008-07-30 12:06:12 -07001716 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001717 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001718
Chris Wilsondb53a302011-02-03 11:57:46 +00001719 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001720 return;
1721
Chris Wilsondb53a302011-02-03 11:57:46 +00001722 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001723
Chris Wilson78501ea2010-10-27 12:18:21 +01001724 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001725
Chris Wilson076e2c02011-01-21 10:07:18 +00001726 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001727 if (seqno >= ring->sync_seqno[i])
1728 ring->sync_seqno[i] = 0;
1729
Zou Nan hai852835f2010-05-21 09:08:56 +08001730 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001731 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001732
Zou Nan hai852835f2010-05-21 09:08:56 +08001733 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001734 struct drm_i915_gem_request,
1735 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001736
Chris Wilsondfaae392010-09-22 10:31:52 +01001737 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001738 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001739
Chris Wilsondb53a302011-02-03 11:57:46 +00001740 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001741 /* We know the GPU must have read the request to have
1742 * sent us the seqno + interrupt, so use the position
1743 * of tail of the request to update the last known position
1744 * of the GPU head.
1745 */
1746 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001747
1748 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001749 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001750 kfree(request);
1751 }
1752
1753 /* Move any buffers on the active list that are no longer referenced
1754 * by the ringbuffer to the flushing/inactive lists as appropriate.
1755 */
1756 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001757 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001758
Akshay Joshi0206e352011-08-16 15:34:10 -04001759 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001760 struct drm_i915_gem_object,
1761 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001762
Chris Wilson05394f32010-11-08 19:18:58 +00001763 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001764 break;
1765
Chris Wilson05394f32010-11-08 19:18:58 +00001766 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001767 i915_gem_object_move_to_flushing(obj);
1768 else
1769 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001770 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001771
Chris Wilsondb53a302011-02-03 11:57:46 +00001772 if (unlikely(ring->trace_irq_seqno &&
1773 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001774 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001775 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001776 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001777
Chris Wilsondb53a302011-02-03 11:57:46 +00001778 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001779}
1780
1781void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001782i915_gem_retire_requests(struct drm_device *dev)
1783{
1784 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001785 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001786
Chris Wilsonbe726152010-07-23 23:18:50 +01001787 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001788 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001789
1790 /* We must be careful that during unbind() we do not
1791 * accidentally infinitely recurse into retire requests.
1792 * Currently:
1793 * retire -> free -> unbind -> wait -> retire_ring
1794 */
Chris Wilson05394f32010-11-08 19:18:58 +00001795 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001796 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001797 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001798 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001799 }
1800
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001801 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001802 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001803}
1804
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001805static void
Eric Anholt673a3942008-07-30 12:06:12 -07001806i915_gem_retire_work_handler(struct work_struct *work)
1807{
1808 drm_i915_private_t *dev_priv;
1809 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001810 bool idle;
1811 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001812
1813 dev_priv = container_of(work, drm_i915_private_t,
1814 mm.retire_work.work);
1815 dev = dev_priv->dev;
1816
Chris Wilson891b48c2010-09-29 12:26:37 +01001817 /* Come back later if the device is busy... */
1818 if (!mutex_trylock(&dev->struct_mutex)) {
1819 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1820 return;
1821 }
1822
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001823 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001824
Chris Wilson0a587052011-01-09 21:05:44 +00001825 /* Send a periodic flush down the ring so we don't hold onto GEM
1826 * objects indefinitely.
1827 */
1828 idle = true;
1829 for (i = 0; i < I915_NUM_RINGS; i++) {
1830 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1831
1832 if (!list_empty(&ring->gpu_write_list)) {
1833 struct drm_i915_gem_request *request;
1834 int ret;
1835
Chris Wilsondb53a302011-02-03 11:57:46 +00001836 ret = i915_gem_flush_ring(ring,
1837 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001838 request = kzalloc(sizeof(*request), GFP_KERNEL);
1839 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001840 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001841 kfree(request);
1842 }
1843
1844 idle &= list_empty(&ring->request_list);
1845 }
1846
1847 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001848 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001849
Eric Anholt673a3942008-07-30 12:06:12 -07001850 mutex_unlock(&dev->struct_mutex);
1851}
1852
Chris Wilsondb53a302011-02-03 11:57:46 +00001853/**
1854 * Waits for a sequence number to be signaled, and cleans up the
1855 * request and object lists appropriately for that event.
1856 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001857int
Chris Wilsondb53a302011-02-03 11:57:46 +00001858i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001859 uint32_t seqno,
1860 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001861{
Chris Wilsondb53a302011-02-03 11:57:46 +00001862 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001863 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001864 int ret = 0;
1865
1866 BUG_ON(seqno == 0);
1867
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001868 if (atomic_read(&dev_priv->mm.wedged)) {
1869 struct completion *x = &dev_priv->error_completion;
1870 bool recovery_complete;
1871 unsigned long flags;
1872
1873 /* Give the error handler a chance to run. */
1874 spin_lock_irqsave(&x->wait.lock, flags);
1875 recovery_complete = x->done > 0;
1876 spin_unlock_irqrestore(&x->wait.lock, flags);
1877
1878 return recovery_complete ? -EIO : -EAGAIN;
1879 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001880
Chris Wilson5d97eb62010-11-10 20:40:02 +00001881 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001882 struct drm_i915_gem_request *request;
1883
1884 request = kzalloc(sizeof(*request), GFP_KERNEL);
1885 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001886 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001887
Chris Wilsondb53a302011-02-03 11:57:46 +00001888 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001889 if (ret) {
1890 kfree(request);
1891 return ret;
1892 }
1893
1894 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001895 }
1896
Chris Wilson78501ea2010-10-27 12:18:21 +01001897 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001898 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001899 ier = I915_READ(DEIER) | I915_READ(GTIER);
Jesse Barnes23e3f9b2012-03-28 13:39:39 -07001900 else if (IS_VALLEYVIEW(ring->dev))
1901 ier = I915_READ(GTIER) | I915_READ(VLV_IER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001902 else
1903 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001904 if (!ier) {
1905 DRM_ERROR("something (likely vbetool) disabled "
1906 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001907 ring->dev->driver->irq_preinstall(ring->dev);
1908 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001909 }
1910
Chris Wilsondb53a302011-02-03 11:57:46 +00001911 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001912
Chris Wilsonb2223492010-10-27 15:27:33 +01001913 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001914 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001915 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001916 ret = wait_event_interruptible(ring->irq_queue,
1917 i915_seqno_passed(ring->get_seqno(ring), seqno)
1918 || atomic_read(&dev_priv->mm.wedged));
1919 else
1920 wait_event(ring->irq_queue,
1921 i915_seqno_passed(ring->get_seqno(ring), seqno)
1922 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001923
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001924 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001925 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1926 seqno) ||
1927 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001928 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001929 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001930
Chris Wilsondb53a302011-02-03 11:57:46 +00001931 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001932 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001933 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001934 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001935
Eric Anholt673a3942008-07-30 12:06:12 -07001936 /* Directly dispatch request retiring. While we have the work queue
1937 * to handle this, the waiter on a request often wants an associated
1938 * buffer to have made it to the inactive list, and we would need
1939 * a separate wait queue to handle that.
1940 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001941 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001942 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001943
1944 return ret;
1945}
1946
Daniel Vetter48764bf2009-09-15 22:57:32 +02001947/**
Eric Anholt673a3942008-07-30 12:06:12 -07001948 * Ensures that all rendering to the object has completed and the object is
1949 * safe to unbind from the GTT or access from the CPU.
1950 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001951int
Chris Wilsonce453d82011-02-21 14:43:56 +00001952i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001953{
Eric Anholt673a3942008-07-30 12:06:12 -07001954 int ret;
1955
Eric Anholte47c68e2008-11-14 13:35:19 -08001956 /* This function only exists to support waiting for existing rendering,
1957 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001958 */
Chris Wilson05394f32010-11-08 19:18:58 +00001959 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001960
1961 /* If there is rendering queued on the buffer being evicted, wait for
1962 * it.
1963 */
Chris Wilson05394f32010-11-08 19:18:58 +00001964 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001965 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1966 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001967 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001968 return ret;
1969 }
1970
1971 return 0;
1972}
1973
Ben Widawsky5816d642012-04-11 11:18:19 -07001974/**
1975 * i915_gem_object_sync - sync an object to a ring.
1976 *
1977 * @obj: object which may be in use on another ring.
1978 * @to: ring we wish to use the object on. May be NULL.
1979 *
1980 * This code is meant to abstract object synchronization with the GPU.
1981 * Calling with NULL implies synchronizing the object with the CPU
1982 * rather than a particular GPU ring.
1983 *
1984 * Returns 0 if successful, else propagates up the lower layer error.
1985 */
Ben Widawsky2911a352012-04-05 14:47:36 -07001986int
1987i915_gem_object_sync(struct drm_i915_gem_object *obj,
1988 struct intel_ring_buffer *to)
1989{
1990 struct intel_ring_buffer *from = obj->ring;
1991 u32 seqno;
1992 int ret, idx;
1993
1994 if (from == NULL || to == from)
1995 return 0;
1996
Ben Widawsky5816d642012-04-11 11:18:19 -07001997 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07001998 return i915_gem_object_wait_rendering(obj);
1999
2000 idx = intel_ring_sync_index(from, to);
2001
2002 seqno = obj->last_rendering_seqno;
2003 if (seqno <= from->sync_seqno[idx])
2004 return 0;
2005
2006 if (seqno == from->outstanding_lazy_request) {
2007 struct drm_i915_gem_request *request;
2008
2009 request = kzalloc(sizeof(*request), GFP_KERNEL);
2010 if (request == NULL)
2011 return -ENOMEM;
2012
2013 ret = i915_add_request(from, NULL, request);
2014 if (ret) {
2015 kfree(request);
2016 return ret;
2017 }
2018
2019 seqno = request->seqno;
2020 }
2021
Ben Widawsky2911a352012-04-05 14:47:36 -07002022
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002023 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002024 if (!ret)
2025 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002026
Ben Widawskye3a5a222012-04-11 11:18:20 -07002027 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002028}
2029
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002030static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2031{
2032 u32 old_write_domain, old_read_domains;
2033
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002034 /* Act a barrier for all accesses through the GTT */
2035 mb();
2036
2037 /* Force a pagefault for domain tracking on next user access */
2038 i915_gem_release_mmap(obj);
2039
Keith Packardb97c3d92011-06-24 21:02:59 -07002040 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2041 return;
2042
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002043 old_read_domains = obj->base.read_domains;
2044 old_write_domain = obj->base.write_domain;
2045
2046 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2047 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2048
2049 trace_i915_gem_object_change_domain(obj,
2050 old_read_domains,
2051 old_write_domain);
2052}
2053
Eric Anholt673a3942008-07-30 12:06:12 -07002054/**
2055 * Unbinds an object from the GTT aperture.
2056 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002057int
Chris Wilson05394f32010-11-08 19:18:58 +00002058i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002059{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002060 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002061 int ret = 0;
2062
Chris Wilson05394f32010-11-08 19:18:58 +00002063 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002064 return 0;
2065
Chris Wilson05394f32010-11-08 19:18:58 +00002066 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002067 DRM_ERROR("Attempting to unbind pinned buffer\n");
2068 return -EINVAL;
2069 }
2070
Chris Wilsona8198ee2011-04-13 22:04:09 +01002071 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01002072 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002073 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002074 /* Continue on if we fail due to EIO, the GPU is hung so we
2075 * should be safe and we need to cleanup or else we might
2076 * cause memory corruption through use-after-free.
2077 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002078
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002079 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002080
2081 /* Move the object to the CPU domain to ensure that
2082 * any possible CPU writes while it's not in the GTT
2083 * are flushed when we go to remap it.
2084 */
2085 if (ret == 0)
2086 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2087 if (ret == -ERESTARTSYS)
2088 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002089 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002090 /* In the event of a disaster, abandon all caches and
2091 * hope for the best.
2092 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002093 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002094 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002095 }
Eric Anholt673a3942008-07-30 12:06:12 -07002096
Daniel Vetter96b47b62009-12-15 17:50:00 +01002097 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002098 ret = i915_gem_object_put_fence(obj);
2099 if (ret == -ERESTARTSYS)
2100 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002101
Chris Wilsondb53a302011-02-03 11:57:46 +00002102 trace_i915_gem_object_unbind(obj);
2103
Daniel Vetter74898d72012-02-15 23:50:22 +01002104 if (obj->has_global_gtt_mapping)
2105 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002106 if (obj->has_aliasing_ppgtt_mapping) {
2107 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2108 obj->has_aliasing_ppgtt_mapping = 0;
2109 }
Daniel Vetter74163902012-02-15 23:50:21 +01002110 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002111
Chris Wilsone5281cc2010-10-28 13:45:36 +01002112 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002113
Chris Wilson6299f992010-11-24 12:23:44 +00002114 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002115 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002116 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002117 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002118
Chris Wilson05394f32010-11-08 19:18:58 +00002119 drm_mm_put_block(obj->gtt_space);
2120 obj->gtt_space = NULL;
2121 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002122
Chris Wilson05394f32010-11-08 19:18:58 +00002123 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002124 i915_gem_object_truncate(obj);
2125
Chris Wilson8dc17752010-07-23 23:18:51 +01002126 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002127}
2128
Chris Wilson88241782011-01-07 17:09:48 +00002129int
Chris Wilsondb53a302011-02-03 11:57:46 +00002130i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002131 uint32_t invalidate_domains,
2132 uint32_t flush_domains)
2133{
Chris Wilson88241782011-01-07 17:09:48 +00002134 int ret;
2135
Chris Wilson36d527d2011-03-19 22:26:49 +00002136 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2137 return 0;
2138
Chris Wilsondb53a302011-02-03 11:57:46 +00002139 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2140
Chris Wilson88241782011-01-07 17:09:48 +00002141 ret = ring->flush(ring, invalidate_domains, flush_domains);
2142 if (ret)
2143 return ret;
2144
Chris Wilson36d527d2011-03-19 22:26:49 +00002145 if (flush_domains & I915_GEM_GPU_DOMAINS)
2146 i915_gem_process_flushing_list(ring, flush_domains);
2147
Chris Wilson88241782011-01-07 17:09:48 +00002148 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002149}
2150
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002151static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002152{
Chris Wilson88241782011-01-07 17:09:48 +00002153 int ret;
2154
Chris Wilson395b70b2010-10-28 21:28:46 +01002155 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002156 return 0;
2157
Chris Wilson88241782011-01-07 17:09:48 +00002158 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002159 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002160 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002161 if (ret)
2162 return ret;
2163 }
2164
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002165 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2166 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002167}
2168
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002169int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002170{
2171 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002172 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002173
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002174 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002175 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002176 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002177 if (ret)
2178 return ret;
2179 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002180
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002181 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002182}
2183
Chris Wilson9ce079e2012-04-17 15:31:30 +01002184static void sandybridge_write_fence_reg(struct drm_device *dev, int reg,
2185 struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002186{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002187 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002188 uint64_t val;
2189
Chris Wilson9ce079e2012-04-17 15:31:30 +01002190 if (obj) {
2191 u32 size = obj->gtt_space->size;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002192
Chris Wilson9ce079e2012-04-17 15:31:30 +01002193 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2194 0xfffff000) << 32;
2195 val |= obj->gtt_offset & 0xfffff000;
2196 val |= (uint64_t)((obj->stride / 128) - 1) <<
2197 SANDYBRIDGE_FENCE_PITCH_SHIFT;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002198
Chris Wilson9ce079e2012-04-17 15:31:30 +01002199 if (obj->tiling_mode == I915_TILING_Y)
2200 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2201 val |= I965_FENCE_REG_VALID;
2202 } else
2203 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002204
Chris Wilson9ce079e2012-04-17 15:31:30 +01002205 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + reg * 8, val);
2206 POSTING_READ(FENCE_REG_SANDYBRIDGE_0 + reg * 8);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002207}
2208
Chris Wilson9ce079e2012-04-17 15:31:30 +01002209static void i965_write_fence_reg(struct drm_device *dev, int reg,
2210 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002211{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002212 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002213 uint64_t val;
2214
Chris Wilson9ce079e2012-04-17 15:31:30 +01002215 if (obj) {
2216 u32 size = obj->gtt_space->size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002217
Chris Wilson9ce079e2012-04-17 15:31:30 +01002218 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2219 0xfffff000) << 32;
2220 val |= obj->gtt_offset & 0xfffff000;
2221 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2222 if (obj->tiling_mode == I915_TILING_Y)
2223 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2224 val |= I965_FENCE_REG_VALID;
2225 } else
2226 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002227
Chris Wilson9ce079e2012-04-17 15:31:30 +01002228 I915_WRITE64(FENCE_REG_965_0 + reg * 8, val);
2229 POSTING_READ(FENCE_REG_965_0 + reg * 8);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002230}
2231
Chris Wilson9ce079e2012-04-17 15:31:30 +01002232static void i915_write_fence_reg(struct drm_device *dev, int reg,
2233 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002234{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002235 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002236 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002237
Chris Wilson9ce079e2012-04-17 15:31:30 +01002238 if (obj) {
2239 u32 size = obj->gtt_space->size;
2240 int pitch_val;
2241 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002242
Chris Wilson9ce079e2012-04-17 15:31:30 +01002243 WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2244 (size & -size) != size ||
2245 (obj->gtt_offset & (size - 1)),
2246 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2247 obj->gtt_offset, obj->map_and_fenceable, size);
2248
2249 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2250 tile_width = 128;
2251 else
2252 tile_width = 512;
2253
2254 /* Note: pitch better be a power of two tile widths */
2255 pitch_val = obj->stride / tile_width;
2256 pitch_val = ffs(pitch_val) - 1;
2257
2258 val = obj->gtt_offset;
2259 if (obj->tiling_mode == I915_TILING_Y)
2260 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2261 val |= I915_FENCE_SIZE_BITS(size);
2262 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2263 val |= I830_FENCE_REG_VALID;
2264 } else
2265 val = 0;
2266
2267 if (reg < 8)
2268 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002269 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002270 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002271
Chris Wilson9ce079e2012-04-17 15:31:30 +01002272 I915_WRITE(reg, val);
2273 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002274}
2275
Chris Wilson9ce079e2012-04-17 15:31:30 +01002276static void i830_write_fence_reg(struct drm_device *dev, int reg,
2277 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002278{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002279 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002280 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002281
Chris Wilson9ce079e2012-04-17 15:31:30 +01002282 if (obj) {
2283 u32 size = obj->gtt_space->size;
2284 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002285
Chris Wilson9ce079e2012-04-17 15:31:30 +01002286 WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2287 (size & -size) != size ||
2288 (obj->gtt_offset & (size - 1)),
2289 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2290 obj->gtt_offset, size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002291
Chris Wilson9ce079e2012-04-17 15:31:30 +01002292 pitch_val = obj->stride / 128;
2293 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002294
Chris Wilson9ce079e2012-04-17 15:31:30 +01002295 val = obj->gtt_offset;
2296 if (obj->tiling_mode == I915_TILING_Y)
2297 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2298 val |= I830_FENCE_SIZE_BITS(size);
2299 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2300 val |= I830_FENCE_REG_VALID;
2301 } else
2302 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002303
Chris Wilson9ce079e2012-04-17 15:31:30 +01002304 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2305 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2306}
2307
2308static void i915_gem_write_fence(struct drm_device *dev, int reg,
2309 struct drm_i915_gem_object *obj)
2310{
2311 switch (INTEL_INFO(dev)->gen) {
2312 case 7:
2313 case 6: sandybridge_write_fence_reg(dev, reg, obj); break;
2314 case 5:
2315 case 4: i965_write_fence_reg(dev, reg, obj); break;
2316 case 3: i915_write_fence_reg(dev, reg, obj); break;
2317 case 2: i830_write_fence_reg(dev, reg, obj); break;
2318 default: break;
2319 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002320}
2321
Chris Wilson61050802012-04-17 15:31:31 +01002322static inline int fence_number(struct drm_i915_private *dev_priv,
2323 struct drm_i915_fence_reg *fence)
2324{
2325 return fence - dev_priv->fence_regs;
2326}
2327
2328static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2329 struct drm_i915_fence_reg *fence,
2330 bool enable)
2331{
2332 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2333 int reg = fence_number(dev_priv, fence);
2334
2335 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
2336
2337 if (enable) {
2338 obj->fence_reg = reg;
2339 fence->obj = obj;
2340 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2341 } else {
2342 obj->fence_reg = I915_FENCE_REG_NONE;
2343 fence->obj = NULL;
2344 list_del_init(&fence->lru_list);
2345 }
2346}
2347
Chris Wilsond9e86c02010-11-10 16:40:20 +00002348static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002349i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002350{
2351 int ret;
2352
2353 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002354 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilson1c293ea2012-04-17 15:31:27 +01002355 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00002356 0, obj->base.write_domain);
2357 if (ret)
2358 return ret;
2359 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002360
2361 obj->fenced_gpu_access = false;
2362 }
2363
Chris Wilson1c293ea2012-04-17 15:31:27 +01002364 if (obj->last_fenced_seqno) {
Chris Wilson18991842012-04-17 15:31:29 +01002365 ret = i915_wait_request(obj->ring,
2366 obj->last_fenced_seqno,
2367 true);
2368 if (ret)
2369 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002370
2371 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002372 }
2373
Chris Wilson63256ec2011-01-04 18:42:07 +00002374 /* Ensure that all CPU reads are completed before installing a fence
2375 * and all writes before removing the fence.
2376 */
2377 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2378 mb();
2379
Chris Wilsond9e86c02010-11-10 16:40:20 +00002380 return 0;
2381}
2382
2383int
2384i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2385{
Chris Wilson61050802012-04-17 15:31:31 +01002386 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002387 int ret;
2388
Chris Wilsona360bb12012-04-17 15:31:25 +01002389 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002390 if (ret)
2391 return ret;
2392
Chris Wilson61050802012-04-17 15:31:31 +01002393 if (obj->fence_reg == I915_FENCE_REG_NONE)
2394 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002395
Chris Wilson61050802012-04-17 15:31:31 +01002396 i915_gem_object_update_fence(obj,
2397 &dev_priv->fence_regs[obj->fence_reg],
2398 false);
2399 i915_gem_object_fence_lost(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002400
2401 return 0;
2402}
2403
2404static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002405i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002406{
Daniel Vetterae3db242010-02-19 11:51:58 +01002407 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002408 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002409 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002410
2411 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002412 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002413 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2414 reg = &dev_priv->fence_regs[i];
2415 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002416 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002417
Chris Wilson1690e1e2011-12-14 13:57:08 +01002418 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002419 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002420 }
2421
Chris Wilsond9e86c02010-11-10 16:40:20 +00002422 if (avail == NULL)
2423 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002424
2425 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002426 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002427 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002428 continue;
2429
Chris Wilson8fe301a2012-04-17 15:31:28 +01002430 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002431 }
2432
Chris Wilson8fe301a2012-04-17 15:31:28 +01002433 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002434}
2435
Jesse Barnesde151cf2008-11-12 10:03:55 -08002436/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002437 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002438 * @obj: object to map through a fence reg
2439 *
2440 * When mapping objects through the GTT, userspace wants to be able to write
2441 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002442 * This function walks the fence regs looking for a free one for @obj,
2443 * stealing one if it can't find any.
2444 *
2445 * It then sets up the reg based on the object's properties: address, pitch
2446 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002447 *
2448 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002449 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002450int
Chris Wilson06d98132012-04-17 15:31:24 +01002451i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002452{
Chris Wilson05394f32010-11-08 19:18:58 +00002453 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002454 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002455 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002456 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002457
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002458 if (obj->tiling_mode == I915_TILING_NONE)
2459 return i915_gem_object_put_fence(obj);
2460
Chris Wilsond9e86c02010-11-10 16:40:20 +00002461 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002462 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2463 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002464 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002465
Chris Wilson29c5a582011-03-17 15:23:22 +00002466 if (obj->tiling_changed) {
Chris Wilsona360bb12012-04-17 15:31:25 +01002467 ret = i915_gem_object_flush_fence(obj);
Chris Wilson29c5a582011-03-17 15:23:22 +00002468 if (ret)
2469 return ret;
2470
Chris Wilson29c5a582011-03-17 15:23:22 +00002471 goto update;
2472 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002473
Eric Anholta09ba7f2009-08-29 12:49:51 -07002474 return 0;
2475 }
2476
Chris Wilsona360bb12012-04-17 15:31:25 +01002477 reg = i915_find_fence_reg(dev);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002478 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002479 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002480
Chris Wilsona360bb12012-04-17 15:31:25 +01002481 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002482 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002483 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002484
Chris Wilsond9e86c02010-11-10 16:40:20 +00002485 if (reg->obj) {
2486 struct drm_i915_gem_object *old = reg->obj;
2487
2488 drm_gem_object_reference(&old->base);
2489
2490 if (old->tiling_mode)
2491 i915_gem_release_mmap(old);
2492
Chris Wilsona360bb12012-04-17 15:31:25 +01002493 ret = i915_gem_object_flush_fence(old);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002494 if (ret) {
2495 drm_gem_object_unreference(&old->base);
2496 return ret;
2497 }
2498
Chris Wilsond9e86c02010-11-10 16:40:20 +00002499 old->fence_reg = I915_FENCE_REG_NONE;
Chris Wilsona360bb12012-04-17 15:31:25 +01002500 old->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002501
2502 drm_gem_object_unreference(&old->base);
Chris Wilsona360bb12012-04-17 15:31:25 +01002503 }
Eric Anholta09ba7f2009-08-29 12:49:51 -07002504
Jesse Barnesde151cf2008-11-12 10:03:55 -08002505 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002506 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2507 obj->fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002508
Chris Wilsond9e86c02010-11-10 16:40:20 +00002509update:
2510 obj->tiling_changed = false;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002511 i915_gem_write_fence(dev, reg - dev_priv->fence_regs, obj);
2512 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002513}
2514
2515/**
2516 * i915_gem_clear_fence_reg - clear out fence register info
2517 * @obj: object to clear
2518 *
2519 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002520 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002521 */
2522static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002523i915_gem_clear_fence_reg(struct drm_device *dev,
2524 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002525{
Jesse Barnes79e53942008-11-07 14:24:08 -08002526 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002527 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002528
Chris Wilsone259bef2010-09-17 00:32:02 +01002529 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002530 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002531 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002532 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002533 break;
2534 case 5:
2535 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002536 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002537 break;
2538 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002539 if (fence_reg >= 8)
2540 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002541 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002542 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002543 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002544
2545 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002546 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002547 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002548
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002549 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002550 reg->obj = NULL;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002551 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002552}
2553
2554/**
Eric Anholt673a3942008-07-30 12:06:12 -07002555 * Finds free space in the GTT aperture and binds the object there.
2556 */
2557static int
Chris Wilson05394f32010-11-08 19:18:58 +00002558i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002559 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002560 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002561{
Chris Wilson05394f32010-11-08 19:18:58 +00002562 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002563 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002564 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002565 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002566 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002567 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002568 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002569
Chris Wilson05394f32010-11-08 19:18:58 +00002570 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002571 DRM_ERROR("Attempting to bind a purgeable object\n");
2572 return -EINVAL;
2573 }
2574
Chris Wilsone28f8712011-07-18 13:11:49 -07002575 fence_size = i915_gem_get_gtt_size(dev,
2576 obj->base.size,
2577 obj->tiling_mode);
2578 fence_alignment = i915_gem_get_gtt_alignment(dev,
2579 obj->base.size,
2580 obj->tiling_mode);
2581 unfenced_alignment =
2582 i915_gem_get_unfenced_gtt_alignment(dev,
2583 obj->base.size,
2584 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002585
Eric Anholt673a3942008-07-30 12:06:12 -07002586 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002587 alignment = map_and_fenceable ? fence_alignment :
2588 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002589 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002590 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2591 return -EINVAL;
2592 }
2593
Chris Wilson05394f32010-11-08 19:18:58 +00002594 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002595
Chris Wilson654fc602010-05-27 13:18:21 +01002596 /* If the object is bigger than the entire aperture, reject it early
2597 * before evicting everything in a vain attempt to find space.
2598 */
Chris Wilson05394f32010-11-08 19:18:58 +00002599 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002600 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002601 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2602 return -E2BIG;
2603 }
2604
Eric Anholt673a3942008-07-30 12:06:12 -07002605 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002606 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002607 free_space =
2608 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002609 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002610 dev_priv->mm.gtt_mappable_end,
2611 0);
2612 else
2613 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002614 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002615
2616 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002617 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002618 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002619 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002620 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002621 dev_priv->mm.gtt_mappable_end,
2622 0);
2623 else
Chris Wilson05394f32010-11-08 19:18:58 +00002624 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002625 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002626 }
Chris Wilson05394f32010-11-08 19:18:58 +00002627 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002628 /* If the gtt is empty and we're still having trouble
2629 * fitting our object in, we're out of memory.
2630 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002631 ret = i915_gem_evict_something(dev, size, alignment,
2632 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002633 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002634 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002635
Eric Anholt673a3942008-07-30 12:06:12 -07002636 goto search_free;
2637 }
2638
Chris Wilsone5281cc2010-10-28 13:45:36 +01002639 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002640 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002641 drm_mm_put_block(obj->gtt_space);
2642 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002643
2644 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002645 /* first try to reclaim some memory by clearing the GTT */
2646 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002647 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002648 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002649 if (gfpmask) {
2650 gfpmask = 0;
2651 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002652 }
2653
Chris Wilson809b6332011-01-10 17:33:15 +00002654 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002655 }
2656
2657 goto search_free;
2658 }
2659
Eric Anholt673a3942008-07-30 12:06:12 -07002660 return ret;
2661 }
2662
Daniel Vetter74163902012-02-15 23:50:21 +01002663 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002664 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002665 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002666 drm_mm_put_block(obj->gtt_space);
2667 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002668
Chris Wilson809b6332011-01-10 17:33:15 +00002669 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002670 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002671
2672 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002673 }
Eric Anholt673a3942008-07-30 12:06:12 -07002674
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002675 if (!dev_priv->mm.aliasing_ppgtt)
2676 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002677
Chris Wilson6299f992010-11-24 12:23:44 +00002678 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002679 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002680
Eric Anholt673a3942008-07-30 12:06:12 -07002681 /* Assert that the object is not currently in any GPU domain. As it
2682 * wasn't in the GTT, there shouldn't be any way it could have been in
2683 * a GPU cache
2684 */
Chris Wilson05394f32010-11-08 19:18:58 +00002685 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2686 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002687
Chris Wilson6299f992010-11-24 12:23:44 +00002688 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002689
Daniel Vetter75e9e912010-11-04 17:11:09 +01002690 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002691 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002692 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002693
Daniel Vetter75e9e912010-11-04 17:11:09 +01002694 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002695 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002696
Chris Wilson05394f32010-11-08 19:18:58 +00002697 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002698
Chris Wilsondb53a302011-02-03 11:57:46 +00002699 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002700 return 0;
2701}
2702
2703void
Chris Wilson05394f32010-11-08 19:18:58 +00002704i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002705{
Eric Anholt673a3942008-07-30 12:06:12 -07002706 /* If we don't have a page list set up, then we're not pinned
2707 * to GPU, and we can ignore the cache flush because it'll happen
2708 * again at bind time.
2709 */
Chris Wilson05394f32010-11-08 19:18:58 +00002710 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002711 return;
2712
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002713 /* If the GPU is snooping the contents of the CPU cache,
2714 * we do not need to manually clear the CPU cache lines. However,
2715 * the caches are only snooped when the render cache is
2716 * flushed/invalidated. As we always have to emit invalidations
2717 * and flushes when moving into and out of the RENDER domain, correct
2718 * snooping behaviour occurs naturally as the result of our domain
2719 * tracking.
2720 */
2721 if (obj->cache_level != I915_CACHE_NONE)
2722 return;
2723
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002724 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002725
Chris Wilson05394f32010-11-08 19:18:58 +00002726 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002727}
2728
Eric Anholte47c68e2008-11-14 13:35:19 -08002729/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002730static int
Chris Wilson3619df02010-11-28 15:37:17 +00002731i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002732{
Chris Wilson05394f32010-11-08 19:18:58 +00002733 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002734 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002735
2736 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002737 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002738}
2739
2740/** Flushes the GTT write domain for the object if it's dirty. */
2741static void
Chris Wilson05394f32010-11-08 19:18:58 +00002742i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002743{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002744 uint32_t old_write_domain;
2745
Chris Wilson05394f32010-11-08 19:18:58 +00002746 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002747 return;
2748
Chris Wilson63256ec2011-01-04 18:42:07 +00002749 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002750 * to it immediately go to main memory as far as we know, so there's
2751 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002752 *
2753 * However, we do have to enforce the order so that all writes through
2754 * the GTT land before any writes to the device, such as updates to
2755 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002756 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002757 wmb();
2758
Chris Wilson05394f32010-11-08 19:18:58 +00002759 old_write_domain = obj->base.write_domain;
2760 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002761
2762 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002763 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002764 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002765}
2766
2767/** Flushes the CPU write domain for the object if it's dirty. */
2768static void
Chris Wilson05394f32010-11-08 19:18:58 +00002769i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002770{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002771 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002772
Chris Wilson05394f32010-11-08 19:18:58 +00002773 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002774 return;
2775
2776 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002777 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002778 old_write_domain = obj->base.write_domain;
2779 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002780
2781 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002782 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002783 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002784}
2785
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002786/**
2787 * Moves a single object to the GTT read, and possibly write domain.
2788 *
2789 * This function returns when the move is complete, including waiting on
2790 * flushes to occur.
2791 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002792int
Chris Wilson20217462010-11-23 15:26:33 +00002793i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002794{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002795 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002796 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002797
Eric Anholt02354392008-11-26 13:58:13 -08002798 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002799 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002800 return -EINVAL;
2801
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002802 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2803 return 0;
2804
Chris Wilson88241782011-01-07 17:09:48 +00002805 ret = i915_gem_object_flush_gpu_write_domain(obj);
2806 if (ret)
2807 return ret;
2808
Chris Wilson87ca9c82010-12-02 09:42:56 +00002809 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002810 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002811 if (ret)
2812 return ret;
2813 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002814
Chris Wilson72133422010-09-13 23:56:38 +01002815 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002816
Chris Wilson05394f32010-11-08 19:18:58 +00002817 old_write_domain = obj->base.write_domain;
2818 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002819
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002820 /* It should now be out of any other write domains, and we can update
2821 * the domain values for our changes.
2822 */
Chris Wilson05394f32010-11-08 19:18:58 +00002823 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2824 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002825 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002826 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2827 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2828 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002829 }
2830
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002831 trace_i915_gem_object_change_domain(obj,
2832 old_read_domains,
2833 old_write_domain);
2834
Eric Anholte47c68e2008-11-14 13:35:19 -08002835 return 0;
2836}
2837
Chris Wilsone4ffd172011-04-04 09:44:39 +01002838int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2839 enum i915_cache_level cache_level)
2840{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002841 struct drm_device *dev = obj->base.dev;
2842 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002843 int ret;
2844
2845 if (obj->cache_level == cache_level)
2846 return 0;
2847
2848 if (obj->pin_count) {
2849 DRM_DEBUG("can not change the cache level of pinned objects\n");
2850 return -EBUSY;
2851 }
2852
2853 if (obj->gtt_space) {
2854 ret = i915_gem_object_finish_gpu(obj);
2855 if (ret)
2856 return ret;
2857
2858 i915_gem_object_finish_gtt(obj);
2859
2860 /* Before SandyBridge, you could not use tiling or fence
2861 * registers with snooped memory, so relinquish any fences
2862 * currently pointing to our region in the aperture.
2863 */
2864 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2865 ret = i915_gem_object_put_fence(obj);
2866 if (ret)
2867 return ret;
2868 }
2869
Daniel Vetter74898d72012-02-15 23:50:22 +01002870 if (obj->has_global_gtt_mapping)
2871 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002872 if (obj->has_aliasing_ppgtt_mapping)
2873 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2874 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002875 }
2876
2877 if (cache_level == I915_CACHE_NONE) {
2878 u32 old_read_domains, old_write_domain;
2879
2880 /* If we're coming from LLC cached, then we haven't
2881 * actually been tracking whether the data is in the
2882 * CPU cache or not, since we only allow one bit set
2883 * in obj->write_domain and have been skipping the clflushes.
2884 * Just set it to the CPU cache for now.
2885 */
2886 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2887 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2888
2889 old_read_domains = obj->base.read_domains;
2890 old_write_domain = obj->base.write_domain;
2891
2892 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2893 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2894
2895 trace_i915_gem_object_change_domain(obj,
2896 old_read_domains,
2897 old_write_domain);
2898 }
2899
2900 obj->cache_level = cache_level;
2901 return 0;
2902}
2903
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002904/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002905 * Prepare buffer for display plane (scanout, cursors, etc).
2906 * Can be called from an uninterruptible phase (modesetting) and allows
2907 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002908 */
2909int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002910i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2911 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002912 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002913{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002914 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002915 int ret;
2916
Chris Wilson88241782011-01-07 17:09:48 +00002917 ret = i915_gem_object_flush_gpu_write_domain(obj);
2918 if (ret)
2919 return ret;
2920
Chris Wilson0be73282010-12-06 14:36:27 +00002921 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07002922 ret = i915_gem_object_sync(obj, pipelined);
2923 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002924 return ret;
2925 }
2926
Eric Anholta7ef0642011-03-29 16:59:54 -07002927 /* The display engine is not coherent with the LLC cache on gen6. As
2928 * a result, we make sure that the pinning that is about to occur is
2929 * done with uncached PTEs. This is lowest common denominator for all
2930 * chipsets.
2931 *
2932 * However for gen6+, we could do better by using the GFDT bit instead
2933 * of uncaching, which would allow us to flush all the LLC-cached data
2934 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2935 */
2936 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2937 if (ret)
2938 return ret;
2939
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002940 /* As the user may map the buffer once pinned in the display plane
2941 * (e.g. libkms for the bootup splash), we have to ensure that we
2942 * always use map_and_fenceable for all scanout buffers.
2943 */
2944 ret = i915_gem_object_pin(obj, alignment, true);
2945 if (ret)
2946 return ret;
2947
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002948 i915_gem_object_flush_cpu_write_domain(obj);
2949
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002950 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002951 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002952
2953 /* It should now be out of any other write domains, and we can update
2954 * the domain values for our changes.
2955 */
2956 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002957 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002958
2959 trace_i915_gem_object_change_domain(obj,
2960 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002961 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002962
2963 return 0;
2964}
2965
Chris Wilson85345512010-11-13 09:49:11 +00002966int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002967i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002968{
Chris Wilson88241782011-01-07 17:09:48 +00002969 int ret;
2970
Chris Wilsona8198ee2011-04-13 22:04:09 +01002971 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002972 return 0;
2973
Chris Wilson88241782011-01-07 17:09:48 +00002974 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002975 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002976 if (ret)
2977 return ret;
2978 }
Chris Wilson85345512010-11-13 09:49:11 +00002979
Chris Wilsonc501ae72011-12-14 13:57:23 +01002980 ret = i915_gem_object_wait_rendering(obj);
2981 if (ret)
2982 return ret;
2983
Chris Wilsona8198ee2011-04-13 22:04:09 +01002984 /* Ensure that we invalidate the GPU's caches and TLBs. */
2985 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002986 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002987}
2988
Eric Anholte47c68e2008-11-14 13:35:19 -08002989/**
2990 * Moves a single object to the CPU read, and possibly write domain.
2991 *
2992 * This function returns when the move is complete, including waiting on
2993 * flushes to occur.
2994 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002995int
Chris Wilson919926a2010-11-12 13:42:53 +00002996i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002997{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002998 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002999 int ret;
3000
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003001 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3002 return 0;
3003
Chris Wilson88241782011-01-07 17:09:48 +00003004 ret = i915_gem_object_flush_gpu_write_domain(obj);
3005 if (ret)
3006 return ret;
3007
Chris Wilsonf8413192012-04-10 11:52:50 +01003008 if (write || obj->pending_gpu_write) {
3009 ret = i915_gem_object_wait_rendering(obj);
3010 if (ret)
3011 return ret;
3012 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003013
3014 i915_gem_object_flush_gtt_write_domain(obj);
3015
Chris Wilson05394f32010-11-08 19:18:58 +00003016 old_write_domain = obj->base.write_domain;
3017 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003018
Eric Anholte47c68e2008-11-14 13:35:19 -08003019 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003020 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003021 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003022
Chris Wilson05394f32010-11-08 19:18:58 +00003023 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003024 }
3025
3026 /* It should now be out of any other write domains, and we can update
3027 * the domain values for our changes.
3028 */
Chris Wilson05394f32010-11-08 19:18:58 +00003029 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003030
3031 /* If we're writing through the CPU, then the GPU read domains will
3032 * need to be invalidated at next use.
3033 */
3034 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003035 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3036 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003037 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003038
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003039 trace_i915_gem_object_change_domain(obj,
3040 old_read_domains,
3041 old_write_domain);
3042
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003043 return 0;
3044}
3045
Eric Anholt673a3942008-07-30 12:06:12 -07003046/* Throttle our rendering by waiting until the ring has completed our requests
3047 * emitted over 20 msec ago.
3048 *
Eric Anholtb9624422009-06-03 07:27:35 +00003049 * Note that if we were to use the current jiffies each time around the loop,
3050 * we wouldn't escape the function with any frames outstanding if the time to
3051 * render a frame was over 20ms.
3052 *
Eric Anholt673a3942008-07-30 12:06:12 -07003053 * This should get us reasonable parallelism between CPU and GPU but also
3054 * relatively low latency when blocking on a particular request to finish.
3055 */
3056static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003057i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003058{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003059 struct drm_i915_private *dev_priv = dev->dev_private;
3060 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003061 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003062 struct drm_i915_gem_request *request;
3063 struct intel_ring_buffer *ring = NULL;
3064 u32 seqno = 0;
3065 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003066
Chris Wilsone110e8d2011-01-26 15:39:14 +00003067 if (atomic_read(&dev_priv->mm.wedged))
3068 return -EIO;
3069
Chris Wilson1c255952010-09-26 11:03:27 +01003070 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003071 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003072 if (time_after_eq(request->emitted_jiffies, recent_enough))
3073 break;
3074
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003075 ring = request->ring;
3076 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003077 }
Chris Wilson1c255952010-09-26 11:03:27 +01003078 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003079
3080 if (seqno == 0)
3081 return 0;
3082
3083 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003084 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003085 /* And wait for the seqno passing without holding any locks and
3086 * causing extra latency for others. This is safe as the irq
3087 * generation is designed to be run atomically and so is
3088 * lockless.
3089 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003090 if (ring->irq_get(ring)) {
3091 ret = wait_event_interruptible(ring->irq_queue,
3092 i915_seqno_passed(ring->get_seqno(ring), seqno)
3093 || atomic_read(&dev_priv->mm.wedged));
3094 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003095
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003096 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3097 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003098 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3099 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003100 atomic_read(&dev_priv->mm.wedged), 3000)) {
3101 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003102 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003103 }
3104
3105 if (ret == 0)
3106 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003107
Eric Anholt673a3942008-07-30 12:06:12 -07003108 return ret;
3109}
3110
Eric Anholt673a3942008-07-30 12:06:12 -07003111int
Chris Wilson05394f32010-11-08 19:18:58 +00003112i915_gem_object_pin(struct drm_i915_gem_object *obj,
3113 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003114 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003115{
Chris Wilson05394f32010-11-08 19:18:58 +00003116 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003117 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003118 int ret;
3119
Chris Wilson05394f32010-11-08 19:18:58 +00003120 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003121 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003122
Chris Wilson05394f32010-11-08 19:18:58 +00003123 if (obj->gtt_space != NULL) {
3124 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3125 (map_and_fenceable && !obj->map_and_fenceable)) {
3126 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003127 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003128 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3129 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003130 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003131 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003132 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003133 ret = i915_gem_object_unbind(obj);
3134 if (ret)
3135 return ret;
3136 }
3137 }
3138
Chris Wilson05394f32010-11-08 19:18:58 +00003139 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003140 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003141 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003142 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003143 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003144 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003145
Daniel Vetter74898d72012-02-15 23:50:22 +01003146 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3147 i915_gem_gtt_bind_object(obj, obj->cache_level);
3148
Chris Wilson05394f32010-11-08 19:18:58 +00003149 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003150 if (!obj->active)
3151 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003152 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003153 }
Chris Wilson6299f992010-11-24 12:23:44 +00003154 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003155
Chris Wilson23bc5982010-09-29 16:10:57 +01003156 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003157 return 0;
3158}
3159
3160void
Chris Wilson05394f32010-11-08 19:18:58 +00003161i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003162{
Chris Wilson05394f32010-11-08 19:18:58 +00003163 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003164 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003165
Chris Wilson23bc5982010-09-29 16:10:57 +01003166 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003167 BUG_ON(obj->pin_count == 0);
3168 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003169
Chris Wilson05394f32010-11-08 19:18:58 +00003170 if (--obj->pin_count == 0) {
3171 if (!obj->active)
3172 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003173 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003174 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003175 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003176 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003177}
3178
3179int
3180i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003181 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003182{
3183 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003184 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003185 int ret;
3186
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003187 ret = i915_mutex_lock_interruptible(dev);
3188 if (ret)
3189 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003190
Chris Wilson05394f32010-11-08 19:18:58 +00003191 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003192 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003193 ret = -ENOENT;
3194 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003195 }
Eric Anholt673a3942008-07-30 12:06:12 -07003196
Chris Wilson05394f32010-11-08 19:18:58 +00003197 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003198 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003199 ret = -EINVAL;
3200 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003201 }
3202
Chris Wilson05394f32010-11-08 19:18:58 +00003203 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003204 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3205 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003206 ret = -EINVAL;
3207 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003208 }
3209
Chris Wilson05394f32010-11-08 19:18:58 +00003210 obj->user_pin_count++;
3211 obj->pin_filp = file;
3212 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003213 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003214 if (ret)
3215 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003216 }
3217
3218 /* XXX - flush the CPU caches for pinned objects
3219 * as the X server doesn't manage domains yet
3220 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003221 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003222 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003223out:
Chris Wilson05394f32010-11-08 19:18:58 +00003224 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003225unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003226 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003227 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003228}
3229
3230int
3231i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003232 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003233{
3234 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003235 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003236 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003237
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003238 ret = i915_mutex_lock_interruptible(dev);
3239 if (ret)
3240 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003241
Chris Wilson05394f32010-11-08 19:18:58 +00003242 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003243 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003244 ret = -ENOENT;
3245 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003246 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003247
Chris Wilson05394f32010-11-08 19:18:58 +00003248 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003249 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3250 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003251 ret = -EINVAL;
3252 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003253 }
Chris Wilson05394f32010-11-08 19:18:58 +00003254 obj->user_pin_count--;
3255 if (obj->user_pin_count == 0) {
3256 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003257 i915_gem_object_unpin(obj);
3258 }
Eric Anholt673a3942008-07-30 12:06:12 -07003259
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003260out:
Chris Wilson05394f32010-11-08 19:18:58 +00003261 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003262unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003263 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003264 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003265}
3266
3267int
3268i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003269 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003270{
3271 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003272 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003273 int ret;
3274
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003275 ret = i915_mutex_lock_interruptible(dev);
3276 if (ret)
3277 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003278
Chris Wilson05394f32010-11-08 19:18:58 +00003279 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003280 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003281 ret = -ENOENT;
3282 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003283 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003284
Chris Wilson0be555b2010-08-04 15:36:30 +01003285 /* Count all active objects as busy, even if they are currently not used
3286 * by the gpu. Users of this interface expect objects to eventually
3287 * become non-busy without any further actions, therefore emit any
3288 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003289 */
Chris Wilson05394f32010-11-08 19:18:58 +00003290 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003291 if (args->busy) {
3292 /* Unconditionally flush objects, even when the gpu still uses this
3293 * object. Userspace calling this function indicates that it wants to
3294 * use this buffer rather sooner than later, so issuing the required
3295 * flush earlier is beneficial.
3296 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003297 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003298 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003299 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003300 } else if (obj->ring->outstanding_lazy_request ==
3301 obj->last_rendering_seqno) {
3302 struct drm_i915_gem_request *request;
3303
Chris Wilson7a194872010-12-07 10:38:40 +00003304 /* This ring is not being cleared by active usage,
3305 * so emit a request to do so.
3306 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003307 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003308 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003309 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003310 if (ret)
3311 kfree(request);
3312 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003313 ret = -ENOMEM;
3314 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003315
3316 /* Update the active list for the hardware's current position.
3317 * Otherwise this only updates on a delayed timer or when irqs
3318 * are actually unmasked, and our working set ends up being
3319 * larger than required.
3320 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003321 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003322
Chris Wilson05394f32010-11-08 19:18:58 +00003323 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003324 }
Eric Anholt673a3942008-07-30 12:06:12 -07003325
Chris Wilson05394f32010-11-08 19:18:58 +00003326 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003327unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003328 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003329 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003330}
3331
3332int
3333i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3334 struct drm_file *file_priv)
3335{
Akshay Joshi0206e352011-08-16 15:34:10 -04003336 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003337}
3338
Chris Wilson3ef94da2009-09-14 16:50:29 +01003339int
3340i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3341 struct drm_file *file_priv)
3342{
3343 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003344 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003345 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003346
3347 switch (args->madv) {
3348 case I915_MADV_DONTNEED:
3349 case I915_MADV_WILLNEED:
3350 break;
3351 default:
3352 return -EINVAL;
3353 }
3354
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003355 ret = i915_mutex_lock_interruptible(dev);
3356 if (ret)
3357 return ret;
3358
Chris Wilson05394f32010-11-08 19:18:58 +00003359 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003360 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003361 ret = -ENOENT;
3362 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003363 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003364
Chris Wilson05394f32010-11-08 19:18:58 +00003365 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003366 ret = -EINVAL;
3367 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003368 }
3369
Chris Wilson05394f32010-11-08 19:18:58 +00003370 if (obj->madv != __I915_MADV_PURGED)
3371 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003372
Chris Wilson2d7ef392009-09-20 23:13:10 +01003373 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003374 if (i915_gem_object_is_purgeable(obj) &&
3375 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003376 i915_gem_object_truncate(obj);
3377
Chris Wilson05394f32010-11-08 19:18:58 +00003378 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003379
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003380out:
Chris Wilson05394f32010-11-08 19:18:58 +00003381 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003382unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003383 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003384 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003385}
3386
Chris Wilson05394f32010-11-08 19:18:58 +00003387struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3388 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003389{
Chris Wilson73aa8082010-09-30 11:46:12 +01003390 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003391 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003392 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003393
3394 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3395 if (obj == NULL)
3396 return NULL;
3397
3398 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3399 kfree(obj);
3400 return NULL;
3401 }
3402
Hugh Dickins5949eac2011-06-27 16:18:18 -07003403 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3404 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3405
Chris Wilson73aa8082010-09-30 11:46:12 +01003406 i915_gem_info_add_obj(dev_priv, size);
3407
Daniel Vetterc397b902010-04-09 19:05:07 +00003408 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3409 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3410
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003411 if (HAS_LLC(dev)) {
3412 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003413 * cache) for about a 10% performance improvement
3414 * compared to uncached. Graphics requests other than
3415 * display scanout are coherent with the CPU in
3416 * accessing this cache. This means in this mode we
3417 * don't need to clflush on the CPU side, and on the
3418 * GPU side we only need to flush internal caches to
3419 * get data visible to the CPU.
3420 *
3421 * However, we maintain the display planes as UC, and so
3422 * need to rebind when first used as such.
3423 */
3424 obj->cache_level = I915_CACHE_LLC;
3425 } else
3426 obj->cache_level = I915_CACHE_NONE;
3427
Daniel Vetter62b8b212010-04-09 19:05:08 +00003428 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003429 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003430 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003431 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003432 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003433 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003434 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003435 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003436 /* Avoid an unnecessary call to unbind on the first bind. */
3437 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003438
Chris Wilson05394f32010-11-08 19:18:58 +00003439 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003440}
3441
Eric Anholt673a3942008-07-30 12:06:12 -07003442int i915_gem_init_object(struct drm_gem_object *obj)
3443{
Daniel Vetterc397b902010-04-09 19:05:07 +00003444 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003445
Eric Anholt673a3942008-07-30 12:06:12 -07003446 return 0;
3447}
3448
Chris Wilson05394f32010-11-08 19:18:58 +00003449static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003450{
Chris Wilson05394f32010-11-08 19:18:58 +00003451 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003452 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003453 int ret;
3454
3455 ret = i915_gem_object_unbind(obj);
3456 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003457 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003458 &dev_priv->mm.deferred_free_list);
3459 return;
3460 }
3461
Chris Wilson26e12f892011-03-20 11:20:19 +00003462 trace_i915_gem_object_destroy(obj);
3463
Chris Wilson05394f32010-11-08 19:18:58 +00003464 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003465 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003466
Chris Wilson05394f32010-11-08 19:18:58 +00003467 drm_gem_object_release(&obj->base);
3468 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003469
Chris Wilson05394f32010-11-08 19:18:58 +00003470 kfree(obj->bit_17);
3471 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003472}
3473
Chris Wilson05394f32010-11-08 19:18:58 +00003474void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003475{
Chris Wilson05394f32010-11-08 19:18:58 +00003476 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3477 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003478
Chris Wilson05394f32010-11-08 19:18:58 +00003479 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003480 i915_gem_object_unpin(obj);
3481
Chris Wilson05394f32010-11-08 19:18:58 +00003482 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003483 i915_gem_detach_phys_object(dev, obj);
3484
Chris Wilsonbe726152010-07-23 23:18:50 +01003485 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003486}
3487
Jesse Barnes5669fca2009-02-17 15:13:31 -08003488int
Eric Anholt673a3942008-07-30 12:06:12 -07003489i915_gem_idle(struct drm_device *dev)
3490{
3491 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003492 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003493
Keith Packard6dbe2772008-10-14 21:41:13 -07003494 mutex_lock(&dev->struct_mutex);
3495
Chris Wilson87acb0a2010-10-19 10:13:00 +01003496 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003497 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003498 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003499 }
Eric Anholt673a3942008-07-30 12:06:12 -07003500
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003501 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003502 if (ret) {
3503 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003504 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003505 }
Eric Anholt673a3942008-07-30 12:06:12 -07003506
Chris Wilson29105cc2010-01-07 10:39:13 +00003507 /* Under UMS, be paranoid and evict. */
3508 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003509 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003510 if (ret) {
3511 mutex_unlock(&dev->struct_mutex);
3512 return ret;
3513 }
3514 }
3515
Chris Wilson312817a2010-11-22 11:50:11 +00003516 i915_gem_reset_fences(dev);
3517
Chris Wilson29105cc2010-01-07 10:39:13 +00003518 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3519 * We need to replace this with a semaphore, or something.
3520 * And not confound mm.suspended!
3521 */
3522 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003523 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003524
3525 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003526 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003527
Keith Packard6dbe2772008-10-14 21:41:13 -07003528 mutex_unlock(&dev->struct_mutex);
3529
Chris Wilson29105cc2010-01-07 10:39:13 +00003530 /* Cancel the retire work handler, which should be idle now. */
3531 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3532
Eric Anholt673a3942008-07-30 12:06:12 -07003533 return 0;
3534}
3535
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003536void i915_gem_init_swizzling(struct drm_device *dev)
3537{
3538 drm_i915_private_t *dev_priv = dev->dev_private;
3539
Daniel Vetter11782b02012-01-31 16:47:55 +01003540 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003541 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3542 return;
3543
3544 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3545 DISP_TILE_SURFACE_SWIZZLING);
3546
Daniel Vetter11782b02012-01-31 16:47:55 +01003547 if (IS_GEN5(dev))
3548 return;
3549
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003550 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3551 if (IS_GEN6(dev))
3552 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3553 else
3554 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3555}
Daniel Vettere21af882012-02-09 20:53:27 +01003556
3557void i915_gem_init_ppgtt(struct drm_device *dev)
3558{
3559 drm_i915_private_t *dev_priv = dev->dev_private;
3560 uint32_t pd_offset;
3561 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003562 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3563 uint32_t __iomem *pd_addr;
3564 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003565 int i;
3566
3567 if (!dev_priv->mm.aliasing_ppgtt)
3568 return;
3569
Daniel Vetter55a254a2012-03-22 00:14:43 +01003570
3571 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3572 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3573 dma_addr_t pt_addr;
3574
3575 if (dev_priv->mm.gtt->needs_dmar)
3576 pt_addr = ppgtt->pt_dma_addr[i];
3577 else
3578 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3579
3580 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3581 pd_entry |= GEN6_PDE_VALID;
3582
3583 writel(pd_entry, pd_addr + i);
3584 }
3585 readl(pd_addr);
3586
3587 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003588 pd_offset /= 64; /* in cachelines, */
3589 pd_offset <<= 16;
3590
3591 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003592 uint32_t ecochk, gab_ctl, ecobits;
3593
3594 ecobits = I915_READ(GAC_ECO_BITS);
3595 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003596
3597 gab_ctl = I915_READ(GAB_CTL);
3598 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3599
3600 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003601 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3602 ECOCHK_PPGTT_CACHE64B);
3603 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3604 } else if (INTEL_INFO(dev)->gen >= 7) {
3605 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3606 /* GFX_MODE is per-ring on gen7+ */
3607 }
3608
3609 for (i = 0; i < I915_NUM_RINGS; i++) {
3610 ring = &dev_priv->ring[i];
3611
3612 if (INTEL_INFO(dev)->gen >= 7)
3613 I915_WRITE(RING_MODE_GEN7(ring),
3614 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3615
3616 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3617 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3618 }
3619}
3620
Eric Anholt673a3942008-07-30 12:06:12 -07003621int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003622i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003623{
3624 drm_i915_private_t *dev_priv = dev->dev_private;
3625 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003626
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003627 i915_gem_init_swizzling(dev);
3628
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003629 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003630 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003631 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003632
3633 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003634 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003635 if (ret)
3636 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003637 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003638
Chris Wilson549f7362010-10-19 11:19:32 +01003639 if (HAS_BLT(dev)) {
3640 ret = intel_init_blt_ring_buffer(dev);
3641 if (ret)
3642 goto cleanup_bsd_ring;
3643 }
3644
Chris Wilson6f392d5482010-08-07 11:01:22 +01003645 dev_priv->next_seqno = 1;
3646
Daniel Vettere21af882012-02-09 20:53:27 +01003647 i915_gem_init_ppgtt(dev);
3648
Chris Wilson68f95ba2010-05-27 13:18:22 +01003649 return 0;
3650
Chris Wilson549f7362010-10-19 11:19:32 +01003651cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003652 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003653cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003654 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003655 return ret;
3656}
3657
3658void
3659i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3660{
3661 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003662 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003663
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003664 for (i = 0; i < I915_NUM_RINGS; i++)
3665 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003666}
3667
3668int
Eric Anholt673a3942008-07-30 12:06:12 -07003669i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3670 struct drm_file *file_priv)
3671{
3672 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003673 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003674
Jesse Barnes79e53942008-11-07 14:24:08 -08003675 if (drm_core_check_feature(dev, DRIVER_MODESET))
3676 return 0;
3677
Ben Gamariba1234d2009-09-14 17:48:47 -04003678 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003679 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003680 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003681 }
3682
Eric Anholt673a3942008-07-30 12:06:12 -07003683 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003684 dev_priv->mm.suspended = 0;
3685
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003686 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003687 if (ret != 0) {
3688 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003689 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003690 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003691
Chris Wilson69dc4982010-10-19 10:36:51 +01003692 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003693 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3694 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003695 for (i = 0; i < I915_NUM_RINGS; i++) {
3696 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3697 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3698 }
Eric Anholt673a3942008-07-30 12:06:12 -07003699 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003700
Chris Wilson5f353082010-06-07 14:03:03 +01003701 ret = drm_irq_install(dev);
3702 if (ret)
3703 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003704
Eric Anholt673a3942008-07-30 12:06:12 -07003705 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003706
3707cleanup_ringbuffer:
3708 mutex_lock(&dev->struct_mutex);
3709 i915_gem_cleanup_ringbuffer(dev);
3710 dev_priv->mm.suspended = 1;
3711 mutex_unlock(&dev->struct_mutex);
3712
3713 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003714}
3715
3716int
3717i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3718 struct drm_file *file_priv)
3719{
Jesse Barnes79e53942008-11-07 14:24:08 -08003720 if (drm_core_check_feature(dev, DRIVER_MODESET))
3721 return 0;
3722
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003723 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003724 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003725}
3726
3727void
3728i915_gem_lastclose(struct drm_device *dev)
3729{
3730 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003731
Eric Anholte806b492009-01-22 09:56:58 -08003732 if (drm_core_check_feature(dev, DRIVER_MODESET))
3733 return;
3734
Keith Packard6dbe2772008-10-14 21:41:13 -07003735 ret = i915_gem_idle(dev);
3736 if (ret)
3737 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003738}
3739
Chris Wilson64193402010-10-24 12:38:05 +01003740static void
3741init_ring_lists(struct intel_ring_buffer *ring)
3742{
3743 INIT_LIST_HEAD(&ring->active_list);
3744 INIT_LIST_HEAD(&ring->request_list);
3745 INIT_LIST_HEAD(&ring->gpu_write_list);
3746}
3747
Eric Anholt673a3942008-07-30 12:06:12 -07003748void
3749i915_gem_load(struct drm_device *dev)
3750{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003751 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003752 drm_i915_private_t *dev_priv = dev->dev_private;
3753
Chris Wilson69dc4982010-10-19 10:36:51 +01003754 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003755 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3756 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003757 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003758 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003759 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003760 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003761 for (i = 0; i < I915_NUM_RINGS; i++)
3762 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003763 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003764 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003765 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3766 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003767 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003768
Dave Airlie94400122010-07-20 13:15:31 +10003769 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3770 if (IS_GEN3(dev)) {
3771 u32 tmp = I915_READ(MI_ARB_STATE);
3772 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3773 /* arb state is a masked write, so set bit + bit in mask */
3774 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3775 I915_WRITE(MI_ARB_STATE, tmp);
3776 }
3777 }
3778
Chris Wilson72bfa192010-12-19 11:42:05 +00003779 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3780
Jesse Barnesde151cf2008-11-12 10:03:55 -08003781 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003782 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3783 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003784
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003785 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003786 dev_priv->num_fence_regs = 16;
3787 else
3788 dev_priv->num_fence_regs = 8;
3789
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003790 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003791 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3792 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003793 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003794
Eric Anholt673a3942008-07-30 12:06:12 -07003795 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003796 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003797
Chris Wilsonce453d82011-02-21 14:43:56 +00003798 dev_priv->mm.interruptible = true;
3799
Chris Wilson17250b72010-10-28 12:51:39 +01003800 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3801 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3802 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003803}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003804
3805/*
3806 * Create a physically contiguous memory object for this object
3807 * e.g. for cursor + overlay regs
3808 */
Chris Wilson995b6762010-08-20 13:23:26 +01003809static int i915_gem_init_phys_object(struct drm_device *dev,
3810 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003811{
3812 drm_i915_private_t *dev_priv = dev->dev_private;
3813 struct drm_i915_gem_phys_object *phys_obj;
3814 int ret;
3815
3816 if (dev_priv->mm.phys_objs[id - 1] || !size)
3817 return 0;
3818
Eric Anholt9a298b22009-03-24 12:23:04 -07003819 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003820 if (!phys_obj)
3821 return -ENOMEM;
3822
3823 phys_obj->id = id;
3824
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003825 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003826 if (!phys_obj->handle) {
3827 ret = -ENOMEM;
3828 goto kfree_obj;
3829 }
3830#ifdef CONFIG_X86
3831 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3832#endif
3833
3834 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3835
3836 return 0;
3837kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003838 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003839 return ret;
3840}
3841
Chris Wilson995b6762010-08-20 13:23:26 +01003842static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003843{
3844 drm_i915_private_t *dev_priv = dev->dev_private;
3845 struct drm_i915_gem_phys_object *phys_obj;
3846
3847 if (!dev_priv->mm.phys_objs[id - 1])
3848 return;
3849
3850 phys_obj = dev_priv->mm.phys_objs[id - 1];
3851 if (phys_obj->cur_obj) {
3852 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3853 }
3854
3855#ifdef CONFIG_X86
3856 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3857#endif
3858 drm_pci_free(dev, phys_obj->handle);
3859 kfree(phys_obj);
3860 dev_priv->mm.phys_objs[id - 1] = NULL;
3861}
3862
3863void i915_gem_free_all_phys_object(struct drm_device *dev)
3864{
3865 int i;
3866
Dave Airlie260883c2009-01-22 17:58:49 +10003867 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003868 i915_gem_free_phys_object(dev, i);
3869}
3870
3871void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003872 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003873{
Chris Wilson05394f32010-11-08 19:18:58 +00003874 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003875 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003876 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003877 int page_count;
3878
Chris Wilson05394f32010-11-08 19:18:58 +00003879 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003880 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003881 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003882
Chris Wilson05394f32010-11-08 19:18:58 +00003883 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003884 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003885 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003886 if (!IS_ERR(page)) {
3887 char *dst = kmap_atomic(page);
3888 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3889 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003890
Chris Wilsone5281cc2010-10-28 13:45:36 +01003891 drm_clflush_pages(&page, 1);
3892
3893 set_page_dirty(page);
3894 mark_page_accessed(page);
3895 page_cache_release(page);
3896 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003897 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003898 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003899
Chris Wilson05394f32010-11-08 19:18:58 +00003900 obj->phys_obj->cur_obj = NULL;
3901 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003902}
3903
3904int
3905i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003906 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003907 int id,
3908 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003909{
Chris Wilson05394f32010-11-08 19:18:58 +00003910 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003911 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003912 int ret = 0;
3913 int page_count;
3914 int i;
3915
3916 if (id > I915_MAX_PHYS_OBJECT)
3917 return -EINVAL;
3918
Chris Wilson05394f32010-11-08 19:18:58 +00003919 if (obj->phys_obj) {
3920 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003921 return 0;
3922 i915_gem_detach_phys_object(dev, obj);
3923 }
3924
Dave Airlie71acb5e2008-12-30 20:31:46 +10003925 /* create a new object */
3926 if (!dev_priv->mm.phys_objs[id - 1]) {
3927 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003928 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003929 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003930 DRM_ERROR("failed to init phys object %d size: %zu\n",
3931 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003932 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003933 }
3934 }
3935
3936 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003937 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3938 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003939
Chris Wilson05394f32010-11-08 19:18:58 +00003940 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003941
3942 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003943 struct page *page;
3944 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003945
Hugh Dickins5949eac2011-06-27 16:18:18 -07003946 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003947 if (IS_ERR(page))
3948 return PTR_ERR(page);
3949
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003950 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003951 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003952 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003953 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003954
3955 mark_page_accessed(page);
3956 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003957 }
3958
3959 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003960}
3961
3962static int
Chris Wilson05394f32010-11-08 19:18:58 +00003963i915_gem_phys_pwrite(struct drm_device *dev,
3964 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003965 struct drm_i915_gem_pwrite *args,
3966 struct drm_file *file_priv)
3967{
Chris Wilson05394f32010-11-08 19:18:58 +00003968 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003969 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003970
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003971 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3972 unsigned long unwritten;
3973
3974 /* The physical object once assigned is fixed for the lifetime
3975 * of the obj, so we can safely drop the lock and continue
3976 * to access vaddr.
3977 */
3978 mutex_unlock(&dev->struct_mutex);
3979 unwritten = copy_from_user(vaddr, user_data, args->size);
3980 mutex_lock(&dev->struct_mutex);
3981 if (unwritten)
3982 return -EFAULT;
3983 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003984
Daniel Vetter40ce6572010-11-05 18:12:18 +01003985 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003986 return 0;
3987}
Eric Anholtb9624422009-06-03 07:27:35 +00003988
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003989void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003990{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003991 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003992
3993 /* Clean up our request list when the client is going away, so that
3994 * later retire_requests won't dereference our soon-to-be-gone
3995 * file_priv.
3996 */
Chris Wilson1c255952010-09-26 11:03:27 +01003997 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003998 while (!list_empty(&file_priv->mm.request_list)) {
3999 struct drm_i915_gem_request *request;
4000
4001 request = list_first_entry(&file_priv->mm.request_list,
4002 struct drm_i915_gem_request,
4003 client_list);
4004 list_del(&request->client_list);
4005 request->file_priv = NULL;
4006 }
Chris Wilson1c255952010-09-26 11:03:27 +01004007 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004008}
Chris Wilson31169712009-09-14 16:50:28 +01004009
Chris Wilson31169712009-09-14 16:50:28 +01004010static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004011i915_gpu_is_active(struct drm_device *dev)
4012{
4013 drm_i915_private_t *dev_priv = dev->dev_private;
4014 int lists_empty;
4015
Chris Wilson1637ef42010-04-20 17:10:35 +01004016 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004017 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004018
4019 return !lists_empty;
4020}
4021
4022static int
Ying Han1495f232011-05-24 17:12:27 -07004023i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004024{
Chris Wilson17250b72010-10-28 12:51:39 +01004025 struct drm_i915_private *dev_priv =
4026 container_of(shrinker,
4027 struct drm_i915_private,
4028 mm.inactive_shrinker);
4029 struct drm_device *dev = dev_priv->dev;
4030 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004031 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004032 int cnt;
4033
4034 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004035 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004036
4037 /* "fast-path" to count number of available objects */
4038 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004039 cnt = 0;
4040 list_for_each_entry(obj,
4041 &dev_priv->mm.inactive_list,
4042 mm_list)
4043 cnt++;
4044 mutex_unlock(&dev->struct_mutex);
4045 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004046 }
4047
Chris Wilson1637ef42010-04-20 17:10:35 +01004048rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004049 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004050 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004051
Chris Wilson17250b72010-10-28 12:51:39 +01004052 list_for_each_entry_safe(obj, next,
4053 &dev_priv->mm.inactive_list,
4054 mm_list) {
4055 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004056 if (i915_gem_object_unbind(obj) == 0 &&
4057 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004058 break;
Chris Wilson31169712009-09-14 16:50:28 +01004059 }
Chris Wilson31169712009-09-14 16:50:28 +01004060 }
4061
4062 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004063 cnt = 0;
4064 list_for_each_entry_safe(obj, next,
4065 &dev_priv->mm.inactive_list,
4066 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004067 if (nr_to_scan &&
4068 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004069 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004070 else
Chris Wilson17250b72010-10-28 12:51:39 +01004071 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004072 }
4073
Chris Wilson17250b72010-10-28 12:51:39 +01004074 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004075 /*
4076 * We are desperate for pages, so as a last resort, wait
4077 * for the GPU to finish and discard whatever we can.
4078 * This has a dramatic impact to reduce the number of
4079 * OOM-killer events whilst running the GPU aggressively.
4080 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004081 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004082 goto rescan;
4083 }
Chris Wilson17250b72010-10-28 12:51:39 +01004084 mutex_unlock(&dev->struct_mutex);
4085 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004086}