blob: af6a510367af0319cedb1eea9c9c89297e79c883 [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>
Daniel Vetter1286ff72012-05-10 15:25:09 +020038#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070039
Chris Wilson88241782011-01-07 17:09:48 +000040static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000041static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
42static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000043static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
44 unsigned alignment,
45 bool map_and_fenceable);
Chris Wilson05394f32010-11-08 19:18:58 +000046static int i915_gem_phys_pwrite(struct drm_device *dev,
47 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100048 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000049 struct drm_file *file);
Eric Anholt673a3942008-07-30 12:06:12 -070050
Chris Wilson61050802012-04-17 15:31:31 +010051static void i915_gem_write_fence(struct drm_device *dev, int reg,
52 struct drm_i915_gem_object *obj);
53static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
54 struct drm_i915_fence_reg *fence,
55 bool enable);
56
Chris Wilson17250b72010-10-28 12:51:39 +010057static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070058 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010059static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010060
Chris Wilson61050802012-04-17 15:31:31 +010061static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
62{
63 if (obj->tiling_mode)
64 i915_gem_release_mmap(obj);
65
66 /* As we do not have an associated fence register, we will force
67 * a tiling change if we ever need to acquire one.
68 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010069 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010070 obj->fence_reg = I915_FENCE_REG_NONE;
71}
72
Chris Wilson73aa8082010-09-30 11:46:12 +010073/* some bookkeeping */
74static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
75 size_t size)
76{
77 dev_priv->mm.object_count++;
78 dev_priv->mm.object_memory += size;
79}
80
81static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
82 size_t size)
83{
84 dev_priv->mm.object_count--;
85 dev_priv->mm.object_memory -= size;
86}
87
Chris Wilson21dd3732011-01-26 15:55:56 +000088static int
89i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010090{
91 struct drm_i915_private *dev_priv = dev->dev_private;
92 struct completion *x = &dev_priv->error_completion;
93 unsigned long flags;
94 int ret;
95
96 if (!atomic_read(&dev_priv->mm.wedged))
97 return 0;
98
99 ret = wait_for_completion_interruptible(x);
100 if (ret)
101 return ret;
102
Chris Wilson21dd3732011-01-26 15:55:56 +0000103 if (atomic_read(&dev_priv->mm.wedged)) {
104 /* GPU is hung, bump the completion count to account for
105 * the token we just consumed so that we never hit zero and
106 * end up waiting upon a subsequent completion event that
107 * will never happen.
108 */
109 spin_lock_irqsave(&x->wait.lock, flags);
110 x->done++;
111 spin_unlock_irqrestore(&x->wait.lock, flags);
112 }
113 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100114}
115
Chris Wilson54cf91d2010-11-25 18:00:26 +0000116int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100117{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100118 int ret;
119
Chris Wilson21dd3732011-01-26 15:55:56 +0000120 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100121 if (ret)
122 return ret;
123
124 ret = mutex_lock_interruptible(&dev->struct_mutex);
125 if (ret)
126 return ret;
127
Chris Wilson23bc5982010-09-29 16:10:57 +0100128 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100129 return 0;
130}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100131
Chris Wilson7d1c4802010-08-07 21:45:03 +0100132static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000133i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100134{
Chris Wilson1b502472012-04-24 15:47:30 +0100135 return !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100136}
137
Eric Anholt673a3942008-07-30 12:06:12 -0700138int
139i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000140 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700141{
Eric Anholt673a3942008-07-30 12:06:12 -0700142 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000143
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200144 if (drm_core_check_feature(dev, DRIVER_MODESET))
145 return -ENODEV;
146
Chris Wilson20217462010-11-23 15:26:33 +0000147 if (args->gtt_start >= args->gtt_end ||
148 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
149 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700150
Daniel Vetterf534bc02012-03-26 22:37:04 +0200151 /* GEM with user mode setting was never supported on ilk and later. */
152 if (INTEL_INFO(dev)->gen >= 5)
153 return -ENODEV;
154
Eric Anholt673a3942008-07-30 12:06:12 -0700155 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200156 i915_gem_init_global_gtt(dev, args->gtt_start,
157 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700158 mutex_unlock(&dev->struct_mutex);
159
Chris Wilson20217462010-11-23 15:26:33 +0000160 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700161}
162
Eric Anholt5a125c32008-10-22 21:40:13 -0700163int
164i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000165 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700166{
Chris Wilson73aa8082010-09-30 11:46:12 +0100167 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700168 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000169 struct drm_i915_gem_object *obj;
170 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700171
Chris Wilson6299f992010-11-24 12:23:44 +0000172 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100173 mutex_lock(&dev->struct_mutex);
Chris Wilson1b502472012-04-24 15:47:30 +0100174 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list)
175 if (obj->pin_count)
176 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100177 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700178
Chris Wilson6299f992010-11-24 12:23:44 +0000179 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400180 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000181
Eric Anholt5a125c32008-10-22 21:40:13 -0700182 return 0;
183}
184
Dave Airlieff72145b2011-02-07 12:16:14 +1000185static int
186i915_gem_create(struct drm_file *file,
187 struct drm_device *dev,
188 uint64_t size,
189 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700190{
Chris Wilson05394f32010-11-08 19:18:58 +0000191 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300192 int ret;
193 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700194
Dave Airlieff72145b2011-02-07 12:16:14 +1000195 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200196 if (size == 0)
197 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700198
199 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000200 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700201 if (obj == NULL)
202 return -ENOMEM;
203
Chris Wilson05394f32010-11-08 19:18:58 +0000204 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100205 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000206 drm_gem_object_release(&obj->base);
207 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100208 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700209 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100210 }
211
Chris Wilson202f2fe2010-10-14 13:20:40 +0100212 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000213 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100214 trace_i915_gem_object_create(obj);
215
Dave Airlieff72145b2011-02-07 12:16:14 +1000216 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700217 return 0;
218}
219
Dave Airlieff72145b2011-02-07 12:16:14 +1000220int
221i915_gem_dumb_create(struct drm_file *file,
222 struct drm_device *dev,
223 struct drm_mode_create_dumb *args)
224{
225 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000226 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000227 args->size = args->pitch * args->height;
228 return i915_gem_create(file, dev,
229 args->size, &args->handle);
230}
231
232int i915_gem_dumb_destroy(struct drm_file *file,
233 struct drm_device *dev,
234 uint32_t handle)
235{
236 return drm_gem_handle_delete(file, handle);
237}
238
239/**
240 * Creates a new mm object and returns a handle to it.
241 */
242int
243i915_gem_create_ioctl(struct drm_device *dev, void *data,
244 struct drm_file *file)
245{
246 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200247
Dave Airlieff72145b2011-02-07 12:16:14 +1000248 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
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700287__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
288 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100289 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
Daniel Vetter1286ff72012-05-10 15:25:09 +0200542 /* prime objects have no backing filp to GEM pread/pwrite
543 * pages from.
544 */
545 if (!obj->base.filp) {
546 ret = -EINVAL;
547 goto out;
548 }
549
Chris Wilsondb53a302011-02-03 11:57:46 +0000550 trace_i915_gem_object_pread(obj, args->offset, args->size);
551
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200552 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700553
Chris Wilson35b62a82010-09-26 20:23:38 +0100554out:
Chris Wilson05394f32010-11-08 19:18:58 +0000555 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100556unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100557 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700558 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700559}
560
Keith Packard0839ccb2008-10-30 19:38:48 -0700561/* This is the fast write path which cannot handle
562 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700563 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700564
Keith Packard0839ccb2008-10-30 19:38:48 -0700565static inline int
566fast_user_write(struct io_mapping *mapping,
567 loff_t page_base, int page_offset,
568 char __user *user_data,
569 int length)
570{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700571 void __iomem *vaddr_atomic;
572 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700573 unsigned long unwritten;
574
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700575 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700576 /* We can use the cpu mem copy function because this is X86. */
577 vaddr = (void __force*)vaddr_atomic + page_offset;
578 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700579 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700580 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100581 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700582}
583
Eric Anholt3de09aa2009-03-09 09:42:23 -0700584/**
585 * This is the fast pwrite path, where we copy the data directly from the
586 * user into the GTT, uncached.
587 */
Eric Anholt673a3942008-07-30 12:06:12 -0700588static int
Chris Wilson05394f32010-11-08 19:18:58 +0000589i915_gem_gtt_pwrite_fast(struct drm_device *dev,
590 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700591 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000592 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700593{
Keith Packard0839ccb2008-10-30 19:38:48 -0700594 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700595 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700596 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700597 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200598 int page_offset, page_length, ret;
599
600 ret = i915_gem_object_pin(obj, 0, true);
601 if (ret)
602 goto out;
603
604 ret = i915_gem_object_set_to_gtt_domain(obj, true);
605 if (ret)
606 goto out_unpin;
607
608 ret = i915_gem_object_put_fence(obj);
609 if (ret)
610 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700611
612 user_data = (char __user *) (uintptr_t) args->data_ptr;
613 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700614
Chris Wilson05394f32010-11-08 19:18:58 +0000615 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700616
617 while (remain > 0) {
618 /* Operation in this page
619 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700620 * page_base = page offset within aperture
621 * page_offset = offset within page
622 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700623 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100624 page_base = offset & PAGE_MASK;
625 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700626 page_length = remain;
627 if ((page_offset + remain) > PAGE_SIZE)
628 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700629
Keith Packard0839ccb2008-10-30 19:38:48 -0700630 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700631 * source page isn't available. Return the error and we'll
632 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700633 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100634 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200635 page_offset, user_data, page_length)) {
636 ret = -EFAULT;
637 goto out_unpin;
638 }
Eric Anholt673a3942008-07-30 12:06:12 -0700639
Keith Packard0839ccb2008-10-30 19:38:48 -0700640 remain -= page_length;
641 user_data += page_length;
642 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700643 }
Eric Anholt673a3942008-07-30 12:06:12 -0700644
Daniel Vetter935aaa62012-03-25 19:47:35 +0200645out_unpin:
646 i915_gem_object_unpin(obj);
647out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700648 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700649}
650
Daniel Vetterd174bd62012-03-25 19:47:40 +0200651/* Per-page copy function for the shmem pwrite fastpath.
652 * Flushes invalid cachelines before writing to the target if
653 * needs_clflush_before is set and flushes out any written cachelines after
654 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700655static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200656shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
657 char __user *user_data,
658 bool page_do_bit17_swizzling,
659 bool needs_clflush_before,
660 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700661{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200662 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700663 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700664
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200665 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200666 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700667
Daniel Vetterd174bd62012-03-25 19:47:40 +0200668 vaddr = kmap_atomic(page);
669 if (needs_clflush_before)
670 drm_clflush_virt_range(vaddr + shmem_page_offset,
671 page_length);
672 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
673 user_data,
674 page_length);
675 if (needs_clflush_after)
676 drm_clflush_virt_range(vaddr + shmem_page_offset,
677 page_length);
678 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700679
680 return ret;
681}
682
Daniel Vetterd174bd62012-03-25 19:47:40 +0200683/* Only difference to the fast-path function is that this can handle bit17
684 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700685static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200686shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
687 char __user *user_data,
688 bool page_do_bit17_swizzling,
689 bool needs_clflush_before,
690 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700691{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200692 char *vaddr;
693 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700694
Daniel Vetterd174bd62012-03-25 19:47:40 +0200695 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200696 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200697 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
698 page_length,
699 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200700 if (page_do_bit17_swizzling)
701 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100702 user_data,
703 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200704 else
705 ret = __copy_from_user(vaddr + shmem_page_offset,
706 user_data,
707 page_length);
708 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200709 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
710 page_length,
711 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200712 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100713
Daniel Vetterd174bd62012-03-25 19:47:40 +0200714 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700715}
716
Eric Anholt40123c12009-03-09 13:42:30 -0700717static int
Daniel Vettere244a442012-03-25 19:47:28 +0200718i915_gem_shmem_pwrite(struct drm_device *dev,
719 struct drm_i915_gem_object *obj,
720 struct drm_i915_gem_pwrite *args,
721 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700722{
Chris Wilson05394f32010-11-08 19:18:58 +0000723 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700724 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100725 loff_t offset;
726 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100727 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100728 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200729 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200730 int needs_clflush_after = 0;
731 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200732 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700733
Daniel Vetter8c599672011-12-14 13:57:31 +0100734 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700735 remain = args->size;
736
Daniel Vetter8c599672011-12-14 13:57:31 +0100737 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700738
Daniel Vetter58642882012-03-25 19:47:37 +0200739 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
740 /* If we're not in the cpu write domain, set ourself into the gtt
741 * write domain and manually flush cachelines (if required). This
742 * optimizes for the case when the gpu will use the data
743 * right away and we therefore have to clflush anyway. */
744 if (obj->cache_level == I915_CACHE_NONE)
745 needs_clflush_after = 1;
746 ret = i915_gem_object_set_to_gtt_domain(obj, true);
747 if (ret)
748 return ret;
749 }
750 /* Same trick applies for invalidate partially written cachelines before
751 * writing. */
752 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
753 && obj->cache_level == I915_CACHE_NONE)
754 needs_clflush_before = 1;
755
Eric Anholt40123c12009-03-09 13:42:30 -0700756 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000757 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700758
759 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100760 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200761 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100762
Eric Anholt40123c12009-03-09 13:42:30 -0700763 /* Operation in this page
764 *
Eric Anholt40123c12009-03-09 13:42:30 -0700765 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700766 * page_length = bytes to copy for this page
767 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100768 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700769
770 page_length = remain;
771 if ((shmem_page_offset + page_length) > PAGE_SIZE)
772 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700773
Daniel Vetter58642882012-03-25 19:47:37 +0200774 /* If we don't overwrite a cacheline completely we need to be
775 * careful to have up-to-date data by first clflushing. Don't
776 * overcomplicate things and flush the entire patch. */
777 partial_cacheline_write = needs_clflush_before &&
778 ((shmem_page_offset | page_length)
779 & (boot_cpu_data.x86_clflush_size - 1));
780
Daniel Vetter692a5762012-03-25 19:47:34 +0200781 if (obj->pages) {
782 page = obj->pages[offset >> PAGE_SHIFT];
783 release_page = 0;
784 } else {
785 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
786 if (IS_ERR(page)) {
787 ret = PTR_ERR(page);
788 goto out;
789 }
790 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100791 }
792
Daniel Vetter8c599672011-12-14 13:57:31 +0100793 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
794 (page_to_phys(page) & (1 << 17)) != 0;
795
Daniel Vetterd174bd62012-03-25 19:47:40 +0200796 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
797 user_data, page_do_bit17_swizzling,
798 partial_cacheline_write,
799 needs_clflush_after);
800 if (ret == 0)
801 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700802
Daniel Vettere244a442012-03-25 19:47:28 +0200803 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200804 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200805 mutex_unlock(&dev->struct_mutex);
806
Daniel Vetterd174bd62012-03-25 19:47:40 +0200807 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
808 user_data, page_do_bit17_swizzling,
809 partial_cacheline_write,
810 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700811
Daniel Vettere244a442012-03-25 19:47:28 +0200812 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200813 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200814next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100815 set_page_dirty(page);
816 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200817 if (release_page)
818 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100819
Daniel Vetter8c599672011-12-14 13:57:31 +0100820 if (ret) {
821 ret = -EFAULT;
822 goto out;
823 }
824
Eric Anholt40123c12009-03-09 13:42:30 -0700825 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100826 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700827 offset += page_length;
828 }
829
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100830out:
Daniel Vettere244a442012-03-25 19:47:28 +0200831 if (hit_slowpath) {
832 /* Fixup: Kill any reinstated backing storage pages */
833 if (obj->madv == __I915_MADV_PURGED)
834 i915_gem_object_truncate(obj);
835 /* and flush dirty cachelines in case the object isn't in the cpu write
836 * domain anymore. */
837 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
838 i915_gem_clflush_object(obj);
839 intel_gtt_chipset_flush();
840 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100841 }
Eric Anholt40123c12009-03-09 13:42:30 -0700842
Daniel Vetter58642882012-03-25 19:47:37 +0200843 if (needs_clflush_after)
844 intel_gtt_chipset_flush();
845
Eric Anholt40123c12009-03-09 13:42:30 -0700846 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700847}
848
849/**
850 * Writes data to the object referenced by handle.
851 *
852 * On error, the contents of the buffer that were to be modified are undefined.
853 */
854int
855i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100856 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700857{
858 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000859 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000860 int ret;
861
862 if (args->size == 0)
863 return 0;
864
865 if (!access_ok(VERIFY_READ,
866 (char __user *)(uintptr_t)args->data_ptr,
867 args->size))
868 return -EFAULT;
869
Daniel Vetterf56f8212012-03-25 19:47:41 +0200870 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
871 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000872 if (ret)
873 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700874
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100875 ret = i915_mutex_lock_interruptible(dev);
876 if (ret)
877 return ret;
878
Chris Wilson05394f32010-11-08 19:18:58 +0000879 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000880 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100881 ret = -ENOENT;
882 goto unlock;
883 }
Eric Anholt673a3942008-07-30 12:06:12 -0700884
Chris Wilson7dcd2492010-09-26 20:21:44 +0100885 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000886 if (args->offset > obj->base.size ||
887 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100888 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100889 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100890 }
891
Daniel Vetter1286ff72012-05-10 15:25:09 +0200892 /* prime objects have no backing filp to GEM pread/pwrite
893 * pages from.
894 */
895 if (!obj->base.filp) {
896 ret = -EINVAL;
897 goto out;
898 }
899
Chris Wilsondb53a302011-02-03 11:57:46 +0000900 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
901
Daniel Vetter935aaa62012-03-25 19:47:35 +0200902 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700903 /* We can only do the GTT pwrite on untiled buffers, as otherwise
904 * it would end up going through the fenced access, and we'll get
905 * different detiling behavior between reading and writing.
906 * pread/pwrite currently are reading and writing from the CPU
907 * perspective, requiring manual detiling by the client.
908 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100909 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100910 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100911 goto out;
912 }
913
914 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200915 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200916 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200917 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100918 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100919 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200920 /* Note that the gtt paths might fail with non-page-backed user
921 * pointers (e.g. gtt mappings when moving data between
922 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700923 }
Eric Anholt673a3942008-07-30 12:06:12 -0700924
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100925 if (ret == -EFAULT)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200926 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100927
Chris Wilson35b62a82010-09-26 20:23:38 +0100928out:
Chris Wilson05394f32010-11-08 19:18:58 +0000929 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100930unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100931 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700932 return ret;
933}
934
935/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800936 * Called when user space prepares to use an object with the CPU, either
937 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700938 */
939int
940i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000941 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700942{
943 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000944 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800945 uint32_t read_domains = args->read_domains;
946 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700947 int ret;
948
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800949 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100950 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800951 return -EINVAL;
952
Chris Wilson21d509e2009-06-06 09:46:02 +0100953 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800954 return -EINVAL;
955
956 /* Having something in the write domain implies it's in the read
957 * domain, and only that read domain. Enforce that in the request.
958 */
959 if (write_domain != 0 && read_domains != write_domain)
960 return -EINVAL;
961
Chris Wilson76c1dec2010-09-25 11:22:51 +0100962 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100963 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100964 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700965
Chris Wilson05394f32010-11-08 19:18:58 +0000966 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000967 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100968 ret = -ENOENT;
969 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100970 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700971
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800972 if (read_domains & I915_GEM_DOMAIN_GTT) {
973 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800974
975 /* Silently promote "you're not bound, there was nothing to do"
976 * to success, since the client was just asking us to
977 * make sure everything was done.
978 */
979 if (ret == -EINVAL)
980 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800981 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800982 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800983 }
984
Chris Wilson05394f32010-11-08 19:18:58 +0000985 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100986unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700987 mutex_unlock(&dev->struct_mutex);
988 return ret;
989}
990
991/**
992 * Called when user space has done writes to this buffer
993 */
994int
995i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000996 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700997{
998 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000999 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001000 int ret = 0;
1001
Chris Wilson76c1dec2010-09-25 11:22:51 +01001002 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001003 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001004 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001005
Chris Wilson05394f32010-11-08 19:18:58 +00001006 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001007 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001008 ret = -ENOENT;
1009 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001010 }
1011
Eric Anholt673a3942008-07-30 12:06:12 -07001012 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001013 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001014 i915_gem_object_flush_cpu_write_domain(obj);
1015
Chris Wilson05394f32010-11-08 19:18:58 +00001016 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001017unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001018 mutex_unlock(&dev->struct_mutex);
1019 return ret;
1020}
1021
1022/**
1023 * Maps the contents of an object, returning the address it is mapped
1024 * into.
1025 *
1026 * While the mapping holds a reference on the contents of the object, it doesn't
1027 * imply a ref on the object itself.
1028 */
1029int
1030i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001031 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001032{
1033 struct drm_i915_gem_mmap *args = data;
1034 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001035 unsigned long addr;
1036
Chris Wilson05394f32010-11-08 19:18:58 +00001037 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001038 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001039 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001040
Daniel Vetter1286ff72012-05-10 15:25:09 +02001041 /* prime objects have no backing filp to GEM mmap
1042 * pages from.
1043 */
1044 if (!obj->filp) {
1045 drm_gem_object_unreference_unlocked(obj);
1046 return -EINVAL;
1047 }
1048
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001049 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001050 PROT_READ | PROT_WRITE, MAP_SHARED,
1051 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001052 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001053 if (IS_ERR((void *)addr))
1054 return addr;
1055
1056 args->addr_ptr = (uint64_t) addr;
1057
1058 return 0;
1059}
1060
Jesse Barnesde151cf2008-11-12 10:03:55 -08001061/**
1062 * i915_gem_fault - fault a page into the GTT
1063 * vma: VMA in question
1064 * vmf: fault info
1065 *
1066 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1067 * from userspace. The fault handler takes care of binding the object to
1068 * the GTT (if needed), allocating and programming a fence register (again,
1069 * only if needed based on whether the old reg is still valid or the object
1070 * is tiled) and inserting a new PTE into the faulting process.
1071 *
1072 * Note that the faulting process may involve evicting existing objects
1073 * from the GTT and/or fence registers to make room. So performance may
1074 * suffer if the GTT working set is large or there are few fence registers
1075 * left.
1076 */
1077int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1078{
Chris Wilson05394f32010-11-08 19:18:58 +00001079 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1080 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001081 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001082 pgoff_t page_offset;
1083 unsigned long pfn;
1084 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001085 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001086
1087 /* We don't use vmf->pgoff since that has the fake offset */
1088 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1089 PAGE_SHIFT;
1090
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001091 ret = i915_mutex_lock_interruptible(dev);
1092 if (ret)
1093 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001094
Chris Wilsondb53a302011-02-03 11:57:46 +00001095 trace_i915_gem_object_fault(obj, page_offset, true, write);
1096
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001097 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001098 if (!obj->map_and_fenceable) {
1099 ret = i915_gem_object_unbind(obj);
1100 if (ret)
1101 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001102 }
Chris Wilson05394f32010-11-08 19:18:58 +00001103 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001104 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001105 if (ret)
1106 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001107
Eric Anholte92d03b2011-06-14 16:43:09 -07001108 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1109 if (ret)
1110 goto unlock;
1111 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001112
Daniel Vetter74898d72012-02-15 23:50:22 +01001113 if (!obj->has_global_gtt_mapping)
1114 i915_gem_gtt_bind_object(obj, obj->cache_level);
1115
Chris Wilson06d98132012-04-17 15:31:24 +01001116 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001117 if (ret)
1118 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001119
Chris Wilson05394f32010-11-08 19:18:58 +00001120 if (i915_gem_object_is_inactive(obj))
1121 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001122
Chris Wilson6299f992010-11-24 12:23:44 +00001123 obj->fault_mappable = true;
1124
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001125 pfn = ((dev_priv->mm.gtt_base_addr + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001126 page_offset;
1127
1128 /* Finally, remap it using the new GTT offset */
1129 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001130unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001131 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001132out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001133 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001134 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001135 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001136 /* Give the error handler a chance to run and move the
1137 * objects off the GPU active list. Next time we service the
1138 * fault, we should be able to transition the page into the
1139 * GTT without touching the GPU (and so avoid further
1140 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1141 * with coherency, just lost writes.
1142 */
Chris Wilson045e7692010-11-07 09:18:22 +00001143 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001144 case 0:
1145 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001146 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001147 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001148 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001149 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001150 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001151 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001152 }
1153}
1154
1155/**
Chris Wilson901782b2009-07-10 08:18:50 +01001156 * i915_gem_release_mmap - remove physical page mappings
1157 * @obj: obj in question
1158 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001159 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001160 * relinquish ownership of the pages back to the system.
1161 *
1162 * It is vital that we remove the page mapping if we have mapped a tiled
1163 * object through the GTT and then lose the fence register due to
1164 * resource pressure. Similarly if the object has been moved out of the
1165 * aperture, than pages mapped into userspace must be revoked. Removing the
1166 * mapping will then trigger a page fault on the next user access, allowing
1167 * fixup by i915_gem_fault().
1168 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001169void
Chris Wilson05394f32010-11-08 19:18:58 +00001170i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001171{
Chris Wilson6299f992010-11-24 12:23:44 +00001172 if (!obj->fault_mappable)
1173 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001174
Chris Wilsonf6e47882011-03-20 21:09:12 +00001175 if (obj->base.dev->dev_mapping)
1176 unmap_mapping_range(obj->base.dev->dev_mapping,
1177 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1178 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001179
Chris Wilson6299f992010-11-24 12:23:44 +00001180 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001181}
1182
Chris Wilson92b88ae2010-11-09 11:47:32 +00001183static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001184i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001185{
Chris Wilsone28f8712011-07-18 13:11:49 -07001186 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001187
1188 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001189 tiling_mode == I915_TILING_NONE)
1190 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001191
1192 /* Previous chips need a power-of-two fence region when tiling */
1193 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001194 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001195 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001196 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001197
Chris Wilsone28f8712011-07-18 13:11:49 -07001198 while (gtt_size < size)
1199 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001200
Chris Wilsone28f8712011-07-18 13:11:49 -07001201 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001202}
1203
Jesse Barnesde151cf2008-11-12 10:03:55 -08001204/**
1205 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1206 * @obj: object to check
1207 *
1208 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001209 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001210 */
1211static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001212i915_gem_get_gtt_alignment(struct drm_device *dev,
1213 uint32_t size,
1214 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001215{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001216 /*
1217 * Minimum alignment is 4k (GTT page size), but might be greater
1218 * if a fence register is needed for the object.
1219 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001220 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001221 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001222 return 4096;
1223
1224 /*
1225 * Previous chips need to be aligned to the size of the smallest
1226 * fence register that can contain the object.
1227 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001228 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001229}
1230
Daniel Vetter5e783302010-11-14 22:32:36 +01001231/**
1232 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1233 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001234 * @dev: the device
1235 * @size: size of the object
1236 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001237 *
1238 * Return the required GTT alignment for an object, only taking into account
1239 * unfenced tiled surface requirements.
1240 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001241uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001242i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1243 uint32_t size,
1244 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001245{
Daniel Vetter5e783302010-11-14 22:32:36 +01001246 /*
1247 * Minimum alignment is 4k (GTT page size) for sane hw.
1248 */
1249 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001250 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001251 return 4096;
1252
Chris Wilsone28f8712011-07-18 13:11:49 -07001253 /* Previous hardware however needs to be aligned to a power-of-two
1254 * tile height. The simplest method for determining this is to reuse
1255 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001256 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001257 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001258}
1259
Jesse Barnesde151cf2008-11-12 10:03:55 -08001260int
Dave Airlieff72145b2011-02-07 12:16:14 +10001261i915_gem_mmap_gtt(struct drm_file *file,
1262 struct drm_device *dev,
1263 uint32_t handle,
1264 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001265{
Chris Wilsonda761a62010-10-27 17:37:08 +01001266 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001267 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001268 int ret;
1269
Chris Wilson76c1dec2010-09-25 11:22:51 +01001270 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001271 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001272 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001273
Dave Airlieff72145b2011-02-07 12:16:14 +10001274 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001275 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001276 ret = -ENOENT;
1277 goto unlock;
1278 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001279
Chris Wilson05394f32010-11-08 19:18:58 +00001280 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001281 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001282 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001283 }
1284
Chris Wilson05394f32010-11-08 19:18:58 +00001285 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001286 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001287 ret = -EINVAL;
1288 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001289 }
1290
Chris Wilson05394f32010-11-08 19:18:58 +00001291 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001292 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001293 if (ret)
1294 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001295 }
1296
Dave Airlieff72145b2011-02-07 12:16:14 +10001297 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001298
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001299out:
Chris Wilson05394f32010-11-08 19:18:58 +00001300 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001301unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001302 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001303 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001304}
1305
Dave Airlieff72145b2011-02-07 12:16:14 +10001306/**
1307 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1308 * @dev: DRM device
1309 * @data: GTT mapping ioctl data
1310 * @file: GEM object info
1311 *
1312 * Simply returns the fake offset to userspace so it can mmap it.
1313 * The mmap call will end up in drm_gem_mmap(), which will set things
1314 * up so we can get faults in the handler above.
1315 *
1316 * The fault handler will take care of binding the object into the GTT
1317 * (since it may have been evicted to make room for something), allocating
1318 * a fence register, and mapping the appropriate aperture address into
1319 * userspace.
1320 */
1321int
1322i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1323 struct drm_file *file)
1324{
1325 struct drm_i915_gem_mmap_gtt *args = data;
1326
Dave Airlieff72145b2011-02-07 12:16:14 +10001327 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1328}
1329
Daniel Vetter1286ff72012-05-10 15:25:09 +02001330int
Chris Wilson05394f32010-11-08 19:18:58 +00001331i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001332 gfp_t gfpmask)
1333{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001334 int page_count, i;
1335 struct address_space *mapping;
1336 struct inode *inode;
1337 struct page *page;
1338
Daniel Vetter1286ff72012-05-10 15:25:09 +02001339 if (obj->pages || obj->sg_table)
1340 return 0;
1341
Chris Wilsone5281cc2010-10-28 13:45:36 +01001342 /* Get the list of pages out of our struct file. They'll be pinned
1343 * at this point until we release them.
1344 */
Chris Wilson05394f32010-11-08 19:18:58 +00001345 page_count = obj->base.size / PAGE_SIZE;
1346 BUG_ON(obj->pages != NULL);
1347 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1348 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001349 return -ENOMEM;
1350
Chris Wilson05394f32010-11-08 19:18:58 +00001351 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001352 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001353 gfpmask |= mapping_gfp_mask(mapping);
1354
Chris Wilsone5281cc2010-10-28 13:45:36 +01001355 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001356 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001357 if (IS_ERR(page))
1358 goto err_pages;
1359
Chris Wilson05394f32010-11-08 19:18:58 +00001360 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001361 }
1362
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001363 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001364 i915_gem_object_do_bit_17_swizzle(obj);
1365
1366 return 0;
1367
1368err_pages:
1369 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001370 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001371
Chris Wilson05394f32010-11-08 19:18:58 +00001372 drm_free_large(obj->pages);
1373 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001374 return PTR_ERR(page);
1375}
1376
Chris Wilson5cdf5882010-09-27 15:51:07 +01001377static void
Chris Wilson05394f32010-11-08 19:18:58 +00001378i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001379{
Chris Wilson05394f32010-11-08 19:18:58 +00001380 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001381 int i;
1382
Daniel Vetter1286ff72012-05-10 15:25:09 +02001383 if (!obj->pages)
1384 return;
1385
Chris Wilson05394f32010-11-08 19:18:58 +00001386 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001387
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001388 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001389 i915_gem_object_save_bit_17_swizzle(obj);
1390
Chris Wilson05394f32010-11-08 19:18:58 +00001391 if (obj->madv == I915_MADV_DONTNEED)
1392 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001393
1394 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001395 if (obj->dirty)
1396 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001397
Chris Wilson05394f32010-11-08 19:18:58 +00001398 if (obj->madv == I915_MADV_WILLNEED)
1399 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001400
Chris Wilson05394f32010-11-08 19:18:58 +00001401 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001402 }
Chris Wilson05394f32010-11-08 19:18:58 +00001403 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001404
Chris Wilson05394f32010-11-08 19:18:58 +00001405 drm_free_large(obj->pages);
1406 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001407}
1408
Chris Wilson54cf91d2010-11-25 18:00:26 +00001409void
Chris Wilson05394f32010-11-08 19:18:58 +00001410i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001411 struct intel_ring_buffer *ring,
1412 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001413{
Chris Wilson05394f32010-11-08 19:18:58 +00001414 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001415 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001416
Zou Nan hai852835f2010-05-21 09:08:56 +08001417 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001418 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001419
1420 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001421 if (!obj->active) {
1422 drm_gem_object_reference(&obj->base);
1423 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001424 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001425
Eric Anholt673a3942008-07-30 12:06:12 -07001426 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001427 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1428 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001429
Chris Wilson05394f32010-11-08 19:18:58 +00001430 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001431
Chris Wilsoncaea7472010-11-12 13:53:37 +00001432 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001433 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001434
Chris Wilson7dd49062012-03-21 10:48:18 +00001435 /* Bump MRU to take account of the delayed flush */
1436 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1437 struct drm_i915_fence_reg *reg;
1438
1439 reg = &dev_priv->fence_regs[obj->fence_reg];
1440 list_move_tail(&reg->lru_list,
1441 &dev_priv->mm.fence_list);
1442 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001443 }
1444}
1445
1446static void
1447i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1448{
1449 list_del_init(&obj->ring_list);
1450 obj->last_rendering_seqno = 0;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001451 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001452}
1453
Eric Anholtce44b0e2008-11-06 16:00:31 -08001454static void
Chris Wilson05394f32010-11-08 19:18:58 +00001455i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001456{
Chris Wilson05394f32010-11-08 19:18:58 +00001457 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001458 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001459
Chris Wilson05394f32010-11-08 19:18:58 +00001460 BUG_ON(!obj->active);
1461 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001462
1463 i915_gem_object_move_off_active(obj);
1464}
1465
1466static void
1467i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1468{
1469 struct drm_device *dev = obj->base.dev;
1470 struct drm_i915_private *dev_priv = dev->dev_private;
1471
Chris Wilson1b502472012-04-24 15:47:30 +01001472 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001473
1474 BUG_ON(!list_empty(&obj->gpu_write_list));
1475 BUG_ON(!obj->active);
1476 obj->ring = NULL;
1477
1478 i915_gem_object_move_off_active(obj);
1479 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001480
1481 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001482 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001483 drm_gem_object_unreference(&obj->base);
1484
1485 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001486}
Eric Anholt673a3942008-07-30 12:06:12 -07001487
Chris Wilson963b4832009-09-20 23:03:54 +01001488/* Immediately discard the backing storage */
1489static void
Chris Wilson05394f32010-11-08 19:18:58 +00001490i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001491{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001492 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001493
Chris Wilsonae9fed62010-08-07 11:01:30 +01001494 /* Our goal here is to return as much of the memory as
1495 * is possible back to the system as we are called from OOM.
1496 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001497 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001498 */
Chris Wilson05394f32010-11-08 19:18:58 +00001499 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001500 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001501
Chris Wilsona14917e2012-02-24 21:13:38 +00001502 if (obj->base.map_list.map)
1503 drm_gem_free_mmap_offset(&obj->base);
1504
Chris Wilson05394f32010-11-08 19:18:58 +00001505 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001506}
1507
1508static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001509i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001510{
Chris Wilson05394f32010-11-08 19:18:58 +00001511 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001512}
1513
Eric Anholt673a3942008-07-30 12:06:12 -07001514static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001515i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1516 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001517{
Chris Wilson05394f32010-11-08 19:18:58 +00001518 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001519
Chris Wilson05394f32010-11-08 19:18:58 +00001520 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001521 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001522 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001523 if (obj->base.write_domain & flush_domains) {
1524 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001525
Chris Wilson05394f32010-11-08 19:18:58 +00001526 obj->base.write_domain = 0;
1527 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001528 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001529 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001530
Daniel Vetter63560392010-02-19 11:51:59 +01001531 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001532 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001533 old_write_domain);
1534 }
1535 }
1536}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001537
Daniel Vetter53d227f2012-01-25 16:32:49 +01001538static u32
1539i915_gem_get_seqno(struct drm_device *dev)
1540{
1541 drm_i915_private_t *dev_priv = dev->dev_private;
1542 u32 seqno = dev_priv->next_seqno;
1543
1544 /* reserve 0 for non-seqno */
1545 if (++dev_priv->next_seqno == 0)
1546 dev_priv->next_seqno = 1;
1547
1548 return seqno;
1549}
1550
1551u32
1552i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1553{
1554 if (ring->outstanding_lazy_request == 0)
1555 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1556
1557 return ring->outstanding_lazy_request;
1558}
1559
Chris Wilson3cce4692010-10-27 16:11:02 +01001560int
Chris Wilsondb53a302011-02-03 11:57:46 +00001561i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001562 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001563 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001564{
Chris Wilsondb53a302011-02-03 11:57:46 +00001565 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001566 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001567 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001568 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001569 int ret;
1570
Daniel Vettercc889e02012-06-13 20:45:19 +02001571 /*
1572 * Emit any outstanding flushes - execbuf can fail to emit the flush
1573 * after having emitted the batchbuffer command. Hence we need to fix
1574 * things up similar to emitting the lazy request. The difference here
1575 * is that the flush _must_ happen before the next request, no matter
1576 * what.
1577 */
1578 if (ring->gpu_caches_dirty) {
1579 ret = i915_gem_flush_ring(ring, 0, I915_GEM_GPU_DOMAINS);
1580 if (ret)
1581 return ret;
1582
1583 ring->gpu_caches_dirty = false;
1584 }
1585
Chris Wilson3cce4692010-10-27 16:11:02 +01001586 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001587 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001588
Chris Wilsona71d8d92012-02-15 11:25:36 +00001589 /* Record the position of the start of the request so that
1590 * should we detect the updated seqno part-way through the
1591 * GPU processing the request, we never over-estimate the
1592 * position of the head.
1593 */
1594 request_ring_position = intel_ring_get_tail(ring);
1595
Chris Wilson3cce4692010-10-27 16:11:02 +01001596 ret = ring->add_request(ring, &seqno);
1597 if (ret)
1598 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001599
Chris Wilsondb53a302011-02-03 11:57:46 +00001600 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001601
1602 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001603 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001604 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001605 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001606 was_empty = list_empty(&ring->request_list);
1607 list_add_tail(&request->list, &ring->request_list);
1608
Chris Wilsondb53a302011-02-03 11:57:46 +00001609 if (file) {
1610 struct drm_i915_file_private *file_priv = file->driver_priv;
1611
Chris Wilson1c255952010-09-26 11:03:27 +01001612 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001613 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001614 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001615 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001616 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001617 }
Eric Anholt673a3942008-07-30 12:06:12 -07001618
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001619 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001620
Ben Gamarif65d9422009-09-14 17:48:44 -04001621 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001622 if (i915_enable_hangcheck) {
1623 mod_timer(&dev_priv->hangcheck_timer,
1624 jiffies +
1625 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1626 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001627 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001628 queue_delayed_work(dev_priv->wq,
1629 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001630 }
Daniel Vettercc889e02012-06-13 20:45:19 +02001631
1632 WARN_ON(!list_empty(&ring->gpu_write_list));
1633
Chris Wilson3cce4692010-10-27 16:11:02 +01001634 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001635}
1636
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001637static inline void
1638i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001639{
Chris Wilson1c255952010-09-26 11:03:27 +01001640 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001641
Chris Wilson1c255952010-09-26 11:03:27 +01001642 if (!file_priv)
1643 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001644
Chris Wilson1c255952010-09-26 11:03:27 +01001645 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001646 if (request->file_priv) {
1647 list_del(&request->client_list);
1648 request->file_priv = NULL;
1649 }
Chris Wilson1c255952010-09-26 11:03:27 +01001650 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001651}
1652
Chris Wilsondfaae392010-09-22 10:31:52 +01001653static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1654 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001655{
Chris Wilsondfaae392010-09-22 10:31:52 +01001656 while (!list_empty(&ring->request_list)) {
1657 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001658
Chris Wilsondfaae392010-09-22 10:31:52 +01001659 request = list_first_entry(&ring->request_list,
1660 struct drm_i915_gem_request,
1661 list);
1662
1663 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001664 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001665 kfree(request);
1666 }
1667
1668 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001669 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001670
Chris Wilson05394f32010-11-08 19:18:58 +00001671 obj = list_first_entry(&ring->active_list,
1672 struct drm_i915_gem_object,
1673 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001674
Chris Wilson05394f32010-11-08 19:18:58 +00001675 obj->base.write_domain = 0;
1676 list_del_init(&obj->gpu_write_list);
1677 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001678 }
Eric Anholt673a3942008-07-30 12:06:12 -07001679}
1680
Chris Wilson312817a2010-11-22 11:50:11 +00001681static void i915_gem_reset_fences(struct drm_device *dev)
1682{
1683 struct drm_i915_private *dev_priv = dev->dev_private;
1684 int i;
1685
Daniel Vetter4b9de732011-10-09 21:52:02 +02001686 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001687 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001688
Chris Wilsonada726c2012-04-17 15:31:32 +01001689 i915_gem_write_fence(dev, i, NULL);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001690
Chris Wilsonada726c2012-04-17 15:31:32 +01001691 if (reg->obj)
1692 i915_gem_object_fence_lost(reg->obj);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001693
Chris Wilsonada726c2012-04-17 15:31:32 +01001694 reg->pin_count = 0;
1695 reg->obj = NULL;
1696 INIT_LIST_HEAD(&reg->lru_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001697 }
Chris Wilsonada726c2012-04-17 15:31:32 +01001698
1699 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001700}
1701
Chris Wilson069efc12010-09-30 16:53:18 +01001702void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001703{
Chris Wilsondfaae392010-09-22 10:31:52 +01001704 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001705 struct drm_i915_gem_object *obj;
Chris Wilsonb4519512012-05-11 14:29:30 +01001706 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001707 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001708
Chris Wilsonb4519512012-05-11 14:29:30 +01001709 for_each_ring(ring, dev_priv, i)
1710 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01001711
1712 /* Remove anything from the flushing lists. The GPU cache is likely
1713 * to be lost on reset along with the data, so simply move the
1714 * lost bo to the inactive list.
1715 */
1716 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001717 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001718 struct drm_i915_gem_object,
1719 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001720
Chris Wilson05394f32010-11-08 19:18:58 +00001721 obj->base.write_domain = 0;
1722 list_del_init(&obj->gpu_write_list);
1723 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001724 }
Chris Wilson9375e442010-09-19 12:21:28 +01001725
Chris Wilsondfaae392010-09-22 10:31:52 +01001726 /* Move everything out of the GPU domains to ensure we do any
1727 * necessary invalidation upon reuse.
1728 */
Chris Wilson05394f32010-11-08 19:18:58 +00001729 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001730 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001731 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001732 {
Chris Wilson05394f32010-11-08 19:18:58 +00001733 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001734 }
Chris Wilson069efc12010-09-30 16:53:18 +01001735
1736 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001737 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001738}
1739
1740/**
1741 * This function clears the request list as sequence numbers are passed.
1742 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001743void
Chris Wilsondb53a302011-02-03 11:57:46 +00001744i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001745{
Eric Anholt673a3942008-07-30 12:06:12 -07001746 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001747 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001748
Chris Wilsondb53a302011-02-03 11:57:46 +00001749 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001750 return;
1751
Chris Wilsondb53a302011-02-03 11:57:46 +00001752 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001753
Chris Wilson78501ea2010-10-27 12:18:21 +01001754 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001755
Chris Wilson076e2c02011-01-21 10:07:18 +00001756 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001757 if (seqno >= ring->sync_seqno[i])
1758 ring->sync_seqno[i] = 0;
1759
Zou Nan hai852835f2010-05-21 09:08:56 +08001760 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001761 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001762
Zou Nan hai852835f2010-05-21 09:08:56 +08001763 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001764 struct drm_i915_gem_request,
1765 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001766
Chris Wilsondfaae392010-09-22 10:31:52 +01001767 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001768 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001769
Chris Wilsondb53a302011-02-03 11:57:46 +00001770 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001771 /* We know the GPU must have read the request to have
1772 * sent us the seqno + interrupt, so use the position
1773 * of tail of the request to update the last known position
1774 * of the GPU head.
1775 */
1776 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001777
1778 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001779 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001780 kfree(request);
1781 }
1782
1783 /* Move any buffers on the active list that are no longer referenced
1784 * by the ringbuffer to the flushing/inactive lists as appropriate.
1785 */
1786 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001787 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001788
Akshay Joshi0206e352011-08-16 15:34:10 -04001789 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001790 struct drm_i915_gem_object,
1791 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001792
Chris Wilson05394f32010-11-08 19:18:58 +00001793 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001794 break;
1795
Chris Wilson05394f32010-11-08 19:18:58 +00001796 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001797 i915_gem_object_move_to_flushing(obj);
1798 else
1799 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001800 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001801
Chris Wilsondb53a302011-02-03 11:57:46 +00001802 if (unlikely(ring->trace_irq_seqno &&
1803 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001804 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001805 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001806 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001807
Chris Wilsondb53a302011-02-03 11:57:46 +00001808 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001809}
1810
1811void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001812i915_gem_retire_requests(struct drm_device *dev)
1813{
1814 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001815 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001816 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001817
Chris Wilsonb4519512012-05-11 14:29:30 +01001818 for_each_ring(ring, dev_priv, i)
1819 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001820}
1821
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001822static void
Eric Anholt673a3942008-07-30 12:06:12 -07001823i915_gem_retire_work_handler(struct work_struct *work)
1824{
1825 drm_i915_private_t *dev_priv;
1826 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01001827 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00001828 bool idle;
1829 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001830
1831 dev_priv = container_of(work, drm_i915_private_t,
1832 mm.retire_work.work);
1833 dev = dev_priv->dev;
1834
Chris Wilson891b48c2010-09-29 12:26:37 +01001835 /* Come back later if the device is busy... */
1836 if (!mutex_trylock(&dev->struct_mutex)) {
1837 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1838 return;
1839 }
1840
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001841 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001842
Chris Wilson0a587052011-01-09 21:05:44 +00001843 /* Send a periodic flush down the ring so we don't hold onto GEM
1844 * objects indefinitely.
1845 */
1846 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01001847 for_each_ring(ring, dev_priv, i) {
Daniel Vettercc889e02012-06-13 20:45:19 +02001848 if (ring->gpu_caches_dirty) {
Chris Wilson0a587052011-01-09 21:05:44 +00001849 struct drm_i915_gem_request *request;
Chris Wilson0a587052011-01-09 21:05:44 +00001850
Chris Wilson0a587052011-01-09 21:05:44 +00001851 request = kzalloc(sizeof(*request), GFP_KERNEL);
Daniel Vettercc889e02012-06-13 20:45:19 +02001852 if (request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001853 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001854 kfree(request);
1855 }
1856
1857 idle &= list_empty(&ring->request_list);
1858 }
1859
1860 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001861 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001862
Eric Anholt673a3942008-07-30 12:06:12 -07001863 mutex_unlock(&dev->struct_mutex);
1864}
1865
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001866int
1867i915_gem_check_wedge(struct drm_i915_private *dev_priv,
1868 bool interruptible)
Ben Widawskyb4aca012012-04-25 20:50:12 -07001869{
Ben Widawskyb4aca012012-04-25 20:50:12 -07001870 if (atomic_read(&dev_priv->mm.wedged)) {
1871 struct completion *x = &dev_priv->error_completion;
1872 bool recovery_complete;
1873 unsigned long flags;
1874
1875 /* Give the error handler a chance to run. */
1876 spin_lock_irqsave(&x->wait.lock, flags);
1877 recovery_complete = x->done > 0;
1878 spin_unlock_irqrestore(&x->wait.lock, flags);
1879
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001880 /* Non-interruptible callers can't handle -EAGAIN, hence return
1881 * -EIO unconditionally for these. */
1882 if (!interruptible)
1883 return -EIO;
1884
1885 /* Recovery complete, but still wedged means reset failure. */
1886 if (recovery_complete)
1887 return -EIO;
1888
1889 return -EAGAIN;
Ben Widawskyb4aca012012-04-25 20:50:12 -07001890 }
1891
1892 return 0;
1893}
1894
1895/*
1896 * Compare seqno against outstanding lazy request. Emit a request if they are
1897 * equal.
1898 */
1899static int
1900i915_gem_check_olr(struct intel_ring_buffer *ring, u32 seqno)
1901{
1902 int ret = 0;
1903
1904 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1905
1906 if (seqno == ring->outstanding_lazy_request) {
1907 struct drm_i915_gem_request *request;
1908
1909 request = kzalloc(sizeof(*request), GFP_KERNEL);
1910 if (request == NULL)
1911 return -ENOMEM;
1912
1913 ret = i915_add_request(ring, NULL, request);
1914 if (ret) {
1915 kfree(request);
1916 return ret;
1917 }
1918
1919 BUG_ON(seqno != request->seqno);
1920 }
1921
1922 return ret;
1923}
1924
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001925/**
1926 * __wait_seqno - wait until execution of seqno has finished
1927 * @ring: the ring expected to report seqno
1928 * @seqno: duh!
1929 * @interruptible: do an interruptible wait (normally yes)
1930 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1931 *
1932 * Returns 0 if the seqno was found within the alloted time. Else returns the
1933 * errno with remaining time filled in timeout argument.
1934 */
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001935static int __wait_seqno(struct intel_ring_buffer *ring, u32 seqno,
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001936 bool interruptible, struct timespec *timeout)
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001937{
1938 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001939 struct timespec before, now, wait_time={1,0};
1940 unsigned long timeout_jiffies;
1941 long end;
1942 bool wait_forever = true;
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001943 int ret;
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001944
1945 if (i915_seqno_passed(ring->get_seqno(ring), seqno))
1946 return 0;
1947
1948 trace_i915_gem_request_wait_begin(ring, seqno);
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001949
1950 if (timeout != NULL) {
1951 wait_time = *timeout;
1952 wait_forever = false;
1953 }
1954
1955 timeout_jiffies = timespec_to_jiffies(&wait_time);
1956
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001957 if (WARN_ON(!ring->irq_get(ring)))
1958 return -ENODEV;
1959
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001960 /* Record current time in case interrupted by signal, or wedged * */
1961 getrawmonotonic(&before);
1962
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001963#define EXIT_COND \
1964 (i915_seqno_passed(ring->get_seqno(ring), seqno) || \
1965 atomic_read(&dev_priv->mm.wedged))
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001966 do {
1967 if (interruptible)
1968 end = wait_event_interruptible_timeout(ring->irq_queue,
1969 EXIT_COND,
1970 timeout_jiffies);
1971 else
1972 end = wait_event_timeout(ring->irq_queue, EXIT_COND,
1973 timeout_jiffies);
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001974
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001975 ret = i915_gem_check_wedge(dev_priv, interruptible);
1976 if (ret)
1977 end = ret;
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001978 } while (end == 0 && wait_forever);
1979
1980 getrawmonotonic(&now);
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001981
1982 ring->irq_put(ring);
1983 trace_i915_gem_request_wait_end(ring, seqno);
1984#undef EXIT_COND
1985
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001986 if (timeout) {
1987 struct timespec sleep_time = timespec_sub(now, before);
1988 *timeout = timespec_sub(*timeout, sleep_time);
1989 }
1990
1991 switch (end) {
1992 case -EAGAIN: /* Wedged */
1993 case -ERESTARTSYS: /* Signal */
1994 return (int)end;
1995 case 0: /* Timeout */
1996 if (timeout)
1997 set_normalized_timespec(timeout, 0, 0);
1998 return -ETIME;
1999 default: /* Completed */
2000 WARN_ON(end < 0); /* We're not aware of other errors */
2001 return 0;
2002 }
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002003}
2004
Chris Wilsondb53a302011-02-03 11:57:46 +00002005/**
2006 * Waits for a sequence number to be signaled, and cleans up the
2007 * request and object lists appropriately for that event.
2008 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02002009int
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002010i915_wait_seqno(struct intel_ring_buffer *ring, uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002011{
Chris Wilsondb53a302011-02-03 11:57:46 +00002012 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002013 int ret = 0;
2014
2015 BUG_ON(seqno == 0);
2016
Daniel Vetterd6b2c792012-07-04 22:54:13 +02002017 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
Ben Widawskyb4aca012012-04-25 20:50:12 -07002018 if (ret)
2019 return ret;
Chris Wilsond9bc7e92011-02-07 13:09:31 +00002020
Ben Widawskyb4aca012012-04-25 20:50:12 -07002021 ret = i915_gem_check_olr(ring, seqno);
2022 if (ret)
2023 return ret;
Daniel Vettere35a41d2010-02-11 22:13:59 +01002024
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002025 ret = __wait_seqno(ring, seqno, dev_priv->mm.interruptible, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002026
Eric Anholt673a3942008-07-30 12:06:12 -07002027 return ret;
2028}
2029
Daniel Vetter48764bf2009-09-15 22:57:32 +02002030/**
Eric Anholt673a3942008-07-30 12:06:12 -07002031 * Ensures that all rendering to the object has completed and the object is
2032 * safe to unbind from the GTT or access from the CPU.
2033 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00002034int
Chris Wilsonce453d82011-02-21 14:43:56 +00002035i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002036{
Eric Anholt673a3942008-07-30 12:06:12 -07002037 int ret;
2038
Eric Anholte47c68e2008-11-14 13:35:19 -08002039 /* This function only exists to support waiting for existing rendering,
2040 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002041 */
Chris Wilson05394f32010-11-08 19:18:58 +00002042 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002043
2044 /* If there is rendering queued on the buffer being evicted, wait for
2045 * it.
2046 */
Chris Wilson05394f32010-11-08 19:18:58 +00002047 if (obj->active) {
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002048 ret = i915_wait_seqno(obj->ring, obj->last_rendering_seqno);
Chris Wilson2cf34d72010-09-14 13:03:28 +01002049 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002050 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002051 i915_gem_retire_requests_ring(obj->ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002052 }
2053
2054 return 0;
2055}
2056
Ben Widawsky5816d642012-04-11 11:18:19 -07002057/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002058 * Ensures that an object will eventually get non-busy by flushing any required
2059 * write domains, emitting any outstanding lazy request and retiring and
2060 * completed requests.
2061 */
2062static int
2063i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2064{
2065 int ret;
2066
2067 if (obj->active) {
2068 ret = i915_gem_object_flush_gpu_write_domain(obj);
2069 if (ret)
2070 return ret;
2071
2072 ret = i915_gem_check_olr(obj->ring,
2073 obj->last_rendering_seqno);
2074 if (ret)
2075 return ret;
2076 i915_gem_retire_requests_ring(obj->ring);
2077 }
2078
2079 return 0;
2080}
2081
2082/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002083 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2084 * @DRM_IOCTL_ARGS: standard ioctl arguments
2085 *
2086 * Returns 0 if successful, else an error is returned with the remaining time in
2087 * the timeout parameter.
2088 * -ETIME: object is still busy after timeout
2089 * -ERESTARTSYS: signal interrupted the wait
2090 * -ENONENT: object doesn't exist
2091 * Also possible, but rare:
2092 * -EAGAIN: GPU wedged
2093 * -ENOMEM: damn
2094 * -ENODEV: Internal IRQ fail
2095 * -E?: The add request failed
2096 *
2097 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2098 * non-zero timeout parameter the wait ioctl will wait for the given number of
2099 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2100 * without holding struct_mutex the object may become re-busied before this
2101 * function completes. A similar but shorter * race condition exists in the busy
2102 * ioctl
2103 */
2104int
2105i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2106{
2107 struct drm_i915_gem_wait *args = data;
2108 struct drm_i915_gem_object *obj;
2109 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002110 struct timespec timeout_stack, *timeout = NULL;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002111 u32 seqno = 0;
2112 int ret = 0;
2113
Ben Widawskyeac1f142012-06-05 15:24:24 -07002114 if (args->timeout_ns >= 0) {
2115 timeout_stack = ns_to_timespec(args->timeout_ns);
2116 timeout = &timeout_stack;
2117 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002118
2119 ret = i915_mutex_lock_interruptible(dev);
2120 if (ret)
2121 return ret;
2122
2123 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2124 if (&obj->base == NULL) {
2125 mutex_unlock(&dev->struct_mutex);
2126 return -ENOENT;
2127 }
2128
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002129 /* Need to make sure the object gets inactive eventually. */
2130 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002131 if (ret)
2132 goto out;
2133
2134 if (obj->active) {
2135 seqno = obj->last_rendering_seqno;
2136 ring = obj->ring;
2137 }
2138
2139 if (seqno == 0)
2140 goto out;
2141
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002142 /* Do this after OLR check to make sure we make forward progress polling
2143 * on this IOCTL with a 0 timeout (like busy ioctl)
2144 */
2145 if (!args->timeout_ns) {
2146 ret = -ETIME;
2147 goto out;
2148 }
2149
2150 drm_gem_object_unreference(&obj->base);
2151 mutex_unlock(&dev->struct_mutex);
2152
Ben Widawskyeac1f142012-06-05 15:24:24 -07002153 ret = __wait_seqno(ring, seqno, true, timeout);
2154 if (timeout) {
2155 WARN_ON(!timespec_valid(timeout));
2156 args->timeout_ns = timespec_to_ns(timeout);
2157 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002158 return ret;
2159
2160out:
2161 drm_gem_object_unreference(&obj->base);
2162 mutex_unlock(&dev->struct_mutex);
2163 return ret;
2164}
2165
2166/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002167 * i915_gem_object_sync - sync an object to a ring.
2168 *
2169 * @obj: object which may be in use on another ring.
2170 * @to: ring we wish to use the object on. May be NULL.
2171 *
2172 * This code is meant to abstract object synchronization with the GPU.
2173 * Calling with NULL implies synchronizing the object with the CPU
2174 * rather than a particular GPU ring.
2175 *
2176 * Returns 0 if successful, else propagates up the lower layer error.
2177 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002178int
2179i915_gem_object_sync(struct drm_i915_gem_object *obj,
2180 struct intel_ring_buffer *to)
2181{
2182 struct intel_ring_buffer *from = obj->ring;
2183 u32 seqno;
2184 int ret, idx;
2185
2186 if (from == NULL || to == from)
2187 return 0;
2188
Ben Widawsky5816d642012-04-11 11:18:19 -07002189 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07002190 return i915_gem_object_wait_rendering(obj);
2191
2192 idx = intel_ring_sync_index(from, to);
2193
2194 seqno = obj->last_rendering_seqno;
2195 if (seqno <= from->sync_seqno[idx])
2196 return 0;
2197
Ben Widawskyb4aca012012-04-25 20:50:12 -07002198 ret = i915_gem_check_olr(obj->ring, seqno);
2199 if (ret)
2200 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002201
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002202 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002203 if (!ret)
2204 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002205
Ben Widawskye3a5a222012-04-11 11:18:20 -07002206 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002207}
2208
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002209static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2210{
2211 u32 old_write_domain, old_read_domains;
2212
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002213 /* Act a barrier for all accesses through the GTT */
2214 mb();
2215
2216 /* Force a pagefault for domain tracking on next user access */
2217 i915_gem_release_mmap(obj);
2218
Keith Packardb97c3d92011-06-24 21:02:59 -07002219 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2220 return;
2221
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002222 old_read_domains = obj->base.read_domains;
2223 old_write_domain = obj->base.write_domain;
2224
2225 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2226 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2227
2228 trace_i915_gem_object_change_domain(obj,
2229 old_read_domains,
2230 old_write_domain);
2231}
2232
Eric Anholt673a3942008-07-30 12:06:12 -07002233/**
2234 * Unbinds an object from the GTT aperture.
2235 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002236int
Chris Wilson05394f32010-11-08 19:18:58 +00002237i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002238{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002239 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002240 int ret = 0;
2241
Chris Wilson05394f32010-11-08 19:18:58 +00002242 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002243 return 0;
2244
Chris Wilson31d8d652012-05-24 19:11:20 +01002245 if (obj->pin_count)
2246 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002247
Chris Wilsona8198ee2011-04-13 22:04:09 +01002248 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002249 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002250 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002251 /* Continue on if we fail due to EIO, the GPU is hung so we
2252 * should be safe and we need to cleanup or else we might
2253 * cause memory corruption through use-after-free.
2254 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002255
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002256 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002257
2258 /* Move the object to the CPU domain to ensure that
2259 * any possible CPU writes while it's not in the GTT
2260 * are flushed when we go to remap it.
2261 */
2262 if (ret == 0)
2263 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2264 if (ret == -ERESTARTSYS)
2265 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002266 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002267 /* In the event of a disaster, abandon all caches and
2268 * hope for the best.
2269 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002270 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002271 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002272 }
Eric Anholt673a3942008-07-30 12:06:12 -07002273
Daniel Vetter96b47b62009-12-15 17:50:00 +01002274 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002275 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002276 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002277 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002278
Chris Wilsondb53a302011-02-03 11:57:46 +00002279 trace_i915_gem_object_unbind(obj);
2280
Daniel Vetter74898d72012-02-15 23:50:22 +01002281 if (obj->has_global_gtt_mapping)
2282 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002283 if (obj->has_aliasing_ppgtt_mapping) {
2284 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2285 obj->has_aliasing_ppgtt_mapping = 0;
2286 }
Daniel Vetter74163902012-02-15 23:50:21 +01002287 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002288
Chris Wilsone5281cc2010-10-28 13:45:36 +01002289 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002290
Chris Wilson6299f992010-11-24 12:23:44 +00002291 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002292 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002293 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002294 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002295
Chris Wilson05394f32010-11-08 19:18:58 +00002296 drm_mm_put_block(obj->gtt_space);
2297 obj->gtt_space = NULL;
2298 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002299
Chris Wilson05394f32010-11-08 19:18:58 +00002300 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002301 i915_gem_object_truncate(obj);
2302
Chris Wilson8dc17752010-07-23 23:18:51 +01002303 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002304}
2305
Chris Wilson88241782011-01-07 17:09:48 +00002306int
Chris Wilsondb53a302011-02-03 11:57:46 +00002307i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002308 uint32_t invalidate_domains,
2309 uint32_t flush_domains)
2310{
Chris Wilson88241782011-01-07 17:09:48 +00002311 int ret;
2312
Chris Wilson36d527d2011-03-19 22:26:49 +00002313 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2314 return 0;
2315
Chris Wilsondb53a302011-02-03 11:57:46 +00002316 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2317
Chris Wilson88241782011-01-07 17:09:48 +00002318 ret = ring->flush(ring, invalidate_domains, flush_domains);
2319 if (ret)
2320 return ret;
2321
Chris Wilson36d527d2011-03-19 22:26:49 +00002322 if (flush_domains & I915_GEM_GPU_DOMAINS)
2323 i915_gem_process_flushing_list(ring, flush_domains);
2324
Chris Wilson88241782011-01-07 17:09:48 +00002325 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002326}
2327
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002328static int i915_ring_idle(struct intel_ring_buffer *ring)
Chris Wilsona56ba562010-09-28 10:07:56 +01002329{
Chris Wilson88241782011-01-07 17:09:48 +00002330 int ret;
2331
Chris Wilson395b70b2010-10-28 21:28:46 +01002332 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002333 return 0;
2334
Chris Wilson88241782011-01-07 17:09:48 +00002335 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002336 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002337 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002338 if (ret)
2339 return ret;
2340 }
2341
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002342 return i915_wait_seqno(ring, i915_gem_next_request_seqno(ring));
Chris Wilsona56ba562010-09-28 10:07:56 +01002343}
2344
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002345int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002346{
2347 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002348 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002349 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002350
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002351 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002352 for_each_ring(ring, dev_priv, i) {
2353 ret = i915_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002354 if (ret)
2355 return ret;
Chris Wilsonb4519512012-05-11 14:29:30 +01002356
2357 /* Is the device fubar? */
2358 if (WARN_ON(!list_empty(&ring->gpu_write_list)))
2359 return -EBUSY;
Ben Widawskyf2ef6eb2012-06-04 14:42:53 -07002360
2361 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2362 if (ret)
2363 return ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002364 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002365
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002366 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002367}
2368
Chris Wilson9ce079e2012-04-17 15:31:30 +01002369static void sandybridge_write_fence_reg(struct drm_device *dev, int reg,
2370 struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002371{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002372 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002373 uint64_t val;
2374
Chris Wilson9ce079e2012-04-17 15:31:30 +01002375 if (obj) {
2376 u32 size = obj->gtt_space->size;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002377
Chris Wilson9ce079e2012-04-17 15:31:30 +01002378 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2379 0xfffff000) << 32;
2380 val |= obj->gtt_offset & 0xfffff000;
2381 val |= (uint64_t)((obj->stride / 128) - 1) <<
2382 SANDYBRIDGE_FENCE_PITCH_SHIFT;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002383
Chris Wilson9ce079e2012-04-17 15:31:30 +01002384 if (obj->tiling_mode == I915_TILING_Y)
2385 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2386 val |= I965_FENCE_REG_VALID;
2387 } else
2388 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002389
Chris Wilson9ce079e2012-04-17 15:31:30 +01002390 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + reg * 8, val);
2391 POSTING_READ(FENCE_REG_SANDYBRIDGE_0 + reg * 8);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002392}
2393
Chris Wilson9ce079e2012-04-17 15:31:30 +01002394static void i965_write_fence_reg(struct drm_device *dev, int reg,
2395 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002396{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002397 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002398 uint64_t val;
2399
Chris Wilson9ce079e2012-04-17 15:31:30 +01002400 if (obj) {
2401 u32 size = obj->gtt_space->size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002402
Chris Wilson9ce079e2012-04-17 15:31:30 +01002403 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2404 0xfffff000) << 32;
2405 val |= obj->gtt_offset & 0xfffff000;
2406 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2407 if (obj->tiling_mode == I915_TILING_Y)
2408 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2409 val |= I965_FENCE_REG_VALID;
2410 } else
2411 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002412
Chris Wilson9ce079e2012-04-17 15:31:30 +01002413 I915_WRITE64(FENCE_REG_965_0 + reg * 8, val);
2414 POSTING_READ(FENCE_REG_965_0 + reg * 8);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002415}
2416
Chris Wilson9ce079e2012-04-17 15:31:30 +01002417static void i915_write_fence_reg(struct drm_device *dev, int reg,
2418 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002419{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002420 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002421 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002422
Chris Wilson9ce079e2012-04-17 15:31:30 +01002423 if (obj) {
2424 u32 size = obj->gtt_space->size;
2425 int pitch_val;
2426 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002427
Chris Wilson9ce079e2012-04-17 15:31:30 +01002428 WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2429 (size & -size) != size ||
2430 (obj->gtt_offset & (size - 1)),
2431 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2432 obj->gtt_offset, obj->map_and_fenceable, size);
2433
2434 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2435 tile_width = 128;
2436 else
2437 tile_width = 512;
2438
2439 /* Note: pitch better be a power of two tile widths */
2440 pitch_val = obj->stride / tile_width;
2441 pitch_val = ffs(pitch_val) - 1;
2442
2443 val = obj->gtt_offset;
2444 if (obj->tiling_mode == I915_TILING_Y)
2445 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2446 val |= I915_FENCE_SIZE_BITS(size);
2447 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2448 val |= I830_FENCE_REG_VALID;
2449 } else
2450 val = 0;
2451
2452 if (reg < 8)
2453 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002455 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002456
Chris Wilson9ce079e2012-04-17 15:31:30 +01002457 I915_WRITE(reg, val);
2458 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002459}
2460
Chris Wilson9ce079e2012-04-17 15:31:30 +01002461static void i830_write_fence_reg(struct drm_device *dev, int reg,
2462 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002463{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002464 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002465 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002466
Chris Wilson9ce079e2012-04-17 15:31:30 +01002467 if (obj) {
2468 u32 size = obj->gtt_space->size;
2469 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002470
Chris Wilson9ce079e2012-04-17 15:31:30 +01002471 WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2472 (size & -size) != size ||
2473 (obj->gtt_offset & (size - 1)),
2474 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2475 obj->gtt_offset, size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002476
Chris Wilson9ce079e2012-04-17 15:31:30 +01002477 pitch_val = obj->stride / 128;
2478 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002479
Chris Wilson9ce079e2012-04-17 15:31:30 +01002480 val = obj->gtt_offset;
2481 if (obj->tiling_mode == I915_TILING_Y)
2482 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2483 val |= I830_FENCE_SIZE_BITS(size);
2484 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2485 val |= I830_FENCE_REG_VALID;
2486 } else
2487 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002488
Chris Wilson9ce079e2012-04-17 15:31:30 +01002489 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2490 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2491}
2492
2493static void i915_gem_write_fence(struct drm_device *dev, int reg,
2494 struct drm_i915_gem_object *obj)
2495{
2496 switch (INTEL_INFO(dev)->gen) {
2497 case 7:
2498 case 6: sandybridge_write_fence_reg(dev, reg, obj); break;
2499 case 5:
2500 case 4: i965_write_fence_reg(dev, reg, obj); break;
2501 case 3: i915_write_fence_reg(dev, reg, obj); break;
2502 case 2: i830_write_fence_reg(dev, reg, obj); break;
2503 default: break;
2504 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002505}
2506
Chris Wilson61050802012-04-17 15:31:31 +01002507static inline int fence_number(struct drm_i915_private *dev_priv,
2508 struct drm_i915_fence_reg *fence)
2509{
2510 return fence - dev_priv->fence_regs;
2511}
2512
2513static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2514 struct drm_i915_fence_reg *fence,
2515 bool enable)
2516{
2517 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2518 int reg = fence_number(dev_priv, fence);
2519
2520 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
2521
2522 if (enable) {
2523 obj->fence_reg = reg;
2524 fence->obj = obj;
2525 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2526 } else {
2527 obj->fence_reg = I915_FENCE_REG_NONE;
2528 fence->obj = NULL;
2529 list_del_init(&fence->lru_list);
2530 }
2531}
2532
Chris Wilsond9e86c02010-11-10 16:40:20 +00002533static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002534i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002535{
2536 int ret;
2537
2538 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002539 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilson1c293ea2012-04-17 15:31:27 +01002540 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00002541 0, obj->base.write_domain);
2542 if (ret)
2543 return ret;
2544 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002545
2546 obj->fenced_gpu_access = false;
2547 }
2548
Chris Wilson1c293ea2012-04-17 15:31:27 +01002549 if (obj->last_fenced_seqno) {
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002550 ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002551 if (ret)
2552 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002553
2554 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002555 }
2556
Chris Wilson63256ec2011-01-04 18:42:07 +00002557 /* Ensure that all CPU reads are completed before installing a fence
2558 * and all writes before removing the fence.
2559 */
2560 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2561 mb();
2562
Chris Wilsond9e86c02010-11-10 16:40:20 +00002563 return 0;
2564}
2565
2566int
2567i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2568{
Chris Wilson61050802012-04-17 15:31:31 +01002569 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002570 int ret;
2571
Chris Wilsona360bb12012-04-17 15:31:25 +01002572 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002573 if (ret)
2574 return ret;
2575
Chris Wilson61050802012-04-17 15:31:31 +01002576 if (obj->fence_reg == I915_FENCE_REG_NONE)
2577 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002578
Chris Wilson61050802012-04-17 15:31:31 +01002579 i915_gem_object_update_fence(obj,
2580 &dev_priv->fence_regs[obj->fence_reg],
2581 false);
2582 i915_gem_object_fence_lost(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002583
2584 return 0;
2585}
2586
2587static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002588i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002589{
Daniel Vetterae3db242010-02-19 11:51:58 +01002590 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002591 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002592 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002593
2594 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002595 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002596 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2597 reg = &dev_priv->fence_regs[i];
2598 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002599 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002600
Chris Wilson1690e1e2011-12-14 13:57:08 +01002601 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002602 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002603 }
2604
Chris Wilsond9e86c02010-11-10 16:40:20 +00002605 if (avail == NULL)
2606 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002607
2608 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002609 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002610 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002611 continue;
2612
Chris Wilson8fe301a2012-04-17 15:31:28 +01002613 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002614 }
2615
Chris Wilson8fe301a2012-04-17 15:31:28 +01002616 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002617}
2618
Jesse Barnesde151cf2008-11-12 10:03:55 -08002619/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002620 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002621 * @obj: object to map through a fence reg
2622 *
2623 * When mapping objects through the GTT, userspace wants to be able to write
2624 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002625 * This function walks the fence regs looking for a free one for @obj,
2626 * stealing one if it can't find any.
2627 *
2628 * It then sets up the reg based on the object's properties: address, pitch
2629 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002630 *
2631 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002632 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002633int
Chris Wilson06d98132012-04-17 15:31:24 +01002634i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002635{
Chris Wilson05394f32010-11-08 19:18:58 +00002636 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002637 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002638 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002639 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002640 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002641
Chris Wilson14415742012-04-17 15:31:33 +01002642 /* Have we updated the tiling parameters upon the object and so
2643 * will need to serialise the write to the associated fence register?
2644 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002645 if (obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002646 ret = i915_gem_object_flush_fence(obj);
2647 if (ret)
2648 return ret;
2649 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002650
Chris Wilsond9e86c02010-11-10 16:40:20 +00002651 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002652 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2653 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002654 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002655 list_move_tail(&reg->lru_list,
2656 &dev_priv->mm.fence_list);
2657 return 0;
2658 }
2659 } else if (enable) {
2660 reg = i915_find_fence_reg(dev);
2661 if (reg == NULL)
2662 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002663
Chris Wilson14415742012-04-17 15:31:33 +01002664 if (reg->obj) {
2665 struct drm_i915_gem_object *old = reg->obj;
2666
2667 ret = i915_gem_object_flush_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002668 if (ret)
2669 return ret;
2670
Chris Wilson14415742012-04-17 15:31:33 +01002671 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002672 }
Chris Wilson14415742012-04-17 15:31:33 +01002673 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07002674 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002675
Chris Wilson14415742012-04-17 15:31:33 +01002676 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002677 obj->fence_dirty = false;
Chris Wilson14415742012-04-17 15:31:33 +01002678
Chris Wilson9ce079e2012-04-17 15:31:30 +01002679 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002680}
2681
2682/**
Eric Anholt673a3942008-07-30 12:06:12 -07002683 * Finds free space in the GTT aperture and binds the object there.
2684 */
2685static int
Chris Wilson05394f32010-11-08 19:18:58 +00002686i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002687 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002688 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002689{
Chris Wilson05394f32010-11-08 19:18:58 +00002690 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002691 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002692 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002693 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002694 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002695 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002696 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002697
Chris Wilson05394f32010-11-08 19:18:58 +00002698 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002699 DRM_ERROR("Attempting to bind a purgeable object\n");
2700 return -EINVAL;
2701 }
2702
Chris Wilsone28f8712011-07-18 13:11:49 -07002703 fence_size = i915_gem_get_gtt_size(dev,
2704 obj->base.size,
2705 obj->tiling_mode);
2706 fence_alignment = i915_gem_get_gtt_alignment(dev,
2707 obj->base.size,
2708 obj->tiling_mode);
2709 unfenced_alignment =
2710 i915_gem_get_unfenced_gtt_alignment(dev,
2711 obj->base.size,
2712 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002713
Eric Anholt673a3942008-07-30 12:06:12 -07002714 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002715 alignment = map_and_fenceable ? fence_alignment :
2716 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002717 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002718 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2719 return -EINVAL;
2720 }
2721
Chris Wilson05394f32010-11-08 19:18:58 +00002722 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002723
Chris Wilson654fc602010-05-27 13:18:21 +01002724 /* If the object is bigger than the entire aperture, reject it early
2725 * before evicting everything in a vain attempt to find space.
2726 */
Chris Wilson05394f32010-11-08 19:18:58 +00002727 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002728 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002729 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2730 return -E2BIG;
2731 }
2732
Eric Anholt673a3942008-07-30 12:06:12 -07002733 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002734 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002735 free_space =
2736 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002737 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002738 dev_priv->mm.gtt_mappable_end,
2739 0);
2740 else
2741 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002742 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002743
2744 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002745 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002746 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002747 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002748 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002749 dev_priv->mm.gtt_mappable_end,
2750 0);
2751 else
Chris Wilson05394f32010-11-08 19:18:58 +00002752 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002753 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002754 }
Chris Wilson05394f32010-11-08 19:18:58 +00002755 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002756 /* If the gtt is empty and we're still having trouble
2757 * fitting our object in, we're out of memory.
2758 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002759 ret = i915_gem_evict_something(dev, size, alignment,
2760 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002761 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002762 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002763
Eric Anholt673a3942008-07-30 12:06:12 -07002764 goto search_free;
2765 }
2766
Chris Wilsone5281cc2010-10-28 13:45:36 +01002767 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002768 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002769 drm_mm_put_block(obj->gtt_space);
2770 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002771
2772 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002773 /* first try to reclaim some memory by clearing the GTT */
2774 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002775 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002776 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002777 if (gfpmask) {
2778 gfpmask = 0;
2779 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002780 }
2781
Chris Wilson809b6332011-01-10 17:33:15 +00002782 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002783 }
2784
2785 goto search_free;
2786 }
2787
Eric Anholt673a3942008-07-30 12:06:12 -07002788 return ret;
2789 }
2790
Daniel Vetter74163902012-02-15 23:50:21 +01002791 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002792 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002793 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002794 drm_mm_put_block(obj->gtt_space);
2795 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002796
Chris Wilson809b6332011-01-10 17:33:15 +00002797 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002798 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002799
2800 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002801 }
Eric Anholt673a3942008-07-30 12:06:12 -07002802
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002803 if (!dev_priv->mm.aliasing_ppgtt)
2804 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002805
Chris Wilson6299f992010-11-24 12:23:44 +00002806 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002807 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002808
Eric Anholt673a3942008-07-30 12:06:12 -07002809 /* Assert that the object is not currently in any GPU domain. As it
2810 * wasn't in the GTT, there shouldn't be any way it could have been in
2811 * a GPU cache
2812 */
Chris Wilson05394f32010-11-08 19:18:58 +00002813 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2814 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002815
Chris Wilson6299f992010-11-24 12:23:44 +00002816 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002817
Daniel Vetter75e9e912010-11-04 17:11:09 +01002818 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002819 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002820 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002821
Daniel Vetter75e9e912010-11-04 17:11:09 +01002822 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002823 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002824
Chris Wilson05394f32010-11-08 19:18:58 +00002825 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002826
Chris Wilsondb53a302011-02-03 11:57:46 +00002827 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002828 return 0;
2829}
2830
2831void
Chris Wilson05394f32010-11-08 19:18:58 +00002832i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002833{
Eric Anholt673a3942008-07-30 12:06:12 -07002834 /* If we don't have a page list set up, then we're not pinned
2835 * to GPU, and we can ignore the cache flush because it'll happen
2836 * again at bind time.
2837 */
Chris Wilson05394f32010-11-08 19:18:58 +00002838 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002839 return;
2840
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002841 /* If the GPU is snooping the contents of the CPU cache,
2842 * we do not need to manually clear the CPU cache lines. However,
2843 * the caches are only snooped when the render cache is
2844 * flushed/invalidated. As we always have to emit invalidations
2845 * and flushes when moving into and out of the RENDER domain, correct
2846 * snooping behaviour occurs naturally as the result of our domain
2847 * tracking.
2848 */
2849 if (obj->cache_level != I915_CACHE_NONE)
2850 return;
2851
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002852 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002853
Chris Wilson05394f32010-11-08 19:18:58 +00002854 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002855}
2856
Eric Anholte47c68e2008-11-14 13:35:19 -08002857/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002858static int
Chris Wilson3619df02010-11-28 15:37:17 +00002859i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002860{
Chris Wilson05394f32010-11-08 19:18:58 +00002861 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002862 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002863
2864 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002865 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002866}
2867
2868/** Flushes the GTT write domain for the object if it's dirty. */
2869static void
Chris Wilson05394f32010-11-08 19:18:58 +00002870i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002871{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002872 uint32_t old_write_domain;
2873
Chris Wilson05394f32010-11-08 19:18:58 +00002874 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002875 return;
2876
Chris Wilson63256ec2011-01-04 18:42:07 +00002877 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002878 * to it immediately go to main memory as far as we know, so there's
2879 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002880 *
2881 * However, we do have to enforce the order so that all writes through
2882 * the GTT land before any writes to the device, such as updates to
2883 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002884 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002885 wmb();
2886
Chris Wilson05394f32010-11-08 19:18:58 +00002887 old_write_domain = obj->base.write_domain;
2888 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002889
2890 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002891 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002892 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002893}
2894
2895/** Flushes the CPU write domain for the object if it's dirty. */
2896static void
Chris Wilson05394f32010-11-08 19:18:58 +00002897i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002898{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002899 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002900
Chris Wilson05394f32010-11-08 19:18:58 +00002901 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002902 return;
2903
2904 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002905 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002906 old_write_domain = obj->base.write_domain;
2907 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002908
2909 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002910 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002911 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002912}
2913
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002914/**
2915 * Moves a single object to the GTT read, and possibly write domain.
2916 *
2917 * This function returns when the move is complete, including waiting on
2918 * flushes to occur.
2919 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002920int
Chris Wilson20217462010-11-23 15:26:33 +00002921i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002922{
Chris Wilson8325a092012-04-24 15:52:35 +01002923 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002924 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002925 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002926
Eric Anholt02354392008-11-26 13:58:13 -08002927 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002928 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002929 return -EINVAL;
2930
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002931 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2932 return 0;
2933
Chris Wilson88241782011-01-07 17:09:48 +00002934 ret = i915_gem_object_flush_gpu_write_domain(obj);
2935 if (ret)
2936 return ret;
2937
Chris Wilson87ca9c82010-12-02 09:42:56 +00002938 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002939 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002940 if (ret)
2941 return ret;
2942 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002943
Chris Wilson72133422010-09-13 23:56:38 +01002944 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002945
Chris Wilson05394f32010-11-08 19:18:58 +00002946 old_write_domain = obj->base.write_domain;
2947 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002948
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002949 /* It should now be out of any other write domains, and we can update
2950 * the domain values for our changes.
2951 */
Chris Wilson05394f32010-11-08 19:18:58 +00002952 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2953 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002954 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002955 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2956 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2957 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002958 }
2959
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002960 trace_i915_gem_object_change_domain(obj,
2961 old_read_domains,
2962 old_write_domain);
2963
Chris Wilson8325a092012-04-24 15:52:35 +01002964 /* And bump the LRU for this access */
2965 if (i915_gem_object_is_inactive(obj))
2966 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
2967
Eric Anholte47c68e2008-11-14 13:35:19 -08002968 return 0;
2969}
2970
Chris Wilsone4ffd172011-04-04 09:44:39 +01002971int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2972 enum i915_cache_level cache_level)
2973{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002974 struct drm_device *dev = obj->base.dev;
2975 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002976 int ret;
2977
2978 if (obj->cache_level == cache_level)
2979 return 0;
2980
2981 if (obj->pin_count) {
2982 DRM_DEBUG("can not change the cache level of pinned objects\n");
2983 return -EBUSY;
2984 }
2985
2986 if (obj->gtt_space) {
2987 ret = i915_gem_object_finish_gpu(obj);
2988 if (ret)
2989 return ret;
2990
2991 i915_gem_object_finish_gtt(obj);
2992
2993 /* Before SandyBridge, you could not use tiling or fence
2994 * registers with snooped memory, so relinquish any fences
2995 * currently pointing to our region in the aperture.
2996 */
2997 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2998 ret = i915_gem_object_put_fence(obj);
2999 if (ret)
3000 return ret;
3001 }
3002
Daniel Vetter74898d72012-02-15 23:50:22 +01003003 if (obj->has_global_gtt_mapping)
3004 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003005 if (obj->has_aliasing_ppgtt_mapping)
3006 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3007 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003008 }
3009
3010 if (cache_level == I915_CACHE_NONE) {
3011 u32 old_read_domains, old_write_domain;
3012
3013 /* If we're coming from LLC cached, then we haven't
3014 * actually been tracking whether the data is in the
3015 * CPU cache or not, since we only allow one bit set
3016 * in obj->write_domain and have been skipping the clflushes.
3017 * Just set it to the CPU cache for now.
3018 */
3019 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
3020 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
3021
3022 old_read_domains = obj->base.read_domains;
3023 old_write_domain = obj->base.write_domain;
3024
3025 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3026 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3027
3028 trace_i915_gem_object_change_domain(obj,
3029 old_read_domains,
3030 old_write_domain);
3031 }
3032
3033 obj->cache_level = cache_level;
3034 return 0;
3035}
3036
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003037/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003038 * Prepare buffer for display plane (scanout, cursors, etc).
3039 * Can be called from an uninterruptible phase (modesetting) and allows
3040 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003041 */
3042int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003043i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3044 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003045 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003046{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003047 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003048 int ret;
3049
Chris Wilson88241782011-01-07 17:09:48 +00003050 ret = i915_gem_object_flush_gpu_write_domain(obj);
3051 if (ret)
3052 return ret;
3053
Chris Wilson0be73282010-12-06 14:36:27 +00003054 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003055 ret = i915_gem_object_sync(obj, pipelined);
3056 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003057 return ret;
3058 }
3059
Eric Anholta7ef0642011-03-29 16:59:54 -07003060 /* The display engine is not coherent with the LLC cache on gen6. As
3061 * a result, we make sure that the pinning that is about to occur is
3062 * done with uncached PTEs. This is lowest common denominator for all
3063 * chipsets.
3064 *
3065 * However for gen6+, we could do better by using the GFDT bit instead
3066 * of uncaching, which would allow us to flush all the LLC-cached data
3067 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3068 */
3069 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3070 if (ret)
3071 return ret;
3072
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003073 /* As the user may map the buffer once pinned in the display plane
3074 * (e.g. libkms for the bootup splash), we have to ensure that we
3075 * always use map_and_fenceable for all scanout buffers.
3076 */
3077 ret = i915_gem_object_pin(obj, alignment, true);
3078 if (ret)
3079 return ret;
3080
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003081 i915_gem_object_flush_cpu_write_domain(obj);
3082
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003083 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003084 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003085
3086 /* It should now be out of any other write domains, and we can update
3087 * the domain values for our changes.
3088 */
3089 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003090 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003091
3092 trace_i915_gem_object_change_domain(obj,
3093 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003094 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003095
3096 return 0;
3097}
3098
Chris Wilson85345512010-11-13 09:49:11 +00003099int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003100i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003101{
Chris Wilson88241782011-01-07 17:09:48 +00003102 int ret;
3103
Chris Wilsona8198ee2011-04-13 22:04:09 +01003104 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003105 return 0;
3106
Chris Wilson88241782011-01-07 17:09:48 +00003107 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003108 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00003109 if (ret)
3110 return ret;
3111 }
Chris Wilson85345512010-11-13 09:49:11 +00003112
Chris Wilsonc501ae72011-12-14 13:57:23 +01003113 ret = i915_gem_object_wait_rendering(obj);
3114 if (ret)
3115 return ret;
3116
Chris Wilsona8198ee2011-04-13 22:04:09 +01003117 /* Ensure that we invalidate the GPU's caches and TLBs. */
3118 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003119 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003120}
3121
Eric Anholte47c68e2008-11-14 13:35:19 -08003122/**
3123 * Moves a single object to the CPU read, and possibly write domain.
3124 *
3125 * This function returns when the move is complete, including waiting on
3126 * flushes to occur.
3127 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003128int
Chris Wilson919926a2010-11-12 13:42:53 +00003129i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003130{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003131 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003132 int ret;
3133
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003134 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3135 return 0;
3136
Chris Wilson88241782011-01-07 17:09:48 +00003137 ret = i915_gem_object_flush_gpu_write_domain(obj);
3138 if (ret)
3139 return ret;
3140
Chris Wilsonf8413192012-04-10 11:52:50 +01003141 if (write || obj->pending_gpu_write) {
3142 ret = i915_gem_object_wait_rendering(obj);
3143 if (ret)
3144 return ret;
3145 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003146
3147 i915_gem_object_flush_gtt_write_domain(obj);
3148
Chris Wilson05394f32010-11-08 19:18:58 +00003149 old_write_domain = obj->base.write_domain;
3150 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003151
Eric Anholte47c68e2008-11-14 13:35:19 -08003152 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003153 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003154 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003155
Chris Wilson05394f32010-11-08 19:18:58 +00003156 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003157 }
3158
3159 /* It should now be out of any other write domains, and we can update
3160 * the domain values for our changes.
3161 */
Chris Wilson05394f32010-11-08 19:18:58 +00003162 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003163
3164 /* If we're writing through the CPU, then the GPU read domains will
3165 * need to be invalidated at next use.
3166 */
3167 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003168 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3169 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003170 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003171
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003172 trace_i915_gem_object_change_domain(obj,
3173 old_read_domains,
3174 old_write_domain);
3175
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003176 return 0;
3177}
3178
Eric Anholt673a3942008-07-30 12:06:12 -07003179/* Throttle our rendering by waiting until the ring has completed our requests
3180 * emitted over 20 msec ago.
3181 *
Eric Anholtb9624422009-06-03 07:27:35 +00003182 * Note that if we were to use the current jiffies each time around the loop,
3183 * we wouldn't escape the function with any frames outstanding if the time to
3184 * render a frame was over 20ms.
3185 *
Eric Anholt673a3942008-07-30 12:06:12 -07003186 * This should get us reasonable parallelism between CPU and GPU but also
3187 * relatively low latency when blocking on a particular request to finish.
3188 */
3189static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003190i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003191{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003192 struct drm_i915_private *dev_priv = dev->dev_private;
3193 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003194 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003195 struct drm_i915_gem_request *request;
3196 struct intel_ring_buffer *ring = NULL;
3197 u32 seqno = 0;
3198 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003199
Chris Wilsone110e8d2011-01-26 15:39:14 +00003200 if (atomic_read(&dev_priv->mm.wedged))
3201 return -EIO;
3202
Chris Wilson1c255952010-09-26 11:03:27 +01003203 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003204 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003205 if (time_after_eq(request->emitted_jiffies, recent_enough))
3206 break;
3207
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003208 ring = request->ring;
3209 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003210 }
Chris Wilson1c255952010-09-26 11:03:27 +01003211 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003212
3213 if (seqno == 0)
3214 return 0;
3215
Ben Widawsky5c81fe852012-05-24 15:03:08 -07003216 ret = __wait_seqno(ring, seqno, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003217 if (ret == 0)
3218 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003219
Eric Anholt673a3942008-07-30 12:06:12 -07003220 return ret;
3221}
3222
Eric Anholt673a3942008-07-30 12:06:12 -07003223int
Chris Wilson05394f32010-11-08 19:18:58 +00003224i915_gem_object_pin(struct drm_i915_gem_object *obj,
3225 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003226 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003227{
Eric Anholt673a3942008-07-30 12:06:12 -07003228 int ret;
3229
Chris Wilson05394f32010-11-08 19:18:58 +00003230 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003231
Chris Wilson05394f32010-11-08 19:18:58 +00003232 if (obj->gtt_space != NULL) {
3233 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3234 (map_and_fenceable && !obj->map_and_fenceable)) {
3235 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003236 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003237 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3238 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003239 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003240 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003241 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003242 ret = i915_gem_object_unbind(obj);
3243 if (ret)
3244 return ret;
3245 }
3246 }
3247
Chris Wilson05394f32010-11-08 19:18:58 +00003248 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003249 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003250 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003251 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003252 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003253 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003254
Daniel Vetter74898d72012-02-15 23:50:22 +01003255 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3256 i915_gem_gtt_bind_object(obj, obj->cache_level);
3257
Chris Wilson1b502472012-04-24 15:47:30 +01003258 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003259 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003260
3261 return 0;
3262}
3263
3264void
Chris Wilson05394f32010-11-08 19:18:58 +00003265i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003266{
Chris Wilson05394f32010-11-08 19:18:58 +00003267 BUG_ON(obj->pin_count == 0);
3268 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003269
Chris Wilson1b502472012-04-24 15:47:30 +01003270 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003271 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003272}
3273
3274int
3275i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003276 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003277{
3278 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003279 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003280 int ret;
3281
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003282 ret = i915_mutex_lock_interruptible(dev);
3283 if (ret)
3284 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003285
Chris Wilson05394f32010-11-08 19:18:58 +00003286 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003287 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003288 ret = -ENOENT;
3289 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003290 }
Eric Anholt673a3942008-07-30 12:06:12 -07003291
Chris Wilson05394f32010-11-08 19:18:58 +00003292 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003293 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003294 ret = -EINVAL;
3295 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003296 }
3297
Chris Wilson05394f32010-11-08 19:18:58 +00003298 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003299 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3300 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003301 ret = -EINVAL;
3302 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003303 }
3304
Chris Wilson05394f32010-11-08 19:18:58 +00003305 obj->user_pin_count++;
3306 obj->pin_filp = file;
3307 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003308 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003309 if (ret)
3310 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003311 }
3312
3313 /* XXX - flush the CPU caches for pinned objects
3314 * as the X server doesn't manage domains yet
3315 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003316 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003317 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003318out:
Chris Wilson05394f32010-11-08 19:18:58 +00003319 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003320unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003321 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003322 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003323}
3324
3325int
3326i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003327 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003328{
3329 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003330 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003331 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003332
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003333 ret = i915_mutex_lock_interruptible(dev);
3334 if (ret)
3335 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003336
Chris Wilson05394f32010-11-08 19:18:58 +00003337 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003338 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003339 ret = -ENOENT;
3340 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003341 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003342
Chris Wilson05394f32010-11-08 19:18:58 +00003343 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003344 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3345 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003346 ret = -EINVAL;
3347 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003348 }
Chris Wilson05394f32010-11-08 19:18:58 +00003349 obj->user_pin_count--;
3350 if (obj->user_pin_count == 0) {
3351 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003352 i915_gem_object_unpin(obj);
3353 }
Eric Anholt673a3942008-07-30 12:06:12 -07003354
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003355out:
Chris Wilson05394f32010-11-08 19:18:58 +00003356 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003357unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003358 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003359 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003360}
3361
3362int
3363i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003364 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003365{
3366 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003367 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003368 int ret;
3369
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003370 ret = i915_mutex_lock_interruptible(dev);
3371 if (ret)
3372 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003373
Chris Wilson05394f32010-11-08 19:18:58 +00003374 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003375 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003376 ret = -ENOENT;
3377 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003378 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003379
Chris Wilson0be555b2010-08-04 15:36:30 +01003380 /* Count all active objects as busy, even if they are currently not used
3381 * by the gpu. Users of this interface expect objects to eventually
3382 * become non-busy without any further actions, therefore emit any
3383 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003384 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003385 ret = i915_gem_object_flush_active(obj);
3386
Chris Wilson05394f32010-11-08 19:18:58 +00003387 args->busy = obj->active;
Eric Anholt673a3942008-07-30 12:06:12 -07003388
Chris Wilson05394f32010-11-08 19:18:58 +00003389 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003390unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003391 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003392 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003393}
3394
3395int
3396i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3397 struct drm_file *file_priv)
3398{
Akshay Joshi0206e352011-08-16 15:34:10 -04003399 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003400}
3401
Chris Wilson3ef94da2009-09-14 16:50:29 +01003402int
3403i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3404 struct drm_file *file_priv)
3405{
3406 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003407 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003408 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003409
3410 switch (args->madv) {
3411 case I915_MADV_DONTNEED:
3412 case I915_MADV_WILLNEED:
3413 break;
3414 default:
3415 return -EINVAL;
3416 }
3417
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003418 ret = i915_mutex_lock_interruptible(dev);
3419 if (ret)
3420 return ret;
3421
Chris Wilson05394f32010-11-08 19:18:58 +00003422 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003423 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003424 ret = -ENOENT;
3425 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003426 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003427
Chris Wilson05394f32010-11-08 19:18:58 +00003428 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003429 ret = -EINVAL;
3430 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003431 }
3432
Chris Wilson05394f32010-11-08 19:18:58 +00003433 if (obj->madv != __I915_MADV_PURGED)
3434 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003435
Chris Wilson2d7ef392009-09-20 23:13:10 +01003436 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003437 if (i915_gem_object_is_purgeable(obj) &&
3438 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003439 i915_gem_object_truncate(obj);
3440
Chris Wilson05394f32010-11-08 19:18:58 +00003441 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003442
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003443out:
Chris Wilson05394f32010-11-08 19:18:58 +00003444 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003445unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003446 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003447 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003448}
3449
Chris Wilson05394f32010-11-08 19:18:58 +00003450struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3451 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003452{
Chris Wilson73aa8082010-09-30 11:46:12 +01003453 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003454 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003455 struct address_space *mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003456 u32 mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00003457
3458 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3459 if (obj == NULL)
3460 return NULL;
3461
3462 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3463 kfree(obj);
3464 return NULL;
3465 }
3466
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003467 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
3468 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
3469 /* 965gm cannot relocate objects above 4GiB. */
3470 mask &= ~__GFP_HIGHMEM;
3471 mask |= __GFP_DMA32;
3472 }
3473
Hugh Dickins5949eac2011-06-27 16:18:18 -07003474 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003475 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07003476
Chris Wilson73aa8082010-09-30 11:46:12 +01003477 i915_gem_info_add_obj(dev_priv, size);
3478
Daniel Vetterc397b902010-04-09 19:05:07 +00003479 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3480 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3481
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003482 if (HAS_LLC(dev)) {
3483 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003484 * cache) for about a 10% performance improvement
3485 * compared to uncached. Graphics requests other than
3486 * display scanout are coherent with the CPU in
3487 * accessing this cache. This means in this mode we
3488 * don't need to clflush on the CPU side, and on the
3489 * GPU side we only need to flush internal caches to
3490 * get data visible to the CPU.
3491 *
3492 * However, we maintain the display planes as UC, and so
3493 * need to rebind when first used as such.
3494 */
3495 obj->cache_level = I915_CACHE_LLC;
3496 } else
3497 obj->cache_level = I915_CACHE_NONE;
3498
Daniel Vetter62b8b212010-04-09 19:05:08 +00003499 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003500 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003501 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003502 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003503 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003504 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003505 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003506 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003507 /* Avoid an unnecessary call to unbind on the first bind. */
3508 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003509
Chris Wilson05394f32010-11-08 19:18:58 +00003510 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003511}
3512
Eric Anholt673a3942008-07-30 12:06:12 -07003513int i915_gem_init_object(struct drm_gem_object *obj)
3514{
Daniel Vetterc397b902010-04-09 19:05:07 +00003515 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003516
Eric Anholt673a3942008-07-30 12:06:12 -07003517 return 0;
3518}
3519
Chris Wilson1488fc02012-04-24 15:47:31 +01003520void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003521{
Chris Wilson1488fc02012-04-24 15:47:31 +01003522 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003523 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003524 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003525
Chris Wilson26e12f82011-03-20 11:20:19 +00003526 trace_i915_gem_object_destroy(obj);
3527
Daniel Vetter1286ff72012-05-10 15:25:09 +02003528 if (gem_obj->import_attach)
3529 drm_prime_gem_destroy(gem_obj, obj->sg_table);
3530
Chris Wilson1488fc02012-04-24 15:47:31 +01003531 if (obj->phys_obj)
3532 i915_gem_detach_phys_object(dev, obj);
3533
3534 obj->pin_count = 0;
3535 if (WARN_ON(i915_gem_object_unbind(obj) == -ERESTARTSYS)) {
3536 bool was_interruptible;
3537
3538 was_interruptible = dev_priv->mm.interruptible;
3539 dev_priv->mm.interruptible = false;
3540
3541 WARN_ON(i915_gem_object_unbind(obj));
3542
3543 dev_priv->mm.interruptible = was_interruptible;
3544 }
3545
Chris Wilson05394f32010-11-08 19:18:58 +00003546 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003547 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003548
Chris Wilson05394f32010-11-08 19:18:58 +00003549 drm_gem_object_release(&obj->base);
3550 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003551
Chris Wilson05394f32010-11-08 19:18:58 +00003552 kfree(obj->bit_17);
3553 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003554}
3555
Jesse Barnes5669fca2009-02-17 15:13:31 -08003556int
Eric Anholt673a3942008-07-30 12:06:12 -07003557i915_gem_idle(struct drm_device *dev)
3558{
3559 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003560 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003561
Keith Packard6dbe2772008-10-14 21:41:13 -07003562 mutex_lock(&dev->struct_mutex);
3563
Chris Wilson87acb0a2010-10-19 10:13:00 +01003564 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003565 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003566 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003567 }
Eric Anholt673a3942008-07-30 12:06:12 -07003568
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003569 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003570 if (ret) {
3571 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003572 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003573 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003574 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003575
Chris Wilson29105cc2010-01-07 10:39:13 +00003576 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01003577 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3578 i915_gem_evict_everything(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003579
Chris Wilson312817a2010-11-22 11:50:11 +00003580 i915_gem_reset_fences(dev);
3581
Chris Wilson29105cc2010-01-07 10:39:13 +00003582 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3583 * We need to replace this with a semaphore, or something.
3584 * And not confound mm.suspended!
3585 */
3586 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003587 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003588
3589 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003590 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003591
Keith Packard6dbe2772008-10-14 21:41:13 -07003592 mutex_unlock(&dev->struct_mutex);
3593
Chris Wilson29105cc2010-01-07 10:39:13 +00003594 /* Cancel the retire work handler, which should be idle now. */
3595 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3596
Eric Anholt673a3942008-07-30 12:06:12 -07003597 return 0;
3598}
3599
Ben Widawskyb9524a12012-05-25 16:56:24 -07003600void i915_gem_l3_remap(struct drm_device *dev)
3601{
3602 drm_i915_private_t *dev_priv = dev->dev_private;
3603 u32 misccpctl;
3604 int i;
3605
3606 if (!IS_IVYBRIDGE(dev))
3607 return;
3608
3609 if (!dev_priv->mm.l3_remap_info)
3610 return;
3611
3612 misccpctl = I915_READ(GEN7_MISCCPCTL);
3613 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
3614 POSTING_READ(GEN7_MISCCPCTL);
3615
3616 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
3617 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
3618 if (remap && remap != dev_priv->mm.l3_remap_info[i/4])
3619 DRM_DEBUG("0x%x was already programmed to %x\n",
3620 GEN7_L3LOG_BASE + i, remap);
3621 if (remap && !dev_priv->mm.l3_remap_info[i/4])
3622 DRM_DEBUG_DRIVER("Clearing remapped register\n");
3623 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->mm.l3_remap_info[i/4]);
3624 }
3625
3626 /* Make sure all the writes land before disabling dop clock gating */
3627 POSTING_READ(GEN7_L3LOG_BASE);
3628
3629 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
3630}
3631
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003632void i915_gem_init_swizzling(struct drm_device *dev)
3633{
3634 drm_i915_private_t *dev_priv = dev->dev_private;
3635
Daniel Vetter11782b02012-01-31 16:47:55 +01003636 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003637 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3638 return;
3639
3640 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3641 DISP_TILE_SURFACE_SWIZZLING);
3642
Daniel Vetter11782b02012-01-31 16:47:55 +01003643 if (IS_GEN5(dev))
3644 return;
3645
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003646 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3647 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02003648 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003649 else
Daniel Vetter6b26c862012-04-24 14:04:12 +02003650 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003651}
Daniel Vettere21af882012-02-09 20:53:27 +01003652
3653void i915_gem_init_ppgtt(struct drm_device *dev)
3654{
3655 drm_i915_private_t *dev_priv = dev->dev_private;
3656 uint32_t pd_offset;
3657 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003658 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3659 uint32_t __iomem *pd_addr;
3660 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003661 int i;
3662
3663 if (!dev_priv->mm.aliasing_ppgtt)
3664 return;
3665
Daniel Vetter55a254a2012-03-22 00:14:43 +01003666
3667 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3668 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3669 dma_addr_t pt_addr;
3670
3671 if (dev_priv->mm.gtt->needs_dmar)
3672 pt_addr = ppgtt->pt_dma_addr[i];
3673 else
3674 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3675
3676 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3677 pd_entry |= GEN6_PDE_VALID;
3678
3679 writel(pd_entry, pd_addr + i);
3680 }
3681 readl(pd_addr);
3682
3683 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003684 pd_offset /= 64; /* in cachelines, */
3685 pd_offset <<= 16;
3686
3687 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003688 uint32_t ecochk, gab_ctl, ecobits;
3689
3690 ecobits = I915_READ(GAC_ECO_BITS);
3691 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003692
3693 gab_ctl = I915_READ(GAB_CTL);
3694 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3695
3696 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003697 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3698 ECOCHK_PPGTT_CACHE64B);
Daniel Vetter6b26c862012-04-24 14:04:12 +02003699 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003700 } else if (INTEL_INFO(dev)->gen >= 7) {
3701 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3702 /* GFX_MODE is per-ring on gen7+ */
3703 }
3704
Chris Wilsonb4519512012-05-11 14:29:30 +01003705 for_each_ring(ring, dev_priv, i) {
Daniel Vettere21af882012-02-09 20:53:27 +01003706 if (INTEL_INFO(dev)->gen >= 7)
3707 I915_WRITE(RING_MODE_GEN7(ring),
Daniel Vetter6b26c862012-04-24 14:04:12 +02003708 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003709
3710 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3711 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3712 }
3713}
3714
Eric Anholt673a3942008-07-30 12:06:12 -07003715int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003716i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003717{
3718 drm_i915_private_t *dev_priv = dev->dev_private;
3719 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003720
Daniel Vetter8ecd1a62012-06-07 15:56:03 +02003721 if (!intel_enable_gtt())
3722 return -EIO;
3723
Ben Widawskyb9524a12012-05-25 16:56:24 -07003724 i915_gem_l3_remap(dev);
3725
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003726 i915_gem_init_swizzling(dev);
3727
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003728 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003729 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003730 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003731
3732 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003733 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003734 if (ret)
3735 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003736 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003737
Chris Wilson549f7362010-10-19 11:19:32 +01003738 if (HAS_BLT(dev)) {
3739 ret = intel_init_blt_ring_buffer(dev);
3740 if (ret)
3741 goto cleanup_bsd_ring;
3742 }
3743
Chris Wilson6f392d52010-08-07 11:01:22 +01003744 dev_priv->next_seqno = 1;
3745
Ben Widawsky254f9652012-06-04 14:42:42 -07003746 /*
3747 * XXX: There was some w/a described somewhere suggesting loading
3748 * contexts before PPGTT.
3749 */
3750 i915_gem_context_init(dev);
Daniel Vettere21af882012-02-09 20:53:27 +01003751 i915_gem_init_ppgtt(dev);
3752
Chris Wilson68f95ba2010-05-27 13:18:22 +01003753 return 0;
3754
Chris Wilson549f7362010-10-19 11:19:32 +01003755cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003756 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003757cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003758 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003759 return ret;
3760}
3761
Chris Wilson1070a422012-04-24 15:47:41 +01003762static bool
3763intel_enable_ppgtt(struct drm_device *dev)
3764{
3765 if (i915_enable_ppgtt >= 0)
3766 return i915_enable_ppgtt;
3767
3768#ifdef CONFIG_INTEL_IOMMU
3769 /* Disable ppgtt on SNB if VT-d is on. */
3770 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
3771 return false;
3772#endif
3773
3774 return true;
3775}
3776
3777int i915_gem_init(struct drm_device *dev)
3778{
3779 struct drm_i915_private *dev_priv = dev->dev_private;
3780 unsigned long gtt_size, mappable_size;
3781 int ret;
3782
3783 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
3784 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
3785
3786 mutex_lock(&dev->struct_mutex);
3787 if (intel_enable_ppgtt(dev) && HAS_ALIASING_PPGTT(dev)) {
3788 /* PPGTT pdes are stolen from global gtt ptes, so shrink the
3789 * aperture accordingly when using aliasing ppgtt. */
3790 gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
3791
3792 i915_gem_init_global_gtt(dev, 0, mappable_size, gtt_size);
3793
3794 ret = i915_gem_init_aliasing_ppgtt(dev);
3795 if (ret) {
3796 mutex_unlock(&dev->struct_mutex);
3797 return ret;
3798 }
3799 } else {
3800 /* Let GEM Manage all of the aperture.
3801 *
3802 * However, leave one page at the end still bound to the scratch
3803 * page. There are a number of places where the hardware
3804 * apparently prefetches past the end of the object, and we've
3805 * seen multiple hangs with the GPU head pointer stuck in a
3806 * batchbuffer bound at the last page of the aperture. One page
3807 * should be enough to keep any prefetching inside of the
3808 * aperture.
3809 */
3810 i915_gem_init_global_gtt(dev, 0, mappable_size,
3811 gtt_size);
3812 }
3813
3814 ret = i915_gem_init_hw(dev);
3815 mutex_unlock(&dev->struct_mutex);
3816 if (ret) {
3817 i915_gem_cleanup_aliasing_ppgtt(dev);
3818 return ret;
3819 }
3820
Daniel Vetter53ca26c2012-04-26 23:28:03 +02003821 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
3822 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3823 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01003824 return 0;
3825}
3826
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003827void
3828i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3829{
3830 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003831 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003832 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003833
Chris Wilsonb4519512012-05-11 14:29:30 +01003834 for_each_ring(ring, dev_priv, i)
3835 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003836}
3837
3838int
Eric Anholt673a3942008-07-30 12:06:12 -07003839i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3840 struct drm_file *file_priv)
3841{
3842 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003843 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003844
Jesse Barnes79e53942008-11-07 14:24:08 -08003845 if (drm_core_check_feature(dev, DRIVER_MODESET))
3846 return 0;
3847
Ben Gamariba1234d2009-09-14 17:48:47 -04003848 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003849 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003850 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003851 }
3852
Eric Anholt673a3942008-07-30 12:06:12 -07003853 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003854 dev_priv->mm.suspended = 0;
3855
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003856 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003857 if (ret != 0) {
3858 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003859 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003860 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003861
Chris Wilson69dc4982010-10-19 10:36:51 +01003862 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003863 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3864 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003865 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003866
Chris Wilson5f353082010-06-07 14:03:03 +01003867 ret = drm_irq_install(dev);
3868 if (ret)
3869 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003870
Eric Anholt673a3942008-07-30 12:06:12 -07003871 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003872
3873cleanup_ringbuffer:
3874 mutex_lock(&dev->struct_mutex);
3875 i915_gem_cleanup_ringbuffer(dev);
3876 dev_priv->mm.suspended = 1;
3877 mutex_unlock(&dev->struct_mutex);
3878
3879 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003880}
3881
3882int
3883i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3884 struct drm_file *file_priv)
3885{
Jesse Barnes79e53942008-11-07 14:24:08 -08003886 if (drm_core_check_feature(dev, DRIVER_MODESET))
3887 return 0;
3888
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003889 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003890 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003891}
3892
3893void
3894i915_gem_lastclose(struct drm_device *dev)
3895{
3896 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003897
Eric Anholte806b492009-01-22 09:56:58 -08003898 if (drm_core_check_feature(dev, DRIVER_MODESET))
3899 return;
3900
Keith Packard6dbe2772008-10-14 21:41:13 -07003901 ret = i915_gem_idle(dev);
3902 if (ret)
3903 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003904}
3905
Chris Wilson64193402010-10-24 12:38:05 +01003906static void
3907init_ring_lists(struct intel_ring_buffer *ring)
3908{
3909 INIT_LIST_HEAD(&ring->active_list);
3910 INIT_LIST_HEAD(&ring->request_list);
3911 INIT_LIST_HEAD(&ring->gpu_write_list);
3912}
3913
Eric Anholt673a3942008-07-30 12:06:12 -07003914void
3915i915_gem_load(struct drm_device *dev)
3916{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003917 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003918 drm_i915_private_t *dev_priv = dev->dev_private;
3919
Chris Wilson69dc4982010-10-19 10:36:51 +01003920 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003921 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3922 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003923 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003924 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003925 for (i = 0; i < I915_NUM_RINGS; i++)
3926 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003927 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003928 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003929 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3930 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003931 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003932
Dave Airlie94400122010-07-20 13:15:31 +10003933 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3934 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02003935 I915_WRITE(MI_ARB_STATE,
3936 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10003937 }
3938
Chris Wilson72bfa192010-12-19 11:42:05 +00003939 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3940
Jesse Barnesde151cf2008-11-12 10:03:55 -08003941 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003942 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3943 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003944
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003945 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003946 dev_priv->num_fence_regs = 16;
3947 else
3948 dev_priv->num_fence_regs = 8;
3949
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003950 /* Initialize fence registers to zero */
Chris Wilsonada726c2012-04-17 15:31:32 +01003951 i915_gem_reset_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07003952
Eric Anholt673a3942008-07-30 12:06:12 -07003953 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003954 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003955
Chris Wilsonce453d82011-02-21 14:43:56 +00003956 dev_priv->mm.interruptible = true;
3957
Chris Wilson17250b72010-10-28 12:51:39 +01003958 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3959 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3960 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003961}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003962
3963/*
3964 * Create a physically contiguous memory object for this object
3965 * e.g. for cursor + overlay regs
3966 */
Chris Wilson995b6762010-08-20 13:23:26 +01003967static int i915_gem_init_phys_object(struct drm_device *dev,
3968 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003969{
3970 drm_i915_private_t *dev_priv = dev->dev_private;
3971 struct drm_i915_gem_phys_object *phys_obj;
3972 int ret;
3973
3974 if (dev_priv->mm.phys_objs[id - 1] || !size)
3975 return 0;
3976
Eric Anholt9a298b22009-03-24 12:23:04 -07003977 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003978 if (!phys_obj)
3979 return -ENOMEM;
3980
3981 phys_obj->id = id;
3982
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003983 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003984 if (!phys_obj->handle) {
3985 ret = -ENOMEM;
3986 goto kfree_obj;
3987 }
3988#ifdef CONFIG_X86
3989 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3990#endif
3991
3992 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3993
3994 return 0;
3995kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003996 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003997 return ret;
3998}
3999
Chris Wilson995b6762010-08-20 13:23:26 +01004000static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004001{
4002 drm_i915_private_t *dev_priv = dev->dev_private;
4003 struct drm_i915_gem_phys_object *phys_obj;
4004
4005 if (!dev_priv->mm.phys_objs[id - 1])
4006 return;
4007
4008 phys_obj = dev_priv->mm.phys_objs[id - 1];
4009 if (phys_obj->cur_obj) {
4010 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4011 }
4012
4013#ifdef CONFIG_X86
4014 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4015#endif
4016 drm_pci_free(dev, phys_obj->handle);
4017 kfree(phys_obj);
4018 dev_priv->mm.phys_objs[id - 1] = NULL;
4019}
4020
4021void i915_gem_free_all_phys_object(struct drm_device *dev)
4022{
4023 int i;
4024
Dave Airlie260883c2009-01-22 17:58:49 +10004025 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004026 i915_gem_free_phys_object(dev, i);
4027}
4028
4029void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004030 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004031{
Chris Wilson05394f32010-11-08 19:18:58 +00004032 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004033 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004034 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004035 int page_count;
4036
Chris Wilson05394f32010-11-08 19:18:58 +00004037 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004038 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004039 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004040
Chris Wilson05394f32010-11-08 19:18:58 +00004041 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004042 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004043 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004044 if (!IS_ERR(page)) {
4045 char *dst = kmap_atomic(page);
4046 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4047 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004048
Chris Wilsone5281cc2010-10-28 13:45:36 +01004049 drm_clflush_pages(&page, 1);
4050
4051 set_page_dirty(page);
4052 mark_page_accessed(page);
4053 page_cache_release(page);
4054 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004055 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01004056 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01004057
Chris Wilson05394f32010-11-08 19:18:58 +00004058 obj->phys_obj->cur_obj = NULL;
4059 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004060}
4061
4062int
4063i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004064 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004065 int id,
4066 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004067{
Chris Wilson05394f32010-11-08 19:18:58 +00004068 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004069 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004070 int ret = 0;
4071 int page_count;
4072 int i;
4073
4074 if (id > I915_MAX_PHYS_OBJECT)
4075 return -EINVAL;
4076
Chris Wilson05394f32010-11-08 19:18:58 +00004077 if (obj->phys_obj) {
4078 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004079 return 0;
4080 i915_gem_detach_phys_object(dev, obj);
4081 }
4082
Dave Airlie71acb5e2008-12-30 20:31:46 +10004083 /* create a new object */
4084 if (!dev_priv->mm.phys_objs[id - 1]) {
4085 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004086 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004087 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004088 DRM_ERROR("failed to init phys object %d size: %zu\n",
4089 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004090 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004091 }
4092 }
4093
4094 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004095 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4096 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004097
Chris Wilson05394f32010-11-08 19:18:58 +00004098 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004099
4100 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004101 struct page *page;
4102 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004103
Hugh Dickins5949eac2011-06-27 16:18:18 -07004104 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004105 if (IS_ERR(page))
4106 return PTR_ERR(page);
4107
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004108 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004109 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004110 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004111 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004112
4113 mark_page_accessed(page);
4114 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004115 }
4116
4117 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004118}
4119
4120static int
Chris Wilson05394f32010-11-08 19:18:58 +00004121i915_gem_phys_pwrite(struct drm_device *dev,
4122 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004123 struct drm_i915_gem_pwrite *args,
4124 struct drm_file *file_priv)
4125{
Chris Wilson05394f32010-11-08 19:18:58 +00004126 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004127 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004128
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004129 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4130 unsigned long unwritten;
4131
4132 /* The physical object once assigned is fixed for the lifetime
4133 * of the obj, so we can safely drop the lock and continue
4134 * to access vaddr.
4135 */
4136 mutex_unlock(&dev->struct_mutex);
4137 unwritten = copy_from_user(vaddr, user_data, args->size);
4138 mutex_lock(&dev->struct_mutex);
4139 if (unwritten)
4140 return -EFAULT;
4141 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004142
Daniel Vetter40ce6572010-11-05 18:12:18 +01004143 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004144 return 0;
4145}
Eric Anholtb9624422009-06-03 07:27:35 +00004146
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004147void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004148{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004149 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004150
4151 /* Clean up our request list when the client is going away, so that
4152 * later retire_requests won't dereference our soon-to-be-gone
4153 * file_priv.
4154 */
Chris Wilson1c255952010-09-26 11:03:27 +01004155 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004156 while (!list_empty(&file_priv->mm.request_list)) {
4157 struct drm_i915_gem_request *request;
4158
4159 request = list_first_entry(&file_priv->mm.request_list,
4160 struct drm_i915_gem_request,
4161 client_list);
4162 list_del(&request->client_list);
4163 request->file_priv = NULL;
4164 }
Chris Wilson1c255952010-09-26 11:03:27 +01004165 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004166}
Chris Wilson31169712009-09-14 16:50:28 +01004167
Chris Wilson31169712009-09-14 16:50:28 +01004168static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004169i915_gpu_is_active(struct drm_device *dev)
4170{
4171 drm_i915_private_t *dev_priv = dev->dev_private;
4172 int lists_empty;
4173
Chris Wilson1637ef42010-04-20 17:10:35 +01004174 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004175 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004176
4177 return !lists_empty;
4178}
4179
4180static int
Ying Han1495f232011-05-24 17:12:27 -07004181i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004182{
Chris Wilson17250b72010-10-28 12:51:39 +01004183 struct drm_i915_private *dev_priv =
4184 container_of(shrinker,
4185 struct drm_i915_private,
4186 mm.inactive_shrinker);
4187 struct drm_device *dev = dev_priv->dev;
4188 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004189 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004190 int cnt;
4191
4192 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004193 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004194
4195 /* "fast-path" to count number of available objects */
4196 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004197 cnt = 0;
4198 list_for_each_entry(obj,
4199 &dev_priv->mm.inactive_list,
4200 mm_list)
4201 cnt++;
4202 mutex_unlock(&dev->struct_mutex);
4203 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004204 }
4205
Chris Wilson1637ef42010-04-20 17:10:35 +01004206rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004207 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004208 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004209
Chris Wilson17250b72010-10-28 12:51:39 +01004210 list_for_each_entry_safe(obj, next,
4211 &dev_priv->mm.inactive_list,
4212 mm_list) {
4213 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004214 if (i915_gem_object_unbind(obj) == 0 &&
4215 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004216 break;
Chris Wilson31169712009-09-14 16:50:28 +01004217 }
Chris Wilson31169712009-09-14 16:50:28 +01004218 }
4219
4220 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004221 cnt = 0;
4222 list_for_each_entry_safe(obj, next,
4223 &dev_priv->mm.inactive_list,
4224 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004225 if (nr_to_scan &&
4226 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004227 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004228 else
Chris Wilson17250b72010-10-28 12:51:39 +01004229 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004230 }
4231
Chris Wilson17250b72010-10-28 12:51:39 +01004232 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004233 /*
4234 * We are desperate for pages, so as a last resort, wait
4235 * for the GPU to finish and discard whatever we can.
4236 * This has a dramatic impact to reduce the number of
4237 * OOM-killer events whilst running the GPU aggressively.
4238 */
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004239 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004240 goto rescan;
4241 }
Chris Wilson17250b72010-10-28 12:51:39 +01004242 mutex_unlock(&dev->struct_mutex);
4243 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004244}