blob: 1c08e0900eff2372ae03288f9e27b16831aa9bc9 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070036#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson88241782011-01-07 17:09:48 +000039static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000040static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
41static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000042static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
43 unsigned alignment,
44 bool map_and_fenceable);
Chris Wilson05394f32010-11-08 19:18:58 +000045static int i915_gem_phys_pwrite(struct drm_device *dev,
46 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100047 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000048 struct drm_file *file);
Eric Anholt673a3942008-07-30 12:06:12 -070049
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilson17250b72010-10-28 12:51:39 +010056static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070057 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010058static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010059
Chris Wilson61050802012-04-17 15:31:31 +010060static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
61{
62 if (obj->tiling_mode)
63 i915_gem_release_mmap(obj);
64
65 /* As we do not have an associated fence register, we will force
66 * a tiling change if we ever need to acquire one.
67 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010068 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010069 obj->fence_reg = I915_FENCE_REG_NONE;
70}
71
Chris Wilson73aa8082010-09-30 11:46:12 +010072/* some bookkeeping */
73static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
74 size_t size)
75{
76 dev_priv->mm.object_count++;
77 dev_priv->mm.object_memory += size;
78}
79
80static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
81 size_t size)
82{
83 dev_priv->mm.object_count--;
84 dev_priv->mm.object_memory -= size;
85}
86
Chris Wilson21dd3732011-01-26 15:55:56 +000087static int
88i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010089{
90 struct drm_i915_private *dev_priv = dev->dev_private;
91 struct completion *x = &dev_priv->error_completion;
92 unsigned long flags;
93 int ret;
94
95 if (!atomic_read(&dev_priv->mm.wedged))
96 return 0;
97
98 ret = wait_for_completion_interruptible(x);
99 if (ret)
100 return ret;
101
Chris Wilson21dd3732011-01-26 15:55:56 +0000102 if (atomic_read(&dev_priv->mm.wedged)) {
103 /* GPU is hung, bump the completion count to account for
104 * the token we just consumed so that we never hit zero and
105 * end up waiting upon a subsequent completion event that
106 * will never happen.
107 */
108 spin_lock_irqsave(&x->wait.lock, flags);
109 x->done++;
110 spin_unlock_irqrestore(&x->wait.lock, flags);
111 }
112 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113}
114
Chris Wilson54cf91d2010-11-25 18:00:26 +0000115int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100116{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100117 int ret;
118
Chris Wilson21dd3732011-01-26 15:55:56 +0000119 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100120 if (ret)
121 return ret;
122
123 ret = mutex_lock_interruptible(&dev->struct_mutex);
124 if (ret)
125 return ret;
126
Chris Wilson23bc5982010-09-29 16:10:57 +0100127 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100128 return 0;
129}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100130
Chris Wilson7d1c4802010-08-07 21:45:03 +0100131static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000132i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100133{
Chris Wilson1b502472012-04-24 15:47:30 +0100134 return !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100135}
136
Eric Anholt673a3942008-07-30 12:06:12 -0700137int
138i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000139 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700140{
Eric Anholt673a3942008-07-30 12:06:12 -0700141 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000142
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200143 if (drm_core_check_feature(dev, DRIVER_MODESET))
144 return -ENODEV;
145
Chris Wilson20217462010-11-23 15:26:33 +0000146 if (args->gtt_start >= args->gtt_end ||
147 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
148 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700149
Daniel Vetterf534bc02012-03-26 22:37:04 +0200150 /* GEM with user mode setting was never supported on ilk and later. */
151 if (INTEL_INFO(dev)->gen >= 5)
152 return -ENODEV;
153
Eric Anholt673a3942008-07-30 12:06:12 -0700154 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200155 i915_gem_init_global_gtt(dev, args->gtt_start,
156 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700157 mutex_unlock(&dev->struct_mutex);
158
Chris Wilson20217462010-11-23 15:26:33 +0000159 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700160}
161
Eric Anholt5a125c32008-10-22 21:40:13 -0700162int
163i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700165{
Chris Wilson73aa8082010-09-30 11:46:12 +0100166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700167 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000168 struct drm_i915_gem_object *obj;
169 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700170
Chris Wilson6299f992010-11-24 12:23:44 +0000171 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100172 mutex_lock(&dev->struct_mutex);
Chris Wilson1b502472012-04-24 15:47:30 +0100173 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list)
174 if (obj->pin_count)
175 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700177
Chris Wilson6299f992010-11-24 12:23:44 +0000178 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400179 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000180
Eric Anholt5a125c32008-10-22 21:40:13 -0700181 return 0;
182}
183
Dave Airlieff72145b2011-02-07 12:16:14 +1000184static int
185i915_gem_create(struct drm_file *file,
186 struct drm_device *dev,
187 uint64_t size,
188 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700189{
Chris Wilson05394f32010-11-08 19:18:58 +0000190 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300191 int ret;
192 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700193
Dave Airlieff72145b2011-02-07 12:16:14 +1000194 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200195 if (size == 0)
196 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700197
198 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000199 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700200 if (obj == NULL)
201 return -ENOMEM;
202
Chris Wilson05394f32010-11-08 19:18:58 +0000203 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100204 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000205 drm_gem_object_release(&obj->base);
206 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100207 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700208 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100209 }
210
Chris Wilson202f2fe2010-10-14 13:20:40 +0100211 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000212 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100213 trace_i915_gem_object_create(obj);
214
Dave Airlieff72145b2011-02-07 12:16:14 +1000215 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700216 return 0;
217}
218
Dave Airlieff72145b2011-02-07 12:16:14 +1000219int
220i915_gem_dumb_create(struct drm_file *file,
221 struct drm_device *dev,
222 struct drm_mode_create_dumb *args)
223{
224 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000225 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000226 args->size = args->pitch * args->height;
227 return i915_gem_create(file, dev,
228 args->size, &args->handle);
229}
230
231int i915_gem_dumb_destroy(struct drm_file *file,
232 struct drm_device *dev,
233 uint32_t handle)
234{
235 return drm_gem_handle_delete(file, handle);
236}
237
238/**
239 * Creates a new mm object and returns a handle to it.
240 */
241int
242i915_gem_create_ioctl(struct drm_device *dev, void *data,
243 struct drm_file *file)
244{
245 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200246
Dave Airlieff72145b2011-02-07 12:16:14 +1000247 return i915_gem_create(file, dev,
248 args->size, &args->handle);
249}
250
Chris Wilson05394f32010-11-08 19:18:58 +0000251static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700252{
Chris Wilson05394f32010-11-08 19:18:58 +0000253 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700254
255 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000256 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700257}
258
Daniel Vetter8c599672011-12-14 13:57:31 +0100259static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100260__copy_to_user_swizzled(char __user *cpu_vaddr,
261 const char *gpu_vaddr, int gpu_offset,
262 int length)
263{
264 int ret, cpu_offset = 0;
265
266 while (length > 0) {
267 int cacheline_end = ALIGN(gpu_offset + 1, 64);
268 int this_length = min(cacheline_end - gpu_offset, length);
269 int swizzled_gpu_offset = gpu_offset ^ 64;
270
271 ret = __copy_to_user(cpu_vaddr + cpu_offset,
272 gpu_vaddr + swizzled_gpu_offset,
273 this_length);
274 if (ret)
275 return ret + length;
276
277 cpu_offset += this_length;
278 gpu_offset += this_length;
279 length -= this_length;
280 }
281
282 return 0;
283}
284
285static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700286__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
287 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100288 int length)
289{
290 int ret, cpu_offset = 0;
291
292 while (length > 0) {
293 int cacheline_end = ALIGN(gpu_offset + 1, 64);
294 int this_length = min(cacheline_end - gpu_offset, length);
295 int swizzled_gpu_offset = gpu_offset ^ 64;
296
297 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
298 cpu_vaddr + cpu_offset,
299 this_length);
300 if (ret)
301 return ret + length;
302
303 cpu_offset += this_length;
304 gpu_offset += this_length;
305 length -= this_length;
306 }
307
308 return 0;
309}
310
Daniel Vetterd174bd62012-03-25 19:47:40 +0200311/* Per-page copy function for the shmem pread fastpath.
312 * Flushes invalid cachelines before reading the target if
313 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700314static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200315shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
316 char __user *user_data,
317 bool page_do_bit17_swizzling, bool needs_clflush)
318{
319 char *vaddr;
320 int ret;
321
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200322 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200323 return -EINVAL;
324
325 vaddr = kmap_atomic(page);
326 if (needs_clflush)
327 drm_clflush_virt_range(vaddr + shmem_page_offset,
328 page_length);
329 ret = __copy_to_user_inatomic(user_data,
330 vaddr + shmem_page_offset,
331 page_length);
332 kunmap_atomic(vaddr);
333
334 return ret;
335}
336
Daniel Vetter23c18c72012-03-25 19:47:42 +0200337static void
338shmem_clflush_swizzled_range(char *addr, unsigned long length,
339 bool swizzled)
340{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200341 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200342 unsigned long start = (unsigned long) addr;
343 unsigned long end = (unsigned long) addr + length;
344
345 /* For swizzling simply ensure that we always flush both
346 * channels. Lame, but simple and it works. Swizzled
347 * pwrite/pread is far from a hotpath - current userspace
348 * doesn't use it at all. */
349 start = round_down(start, 128);
350 end = round_up(end, 128);
351
352 drm_clflush_virt_range((void *)start, end - start);
353 } else {
354 drm_clflush_virt_range(addr, length);
355 }
356
357}
358
Daniel Vetterd174bd62012-03-25 19:47:40 +0200359/* Only difference to the fast-path function is that this can handle bit17
360 * and uses non-atomic copy and kmap functions. */
361static int
362shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
363 char __user *user_data,
364 bool page_do_bit17_swizzling, bool needs_clflush)
365{
366 char *vaddr;
367 int ret;
368
369 vaddr = kmap(page);
370 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200371 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
372 page_length,
373 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200374
375 if (page_do_bit17_swizzling)
376 ret = __copy_to_user_swizzled(user_data,
377 vaddr, shmem_page_offset,
378 page_length);
379 else
380 ret = __copy_to_user(user_data,
381 vaddr + shmem_page_offset,
382 page_length);
383 kunmap(page);
384
385 return ret;
386}
387
Eric Anholteb014592009-03-10 11:44:52 -0700388static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200389i915_gem_shmem_pread(struct drm_device *dev,
390 struct drm_i915_gem_object *obj,
391 struct drm_i915_gem_pread *args,
392 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700393{
Chris Wilson05394f32010-11-08 19:18:58 +0000394 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100395 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700396 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100397 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100398 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100399 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200400 int hit_slowpath = 0;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200401 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200402 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200403 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700404
Daniel Vetter8461d222011-12-14 13:57:32 +0100405 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700406 remain = args->size;
407
Daniel Vetter8461d222011-12-14 13:57:32 +0100408 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700409
Daniel Vetter84897312012-03-25 19:47:31 +0200410 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
411 /* If we're not in the cpu read domain, set ourself into the gtt
412 * read domain and manually flush cachelines (if required). This
413 * optimizes for the case when the gpu will dirty the data
414 * anyway again before the next pread happens. */
415 if (obj->cache_level == I915_CACHE_NONE)
416 needs_clflush = 1;
417 ret = i915_gem_object_set_to_gtt_domain(obj, false);
418 if (ret)
419 return ret;
420 }
Eric Anholteb014592009-03-10 11:44:52 -0700421
Eric Anholteb014592009-03-10 11:44:52 -0700422 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100423
Eric Anholteb014592009-03-10 11:44:52 -0700424 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100425 struct page *page;
426
Eric Anholteb014592009-03-10 11:44:52 -0700427 /* Operation in this page
428 *
Eric Anholteb014592009-03-10 11:44:52 -0700429 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700430 * page_length = bytes to copy for this page
431 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100432 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700433 page_length = remain;
434 if ((shmem_page_offset + page_length) > PAGE_SIZE)
435 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700436
Daniel Vetter692a5762012-03-25 19:47:34 +0200437 if (obj->pages) {
438 page = obj->pages[offset >> PAGE_SHIFT];
439 release_page = 0;
440 } else {
441 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
442 if (IS_ERR(page)) {
443 ret = PTR_ERR(page);
444 goto out;
445 }
446 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000447 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100448
Daniel Vetter8461d222011-12-14 13:57:32 +0100449 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
450 (page_to_phys(page) & (1 << 17)) != 0;
451
Daniel Vetterd174bd62012-03-25 19:47:40 +0200452 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
453 user_data, page_do_bit17_swizzling,
454 needs_clflush);
455 if (ret == 0)
456 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700457
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200458 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200459 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200460 mutex_unlock(&dev->struct_mutex);
461
Daniel Vetter96d79b52012-03-25 19:47:36 +0200462 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200463 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200464 /* Userspace is tricking us, but we've already clobbered
465 * its pages with the prefault and promised to write the
466 * data up to the first fault. Hence ignore any errors
467 * and just continue. */
468 (void)ret;
469 prefaulted = 1;
470 }
471
Daniel Vetterd174bd62012-03-25 19:47:40 +0200472 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
473 user_data, page_do_bit17_swizzling,
474 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700475
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200476 mutex_lock(&dev->struct_mutex);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100477 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200478next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100479 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200480 if (release_page)
481 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100482
Daniel Vetter8461d222011-12-14 13:57:32 +0100483 if (ret) {
484 ret = -EFAULT;
485 goto out;
486 }
487
Eric Anholteb014592009-03-10 11:44:52 -0700488 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100489 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700490 offset += page_length;
491 }
492
Chris Wilson4f27b752010-10-14 15:26:45 +0100493out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200494 if (hit_slowpath) {
495 /* Fixup: Kill any reinstated backing storage pages */
496 if (obj->madv == __I915_MADV_PURGED)
497 i915_gem_object_truncate(obj);
498 }
Eric Anholteb014592009-03-10 11:44:52 -0700499
500 return ret;
501}
502
Eric Anholt673a3942008-07-30 12:06:12 -0700503/**
504 * Reads data from the object referenced by handle.
505 *
506 * On error, the contents of *data are undefined.
507 */
508int
509i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000510 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700511{
512 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000513 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100514 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700515
Chris Wilson51311d02010-11-17 09:10:42 +0000516 if (args->size == 0)
517 return 0;
518
519 if (!access_ok(VERIFY_WRITE,
520 (char __user *)(uintptr_t)args->data_ptr,
521 args->size))
522 return -EFAULT;
523
Chris Wilson4f27b752010-10-14 15:26:45 +0100524 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100525 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100526 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700527
Chris Wilson05394f32010-11-08 19:18:58 +0000528 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000529 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100530 ret = -ENOENT;
531 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100532 }
Eric Anholt673a3942008-07-30 12:06:12 -0700533
Chris Wilson7dcd2492010-09-26 20:21:44 +0100534 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000535 if (args->offset > obj->base.size ||
536 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100537 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100538 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100539 }
540
Chris Wilsondb53a302011-02-03 11:57:46 +0000541 trace_i915_gem_object_pread(obj, args->offset, args->size);
542
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200543 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700544
Chris Wilson35b62a82010-09-26 20:23:38 +0100545out:
Chris Wilson05394f32010-11-08 19:18:58 +0000546 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100547unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100548 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700549 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700550}
551
Keith Packard0839ccb2008-10-30 19:38:48 -0700552/* This is the fast write path which cannot handle
553 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700554 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700555
Keith Packard0839ccb2008-10-30 19:38:48 -0700556static inline int
557fast_user_write(struct io_mapping *mapping,
558 loff_t page_base, int page_offset,
559 char __user *user_data,
560 int length)
561{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700562 void __iomem *vaddr_atomic;
563 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700564 unsigned long unwritten;
565
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700566 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700567 /* We can use the cpu mem copy function because this is X86. */
568 vaddr = (void __force*)vaddr_atomic + page_offset;
569 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700570 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700571 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100572 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700573}
574
Eric Anholt3de09aa2009-03-09 09:42:23 -0700575/**
576 * This is the fast pwrite path, where we copy the data directly from the
577 * user into the GTT, uncached.
578 */
Eric Anholt673a3942008-07-30 12:06:12 -0700579static int
Chris Wilson05394f32010-11-08 19:18:58 +0000580i915_gem_gtt_pwrite_fast(struct drm_device *dev,
581 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700582 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000583 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700584{
Keith Packard0839ccb2008-10-30 19:38:48 -0700585 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700586 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700587 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700588 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200589 int page_offset, page_length, ret;
590
591 ret = i915_gem_object_pin(obj, 0, true);
592 if (ret)
593 goto out;
594
595 ret = i915_gem_object_set_to_gtt_domain(obj, true);
596 if (ret)
597 goto out_unpin;
598
599 ret = i915_gem_object_put_fence(obj);
600 if (ret)
601 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700602
603 user_data = (char __user *) (uintptr_t) args->data_ptr;
604 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700605
Chris Wilson05394f32010-11-08 19:18:58 +0000606 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700607
608 while (remain > 0) {
609 /* Operation in this page
610 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700611 * page_base = page offset within aperture
612 * page_offset = offset within page
613 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700614 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100615 page_base = offset & PAGE_MASK;
616 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700617 page_length = remain;
618 if ((page_offset + remain) > PAGE_SIZE)
619 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700620
Keith Packard0839ccb2008-10-30 19:38:48 -0700621 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700622 * source page isn't available. Return the error and we'll
623 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700624 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100625 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200626 page_offset, user_data, page_length)) {
627 ret = -EFAULT;
628 goto out_unpin;
629 }
Eric Anholt673a3942008-07-30 12:06:12 -0700630
Keith Packard0839ccb2008-10-30 19:38:48 -0700631 remain -= page_length;
632 user_data += page_length;
633 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700634 }
Eric Anholt673a3942008-07-30 12:06:12 -0700635
Daniel Vetter935aaa62012-03-25 19:47:35 +0200636out_unpin:
637 i915_gem_object_unpin(obj);
638out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700639 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700640}
641
Daniel Vetterd174bd62012-03-25 19:47:40 +0200642/* Per-page copy function for the shmem pwrite fastpath.
643 * Flushes invalid cachelines before writing to the target if
644 * needs_clflush_before is set and flushes out any written cachelines after
645 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700646static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200647shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
648 char __user *user_data,
649 bool page_do_bit17_swizzling,
650 bool needs_clflush_before,
651 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700652{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200653 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700654 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700655
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200656 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200657 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700658
Daniel Vetterd174bd62012-03-25 19:47:40 +0200659 vaddr = kmap_atomic(page);
660 if (needs_clflush_before)
661 drm_clflush_virt_range(vaddr + shmem_page_offset,
662 page_length);
663 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
664 user_data,
665 page_length);
666 if (needs_clflush_after)
667 drm_clflush_virt_range(vaddr + shmem_page_offset,
668 page_length);
669 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700670
671 return ret;
672}
673
Daniel Vetterd174bd62012-03-25 19:47:40 +0200674/* Only difference to the fast-path function is that this can handle bit17
675 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700676static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200677shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
678 char __user *user_data,
679 bool page_do_bit17_swizzling,
680 bool needs_clflush_before,
681 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700682{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200683 char *vaddr;
684 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700685
Daniel Vetterd174bd62012-03-25 19:47:40 +0200686 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200687 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200688 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
689 page_length,
690 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200691 if (page_do_bit17_swizzling)
692 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100693 user_data,
694 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200695 else
696 ret = __copy_from_user(vaddr + shmem_page_offset,
697 user_data,
698 page_length);
699 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200700 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
701 page_length,
702 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200703 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100704
Daniel Vetterd174bd62012-03-25 19:47:40 +0200705 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700706}
707
Eric Anholt40123c12009-03-09 13:42:30 -0700708static int
Daniel Vettere244a442012-03-25 19:47:28 +0200709i915_gem_shmem_pwrite(struct drm_device *dev,
710 struct drm_i915_gem_object *obj,
711 struct drm_i915_gem_pwrite *args,
712 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700713{
Chris Wilson05394f32010-11-08 19:18:58 +0000714 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700715 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100716 loff_t offset;
717 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100718 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100719 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200720 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200721 int needs_clflush_after = 0;
722 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200723 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700724
Daniel Vetter8c599672011-12-14 13:57:31 +0100725 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700726 remain = args->size;
727
Daniel Vetter8c599672011-12-14 13:57:31 +0100728 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700729
Daniel Vetter58642882012-03-25 19:47:37 +0200730 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
731 /* If we're not in the cpu write domain, set ourself into the gtt
732 * write domain and manually flush cachelines (if required). This
733 * optimizes for the case when the gpu will use the data
734 * right away and we therefore have to clflush anyway. */
735 if (obj->cache_level == I915_CACHE_NONE)
736 needs_clflush_after = 1;
737 ret = i915_gem_object_set_to_gtt_domain(obj, true);
738 if (ret)
739 return ret;
740 }
741 /* Same trick applies for invalidate partially written cachelines before
742 * writing. */
743 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
744 && obj->cache_level == I915_CACHE_NONE)
745 needs_clflush_before = 1;
746
Eric Anholt40123c12009-03-09 13:42:30 -0700747 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000748 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700749
750 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100751 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200752 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100753
Eric Anholt40123c12009-03-09 13:42:30 -0700754 /* Operation in this page
755 *
Eric Anholt40123c12009-03-09 13:42:30 -0700756 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700757 * page_length = bytes to copy for this page
758 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100759 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700760
761 page_length = remain;
762 if ((shmem_page_offset + page_length) > PAGE_SIZE)
763 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700764
Daniel Vetter58642882012-03-25 19:47:37 +0200765 /* If we don't overwrite a cacheline completely we need to be
766 * careful to have up-to-date data by first clflushing. Don't
767 * overcomplicate things and flush the entire patch. */
768 partial_cacheline_write = needs_clflush_before &&
769 ((shmem_page_offset | page_length)
770 & (boot_cpu_data.x86_clflush_size - 1));
771
Daniel Vetter692a5762012-03-25 19:47:34 +0200772 if (obj->pages) {
773 page = obj->pages[offset >> PAGE_SHIFT];
774 release_page = 0;
775 } else {
776 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
777 if (IS_ERR(page)) {
778 ret = PTR_ERR(page);
779 goto out;
780 }
781 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100782 }
783
Daniel Vetter8c599672011-12-14 13:57:31 +0100784 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
785 (page_to_phys(page) & (1 << 17)) != 0;
786
Daniel Vetterd174bd62012-03-25 19:47:40 +0200787 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
788 user_data, page_do_bit17_swizzling,
789 partial_cacheline_write,
790 needs_clflush_after);
791 if (ret == 0)
792 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700793
Daniel Vettere244a442012-03-25 19:47:28 +0200794 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200795 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200796 mutex_unlock(&dev->struct_mutex);
797
Daniel Vetterd174bd62012-03-25 19:47:40 +0200798 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
799 user_data, page_do_bit17_swizzling,
800 partial_cacheline_write,
801 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700802
Daniel Vettere244a442012-03-25 19:47:28 +0200803 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200804 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200805next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100806 set_page_dirty(page);
807 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200808 if (release_page)
809 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100810
Daniel Vetter8c599672011-12-14 13:57:31 +0100811 if (ret) {
812 ret = -EFAULT;
813 goto out;
814 }
815
Eric Anholt40123c12009-03-09 13:42:30 -0700816 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100817 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700818 offset += page_length;
819 }
820
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100821out:
Daniel Vettere244a442012-03-25 19:47:28 +0200822 if (hit_slowpath) {
823 /* Fixup: Kill any reinstated backing storage pages */
824 if (obj->madv == __I915_MADV_PURGED)
825 i915_gem_object_truncate(obj);
826 /* and flush dirty cachelines in case the object isn't in the cpu write
827 * domain anymore. */
828 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
829 i915_gem_clflush_object(obj);
830 intel_gtt_chipset_flush();
831 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100832 }
Eric Anholt40123c12009-03-09 13:42:30 -0700833
Daniel Vetter58642882012-03-25 19:47:37 +0200834 if (needs_clflush_after)
835 intel_gtt_chipset_flush();
836
Eric Anholt40123c12009-03-09 13:42:30 -0700837 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700838}
839
840/**
841 * Writes data to the object referenced by handle.
842 *
843 * On error, the contents of the buffer that were to be modified are undefined.
844 */
845int
846i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100847 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700848{
849 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000850 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000851 int ret;
852
853 if (args->size == 0)
854 return 0;
855
856 if (!access_ok(VERIFY_READ,
857 (char __user *)(uintptr_t)args->data_ptr,
858 args->size))
859 return -EFAULT;
860
Daniel Vetterf56f8212012-03-25 19:47:41 +0200861 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
862 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000863 if (ret)
864 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700865
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100866 ret = i915_mutex_lock_interruptible(dev);
867 if (ret)
868 return ret;
869
Chris Wilson05394f32010-11-08 19:18:58 +0000870 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000871 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100872 ret = -ENOENT;
873 goto unlock;
874 }
Eric Anholt673a3942008-07-30 12:06:12 -0700875
Chris Wilson7dcd2492010-09-26 20:21:44 +0100876 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000877 if (args->offset > obj->base.size ||
878 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100879 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100880 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100881 }
882
Chris Wilsondb53a302011-02-03 11:57:46 +0000883 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
884
Daniel Vetter935aaa62012-03-25 19:47:35 +0200885 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700886 /* We can only do the GTT pwrite on untiled buffers, as otherwise
887 * it would end up going through the fenced access, and we'll get
888 * different detiling behavior between reading and writing.
889 * pread/pwrite currently are reading and writing from the CPU
890 * perspective, requiring manual detiling by the client.
891 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100892 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100893 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100894 goto out;
895 }
896
897 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200898 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200899 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200900 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100901 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100902 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200903 /* Note that the gtt paths might fail with non-page-backed user
904 * pointers (e.g. gtt mappings when moving data between
905 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700906 }
Eric Anholt673a3942008-07-30 12:06:12 -0700907
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100908 if (ret == -EFAULT)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200909 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100910
Chris Wilson35b62a82010-09-26 20:23:38 +0100911out:
Chris Wilson05394f32010-11-08 19:18:58 +0000912 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100913unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100914 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700915 return ret;
916}
917
918/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800919 * Called when user space prepares to use an object with the CPU, either
920 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700921 */
922int
923i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000924 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700925{
926 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000927 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800928 uint32_t read_domains = args->read_domains;
929 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700930 int ret;
931
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800932 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100933 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800934 return -EINVAL;
935
Chris Wilson21d509e2009-06-06 09:46:02 +0100936 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800937 return -EINVAL;
938
939 /* Having something in the write domain implies it's in the read
940 * domain, and only that read domain. Enforce that in the request.
941 */
942 if (write_domain != 0 && read_domains != write_domain)
943 return -EINVAL;
944
Chris Wilson76c1dec2010-09-25 11:22:51 +0100945 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100946 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100947 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700948
Chris Wilson05394f32010-11-08 19:18:58 +0000949 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000950 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100951 ret = -ENOENT;
952 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100953 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700954
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800955 if (read_domains & I915_GEM_DOMAIN_GTT) {
956 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800957
958 /* Silently promote "you're not bound, there was nothing to do"
959 * to success, since the client was just asking us to
960 * make sure everything was done.
961 */
962 if (ret == -EINVAL)
963 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800964 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800965 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800966 }
967
Chris Wilson05394f32010-11-08 19:18:58 +0000968 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100969unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700970 mutex_unlock(&dev->struct_mutex);
971 return ret;
972}
973
974/**
975 * Called when user space has done writes to this buffer
976 */
977int
978i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000979 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700980{
981 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000982 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700983 int ret = 0;
984
Chris Wilson76c1dec2010-09-25 11:22:51 +0100985 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100986 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100987 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100988
Chris Wilson05394f32010-11-08 19:18:58 +0000989 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000990 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100991 ret = -ENOENT;
992 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700993 }
994
Eric Anholt673a3942008-07-30 12:06:12 -0700995 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000996 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800997 i915_gem_object_flush_cpu_write_domain(obj);
998
Chris Wilson05394f32010-11-08 19:18:58 +0000999 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001000unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001001 mutex_unlock(&dev->struct_mutex);
1002 return ret;
1003}
1004
1005/**
1006 * Maps the contents of an object, returning the address it is mapped
1007 * into.
1008 *
1009 * While the mapping holds a reference on the contents of the object, it doesn't
1010 * imply a ref on the object itself.
1011 */
1012int
1013i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001014 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001015{
1016 struct drm_i915_gem_mmap *args = data;
1017 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001018 unsigned long addr;
1019
Chris Wilson05394f32010-11-08 19:18:58 +00001020 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001021 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001022 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001023
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001024 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001025 PROT_READ | PROT_WRITE, MAP_SHARED,
1026 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001027 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001028 if (IS_ERR((void *)addr))
1029 return addr;
1030
1031 args->addr_ptr = (uint64_t) addr;
1032
1033 return 0;
1034}
1035
Jesse Barnesde151cf2008-11-12 10:03:55 -08001036/**
1037 * i915_gem_fault - fault a page into the GTT
1038 * vma: VMA in question
1039 * vmf: fault info
1040 *
1041 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1042 * from userspace. The fault handler takes care of binding the object to
1043 * the GTT (if needed), allocating and programming a fence register (again,
1044 * only if needed based on whether the old reg is still valid or the object
1045 * is tiled) and inserting a new PTE into the faulting process.
1046 *
1047 * Note that the faulting process may involve evicting existing objects
1048 * from the GTT and/or fence registers to make room. So performance may
1049 * suffer if the GTT working set is large or there are few fence registers
1050 * left.
1051 */
1052int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1053{
Chris Wilson05394f32010-11-08 19:18:58 +00001054 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1055 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001056 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001057 pgoff_t page_offset;
1058 unsigned long pfn;
1059 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001060 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001061
1062 /* We don't use vmf->pgoff since that has the fake offset */
1063 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1064 PAGE_SHIFT;
1065
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001066 ret = i915_mutex_lock_interruptible(dev);
1067 if (ret)
1068 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001069
Chris Wilsondb53a302011-02-03 11:57:46 +00001070 trace_i915_gem_object_fault(obj, page_offset, true, write);
1071
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001072 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001073 if (!obj->map_and_fenceable) {
1074 ret = i915_gem_object_unbind(obj);
1075 if (ret)
1076 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001077 }
Chris Wilson05394f32010-11-08 19:18:58 +00001078 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001079 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001080 if (ret)
1081 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001082
Eric Anholte92d03b2011-06-14 16:43:09 -07001083 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1084 if (ret)
1085 goto unlock;
1086 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001087
Daniel Vetter74898d72012-02-15 23:50:22 +01001088 if (!obj->has_global_gtt_mapping)
1089 i915_gem_gtt_bind_object(obj, obj->cache_level);
1090
Chris Wilson06d98132012-04-17 15:31:24 +01001091 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001092 if (ret)
1093 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001094
Chris Wilson05394f32010-11-08 19:18:58 +00001095 if (i915_gem_object_is_inactive(obj))
1096 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001097
Chris Wilson6299f992010-11-24 12:23:44 +00001098 obj->fault_mappable = true;
1099
Chris Wilson05394f32010-11-08 19:18:58 +00001100 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001101 page_offset;
1102
1103 /* Finally, remap it using the new GTT offset */
1104 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001105unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001106 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001107out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001108 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001109 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001110 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001111 /* Give the error handler a chance to run and move the
1112 * objects off the GPU active list. Next time we service the
1113 * fault, we should be able to transition the page into the
1114 * GTT without touching the GPU (and so avoid further
1115 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1116 * with coherency, just lost writes.
1117 */
Chris Wilson045e7692010-11-07 09:18:22 +00001118 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001119 case 0:
1120 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001121 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001122 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001123 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001124 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001125 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001126 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001127 }
1128}
1129
1130/**
Chris Wilson901782b2009-07-10 08:18:50 +01001131 * i915_gem_release_mmap - remove physical page mappings
1132 * @obj: obj in question
1133 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001134 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001135 * relinquish ownership of the pages back to the system.
1136 *
1137 * It is vital that we remove the page mapping if we have mapped a tiled
1138 * object through the GTT and then lose the fence register due to
1139 * resource pressure. Similarly if the object has been moved out of the
1140 * aperture, than pages mapped into userspace must be revoked. Removing the
1141 * mapping will then trigger a page fault on the next user access, allowing
1142 * fixup by i915_gem_fault().
1143 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001144void
Chris Wilson05394f32010-11-08 19:18:58 +00001145i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001146{
Chris Wilson6299f992010-11-24 12:23:44 +00001147 if (!obj->fault_mappable)
1148 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001149
Chris Wilsonf6e47882011-03-20 21:09:12 +00001150 if (obj->base.dev->dev_mapping)
1151 unmap_mapping_range(obj->base.dev->dev_mapping,
1152 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1153 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001154
Chris Wilson6299f992010-11-24 12:23:44 +00001155 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001156}
1157
Chris Wilson92b88ae2010-11-09 11:47:32 +00001158static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001159i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001160{
Chris Wilsone28f8712011-07-18 13:11:49 -07001161 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001162
1163 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001164 tiling_mode == I915_TILING_NONE)
1165 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001166
1167 /* Previous chips need a power-of-two fence region when tiling */
1168 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001169 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001170 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001171 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001172
Chris Wilsone28f8712011-07-18 13:11:49 -07001173 while (gtt_size < size)
1174 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001175
Chris Wilsone28f8712011-07-18 13:11:49 -07001176 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001177}
1178
Jesse Barnesde151cf2008-11-12 10:03:55 -08001179/**
1180 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1181 * @obj: object to check
1182 *
1183 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001184 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001185 */
1186static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001187i915_gem_get_gtt_alignment(struct drm_device *dev,
1188 uint32_t size,
1189 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001190{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001191 /*
1192 * Minimum alignment is 4k (GTT page size), but might be greater
1193 * if a fence register is needed for the object.
1194 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001195 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001196 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001197 return 4096;
1198
1199 /*
1200 * Previous chips need to be aligned to the size of the smallest
1201 * fence register that can contain the object.
1202 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001203 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001204}
1205
Daniel Vetter5e783302010-11-14 22:32:36 +01001206/**
1207 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1208 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001209 * @dev: the device
1210 * @size: size of the object
1211 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001212 *
1213 * Return the required GTT alignment for an object, only taking into account
1214 * unfenced tiled surface requirements.
1215 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001216uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001217i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1218 uint32_t size,
1219 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001220{
Daniel Vetter5e783302010-11-14 22:32:36 +01001221 /*
1222 * Minimum alignment is 4k (GTT page size) for sane hw.
1223 */
1224 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001225 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001226 return 4096;
1227
Chris Wilsone28f8712011-07-18 13:11:49 -07001228 /* Previous hardware however needs to be aligned to a power-of-two
1229 * tile height. The simplest method for determining this is to reuse
1230 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001231 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001232 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001233}
1234
Jesse Barnesde151cf2008-11-12 10:03:55 -08001235int
Dave Airlieff72145b2011-02-07 12:16:14 +10001236i915_gem_mmap_gtt(struct drm_file *file,
1237 struct drm_device *dev,
1238 uint32_t handle,
1239 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001240{
Chris Wilsonda761a62010-10-27 17:37:08 +01001241 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001242 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001243 int ret;
1244
Chris Wilson76c1dec2010-09-25 11:22:51 +01001245 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001246 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001247 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001248
Dave Airlieff72145b2011-02-07 12:16:14 +10001249 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001250 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001251 ret = -ENOENT;
1252 goto unlock;
1253 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001254
Chris Wilson05394f32010-11-08 19:18:58 +00001255 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001256 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001257 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001258 }
1259
Chris Wilson05394f32010-11-08 19:18:58 +00001260 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001261 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001262 ret = -EINVAL;
1263 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001264 }
1265
Chris Wilson05394f32010-11-08 19:18:58 +00001266 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001267 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001268 if (ret)
1269 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001270 }
1271
Dave Airlieff72145b2011-02-07 12:16:14 +10001272 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001273
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001274out:
Chris Wilson05394f32010-11-08 19:18:58 +00001275 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001276unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001277 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001278 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001279}
1280
Dave Airlieff72145b2011-02-07 12:16:14 +10001281/**
1282 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1283 * @dev: DRM device
1284 * @data: GTT mapping ioctl data
1285 * @file: GEM object info
1286 *
1287 * Simply returns the fake offset to userspace so it can mmap it.
1288 * The mmap call will end up in drm_gem_mmap(), which will set things
1289 * up so we can get faults in the handler above.
1290 *
1291 * The fault handler will take care of binding the object into the GTT
1292 * (since it may have been evicted to make room for something), allocating
1293 * a fence register, and mapping the appropriate aperture address into
1294 * userspace.
1295 */
1296int
1297i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1298 struct drm_file *file)
1299{
1300 struct drm_i915_gem_mmap_gtt *args = data;
1301
Dave Airlieff72145b2011-02-07 12:16:14 +10001302 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1303}
1304
1305
Chris Wilsone5281cc2010-10-28 13:45:36 +01001306static int
Chris Wilson05394f32010-11-08 19:18:58 +00001307i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001308 gfp_t gfpmask)
1309{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001310 int page_count, i;
1311 struct address_space *mapping;
1312 struct inode *inode;
1313 struct page *page;
1314
1315 /* Get the list of pages out of our struct file. They'll be pinned
1316 * at this point until we release them.
1317 */
Chris Wilson05394f32010-11-08 19:18:58 +00001318 page_count = obj->base.size / PAGE_SIZE;
1319 BUG_ON(obj->pages != NULL);
1320 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1321 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001322 return -ENOMEM;
1323
Chris Wilson05394f32010-11-08 19:18:58 +00001324 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001325 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001326 gfpmask |= mapping_gfp_mask(mapping);
1327
Chris Wilsone5281cc2010-10-28 13:45:36 +01001328 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001329 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001330 if (IS_ERR(page))
1331 goto err_pages;
1332
Chris Wilson05394f32010-11-08 19:18:58 +00001333 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001334 }
1335
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001336 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001337 i915_gem_object_do_bit_17_swizzle(obj);
1338
1339 return 0;
1340
1341err_pages:
1342 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001343 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001344
Chris Wilson05394f32010-11-08 19:18:58 +00001345 drm_free_large(obj->pages);
1346 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001347 return PTR_ERR(page);
1348}
1349
Chris Wilson5cdf5882010-09-27 15:51:07 +01001350static void
Chris Wilson05394f32010-11-08 19:18:58 +00001351i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001352{
Chris Wilson05394f32010-11-08 19:18:58 +00001353 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001354 int i;
1355
Chris Wilson05394f32010-11-08 19:18:58 +00001356 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001357
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001358 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001359 i915_gem_object_save_bit_17_swizzle(obj);
1360
Chris Wilson05394f32010-11-08 19:18:58 +00001361 if (obj->madv == I915_MADV_DONTNEED)
1362 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001363
1364 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001365 if (obj->dirty)
1366 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001367
Chris Wilson05394f32010-11-08 19:18:58 +00001368 if (obj->madv == I915_MADV_WILLNEED)
1369 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001370
Chris Wilson05394f32010-11-08 19:18:58 +00001371 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001372 }
Chris Wilson05394f32010-11-08 19:18:58 +00001373 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001374
Chris Wilson05394f32010-11-08 19:18:58 +00001375 drm_free_large(obj->pages);
1376 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001377}
1378
Chris Wilson54cf91d2010-11-25 18:00:26 +00001379void
Chris Wilson05394f32010-11-08 19:18:58 +00001380i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001381 struct intel_ring_buffer *ring,
1382 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001383{
Chris Wilson05394f32010-11-08 19:18:58 +00001384 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001385 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001386
Zou Nan hai852835f2010-05-21 09:08:56 +08001387 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001388 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001389
1390 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001391 if (!obj->active) {
1392 drm_gem_object_reference(&obj->base);
1393 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001394 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001395
Eric Anholt673a3942008-07-30 12:06:12 -07001396 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001397 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1398 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001399
Chris Wilson05394f32010-11-08 19:18:58 +00001400 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001401
Chris Wilsoncaea7472010-11-12 13:53:37 +00001402 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001403 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001404
Chris Wilson7dd49062012-03-21 10:48:18 +00001405 /* Bump MRU to take account of the delayed flush */
1406 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1407 struct drm_i915_fence_reg *reg;
1408
1409 reg = &dev_priv->fence_regs[obj->fence_reg];
1410 list_move_tail(&reg->lru_list,
1411 &dev_priv->mm.fence_list);
1412 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001413 }
1414}
1415
1416static void
1417i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1418{
1419 list_del_init(&obj->ring_list);
1420 obj->last_rendering_seqno = 0;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001421 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001422}
1423
Eric Anholtce44b0e2008-11-06 16:00:31 -08001424static void
Chris Wilson05394f32010-11-08 19:18:58 +00001425i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001426{
Chris Wilson05394f32010-11-08 19:18:58 +00001427 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001428 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001429
Chris Wilson05394f32010-11-08 19:18:58 +00001430 BUG_ON(!obj->active);
1431 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001432
1433 i915_gem_object_move_off_active(obj);
1434}
1435
1436static void
1437i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1438{
1439 struct drm_device *dev = obj->base.dev;
1440 struct drm_i915_private *dev_priv = dev->dev_private;
1441
Chris Wilson1b502472012-04-24 15:47:30 +01001442 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001443
1444 BUG_ON(!list_empty(&obj->gpu_write_list));
1445 BUG_ON(!obj->active);
1446 obj->ring = NULL;
1447
1448 i915_gem_object_move_off_active(obj);
1449 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001450
1451 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001452 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001453 drm_gem_object_unreference(&obj->base);
1454
1455 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001456}
Eric Anholt673a3942008-07-30 12:06:12 -07001457
Chris Wilson963b4832009-09-20 23:03:54 +01001458/* Immediately discard the backing storage */
1459static void
Chris Wilson05394f32010-11-08 19:18:58 +00001460i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001461{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001462 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001463
Chris Wilsonae9fed62010-08-07 11:01:30 +01001464 /* Our goal here is to return as much of the memory as
1465 * is possible back to the system as we are called from OOM.
1466 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001467 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001468 */
Chris Wilson05394f32010-11-08 19:18:58 +00001469 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001470 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001471
Chris Wilsona14917e2012-02-24 21:13:38 +00001472 if (obj->base.map_list.map)
1473 drm_gem_free_mmap_offset(&obj->base);
1474
Chris Wilson05394f32010-11-08 19:18:58 +00001475 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001476}
1477
1478static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001479i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001480{
Chris Wilson05394f32010-11-08 19:18:58 +00001481 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001482}
1483
Eric Anholt673a3942008-07-30 12:06:12 -07001484static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001485i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1486 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001487{
Chris Wilson05394f32010-11-08 19:18:58 +00001488 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001489
Chris Wilson05394f32010-11-08 19:18:58 +00001490 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001491 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001492 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001493 if (obj->base.write_domain & flush_domains) {
1494 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001495
Chris Wilson05394f32010-11-08 19:18:58 +00001496 obj->base.write_domain = 0;
1497 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001498 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001499 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001500
Daniel Vetter63560392010-02-19 11:51:59 +01001501 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001502 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001503 old_write_domain);
1504 }
1505 }
1506}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001507
Daniel Vetter53d227f2012-01-25 16:32:49 +01001508static u32
1509i915_gem_get_seqno(struct drm_device *dev)
1510{
1511 drm_i915_private_t *dev_priv = dev->dev_private;
1512 u32 seqno = dev_priv->next_seqno;
1513
1514 /* reserve 0 for non-seqno */
1515 if (++dev_priv->next_seqno == 0)
1516 dev_priv->next_seqno = 1;
1517
1518 return seqno;
1519}
1520
1521u32
1522i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1523{
1524 if (ring->outstanding_lazy_request == 0)
1525 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1526
1527 return ring->outstanding_lazy_request;
1528}
1529
Chris Wilson3cce4692010-10-27 16:11:02 +01001530int
Chris Wilsondb53a302011-02-03 11:57:46 +00001531i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001532 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001533 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001534{
Chris Wilsondb53a302011-02-03 11:57:46 +00001535 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001536 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001537 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001538 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001539 int ret;
1540
1541 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001542 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001543
Chris Wilsona71d8d92012-02-15 11:25:36 +00001544 /* Record the position of the start of the request so that
1545 * should we detect the updated seqno part-way through the
1546 * GPU processing the request, we never over-estimate the
1547 * position of the head.
1548 */
1549 request_ring_position = intel_ring_get_tail(ring);
1550
Chris Wilson3cce4692010-10-27 16:11:02 +01001551 ret = ring->add_request(ring, &seqno);
1552 if (ret)
1553 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001554
Chris Wilsondb53a302011-02-03 11:57:46 +00001555 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001556
1557 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001558 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001559 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001560 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001561 was_empty = list_empty(&ring->request_list);
1562 list_add_tail(&request->list, &ring->request_list);
1563
Chris Wilsondb53a302011-02-03 11:57:46 +00001564 if (file) {
1565 struct drm_i915_file_private *file_priv = file->driver_priv;
1566
Chris Wilson1c255952010-09-26 11:03:27 +01001567 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001568 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001569 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001570 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001571 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001572 }
Eric Anholt673a3942008-07-30 12:06:12 -07001573
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001574 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001575
Ben Gamarif65d9422009-09-14 17:48:44 -04001576 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001577 if (i915_enable_hangcheck) {
1578 mod_timer(&dev_priv->hangcheck_timer,
1579 jiffies +
1580 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1581 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001582 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001583 queue_delayed_work(dev_priv->wq,
1584 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001585 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001586 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001587}
1588
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001589static inline void
1590i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001591{
Chris Wilson1c255952010-09-26 11:03:27 +01001592 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001593
Chris Wilson1c255952010-09-26 11:03:27 +01001594 if (!file_priv)
1595 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001596
Chris Wilson1c255952010-09-26 11:03:27 +01001597 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001598 if (request->file_priv) {
1599 list_del(&request->client_list);
1600 request->file_priv = NULL;
1601 }
Chris Wilson1c255952010-09-26 11:03:27 +01001602 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001603}
1604
Chris Wilsondfaae392010-09-22 10:31:52 +01001605static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1606 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001607{
Chris Wilsondfaae392010-09-22 10:31:52 +01001608 while (!list_empty(&ring->request_list)) {
1609 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001610
Chris Wilsondfaae392010-09-22 10:31:52 +01001611 request = list_first_entry(&ring->request_list,
1612 struct drm_i915_gem_request,
1613 list);
1614
1615 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001616 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001617 kfree(request);
1618 }
1619
1620 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001621 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001622
Chris Wilson05394f32010-11-08 19:18:58 +00001623 obj = list_first_entry(&ring->active_list,
1624 struct drm_i915_gem_object,
1625 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001626
Chris Wilson05394f32010-11-08 19:18:58 +00001627 obj->base.write_domain = 0;
1628 list_del_init(&obj->gpu_write_list);
1629 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001630 }
Eric Anholt673a3942008-07-30 12:06:12 -07001631}
1632
Chris Wilson312817a2010-11-22 11:50:11 +00001633static void i915_gem_reset_fences(struct drm_device *dev)
1634{
1635 struct drm_i915_private *dev_priv = dev->dev_private;
1636 int i;
1637
Daniel Vetter4b9de732011-10-09 21:52:02 +02001638 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001639 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001640
Chris Wilsonada726c2012-04-17 15:31:32 +01001641 i915_gem_write_fence(dev, i, NULL);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001642
Chris Wilsonada726c2012-04-17 15:31:32 +01001643 if (reg->obj)
1644 i915_gem_object_fence_lost(reg->obj);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001645
Chris Wilsonada726c2012-04-17 15:31:32 +01001646 reg->pin_count = 0;
1647 reg->obj = NULL;
1648 INIT_LIST_HEAD(&reg->lru_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001649 }
Chris Wilsonada726c2012-04-17 15:31:32 +01001650
1651 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001652}
1653
Chris Wilson069efc12010-09-30 16:53:18 +01001654void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001655{
Chris Wilsondfaae392010-09-22 10:31:52 +01001656 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001657 struct drm_i915_gem_object *obj;
Chris Wilsonb4519512012-05-11 14:29:30 +01001658 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001659 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001660
Chris Wilsonb4519512012-05-11 14:29:30 +01001661 for_each_ring(ring, dev_priv, i)
1662 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01001663
1664 /* Remove anything from the flushing lists. The GPU cache is likely
1665 * to be lost on reset along with the data, so simply move the
1666 * lost bo to the inactive list.
1667 */
1668 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001669 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001670 struct drm_i915_gem_object,
1671 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001672
Chris Wilson05394f32010-11-08 19:18:58 +00001673 obj->base.write_domain = 0;
1674 list_del_init(&obj->gpu_write_list);
1675 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001676 }
Chris Wilson9375e442010-09-19 12:21:28 +01001677
Chris Wilsondfaae392010-09-22 10:31:52 +01001678 /* Move everything out of the GPU domains to ensure we do any
1679 * necessary invalidation upon reuse.
1680 */
Chris Wilson05394f32010-11-08 19:18:58 +00001681 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001682 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001683 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001684 {
Chris Wilson05394f32010-11-08 19:18:58 +00001685 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001686 }
Chris Wilson069efc12010-09-30 16:53:18 +01001687
1688 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001689 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001690}
1691
1692/**
1693 * This function clears the request list as sequence numbers are passed.
1694 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001695void
Chris Wilsondb53a302011-02-03 11:57:46 +00001696i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001697{
Eric Anholt673a3942008-07-30 12:06:12 -07001698 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001699 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001700
Chris Wilsondb53a302011-02-03 11:57:46 +00001701 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001702 return;
1703
Chris Wilsondb53a302011-02-03 11:57:46 +00001704 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001705
Chris Wilson78501ea2010-10-27 12:18:21 +01001706 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001707
Chris Wilson076e2c02011-01-21 10:07:18 +00001708 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001709 if (seqno >= ring->sync_seqno[i])
1710 ring->sync_seqno[i] = 0;
1711
Zou Nan hai852835f2010-05-21 09:08:56 +08001712 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001713 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001714
Zou Nan hai852835f2010-05-21 09:08:56 +08001715 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001716 struct drm_i915_gem_request,
1717 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001718
Chris Wilsondfaae392010-09-22 10:31:52 +01001719 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001720 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001721
Chris Wilsondb53a302011-02-03 11:57:46 +00001722 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001723 /* We know the GPU must have read the request to have
1724 * sent us the seqno + interrupt, so use the position
1725 * of tail of the request to update the last known position
1726 * of the GPU head.
1727 */
1728 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001729
1730 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001731 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001732 kfree(request);
1733 }
1734
1735 /* Move any buffers on the active list that are no longer referenced
1736 * by the ringbuffer to the flushing/inactive lists as appropriate.
1737 */
1738 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001739 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001740
Akshay Joshi0206e352011-08-16 15:34:10 -04001741 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001742 struct drm_i915_gem_object,
1743 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001744
Chris Wilson05394f32010-11-08 19:18:58 +00001745 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001746 break;
1747
Chris Wilson05394f32010-11-08 19:18:58 +00001748 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001749 i915_gem_object_move_to_flushing(obj);
1750 else
1751 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001752 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001753
Chris Wilsondb53a302011-02-03 11:57:46 +00001754 if (unlikely(ring->trace_irq_seqno &&
1755 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001756 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001757 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001758 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001759
Chris Wilsondb53a302011-02-03 11:57:46 +00001760 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001761}
1762
1763void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001764i915_gem_retire_requests(struct drm_device *dev)
1765{
1766 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001767 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001768 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001769
Chris Wilsonb4519512012-05-11 14:29:30 +01001770 for_each_ring(ring, dev_priv, i)
1771 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001772}
1773
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001774static void
Eric Anholt673a3942008-07-30 12:06:12 -07001775i915_gem_retire_work_handler(struct work_struct *work)
1776{
1777 drm_i915_private_t *dev_priv;
1778 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01001779 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00001780 bool idle;
1781 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001782
1783 dev_priv = container_of(work, drm_i915_private_t,
1784 mm.retire_work.work);
1785 dev = dev_priv->dev;
1786
Chris Wilson891b48c2010-09-29 12:26:37 +01001787 /* Come back later if the device is busy... */
1788 if (!mutex_trylock(&dev->struct_mutex)) {
1789 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1790 return;
1791 }
1792
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001793 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001794
Chris Wilson0a587052011-01-09 21:05:44 +00001795 /* Send a periodic flush down the ring so we don't hold onto GEM
1796 * objects indefinitely.
1797 */
1798 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01001799 for_each_ring(ring, dev_priv, i) {
Chris Wilson0a587052011-01-09 21:05:44 +00001800 if (!list_empty(&ring->gpu_write_list)) {
1801 struct drm_i915_gem_request *request;
1802 int ret;
1803
Chris Wilsondb53a302011-02-03 11:57:46 +00001804 ret = i915_gem_flush_ring(ring,
1805 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001806 request = kzalloc(sizeof(*request), GFP_KERNEL);
1807 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001808 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001809 kfree(request);
1810 }
1811
1812 idle &= list_empty(&ring->request_list);
1813 }
1814
1815 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001816 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001817
Eric Anholt673a3942008-07-30 12:06:12 -07001818 mutex_unlock(&dev->struct_mutex);
1819}
1820
Ben Widawskyb4aca012012-04-25 20:50:12 -07001821static int
1822i915_gem_check_wedge(struct drm_i915_private *dev_priv)
1823{
1824 BUG_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
1825
1826 if (atomic_read(&dev_priv->mm.wedged)) {
1827 struct completion *x = &dev_priv->error_completion;
1828 bool recovery_complete;
1829 unsigned long flags;
1830
1831 /* Give the error handler a chance to run. */
1832 spin_lock_irqsave(&x->wait.lock, flags);
1833 recovery_complete = x->done > 0;
1834 spin_unlock_irqrestore(&x->wait.lock, flags);
1835
1836 return recovery_complete ? -EIO : -EAGAIN;
1837 }
1838
1839 return 0;
1840}
1841
1842/*
1843 * Compare seqno against outstanding lazy request. Emit a request if they are
1844 * equal.
1845 */
1846static int
1847i915_gem_check_olr(struct intel_ring_buffer *ring, u32 seqno)
1848{
1849 int ret = 0;
1850
1851 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1852
1853 if (seqno == ring->outstanding_lazy_request) {
1854 struct drm_i915_gem_request *request;
1855
1856 request = kzalloc(sizeof(*request), GFP_KERNEL);
1857 if (request == NULL)
1858 return -ENOMEM;
1859
1860 ret = i915_add_request(ring, NULL, request);
1861 if (ret) {
1862 kfree(request);
1863 return ret;
1864 }
1865
1866 BUG_ON(seqno != request->seqno);
1867 }
1868
1869 return ret;
1870}
1871
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001872/**
1873 * __wait_seqno - wait until execution of seqno has finished
1874 * @ring: the ring expected to report seqno
1875 * @seqno: duh!
1876 * @interruptible: do an interruptible wait (normally yes)
1877 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1878 *
1879 * Returns 0 if the seqno was found within the alloted time. Else returns the
1880 * errno with remaining time filled in timeout argument.
1881 */
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001882static int __wait_seqno(struct intel_ring_buffer *ring, u32 seqno,
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001883 bool interruptible, struct timespec *timeout)
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001884{
1885 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001886 struct timespec before, now, wait_time={1,0};
1887 unsigned long timeout_jiffies;
1888 long end;
1889 bool wait_forever = true;
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001890
1891 if (i915_seqno_passed(ring->get_seqno(ring), seqno))
1892 return 0;
1893
1894 trace_i915_gem_request_wait_begin(ring, seqno);
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001895
1896 if (timeout != NULL) {
1897 wait_time = *timeout;
1898 wait_forever = false;
1899 }
1900
1901 timeout_jiffies = timespec_to_jiffies(&wait_time);
1902
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001903 if (WARN_ON(!ring->irq_get(ring)))
1904 return -ENODEV;
1905
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001906 /* Record current time in case interrupted by signal, or wedged * */
1907 getrawmonotonic(&before);
1908
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001909#define EXIT_COND \
1910 (i915_seqno_passed(ring->get_seqno(ring), seqno) || \
1911 atomic_read(&dev_priv->mm.wedged))
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001912 do {
1913 if (interruptible)
1914 end = wait_event_interruptible_timeout(ring->irq_queue,
1915 EXIT_COND,
1916 timeout_jiffies);
1917 else
1918 end = wait_event_timeout(ring->irq_queue, EXIT_COND,
1919 timeout_jiffies);
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001920
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001921 if (atomic_read(&dev_priv->mm.wedged))
1922 end = -EAGAIN;
1923 } while (end == 0 && wait_forever);
1924
1925 getrawmonotonic(&now);
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001926
1927 ring->irq_put(ring);
1928 trace_i915_gem_request_wait_end(ring, seqno);
1929#undef EXIT_COND
1930
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001931 if (timeout) {
1932 struct timespec sleep_time = timespec_sub(now, before);
1933 *timeout = timespec_sub(*timeout, sleep_time);
1934 }
1935
1936 switch (end) {
1937 case -EAGAIN: /* Wedged */
1938 case -ERESTARTSYS: /* Signal */
1939 return (int)end;
1940 case 0: /* Timeout */
1941 if (timeout)
1942 set_normalized_timespec(timeout, 0, 0);
1943 return -ETIME;
1944 default: /* Completed */
1945 WARN_ON(end < 0); /* We're not aware of other errors */
1946 return 0;
1947 }
Ben Widawsky604dd3e2012-04-26 16:03:03 -07001948}
1949
Chris Wilsondb53a302011-02-03 11:57:46 +00001950/**
1951 * Waits for a sequence number to be signaled, and cleans up the
1952 * request and object lists appropriately for that event.
1953 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001954int
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001955i915_wait_seqno(struct intel_ring_buffer *ring, uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001956{
Chris Wilsondb53a302011-02-03 11:57:46 +00001957 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001958 int ret = 0;
1959
1960 BUG_ON(seqno == 0);
1961
Ben Widawskyb4aca012012-04-25 20:50:12 -07001962 ret = i915_gem_check_wedge(dev_priv);
1963 if (ret)
1964 return ret;
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001965
Ben Widawskyb4aca012012-04-25 20:50:12 -07001966 ret = i915_gem_check_olr(ring, seqno);
1967 if (ret)
1968 return ret;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001969
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001970 ret = __wait_seqno(ring, seqno, dev_priv->mm.interruptible, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001971
Eric Anholt673a3942008-07-30 12:06:12 -07001972 return ret;
1973}
1974
Daniel Vetter48764bf2009-09-15 22:57:32 +02001975/**
Eric Anholt673a3942008-07-30 12:06:12 -07001976 * Ensures that all rendering to the object has completed and the object is
1977 * safe to unbind from the GTT or access from the CPU.
1978 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001979int
Chris Wilsonce453d82011-02-21 14:43:56 +00001980i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001981{
Eric Anholt673a3942008-07-30 12:06:12 -07001982 int ret;
1983
Eric Anholte47c68e2008-11-14 13:35:19 -08001984 /* This function only exists to support waiting for existing rendering,
1985 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001986 */
Chris Wilson05394f32010-11-08 19:18:58 +00001987 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001988
1989 /* If there is rendering queued on the buffer being evicted, wait for
1990 * it.
1991 */
Chris Wilson05394f32010-11-08 19:18:58 +00001992 if (obj->active) {
Ben Widawsky199b2bc2012-05-24 15:03:11 -07001993 ret = i915_wait_seqno(obj->ring, obj->last_rendering_seqno);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001994 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001995 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001996 i915_gem_retire_requests_ring(obj->ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001997 }
1998
1999 return 0;
2000}
2001
Ben Widawsky5816d642012-04-11 11:18:19 -07002002/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002003 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2004 * @DRM_IOCTL_ARGS: standard ioctl arguments
2005 *
2006 * Returns 0 if successful, else an error is returned with the remaining time in
2007 * the timeout parameter.
2008 * -ETIME: object is still busy after timeout
2009 * -ERESTARTSYS: signal interrupted the wait
2010 * -ENONENT: object doesn't exist
2011 * Also possible, but rare:
2012 * -EAGAIN: GPU wedged
2013 * -ENOMEM: damn
2014 * -ENODEV: Internal IRQ fail
2015 * -E?: The add request failed
2016 *
2017 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2018 * non-zero timeout parameter the wait ioctl will wait for the given number of
2019 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2020 * without holding struct_mutex the object may become re-busied before this
2021 * function completes. A similar but shorter * race condition exists in the busy
2022 * ioctl
2023 */
2024int
2025i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2026{
2027 struct drm_i915_gem_wait *args = data;
2028 struct drm_i915_gem_object *obj;
2029 struct intel_ring_buffer *ring = NULL;
2030 struct timespec timeout;
2031 u32 seqno = 0;
2032 int ret = 0;
2033
2034 timeout = ns_to_timespec(args->timeout_ns);
2035
2036 ret = i915_mutex_lock_interruptible(dev);
2037 if (ret)
2038 return ret;
2039
2040 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2041 if (&obj->base == NULL) {
2042 mutex_unlock(&dev->struct_mutex);
2043 return -ENOENT;
2044 }
2045
2046 /* Need to make sure the object is flushed first. This non-obvious
2047 * flush is required to enforce that (active && !olr) == no wait
2048 * necessary.
2049 */
2050 ret = i915_gem_object_flush_gpu_write_domain(obj);
2051 if (ret)
2052 goto out;
2053
2054 if (obj->active) {
2055 seqno = obj->last_rendering_seqno;
2056 ring = obj->ring;
2057 }
2058
2059 if (seqno == 0)
2060 goto out;
2061
2062 ret = i915_gem_check_olr(ring, seqno);
2063 if (ret)
2064 goto out;
2065
2066 /* Do this after OLR check to make sure we make forward progress polling
2067 * on this IOCTL with a 0 timeout (like busy ioctl)
2068 */
2069 if (!args->timeout_ns) {
2070 ret = -ETIME;
2071 goto out;
2072 }
2073
2074 drm_gem_object_unreference(&obj->base);
2075 mutex_unlock(&dev->struct_mutex);
2076
2077 ret = __wait_seqno(ring, seqno, true, &timeout);
2078 WARN_ON(!timespec_valid(&timeout));
2079 args->timeout_ns = timespec_to_ns(&timeout);
2080 return ret;
2081
2082out:
2083 drm_gem_object_unreference(&obj->base);
2084 mutex_unlock(&dev->struct_mutex);
2085 return ret;
2086}
2087
2088/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002089 * i915_gem_object_sync - sync an object to a ring.
2090 *
2091 * @obj: object which may be in use on another ring.
2092 * @to: ring we wish to use the object on. May be NULL.
2093 *
2094 * This code is meant to abstract object synchronization with the GPU.
2095 * Calling with NULL implies synchronizing the object with the CPU
2096 * rather than a particular GPU ring.
2097 *
2098 * Returns 0 if successful, else propagates up the lower layer error.
2099 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002100int
2101i915_gem_object_sync(struct drm_i915_gem_object *obj,
2102 struct intel_ring_buffer *to)
2103{
2104 struct intel_ring_buffer *from = obj->ring;
2105 u32 seqno;
2106 int ret, idx;
2107
2108 if (from == NULL || to == from)
2109 return 0;
2110
Ben Widawsky5816d642012-04-11 11:18:19 -07002111 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07002112 return i915_gem_object_wait_rendering(obj);
2113
2114 idx = intel_ring_sync_index(from, to);
2115
2116 seqno = obj->last_rendering_seqno;
2117 if (seqno <= from->sync_seqno[idx])
2118 return 0;
2119
Ben Widawskyb4aca012012-04-25 20:50:12 -07002120 ret = i915_gem_check_olr(obj->ring, seqno);
2121 if (ret)
2122 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002123
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002124 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002125 if (!ret)
2126 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002127
Ben Widawskye3a5a222012-04-11 11:18:20 -07002128 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002129}
2130
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002131static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2132{
2133 u32 old_write_domain, old_read_domains;
2134
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002135 /* Act a barrier for all accesses through the GTT */
2136 mb();
2137
2138 /* Force a pagefault for domain tracking on next user access */
2139 i915_gem_release_mmap(obj);
2140
Keith Packardb97c3d92011-06-24 21:02:59 -07002141 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2142 return;
2143
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002144 old_read_domains = obj->base.read_domains;
2145 old_write_domain = obj->base.write_domain;
2146
2147 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2148 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2149
2150 trace_i915_gem_object_change_domain(obj,
2151 old_read_domains,
2152 old_write_domain);
2153}
2154
Eric Anholt673a3942008-07-30 12:06:12 -07002155/**
2156 * Unbinds an object from the GTT aperture.
2157 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002158int
Chris Wilson05394f32010-11-08 19:18:58 +00002159i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002160{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002161 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002162 int ret = 0;
2163
Chris Wilson05394f32010-11-08 19:18:58 +00002164 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002165 return 0;
2166
Chris Wilson05394f32010-11-08 19:18:58 +00002167 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002168 DRM_ERROR("Attempting to unbind pinned buffer\n");
2169 return -EINVAL;
2170 }
2171
Chris Wilsona8198ee2011-04-13 22:04:09 +01002172 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002173 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002174 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002175 /* Continue on if we fail due to EIO, the GPU is hung so we
2176 * should be safe and we need to cleanup or else we might
2177 * cause memory corruption through use-after-free.
2178 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002179
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002180 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002181
2182 /* Move the object to the CPU domain to ensure that
2183 * any possible CPU writes while it's not in the GTT
2184 * are flushed when we go to remap it.
2185 */
2186 if (ret == 0)
2187 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2188 if (ret == -ERESTARTSYS)
2189 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002190 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002191 /* In the event of a disaster, abandon all caches and
2192 * hope for the best.
2193 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002194 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002195 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002196 }
Eric Anholt673a3942008-07-30 12:06:12 -07002197
Daniel Vetter96b47b62009-12-15 17:50:00 +01002198 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002199 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002200 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002201 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002202
Chris Wilsondb53a302011-02-03 11:57:46 +00002203 trace_i915_gem_object_unbind(obj);
2204
Daniel Vetter74898d72012-02-15 23:50:22 +01002205 if (obj->has_global_gtt_mapping)
2206 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002207 if (obj->has_aliasing_ppgtt_mapping) {
2208 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2209 obj->has_aliasing_ppgtt_mapping = 0;
2210 }
Daniel Vetter74163902012-02-15 23:50:21 +01002211 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002212
Chris Wilsone5281cc2010-10-28 13:45:36 +01002213 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002214
Chris Wilson6299f992010-11-24 12:23:44 +00002215 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002216 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002217 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002218 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002219
Chris Wilson05394f32010-11-08 19:18:58 +00002220 drm_mm_put_block(obj->gtt_space);
2221 obj->gtt_space = NULL;
2222 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002223
Chris Wilson05394f32010-11-08 19:18:58 +00002224 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002225 i915_gem_object_truncate(obj);
2226
Chris Wilson8dc17752010-07-23 23:18:51 +01002227 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002228}
2229
Chris Wilson88241782011-01-07 17:09:48 +00002230int
Chris Wilsondb53a302011-02-03 11:57:46 +00002231i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002232 uint32_t invalidate_domains,
2233 uint32_t flush_domains)
2234{
Chris Wilson88241782011-01-07 17:09:48 +00002235 int ret;
2236
Chris Wilson36d527d2011-03-19 22:26:49 +00002237 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2238 return 0;
2239
Chris Wilsondb53a302011-02-03 11:57:46 +00002240 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2241
Chris Wilson88241782011-01-07 17:09:48 +00002242 ret = ring->flush(ring, invalidate_domains, flush_domains);
2243 if (ret)
2244 return ret;
2245
Chris Wilson36d527d2011-03-19 22:26:49 +00002246 if (flush_domains & I915_GEM_GPU_DOMAINS)
2247 i915_gem_process_flushing_list(ring, flush_domains);
2248
Chris Wilson88241782011-01-07 17:09:48 +00002249 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002250}
2251
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002252static int i915_ring_idle(struct intel_ring_buffer *ring)
Chris Wilsona56ba562010-09-28 10:07:56 +01002253{
Chris Wilson88241782011-01-07 17:09:48 +00002254 int ret;
2255
Chris Wilson395b70b2010-10-28 21:28:46 +01002256 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002257 return 0;
2258
Chris Wilson88241782011-01-07 17:09:48 +00002259 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002260 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002261 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002262 if (ret)
2263 return ret;
2264 }
2265
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002266 return i915_wait_seqno(ring, i915_gem_next_request_seqno(ring));
Chris Wilsona56ba562010-09-28 10:07:56 +01002267}
2268
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002269int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002270{
2271 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002272 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002273 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002274
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002275 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002276 for_each_ring(ring, dev_priv, i) {
2277 ret = i915_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002278 if (ret)
2279 return ret;
Chris Wilsonb4519512012-05-11 14:29:30 +01002280
2281 /* Is the device fubar? */
2282 if (WARN_ON(!list_empty(&ring->gpu_write_list)))
2283 return -EBUSY;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002284 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002285
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002286 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002287}
2288
Chris Wilson9ce079e2012-04-17 15:31:30 +01002289static void sandybridge_write_fence_reg(struct drm_device *dev, int reg,
2290 struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002291{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002292 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002293 uint64_t val;
2294
Chris Wilson9ce079e2012-04-17 15:31:30 +01002295 if (obj) {
2296 u32 size = obj->gtt_space->size;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002297
Chris Wilson9ce079e2012-04-17 15:31:30 +01002298 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2299 0xfffff000) << 32;
2300 val |= obj->gtt_offset & 0xfffff000;
2301 val |= (uint64_t)((obj->stride / 128) - 1) <<
2302 SANDYBRIDGE_FENCE_PITCH_SHIFT;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002303
Chris Wilson9ce079e2012-04-17 15:31:30 +01002304 if (obj->tiling_mode == I915_TILING_Y)
2305 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2306 val |= I965_FENCE_REG_VALID;
2307 } else
2308 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002309
Chris Wilson9ce079e2012-04-17 15:31:30 +01002310 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + reg * 8, val);
2311 POSTING_READ(FENCE_REG_SANDYBRIDGE_0 + reg * 8);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002312}
2313
Chris Wilson9ce079e2012-04-17 15:31:30 +01002314static void i965_write_fence_reg(struct drm_device *dev, int reg,
2315 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002316{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002317 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002318 uint64_t val;
2319
Chris Wilson9ce079e2012-04-17 15:31:30 +01002320 if (obj) {
2321 u32 size = obj->gtt_space->size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002322
Chris Wilson9ce079e2012-04-17 15:31:30 +01002323 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2324 0xfffff000) << 32;
2325 val |= obj->gtt_offset & 0xfffff000;
2326 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2327 if (obj->tiling_mode == I915_TILING_Y)
2328 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2329 val |= I965_FENCE_REG_VALID;
2330 } else
2331 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002332
Chris Wilson9ce079e2012-04-17 15:31:30 +01002333 I915_WRITE64(FENCE_REG_965_0 + reg * 8, val);
2334 POSTING_READ(FENCE_REG_965_0 + reg * 8);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002335}
2336
Chris Wilson9ce079e2012-04-17 15:31:30 +01002337static void i915_write_fence_reg(struct drm_device *dev, int reg,
2338 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002339{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002340 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002341 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002342
Chris Wilson9ce079e2012-04-17 15:31:30 +01002343 if (obj) {
2344 u32 size = obj->gtt_space->size;
2345 int pitch_val;
2346 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002347
Chris Wilson9ce079e2012-04-17 15:31:30 +01002348 WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2349 (size & -size) != size ||
2350 (obj->gtt_offset & (size - 1)),
2351 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2352 obj->gtt_offset, obj->map_and_fenceable, size);
2353
2354 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2355 tile_width = 128;
2356 else
2357 tile_width = 512;
2358
2359 /* Note: pitch better be a power of two tile widths */
2360 pitch_val = obj->stride / tile_width;
2361 pitch_val = ffs(pitch_val) - 1;
2362
2363 val = obj->gtt_offset;
2364 if (obj->tiling_mode == I915_TILING_Y)
2365 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2366 val |= I915_FENCE_SIZE_BITS(size);
2367 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2368 val |= I830_FENCE_REG_VALID;
2369 } else
2370 val = 0;
2371
2372 if (reg < 8)
2373 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002374 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002375 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002376
Chris Wilson9ce079e2012-04-17 15:31:30 +01002377 I915_WRITE(reg, val);
2378 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002379}
2380
Chris Wilson9ce079e2012-04-17 15:31:30 +01002381static void i830_write_fence_reg(struct drm_device *dev, int reg,
2382 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002383{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002384 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002385 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002386
Chris Wilson9ce079e2012-04-17 15:31:30 +01002387 if (obj) {
2388 u32 size = obj->gtt_space->size;
2389 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002390
Chris Wilson9ce079e2012-04-17 15:31:30 +01002391 WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2392 (size & -size) != size ||
2393 (obj->gtt_offset & (size - 1)),
2394 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2395 obj->gtt_offset, size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002396
Chris Wilson9ce079e2012-04-17 15:31:30 +01002397 pitch_val = obj->stride / 128;
2398 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002399
Chris Wilson9ce079e2012-04-17 15:31:30 +01002400 val = obj->gtt_offset;
2401 if (obj->tiling_mode == I915_TILING_Y)
2402 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2403 val |= I830_FENCE_SIZE_BITS(size);
2404 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2405 val |= I830_FENCE_REG_VALID;
2406 } else
2407 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002408
Chris Wilson9ce079e2012-04-17 15:31:30 +01002409 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2410 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2411}
2412
2413static void i915_gem_write_fence(struct drm_device *dev, int reg,
2414 struct drm_i915_gem_object *obj)
2415{
2416 switch (INTEL_INFO(dev)->gen) {
2417 case 7:
2418 case 6: sandybridge_write_fence_reg(dev, reg, obj); break;
2419 case 5:
2420 case 4: i965_write_fence_reg(dev, reg, obj); break;
2421 case 3: i915_write_fence_reg(dev, reg, obj); break;
2422 case 2: i830_write_fence_reg(dev, reg, obj); break;
2423 default: break;
2424 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002425}
2426
Chris Wilson61050802012-04-17 15:31:31 +01002427static inline int fence_number(struct drm_i915_private *dev_priv,
2428 struct drm_i915_fence_reg *fence)
2429{
2430 return fence - dev_priv->fence_regs;
2431}
2432
2433static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2434 struct drm_i915_fence_reg *fence,
2435 bool enable)
2436{
2437 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2438 int reg = fence_number(dev_priv, fence);
2439
2440 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
2441
2442 if (enable) {
2443 obj->fence_reg = reg;
2444 fence->obj = obj;
2445 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2446 } else {
2447 obj->fence_reg = I915_FENCE_REG_NONE;
2448 fence->obj = NULL;
2449 list_del_init(&fence->lru_list);
2450 }
2451}
2452
Chris Wilsond9e86c02010-11-10 16:40:20 +00002453static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002454i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002455{
2456 int ret;
2457
2458 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002459 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilson1c293ea2012-04-17 15:31:27 +01002460 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00002461 0, obj->base.write_domain);
2462 if (ret)
2463 return ret;
2464 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002465
2466 obj->fenced_gpu_access = false;
2467 }
2468
Chris Wilson1c293ea2012-04-17 15:31:27 +01002469 if (obj->last_fenced_seqno) {
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002470 ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002471 if (ret)
2472 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002473
2474 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002475 }
2476
Chris Wilson63256ec2011-01-04 18:42:07 +00002477 /* Ensure that all CPU reads are completed before installing a fence
2478 * and all writes before removing the fence.
2479 */
2480 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2481 mb();
2482
Chris Wilsond9e86c02010-11-10 16:40:20 +00002483 return 0;
2484}
2485
2486int
2487i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2488{
Chris Wilson61050802012-04-17 15:31:31 +01002489 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002490 int ret;
2491
Chris Wilsona360bb12012-04-17 15:31:25 +01002492 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002493 if (ret)
2494 return ret;
2495
Chris Wilson61050802012-04-17 15:31:31 +01002496 if (obj->fence_reg == I915_FENCE_REG_NONE)
2497 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002498
Chris Wilson61050802012-04-17 15:31:31 +01002499 i915_gem_object_update_fence(obj,
2500 &dev_priv->fence_regs[obj->fence_reg],
2501 false);
2502 i915_gem_object_fence_lost(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002503
2504 return 0;
2505}
2506
2507static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002508i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002509{
Daniel Vetterae3db242010-02-19 11:51:58 +01002510 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002511 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002512 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002513
2514 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002515 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002516 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2517 reg = &dev_priv->fence_regs[i];
2518 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002519 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002520
Chris Wilson1690e1e2011-12-14 13:57:08 +01002521 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002522 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002523 }
2524
Chris Wilsond9e86c02010-11-10 16:40:20 +00002525 if (avail == NULL)
2526 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002527
2528 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002529 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002530 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002531 continue;
2532
Chris Wilson8fe301a2012-04-17 15:31:28 +01002533 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002534 }
2535
Chris Wilson8fe301a2012-04-17 15:31:28 +01002536 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002537}
2538
Jesse Barnesde151cf2008-11-12 10:03:55 -08002539/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002540 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002541 * @obj: object to map through a fence reg
2542 *
2543 * When mapping objects through the GTT, userspace wants to be able to write
2544 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002545 * This function walks the fence regs looking for a free one for @obj,
2546 * stealing one if it can't find any.
2547 *
2548 * It then sets up the reg based on the object's properties: address, pitch
2549 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002550 *
2551 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002552 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002553int
Chris Wilson06d98132012-04-17 15:31:24 +01002554i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002555{
Chris Wilson05394f32010-11-08 19:18:58 +00002556 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002557 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002558 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002559 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002560 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002561
Chris Wilson14415742012-04-17 15:31:33 +01002562 /* Have we updated the tiling parameters upon the object and so
2563 * will need to serialise the write to the associated fence register?
2564 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002565 if (obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002566 ret = i915_gem_object_flush_fence(obj);
2567 if (ret)
2568 return ret;
2569 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002570
Chris Wilsond9e86c02010-11-10 16:40:20 +00002571 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002572 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2573 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002574 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002575 list_move_tail(&reg->lru_list,
2576 &dev_priv->mm.fence_list);
2577 return 0;
2578 }
2579 } else if (enable) {
2580 reg = i915_find_fence_reg(dev);
2581 if (reg == NULL)
2582 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002583
Chris Wilson14415742012-04-17 15:31:33 +01002584 if (reg->obj) {
2585 struct drm_i915_gem_object *old = reg->obj;
2586
2587 ret = i915_gem_object_flush_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002588 if (ret)
2589 return ret;
2590
Chris Wilson14415742012-04-17 15:31:33 +01002591 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002592 }
Chris Wilson14415742012-04-17 15:31:33 +01002593 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07002594 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002595
Chris Wilson14415742012-04-17 15:31:33 +01002596 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002597 obj->fence_dirty = false;
Chris Wilson14415742012-04-17 15:31:33 +01002598
Chris Wilson9ce079e2012-04-17 15:31:30 +01002599 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002600}
2601
2602/**
Eric Anholt673a3942008-07-30 12:06:12 -07002603 * Finds free space in the GTT aperture and binds the object there.
2604 */
2605static int
Chris Wilson05394f32010-11-08 19:18:58 +00002606i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002607 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002608 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002609{
Chris Wilson05394f32010-11-08 19:18:58 +00002610 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002611 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002612 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002613 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002614 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002615 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002616 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002617
Chris Wilson05394f32010-11-08 19:18:58 +00002618 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002619 DRM_ERROR("Attempting to bind a purgeable object\n");
2620 return -EINVAL;
2621 }
2622
Chris Wilsone28f8712011-07-18 13:11:49 -07002623 fence_size = i915_gem_get_gtt_size(dev,
2624 obj->base.size,
2625 obj->tiling_mode);
2626 fence_alignment = i915_gem_get_gtt_alignment(dev,
2627 obj->base.size,
2628 obj->tiling_mode);
2629 unfenced_alignment =
2630 i915_gem_get_unfenced_gtt_alignment(dev,
2631 obj->base.size,
2632 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002633
Eric Anholt673a3942008-07-30 12:06:12 -07002634 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002635 alignment = map_and_fenceable ? fence_alignment :
2636 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002637 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002638 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2639 return -EINVAL;
2640 }
2641
Chris Wilson05394f32010-11-08 19:18:58 +00002642 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002643
Chris Wilson654fc602010-05-27 13:18:21 +01002644 /* If the object is bigger than the entire aperture, reject it early
2645 * before evicting everything in a vain attempt to find space.
2646 */
Chris Wilson05394f32010-11-08 19:18:58 +00002647 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002648 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002649 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2650 return -E2BIG;
2651 }
2652
Eric Anholt673a3942008-07-30 12:06:12 -07002653 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002654 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002655 free_space =
2656 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002657 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002658 dev_priv->mm.gtt_mappable_end,
2659 0);
2660 else
2661 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002662 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002663
2664 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002665 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002666 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002667 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002668 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002669 dev_priv->mm.gtt_mappable_end,
2670 0);
2671 else
Chris Wilson05394f32010-11-08 19:18:58 +00002672 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002673 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002674 }
Chris Wilson05394f32010-11-08 19:18:58 +00002675 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002676 /* If the gtt is empty and we're still having trouble
2677 * fitting our object in, we're out of memory.
2678 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002679 ret = i915_gem_evict_something(dev, size, alignment,
2680 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002681 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002682 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002683
Eric Anholt673a3942008-07-30 12:06:12 -07002684 goto search_free;
2685 }
2686
Chris Wilsone5281cc2010-10-28 13:45:36 +01002687 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002688 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002689 drm_mm_put_block(obj->gtt_space);
2690 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002691
2692 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002693 /* first try to reclaim some memory by clearing the GTT */
2694 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002695 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002696 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002697 if (gfpmask) {
2698 gfpmask = 0;
2699 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002700 }
2701
Chris Wilson809b6332011-01-10 17:33:15 +00002702 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002703 }
2704
2705 goto search_free;
2706 }
2707
Eric Anholt673a3942008-07-30 12:06:12 -07002708 return ret;
2709 }
2710
Daniel Vetter74163902012-02-15 23:50:21 +01002711 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002712 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002713 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002714 drm_mm_put_block(obj->gtt_space);
2715 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002716
Chris Wilson809b6332011-01-10 17:33:15 +00002717 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002718 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002719
2720 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002721 }
Eric Anholt673a3942008-07-30 12:06:12 -07002722
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002723 if (!dev_priv->mm.aliasing_ppgtt)
2724 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002725
Chris Wilson6299f992010-11-24 12:23:44 +00002726 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002727 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002728
Eric Anholt673a3942008-07-30 12:06:12 -07002729 /* Assert that the object is not currently in any GPU domain. As it
2730 * wasn't in the GTT, there shouldn't be any way it could have been in
2731 * a GPU cache
2732 */
Chris Wilson05394f32010-11-08 19:18:58 +00002733 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2734 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002735
Chris Wilson6299f992010-11-24 12:23:44 +00002736 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002737
Daniel Vetter75e9e912010-11-04 17:11:09 +01002738 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002739 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002740 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002741
Daniel Vetter75e9e912010-11-04 17:11:09 +01002742 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002743 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002744
Chris Wilson05394f32010-11-08 19:18:58 +00002745 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002746
Chris Wilsondb53a302011-02-03 11:57:46 +00002747 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002748 return 0;
2749}
2750
2751void
Chris Wilson05394f32010-11-08 19:18:58 +00002752i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002753{
Eric Anholt673a3942008-07-30 12:06:12 -07002754 /* If we don't have a page list set up, then we're not pinned
2755 * to GPU, and we can ignore the cache flush because it'll happen
2756 * again at bind time.
2757 */
Chris Wilson05394f32010-11-08 19:18:58 +00002758 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002759 return;
2760
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002761 /* If the GPU is snooping the contents of the CPU cache,
2762 * we do not need to manually clear the CPU cache lines. However,
2763 * the caches are only snooped when the render cache is
2764 * flushed/invalidated. As we always have to emit invalidations
2765 * and flushes when moving into and out of the RENDER domain, correct
2766 * snooping behaviour occurs naturally as the result of our domain
2767 * tracking.
2768 */
2769 if (obj->cache_level != I915_CACHE_NONE)
2770 return;
2771
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002772 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002773
Chris Wilson05394f32010-11-08 19:18:58 +00002774 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002775}
2776
Eric Anholte47c68e2008-11-14 13:35:19 -08002777/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002778static int
Chris Wilson3619df02010-11-28 15:37:17 +00002779i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002780{
Chris Wilson05394f32010-11-08 19:18:58 +00002781 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002782 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002783
2784 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002785 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002786}
2787
2788/** Flushes the GTT write domain for the object if it's dirty. */
2789static void
Chris Wilson05394f32010-11-08 19:18:58 +00002790i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002791{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002792 uint32_t old_write_domain;
2793
Chris Wilson05394f32010-11-08 19:18:58 +00002794 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002795 return;
2796
Chris Wilson63256ec2011-01-04 18:42:07 +00002797 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002798 * to it immediately go to main memory as far as we know, so there's
2799 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002800 *
2801 * However, we do have to enforce the order so that all writes through
2802 * the GTT land before any writes to the device, such as updates to
2803 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002804 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002805 wmb();
2806
Chris Wilson05394f32010-11-08 19:18:58 +00002807 old_write_domain = obj->base.write_domain;
2808 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002809
2810 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002811 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002812 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002813}
2814
2815/** Flushes the CPU write domain for the object if it's dirty. */
2816static void
Chris Wilson05394f32010-11-08 19:18:58 +00002817i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002818{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002819 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002820
Chris Wilson05394f32010-11-08 19:18:58 +00002821 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002822 return;
2823
2824 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002825 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002826 old_write_domain = obj->base.write_domain;
2827 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002828
2829 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002830 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002831 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002832}
2833
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002834/**
2835 * Moves a single object to the GTT read, and possibly write domain.
2836 *
2837 * This function returns when the move is complete, including waiting on
2838 * flushes to occur.
2839 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002840int
Chris Wilson20217462010-11-23 15:26:33 +00002841i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002842{
Chris Wilson8325a092012-04-24 15:52:35 +01002843 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002844 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002845 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002846
Eric Anholt02354392008-11-26 13:58:13 -08002847 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002848 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002849 return -EINVAL;
2850
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002851 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2852 return 0;
2853
Chris Wilson88241782011-01-07 17:09:48 +00002854 ret = i915_gem_object_flush_gpu_write_domain(obj);
2855 if (ret)
2856 return ret;
2857
Chris Wilson87ca9c82010-12-02 09:42:56 +00002858 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002859 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002860 if (ret)
2861 return ret;
2862 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002863
Chris Wilson72133422010-09-13 23:56:38 +01002864 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002865
Chris Wilson05394f32010-11-08 19:18:58 +00002866 old_write_domain = obj->base.write_domain;
2867 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002868
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002869 /* It should now be out of any other write domains, and we can update
2870 * the domain values for our changes.
2871 */
Chris Wilson05394f32010-11-08 19:18:58 +00002872 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2873 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002874 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002875 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2876 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2877 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002878 }
2879
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002880 trace_i915_gem_object_change_domain(obj,
2881 old_read_domains,
2882 old_write_domain);
2883
Chris Wilson8325a092012-04-24 15:52:35 +01002884 /* And bump the LRU for this access */
2885 if (i915_gem_object_is_inactive(obj))
2886 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
2887
Eric Anholte47c68e2008-11-14 13:35:19 -08002888 return 0;
2889}
2890
Chris Wilsone4ffd172011-04-04 09:44:39 +01002891int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2892 enum i915_cache_level cache_level)
2893{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002894 struct drm_device *dev = obj->base.dev;
2895 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002896 int ret;
2897
2898 if (obj->cache_level == cache_level)
2899 return 0;
2900
2901 if (obj->pin_count) {
2902 DRM_DEBUG("can not change the cache level of pinned objects\n");
2903 return -EBUSY;
2904 }
2905
2906 if (obj->gtt_space) {
2907 ret = i915_gem_object_finish_gpu(obj);
2908 if (ret)
2909 return ret;
2910
2911 i915_gem_object_finish_gtt(obj);
2912
2913 /* Before SandyBridge, you could not use tiling or fence
2914 * registers with snooped memory, so relinquish any fences
2915 * currently pointing to our region in the aperture.
2916 */
2917 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2918 ret = i915_gem_object_put_fence(obj);
2919 if (ret)
2920 return ret;
2921 }
2922
Daniel Vetter74898d72012-02-15 23:50:22 +01002923 if (obj->has_global_gtt_mapping)
2924 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002925 if (obj->has_aliasing_ppgtt_mapping)
2926 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2927 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002928 }
2929
2930 if (cache_level == I915_CACHE_NONE) {
2931 u32 old_read_domains, old_write_domain;
2932
2933 /* If we're coming from LLC cached, then we haven't
2934 * actually been tracking whether the data is in the
2935 * CPU cache or not, since we only allow one bit set
2936 * in obj->write_domain and have been skipping the clflushes.
2937 * Just set it to the CPU cache for now.
2938 */
2939 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2940 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2941
2942 old_read_domains = obj->base.read_domains;
2943 old_write_domain = obj->base.write_domain;
2944
2945 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2946 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2947
2948 trace_i915_gem_object_change_domain(obj,
2949 old_read_domains,
2950 old_write_domain);
2951 }
2952
2953 obj->cache_level = cache_level;
2954 return 0;
2955}
2956
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002957/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002958 * Prepare buffer for display plane (scanout, cursors, etc).
2959 * Can be called from an uninterruptible phase (modesetting) and allows
2960 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002961 */
2962int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002963i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2964 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002965 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002966{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002967 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002968 int ret;
2969
Chris Wilson88241782011-01-07 17:09:48 +00002970 ret = i915_gem_object_flush_gpu_write_domain(obj);
2971 if (ret)
2972 return ret;
2973
Chris Wilson0be73282010-12-06 14:36:27 +00002974 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07002975 ret = i915_gem_object_sync(obj, pipelined);
2976 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002977 return ret;
2978 }
2979
Eric Anholta7ef0642011-03-29 16:59:54 -07002980 /* The display engine is not coherent with the LLC cache on gen6. As
2981 * a result, we make sure that the pinning that is about to occur is
2982 * done with uncached PTEs. This is lowest common denominator for all
2983 * chipsets.
2984 *
2985 * However for gen6+, we could do better by using the GFDT bit instead
2986 * of uncaching, which would allow us to flush all the LLC-cached data
2987 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2988 */
2989 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2990 if (ret)
2991 return ret;
2992
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002993 /* As the user may map the buffer once pinned in the display plane
2994 * (e.g. libkms for the bootup splash), we have to ensure that we
2995 * always use map_and_fenceable for all scanout buffers.
2996 */
2997 ret = i915_gem_object_pin(obj, alignment, true);
2998 if (ret)
2999 return ret;
3000
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003001 i915_gem_object_flush_cpu_write_domain(obj);
3002
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003003 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003004 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003005
3006 /* It should now be out of any other write domains, and we can update
3007 * the domain values for our changes.
3008 */
3009 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003010 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003011
3012 trace_i915_gem_object_change_domain(obj,
3013 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003014 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003015
3016 return 0;
3017}
3018
Chris Wilson85345512010-11-13 09:49:11 +00003019int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003020i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003021{
Chris Wilson88241782011-01-07 17:09:48 +00003022 int ret;
3023
Chris Wilsona8198ee2011-04-13 22:04:09 +01003024 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003025 return 0;
3026
Chris Wilson88241782011-01-07 17:09:48 +00003027 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003028 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00003029 if (ret)
3030 return ret;
3031 }
Chris Wilson85345512010-11-13 09:49:11 +00003032
Chris Wilsonc501ae72011-12-14 13:57:23 +01003033 ret = i915_gem_object_wait_rendering(obj);
3034 if (ret)
3035 return ret;
3036
Chris Wilsona8198ee2011-04-13 22:04:09 +01003037 /* Ensure that we invalidate the GPU's caches and TLBs. */
3038 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003039 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003040}
3041
Eric Anholte47c68e2008-11-14 13:35:19 -08003042/**
3043 * Moves a single object to the CPU read, and possibly write domain.
3044 *
3045 * This function returns when the move is complete, including waiting on
3046 * flushes to occur.
3047 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003048int
Chris Wilson919926a2010-11-12 13:42:53 +00003049i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003050{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003051 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003052 int ret;
3053
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003054 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3055 return 0;
3056
Chris Wilson88241782011-01-07 17:09:48 +00003057 ret = i915_gem_object_flush_gpu_write_domain(obj);
3058 if (ret)
3059 return ret;
3060
Chris Wilsonf8413192012-04-10 11:52:50 +01003061 if (write || obj->pending_gpu_write) {
3062 ret = i915_gem_object_wait_rendering(obj);
3063 if (ret)
3064 return ret;
3065 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003066
3067 i915_gem_object_flush_gtt_write_domain(obj);
3068
Chris Wilson05394f32010-11-08 19:18:58 +00003069 old_write_domain = obj->base.write_domain;
3070 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003071
Eric Anholte47c68e2008-11-14 13:35:19 -08003072 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003073 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003074 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003075
Chris Wilson05394f32010-11-08 19:18:58 +00003076 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003077 }
3078
3079 /* It should now be out of any other write domains, and we can update
3080 * the domain values for our changes.
3081 */
Chris Wilson05394f32010-11-08 19:18:58 +00003082 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003083
3084 /* If we're writing through the CPU, then the GPU read domains will
3085 * need to be invalidated at next use.
3086 */
3087 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003088 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3089 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003090 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003091
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003092 trace_i915_gem_object_change_domain(obj,
3093 old_read_domains,
3094 old_write_domain);
3095
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003096 return 0;
3097}
3098
Eric Anholt673a3942008-07-30 12:06:12 -07003099/* Throttle our rendering by waiting until the ring has completed our requests
3100 * emitted over 20 msec ago.
3101 *
Eric Anholtb9624422009-06-03 07:27:35 +00003102 * Note that if we were to use the current jiffies each time around the loop,
3103 * we wouldn't escape the function with any frames outstanding if the time to
3104 * render a frame was over 20ms.
3105 *
Eric Anholt673a3942008-07-30 12:06:12 -07003106 * This should get us reasonable parallelism between CPU and GPU but also
3107 * relatively low latency when blocking on a particular request to finish.
3108 */
3109static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003110i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003111{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003112 struct drm_i915_private *dev_priv = dev->dev_private;
3113 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003114 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003115 struct drm_i915_gem_request *request;
3116 struct intel_ring_buffer *ring = NULL;
3117 u32 seqno = 0;
3118 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003119
Chris Wilsone110e8d2011-01-26 15:39:14 +00003120 if (atomic_read(&dev_priv->mm.wedged))
3121 return -EIO;
3122
Chris Wilson1c255952010-09-26 11:03:27 +01003123 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003124 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003125 if (time_after_eq(request->emitted_jiffies, recent_enough))
3126 break;
3127
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003128 ring = request->ring;
3129 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003130 }
Chris Wilson1c255952010-09-26 11:03:27 +01003131 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003132
3133 if (seqno == 0)
3134 return 0;
3135
Ben Widawsky5c81fe852012-05-24 15:03:08 -07003136 ret = __wait_seqno(ring, seqno, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003137 if (ret == 0)
3138 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003139
Eric Anholt673a3942008-07-30 12:06:12 -07003140 return ret;
3141}
3142
Eric Anholt673a3942008-07-30 12:06:12 -07003143int
Chris Wilson05394f32010-11-08 19:18:58 +00003144i915_gem_object_pin(struct drm_i915_gem_object *obj,
3145 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003146 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003147{
Eric Anholt673a3942008-07-30 12:06:12 -07003148 int ret;
3149
Chris Wilson05394f32010-11-08 19:18:58 +00003150 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003151
Chris Wilson05394f32010-11-08 19:18:58 +00003152 if (obj->gtt_space != NULL) {
3153 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3154 (map_and_fenceable && !obj->map_and_fenceable)) {
3155 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003156 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003157 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3158 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003159 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003160 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003161 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003162 ret = i915_gem_object_unbind(obj);
3163 if (ret)
3164 return ret;
3165 }
3166 }
3167
Chris Wilson05394f32010-11-08 19:18:58 +00003168 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003169 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003170 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003171 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003172 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003173 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003174
Daniel Vetter74898d72012-02-15 23:50:22 +01003175 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3176 i915_gem_gtt_bind_object(obj, obj->cache_level);
3177
Chris Wilson1b502472012-04-24 15:47:30 +01003178 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003179 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003180
3181 return 0;
3182}
3183
3184void
Chris Wilson05394f32010-11-08 19:18:58 +00003185i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003186{
Chris Wilson05394f32010-11-08 19:18:58 +00003187 BUG_ON(obj->pin_count == 0);
3188 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003189
Chris Wilson1b502472012-04-24 15:47:30 +01003190 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003191 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003192}
3193
3194int
3195i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003196 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003197{
3198 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003199 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003200 int ret;
3201
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003202 ret = i915_mutex_lock_interruptible(dev);
3203 if (ret)
3204 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003205
Chris Wilson05394f32010-11-08 19:18:58 +00003206 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003207 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003208 ret = -ENOENT;
3209 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003210 }
Eric Anholt673a3942008-07-30 12:06:12 -07003211
Chris Wilson05394f32010-11-08 19:18:58 +00003212 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003213 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003214 ret = -EINVAL;
3215 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003216 }
3217
Chris Wilson05394f32010-11-08 19:18:58 +00003218 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003219 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3220 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003221 ret = -EINVAL;
3222 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003223 }
3224
Chris Wilson05394f32010-11-08 19:18:58 +00003225 obj->user_pin_count++;
3226 obj->pin_filp = file;
3227 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003228 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003229 if (ret)
3230 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003231 }
3232
3233 /* XXX - flush the CPU caches for pinned objects
3234 * as the X server doesn't manage domains yet
3235 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003236 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003237 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003238out:
Chris Wilson05394f32010-11-08 19:18:58 +00003239 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003240unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003241 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003242 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003243}
3244
3245int
3246i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003247 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003248{
3249 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003250 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003251 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003252
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003253 ret = i915_mutex_lock_interruptible(dev);
3254 if (ret)
3255 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003256
Chris Wilson05394f32010-11-08 19:18:58 +00003257 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003258 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003259 ret = -ENOENT;
3260 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003261 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003262
Chris Wilson05394f32010-11-08 19:18:58 +00003263 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003264 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3265 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003266 ret = -EINVAL;
3267 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003268 }
Chris Wilson05394f32010-11-08 19:18:58 +00003269 obj->user_pin_count--;
3270 if (obj->user_pin_count == 0) {
3271 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003272 i915_gem_object_unpin(obj);
3273 }
Eric Anholt673a3942008-07-30 12:06:12 -07003274
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003275out:
Chris Wilson05394f32010-11-08 19:18:58 +00003276 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003277unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003278 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003279 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003280}
3281
3282int
3283i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003284 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003285{
3286 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003287 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003288 int ret;
3289
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003290 ret = i915_mutex_lock_interruptible(dev);
3291 if (ret)
3292 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003293
Chris Wilson05394f32010-11-08 19:18:58 +00003294 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003295 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003296 ret = -ENOENT;
3297 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003298 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003299
Chris Wilson0be555b2010-08-04 15:36:30 +01003300 /* Count all active objects as busy, even if they are currently not used
3301 * by the gpu. Users of this interface expect objects to eventually
3302 * become non-busy without any further actions, therefore emit any
3303 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003304 */
Chris Wilson05394f32010-11-08 19:18:58 +00003305 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003306 if (args->busy) {
3307 /* Unconditionally flush objects, even when the gpu still uses this
3308 * object. Userspace calling this function indicates that it wants to
3309 * use this buffer rather sooner than later, so issuing the required
3310 * flush earlier is beneficial.
3311 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003312 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003313 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003314 0, obj->base.write_domain);
Ben Widawskyb4aca012012-04-25 20:50:12 -07003315 } else {
3316 ret = i915_gem_check_olr(obj->ring,
3317 obj->last_rendering_seqno);
Chris Wilson7a194872010-12-07 10:38:40 +00003318 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003319
3320 /* Update the active list for the hardware's current position.
3321 * Otherwise this only updates on a delayed timer or when irqs
3322 * are actually unmasked, and our working set ends up being
3323 * larger than required.
3324 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003325 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003326
Chris Wilson05394f32010-11-08 19:18:58 +00003327 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003328 }
Eric Anholt673a3942008-07-30 12:06:12 -07003329
Chris Wilson05394f32010-11-08 19:18:58 +00003330 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003331unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003332 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003333 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003334}
3335
3336int
3337i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3338 struct drm_file *file_priv)
3339{
Akshay Joshi0206e352011-08-16 15:34:10 -04003340 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003341}
3342
Chris Wilson3ef94da2009-09-14 16:50:29 +01003343int
3344i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3345 struct drm_file *file_priv)
3346{
3347 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003348 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003349 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003350
3351 switch (args->madv) {
3352 case I915_MADV_DONTNEED:
3353 case I915_MADV_WILLNEED:
3354 break;
3355 default:
3356 return -EINVAL;
3357 }
3358
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003359 ret = i915_mutex_lock_interruptible(dev);
3360 if (ret)
3361 return ret;
3362
Chris Wilson05394f32010-11-08 19:18:58 +00003363 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003364 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003365 ret = -ENOENT;
3366 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003367 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003368
Chris Wilson05394f32010-11-08 19:18:58 +00003369 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003370 ret = -EINVAL;
3371 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003372 }
3373
Chris Wilson05394f32010-11-08 19:18:58 +00003374 if (obj->madv != __I915_MADV_PURGED)
3375 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003376
Chris Wilson2d7ef392009-09-20 23:13:10 +01003377 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003378 if (i915_gem_object_is_purgeable(obj) &&
3379 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003380 i915_gem_object_truncate(obj);
3381
Chris Wilson05394f32010-11-08 19:18:58 +00003382 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003383
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003384out:
Chris Wilson05394f32010-11-08 19:18:58 +00003385 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003386unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003387 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003388 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003389}
3390
Chris Wilson05394f32010-11-08 19:18:58 +00003391struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3392 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003393{
Chris Wilson73aa8082010-09-30 11:46:12 +01003394 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003395 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003396 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003397
3398 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3399 if (obj == NULL)
3400 return NULL;
3401
3402 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3403 kfree(obj);
3404 return NULL;
3405 }
3406
Hugh Dickins5949eac2011-06-27 16:18:18 -07003407 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3408 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3409
Chris Wilson73aa8082010-09-30 11:46:12 +01003410 i915_gem_info_add_obj(dev_priv, size);
3411
Daniel Vetterc397b902010-04-09 19:05:07 +00003412 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3413 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3414
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003415 if (HAS_LLC(dev)) {
3416 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003417 * cache) for about a 10% performance improvement
3418 * compared to uncached. Graphics requests other than
3419 * display scanout are coherent with the CPU in
3420 * accessing this cache. This means in this mode we
3421 * don't need to clflush on the CPU side, and on the
3422 * GPU side we only need to flush internal caches to
3423 * get data visible to the CPU.
3424 *
3425 * However, we maintain the display planes as UC, and so
3426 * need to rebind when first used as such.
3427 */
3428 obj->cache_level = I915_CACHE_LLC;
3429 } else
3430 obj->cache_level = I915_CACHE_NONE;
3431
Daniel Vetter62b8b212010-04-09 19:05:08 +00003432 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003433 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003434 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003435 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003436 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003437 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003438 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003439 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003440 /* Avoid an unnecessary call to unbind on the first bind. */
3441 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003442
Chris Wilson05394f32010-11-08 19:18:58 +00003443 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003444}
3445
Eric Anholt673a3942008-07-30 12:06:12 -07003446int i915_gem_init_object(struct drm_gem_object *obj)
3447{
Daniel Vetterc397b902010-04-09 19:05:07 +00003448 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003449
Eric Anholt673a3942008-07-30 12:06:12 -07003450 return 0;
3451}
3452
Chris Wilson1488fc02012-04-24 15:47:31 +01003453void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003454{
Chris Wilson1488fc02012-04-24 15:47:31 +01003455 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003456 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003457 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003458
Chris Wilson26e12f892011-03-20 11:20:19 +00003459 trace_i915_gem_object_destroy(obj);
3460
Chris Wilson1488fc02012-04-24 15:47:31 +01003461 if (obj->phys_obj)
3462 i915_gem_detach_phys_object(dev, obj);
3463
3464 obj->pin_count = 0;
3465 if (WARN_ON(i915_gem_object_unbind(obj) == -ERESTARTSYS)) {
3466 bool was_interruptible;
3467
3468 was_interruptible = dev_priv->mm.interruptible;
3469 dev_priv->mm.interruptible = false;
3470
3471 WARN_ON(i915_gem_object_unbind(obj));
3472
3473 dev_priv->mm.interruptible = was_interruptible;
3474 }
3475
Chris Wilson05394f32010-11-08 19:18:58 +00003476 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003477 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003478
Chris Wilson05394f32010-11-08 19:18:58 +00003479 drm_gem_object_release(&obj->base);
3480 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003481
Chris Wilson05394f32010-11-08 19:18:58 +00003482 kfree(obj->bit_17);
3483 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003484}
3485
Jesse Barnes5669fca2009-02-17 15:13:31 -08003486int
Eric Anholt673a3942008-07-30 12:06:12 -07003487i915_gem_idle(struct drm_device *dev)
3488{
3489 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003490 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003491
Keith Packard6dbe2772008-10-14 21:41:13 -07003492 mutex_lock(&dev->struct_mutex);
3493
Chris Wilson87acb0a2010-10-19 10:13:00 +01003494 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003495 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003496 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003497 }
Eric Anholt673a3942008-07-30 12:06:12 -07003498
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003499 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003500 if (ret) {
3501 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003502 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003503 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003504 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003505
Chris Wilson29105cc2010-01-07 10:39:13 +00003506 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01003507 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3508 i915_gem_evict_everything(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003509
Chris Wilson312817a2010-11-22 11:50:11 +00003510 i915_gem_reset_fences(dev);
3511
Chris Wilson29105cc2010-01-07 10:39:13 +00003512 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3513 * We need to replace this with a semaphore, or something.
3514 * And not confound mm.suspended!
3515 */
3516 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003517 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003518
3519 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003520 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003521
Keith Packard6dbe2772008-10-14 21:41:13 -07003522 mutex_unlock(&dev->struct_mutex);
3523
Chris Wilson29105cc2010-01-07 10:39:13 +00003524 /* Cancel the retire work handler, which should be idle now. */
3525 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3526
Eric Anholt673a3942008-07-30 12:06:12 -07003527 return 0;
3528}
3529
Ben Widawskyb9524a12012-05-25 16:56:24 -07003530void i915_gem_l3_remap(struct drm_device *dev)
3531{
3532 drm_i915_private_t *dev_priv = dev->dev_private;
3533 u32 misccpctl;
3534 int i;
3535
3536 if (!IS_IVYBRIDGE(dev))
3537 return;
3538
3539 if (!dev_priv->mm.l3_remap_info)
3540 return;
3541
3542 misccpctl = I915_READ(GEN7_MISCCPCTL);
3543 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
3544 POSTING_READ(GEN7_MISCCPCTL);
3545
3546 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
3547 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
3548 if (remap && remap != dev_priv->mm.l3_remap_info[i/4])
3549 DRM_DEBUG("0x%x was already programmed to %x\n",
3550 GEN7_L3LOG_BASE + i, remap);
3551 if (remap && !dev_priv->mm.l3_remap_info[i/4])
3552 DRM_DEBUG_DRIVER("Clearing remapped register\n");
3553 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->mm.l3_remap_info[i/4]);
3554 }
3555
3556 /* Make sure all the writes land before disabling dop clock gating */
3557 POSTING_READ(GEN7_L3LOG_BASE);
3558
3559 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
3560}
3561
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003562void i915_gem_init_swizzling(struct drm_device *dev)
3563{
3564 drm_i915_private_t *dev_priv = dev->dev_private;
3565
Daniel Vetter11782b02012-01-31 16:47:55 +01003566 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003567 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3568 return;
3569
3570 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3571 DISP_TILE_SURFACE_SWIZZLING);
3572
Daniel Vetter11782b02012-01-31 16:47:55 +01003573 if (IS_GEN5(dev))
3574 return;
3575
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003576 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3577 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02003578 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003579 else
Daniel Vetter6b26c862012-04-24 14:04:12 +02003580 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003581}
Daniel Vettere21af882012-02-09 20:53:27 +01003582
3583void i915_gem_init_ppgtt(struct drm_device *dev)
3584{
3585 drm_i915_private_t *dev_priv = dev->dev_private;
3586 uint32_t pd_offset;
3587 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003588 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3589 uint32_t __iomem *pd_addr;
3590 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003591 int i;
3592
3593 if (!dev_priv->mm.aliasing_ppgtt)
3594 return;
3595
Daniel Vetter55a254a2012-03-22 00:14:43 +01003596
3597 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3598 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3599 dma_addr_t pt_addr;
3600
3601 if (dev_priv->mm.gtt->needs_dmar)
3602 pt_addr = ppgtt->pt_dma_addr[i];
3603 else
3604 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3605
3606 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3607 pd_entry |= GEN6_PDE_VALID;
3608
3609 writel(pd_entry, pd_addr + i);
3610 }
3611 readl(pd_addr);
3612
3613 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003614 pd_offset /= 64; /* in cachelines, */
3615 pd_offset <<= 16;
3616
3617 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003618 uint32_t ecochk, gab_ctl, ecobits;
3619
3620 ecobits = I915_READ(GAC_ECO_BITS);
3621 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003622
3623 gab_ctl = I915_READ(GAB_CTL);
3624 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3625
3626 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003627 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3628 ECOCHK_PPGTT_CACHE64B);
Daniel Vetter6b26c862012-04-24 14:04:12 +02003629 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003630 } else if (INTEL_INFO(dev)->gen >= 7) {
3631 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3632 /* GFX_MODE is per-ring on gen7+ */
3633 }
3634
Chris Wilsonb4519512012-05-11 14:29:30 +01003635 for_each_ring(ring, dev_priv, i) {
Daniel Vettere21af882012-02-09 20:53:27 +01003636 if (INTEL_INFO(dev)->gen >= 7)
3637 I915_WRITE(RING_MODE_GEN7(ring),
Daniel Vetter6b26c862012-04-24 14:04:12 +02003638 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003639
3640 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3641 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3642 }
3643}
3644
Eric Anholt673a3942008-07-30 12:06:12 -07003645int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003646i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003647{
3648 drm_i915_private_t *dev_priv = dev->dev_private;
3649 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003650
Ben Widawskyb9524a12012-05-25 16:56:24 -07003651 i915_gem_l3_remap(dev);
3652
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003653 i915_gem_init_swizzling(dev);
3654
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003655 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003656 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003657 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003658
3659 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003660 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003661 if (ret)
3662 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003663 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003664
Chris Wilson549f7362010-10-19 11:19:32 +01003665 if (HAS_BLT(dev)) {
3666 ret = intel_init_blt_ring_buffer(dev);
3667 if (ret)
3668 goto cleanup_bsd_ring;
3669 }
3670
Chris Wilson6f392d5482010-08-07 11:01:22 +01003671 dev_priv->next_seqno = 1;
3672
Daniel Vettere21af882012-02-09 20:53:27 +01003673 i915_gem_init_ppgtt(dev);
3674
Chris Wilson68f95ba2010-05-27 13:18:22 +01003675 return 0;
3676
Chris Wilson549f7362010-10-19 11:19:32 +01003677cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003678 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003679cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003680 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003681 return ret;
3682}
3683
Chris Wilson1070a422012-04-24 15:47:41 +01003684static bool
3685intel_enable_ppgtt(struct drm_device *dev)
3686{
3687 if (i915_enable_ppgtt >= 0)
3688 return i915_enable_ppgtt;
3689
3690#ifdef CONFIG_INTEL_IOMMU
3691 /* Disable ppgtt on SNB if VT-d is on. */
3692 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
3693 return false;
3694#endif
3695
3696 return true;
3697}
3698
3699int i915_gem_init(struct drm_device *dev)
3700{
3701 struct drm_i915_private *dev_priv = dev->dev_private;
3702 unsigned long gtt_size, mappable_size;
3703 int ret;
3704
3705 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
3706 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
3707
3708 mutex_lock(&dev->struct_mutex);
3709 if (intel_enable_ppgtt(dev) && HAS_ALIASING_PPGTT(dev)) {
3710 /* PPGTT pdes are stolen from global gtt ptes, so shrink the
3711 * aperture accordingly when using aliasing ppgtt. */
3712 gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
3713
3714 i915_gem_init_global_gtt(dev, 0, mappable_size, gtt_size);
3715
3716 ret = i915_gem_init_aliasing_ppgtt(dev);
3717 if (ret) {
3718 mutex_unlock(&dev->struct_mutex);
3719 return ret;
3720 }
3721 } else {
3722 /* Let GEM Manage all of the aperture.
3723 *
3724 * However, leave one page at the end still bound to the scratch
3725 * page. There are a number of places where the hardware
3726 * apparently prefetches past the end of the object, and we've
3727 * seen multiple hangs with the GPU head pointer stuck in a
3728 * batchbuffer bound at the last page of the aperture. One page
3729 * should be enough to keep any prefetching inside of the
3730 * aperture.
3731 */
3732 i915_gem_init_global_gtt(dev, 0, mappable_size,
3733 gtt_size);
3734 }
3735
3736 ret = i915_gem_init_hw(dev);
3737 mutex_unlock(&dev->struct_mutex);
3738 if (ret) {
3739 i915_gem_cleanup_aliasing_ppgtt(dev);
3740 return ret;
3741 }
3742
Daniel Vetter53ca26c2012-04-26 23:28:03 +02003743 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
3744 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3745 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01003746 return 0;
3747}
3748
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003749void
3750i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3751{
3752 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003753 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003754 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003755
Chris Wilsonb4519512012-05-11 14:29:30 +01003756 for_each_ring(ring, dev_priv, i)
3757 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003758}
3759
3760int
Eric Anholt673a3942008-07-30 12:06:12 -07003761i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3762 struct drm_file *file_priv)
3763{
3764 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003765 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003766
Jesse Barnes79e53942008-11-07 14:24:08 -08003767 if (drm_core_check_feature(dev, DRIVER_MODESET))
3768 return 0;
3769
Ben Gamariba1234d2009-09-14 17:48:47 -04003770 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003771 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003772 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003773 }
3774
Eric Anholt673a3942008-07-30 12:06:12 -07003775 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003776 dev_priv->mm.suspended = 0;
3777
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003778 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003779 if (ret != 0) {
3780 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003781 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003782 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003783
Chris Wilson69dc4982010-10-19 10:36:51 +01003784 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003785 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3786 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003787 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003788
Chris Wilson5f353082010-06-07 14:03:03 +01003789 ret = drm_irq_install(dev);
3790 if (ret)
3791 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003792
Eric Anholt673a3942008-07-30 12:06:12 -07003793 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003794
3795cleanup_ringbuffer:
3796 mutex_lock(&dev->struct_mutex);
3797 i915_gem_cleanup_ringbuffer(dev);
3798 dev_priv->mm.suspended = 1;
3799 mutex_unlock(&dev->struct_mutex);
3800
3801 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003802}
3803
3804int
3805i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3806 struct drm_file *file_priv)
3807{
Jesse Barnes79e53942008-11-07 14:24:08 -08003808 if (drm_core_check_feature(dev, DRIVER_MODESET))
3809 return 0;
3810
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003811 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003812 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003813}
3814
3815void
3816i915_gem_lastclose(struct drm_device *dev)
3817{
3818 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003819
Eric Anholte806b492009-01-22 09:56:58 -08003820 if (drm_core_check_feature(dev, DRIVER_MODESET))
3821 return;
3822
Keith Packard6dbe2772008-10-14 21:41:13 -07003823 ret = i915_gem_idle(dev);
3824 if (ret)
3825 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003826}
3827
Chris Wilson64193402010-10-24 12:38:05 +01003828static void
3829init_ring_lists(struct intel_ring_buffer *ring)
3830{
3831 INIT_LIST_HEAD(&ring->active_list);
3832 INIT_LIST_HEAD(&ring->request_list);
3833 INIT_LIST_HEAD(&ring->gpu_write_list);
3834}
3835
Eric Anholt673a3942008-07-30 12:06:12 -07003836void
3837i915_gem_load(struct drm_device *dev)
3838{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003839 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003840 drm_i915_private_t *dev_priv = dev->dev_private;
3841
Chris Wilson69dc4982010-10-19 10:36:51 +01003842 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003843 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3844 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003845 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003846 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003847 for (i = 0; i < I915_NUM_RINGS; i++)
3848 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003849 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003850 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003851 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3852 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003853 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003854
Dave Airlie94400122010-07-20 13:15:31 +10003855 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3856 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02003857 I915_WRITE(MI_ARB_STATE,
3858 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10003859 }
3860
Chris Wilson72bfa192010-12-19 11:42:05 +00003861 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3862
Jesse Barnesde151cf2008-11-12 10:03:55 -08003863 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003864 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3865 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003866
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003867 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003868 dev_priv->num_fence_regs = 16;
3869 else
3870 dev_priv->num_fence_regs = 8;
3871
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003872 /* Initialize fence registers to zero */
Chris Wilsonada726c2012-04-17 15:31:32 +01003873 i915_gem_reset_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07003874
Eric Anholt673a3942008-07-30 12:06:12 -07003875 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003876 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003877
Chris Wilsonce453d82011-02-21 14:43:56 +00003878 dev_priv->mm.interruptible = true;
3879
Chris Wilson17250b72010-10-28 12:51:39 +01003880 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3881 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3882 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003883}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003884
3885/*
3886 * Create a physically contiguous memory object for this object
3887 * e.g. for cursor + overlay regs
3888 */
Chris Wilson995b6762010-08-20 13:23:26 +01003889static int i915_gem_init_phys_object(struct drm_device *dev,
3890 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003891{
3892 drm_i915_private_t *dev_priv = dev->dev_private;
3893 struct drm_i915_gem_phys_object *phys_obj;
3894 int ret;
3895
3896 if (dev_priv->mm.phys_objs[id - 1] || !size)
3897 return 0;
3898
Eric Anholt9a298b22009-03-24 12:23:04 -07003899 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003900 if (!phys_obj)
3901 return -ENOMEM;
3902
3903 phys_obj->id = id;
3904
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003905 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003906 if (!phys_obj->handle) {
3907 ret = -ENOMEM;
3908 goto kfree_obj;
3909 }
3910#ifdef CONFIG_X86
3911 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3912#endif
3913
3914 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3915
3916 return 0;
3917kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003918 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003919 return ret;
3920}
3921
Chris Wilson995b6762010-08-20 13:23:26 +01003922static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003923{
3924 drm_i915_private_t *dev_priv = dev->dev_private;
3925 struct drm_i915_gem_phys_object *phys_obj;
3926
3927 if (!dev_priv->mm.phys_objs[id - 1])
3928 return;
3929
3930 phys_obj = dev_priv->mm.phys_objs[id - 1];
3931 if (phys_obj->cur_obj) {
3932 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3933 }
3934
3935#ifdef CONFIG_X86
3936 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3937#endif
3938 drm_pci_free(dev, phys_obj->handle);
3939 kfree(phys_obj);
3940 dev_priv->mm.phys_objs[id - 1] = NULL;
3941}
3942
3943void i915_gem_free_all_phys_object(struct drm_device *dev)
3944{
3945 int i;
3946
Dave Airlie260883c2009-01-22 17:58:49 +10003947 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003948 i915_gem_free_phys_object(dev, i);
3949}
3950
3951void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003952 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003953{
Chris Wilson05394f32010-11-08 19:18:58 +00003954 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003955 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003956 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003957 int page_count;
3958
Chris Wilson05394f32010-11-08 19:18:58 +00003959 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003960 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003961 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003962
Chris Wilson05394f32010-11-08 19:18:58 +00003963 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003964 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003965 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003966 if (!IS_ERR(page)) {
3967 char *dst = kmap_atomic(page);
3968 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3969 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003970
Chris Wilsone5281cc2010-10-28 13:45:36 +01003971 drm_clflush_pages(&page, 1);
3972
3973 set_page_dirty(page);
3974 mark_page_accessed(page);
3975 page_cache_release(page);
3976 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003977 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003978 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003979
Chris Wilson05394f32010-11-08 19:18:58 +00003980 obj->phys_obj->cur_obj = NULL;
3981 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003982}
3983
3984int
3985i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003986 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003987 int id,
3988 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003989{
Chris Wilson05394f32010-11-08 19:18:58 +00003990 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003991 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003992 int ret = 0;
3993 int page_count;
3994 int i;
3995
3996 if (id > I915_MAX_PHYS_OBJECT)
3997 return -EINVAL;
3998
Chris Wilson05394f32010-11-08 19:18:58 +00003999 if (obj->phys_obj) {
4000 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004001 return 0;
4002 i915_gem_detach_phys_object(dev, obj);
4003 }
4004
Dave Airlie71acb5e2008-12-30 20:31:46 +10004005 /* create a new object */
4006 if (!dev_priv->mm.phys_objs[id - 1]) {
4007 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004008 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004009 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004010 DRM_ERROR("failed to init phys object %d size: %zu\n",
4011 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004012 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004013 }
4014 }
4015
4016 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004017 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4018 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004019
Chris Wilson05394f32010-11-08 19:18:58 +00004020 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004021
4022 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004023 struct page *page;
4024 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004025
Hugh Dickins5949eac2011-06-27 16:18:18 -07004026 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004027 if (IS_ERR(page))
4028 return PTR_ERR(page);
4029
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004030 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004031 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004032 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004033 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004034
4035 mark_page_accessed(page);
4036 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004037 }
4038
4039 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004040}
4041
4042static int
Chris Wilson05394f32010-11-08 19:18:58 +00004043i915_gem_phys_pwrite(struct drm_device *dev,
4044 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004045 struct drm_i915_gem_pwrite *args,
4046 struct drm_file *file_priv)
4047{
Chris Wilson05394f32010-11-08 19:18:58 +00004048 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004049 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004050
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004051 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4052 unsigned long unwritten;
4053
4054 /* The physical object once assigned is fixed for the lifetime
4055 * of the obj, so we can safely drop the lock and continue
4056 * to access vaddr.
4057 */
4058 mutex_unlock(&dev->struct_mutex);
4059 unwritten = copy_from_user(vaddr, user_data, args->size);
4060 mutex_lock(&dev->struct_mutex);
4061 if (unwritten)
4062 return -EFAULT;
4063 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004064
Daniel Vetter40ce6572010-11-05 18:12:18 +01004065 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004066 return 0;
4067}
Eric Anholtb9624422009-06-03 07:27:35 +00004068
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004069void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004070{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004071 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004072
4073 /* Clean up our request list when the client is going away, so that
4074 * later retire_requests won't dereference our soon-to-be-gone
4075 * file_priv.
4076 */
Chris Wilson1c255952010-09-26 11:03:27 +01004077 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004078 while (!list_empty(&file_priv->mm.request_list)) {
4079 struct drm_i915_gem_request *request;
4080
4081 request = list_first_entry(&file_priv->mm.request_list,
4082 struct drm_i915_gem_request,
4083 client_list);
4084 list_del(&request->client_list);
4085 request->file_priv = NULL;
4086 }
Chris Wilson1c255952010-09-26 11:03:27 +01004087 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004088}
Chris Wilson31169712009-09-14 16:50:28 +01004089
Chris Wilson31169712009-09-14 16:50:28 +01004090static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004091i915_gpu_is_active(struct drm_device *dev)
4092{
4093 drm_i915_private_t *dev_priv = dev->dev_private;
4094 int lists_empty;
4095
Chris Wilson1637ef42010-04-20 17:10:35 +01004096 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004097 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004098
4099 return !lists_empty;
4100}
4101
4102static int
Ying Han1495f232011-05-24 17:12:27 -07004103i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004104{
Chris Wilson17250b72010-10-28 12:51:39 +01004105 struct drm_i915_private *dev_priv =
4106 container_of(shrinker,
4107 struct drm_i915_private,
4108 mm.inactive_shrinker);
4109 struct drm_device *dev = dev_priv->dev;
4110 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004111 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004112 int cnt;
4113
4114 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004115 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004116
4117 /* "fast-path" to count number of available objects */
4118 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004119 cnt = 0;
4120 list_for_each_entry(obj,
4121 &dev_priv->mm.inactive_list,
4122 mm_list)
4123 cnt++;
4124 mutex_unlock(&dev->struct_mutex);
4125 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004126 }
4127
Chris Wilson1637ef42010-04-20 17:10:35 +01004128rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004129 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004130 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004131
Chris Wilson17250b72010-10-28 12:51:39 +01004132 list_for_each_entry_safe(obj, next,
4133 &dev_priv->mm.inactive_list,
4134 mm_list) {
4135 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004136 if (i915_gem_object_unbind(obj) == 0 &&
4137 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004138 break;
Chris Wilson31169712009-09-14 16:50:28 +01004139 }
Chris Wilson31169712009-09-14 16:50:28 +01004140 }
4141
4142 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004143 cnt = 0;
4144 list_for_each_entry_safe(obj, next,
4145 &dev_priv->mm.inactive_list,
4146 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004147 if (nr_to_scan &&
4148 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004149 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004150 else
Chris Wilson17250b72010-10-28 12:51:39 +01004151 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004152 }
4153
Chris Wilson17250b72010-10-28 12:51:39 +01004154 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004155 /*
4156 * We are desperate for pages, so as a last resort, wait
4157 * for the GPU to finish and discard whatever we can.
4158 * This has a dramatic impact to reduce the number of
4159 * OOM-killer events whilst running the GPU aggressively.
4160 */
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004161 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004162 goto rescan;
4163 }
Chris Wilson17250b72010-10-28 12:51:39 +01004164 mutex_unlock(&dev->struct_mutex);
4165 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004166}