blob: e378204970fdf37e5f7da61ec173d865fb56e204 [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
Eric Anholt673a3942008-07-30 12:06:12 -07001024 down_write(&current->mm->mmap_sem);
1025 addr = do_mmap(obj->filp, 0, args->size,
1026 PROT_READ | PROT_WRITE, MAP_SHARED,
1027 args->offset);
1028 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001029 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001030 if (IS_ERR((void *)addr))
1031 return addr;
1032
1033 args->addr_ptr = (uint64_t) addr;
1034
1035 return 0;
1036}
1037
Jesse Barnesde151cf2008-11-12 10:03:55 -08001038/**
1039 * i915_gem_fault - fault a page into the GTT
1040 * vma: VMA in question
1041 * vmf: fault info
1042 *
1043 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1044 * from userspace. The fault handler takes care of binding the object to
1045 * the GTT (if needed), allocating and programming a fence register (again,
1046 * only if needed based on whether the old reg is still valid or the object
1047 * is tiled) and inserting a new PTE into the faulting process.
1048 *
1049 * Note that the faulting process may involve evicting existing objects
1050 * from the GTT and/or fence registers to make room. So performance may
1051 * suffer if the GTT working set is large or there are few fence registers
1052 * left.
1053 */
1054int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1055{
Chris Wilson05394f32010-11-08 19:18:58 +00001056 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1057 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001058 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001059 pgoff_t page_offset;
1060 unsigned long pfn;
1061 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001062 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001063
1064 /* We don't use vmf->pgoff since that has the fake offset */
1065 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1066 PAGE_SHIFT;
1067
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001068 ret = i915_mutex_lock_interruptible(dev);
1069 if (ret)
1070 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001071
Chris Wilsondb53a302011-02-03 11:57:46 +00001072 trace_i915_gem_object_fault(obj, page_offset, true, write);
1073
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001074 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001075 if (!obj->map_and_fenceable) {
1076 ret = i915_gem_object_unbind(obj);
1077 if (ret)
1078 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001079 }
Chris Wilson05394f32010-11-08 19:18:58 +00001080 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001081 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001082 if (ret)
1083 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001084
Eric Anholte92d03b2011-06-14 16:43:09 -07001085 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1086 if (ret)
1087 goto unlock;
1088 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001089
Daniel Vetter74898d72012-02-15 23:50:22 +01001090 if (!obj->has_global_gtt_mapping)
1091 i915_gem_gtt_bind_object(obj, obj->cache_level);
1092
Chris Wilson06d98132012-04-17 15:31:24 +01001093 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001094 if (ret)
1095 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001096
Chris Wilson05394f32010-11-08 19:18:58 +00001097 if (i915_gem_object_is_inactive(obj))
1098 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001099
Chris Wilson6299f992010-11-24 12:23:44 +00001100 obj->fault_mappable = true;
1101
Chris Wilson05394f32010-11-08 19:18:58 +00001102 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001103 page_offset;
1104
1105 /* Finally, remap it using the new GTT offset */
1106 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001107unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001108 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001109out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001110 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001111 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001112 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001113 /* Give the error handler a chance to run and move the
1114 * objects off the GPU active list. Next time we service the
1115 * fault, we should be able to transition the page into the
1116 * GTT without touching the GPU (and so avoid further
1117 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1118 * with coherency, just lost writes.
1119 */
Chris Wilson045e7692010-11-07 09:18:22 +00001120 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001121 case 0:
1122 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001123 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001124 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001125 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001126 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001127 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001128 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001129 }
1130}
1131
1132/**
Chris Wilson901782b2009-07-10 08:18:50 +01001133 * i915_gem_release_mmap - remove physical page mappings
1134 * @obj: obj in question
1135 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001136 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001137 * relinquish ownership of the pages back to the system.
1138 *
1139 * It is vital that we remove the page mapping if we have mapped a tiled
1140 * object through the GTT and then lose the fence register due to
1141 * resource pressure. Similarly if the object has been moved out of the
1142 * aperture, than pages mapped into userspace must be revoked. Removing the
1143 * mapping will then trigger a page fault on the next user access, allowing
1144 * fixup by i915_gem_fault().
1145 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001146void
Chris Wilson05394f32010-11-08 19:18:58 +00001147i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001148{
Chris Wilson6299f992010-11-24 12:23:44 +00001149 if (!obj->fault_mappable)
1150 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001151
Chris Wilsonf6e47882011-03-20 21:09:12 +00001152 if (obj->base.dev->dev_mapping)
1153 unmap_mapping_range(obj->base.dev->dev_mapping,
1154 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1155 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001156
Chris Wilson6299f992010-11-24 12:23:44 +00001157 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001158}
1159
Chris Wilson92b88ae2010-11-09 11:47:32 +00001160static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001161i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001162{
Chris Wilsone28f8712011-07-18 13:11:49 -07001163 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001164
1165 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001166 tiling_mode == I915_TILING_NONE)
1167 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001168
1169 /* Previous chips need a power-of-two fence region when tiling */
1170 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001171 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001172 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001173 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001174
Chris Wilsone28f8712011-07-18 13:11:49 -07001175 while (gtt_size < size)
1176 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001177
Chris Wilsone28f8712011-07-18 13:11:49 -07001178 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001179}
1180
Jesse Barnesde151cf2008-11-12 10:03:55 -08001181/**
1182 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1183 * @obj: object to check
1184 *
1185 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001186 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001187 */
1188static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001189i915_gem_get_gtt_alignment(struct drm_device *dev,
1190 uint32_t size,
1191 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001192{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001193 /*
1194 * Minimum alignment is 4k (GTT page size), but might be greater
1195 * if a fence register is needed for the object.
1196 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001197 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001198 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001199 return 4096;
1200
1201 /*
1202 * Previous chips need to be aligned to the size of the smallest
1203 * fence register that can contain the object.
1204 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001205 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001206}
1207
Daniel Vetter5e783302010-11-14 22:32:36 +01001208/**
1209 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1210 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001211 * @dev: the device
1212 * @size: size of the object
1213 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001214 *
1215 * Return the required GTT alignment for an object, only taking into account
1216 * unfenced tiled surface requirements.
1217 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001218uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001219i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1220 uint32_t size,
1221 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001222{
Daniel Vetter5e783302010-11-14 22:32:36 +01001223 /*
1224 * Minimum alignment is 4k (GTT page size) for sane hw.
1225 */
1226 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001227 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001228 return 4096;
1229
Chris Wilsone28f8712011-07-18 13:11:49 -07001230 /* Previous hardware however needs to be aligned to a power-of-two
1231 * tile height. The simplest method for determining this is to reuse
1232 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001233 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001234 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001235}
1236
Jesse Barnesde151cf2008-11-12 10:03:55 -08001237int
Dave Airlieff72145b2011-02-07 12:16:14 +10001238i915_gem_mmap_gtt(struct drm_file *file,
1239 struct drm_device *dev,
1240 uint32_t handle,
1241 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001242{
Chris Wilsonda761a62010-10-27 17:37:08 +01001243 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001244 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001245 int ret;
1246
Chris Wilson76c1dec2010-09-25 11:22:51 +01001247 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001248 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001249 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001250
Dave Airlieff72145b2011-02-07 12:16:14 +10001251 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001252 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001253 ret = -ENOENT;
1254 goto unlock;
1255 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001256
Chris Wilson05394f32010-11-08 19:18:58 +00001257 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001258 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001259 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001260 }
1261
Chris Wilson05394f32010-11-08 19:18:58 +00001262 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001263 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001264 ret = -EINVAL;
1265 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001266 }
1267
Chris Wilson05394f32010-11-08 19:18:58 +00001268 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001269 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001270 if (ret)
1271 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001272 }
1273
Dave Airlieff72145b2011-02-07 12:16:14 +10001274 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001275
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001276out:
Chris Wilson05394f32010-11-08 19:18:58 +00001277 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001278unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001279 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001280 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001281}
1282
Dave Airlieff72145b2011-02-07 12:16:14 +10001283/**
1284 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1285 * @dev: DRM device
1286 * @data: GTT mapping ioctl data
1287 * @file: GEM object info
1288 *
1289 * Simply returns the fake offset to userspace so it can mmap it.
1290 * The mmap call will end up in drm_gem_mmap(), which will set things
1291 * up so we can get faults in the handler above.
1292 *
1293 * The fault handler will take care of binding the object into the GTT
1294 * (since it may have been evicted to make room for something), allocating
1295 * a fence register, and mapping the appropriate aperture address into
1296 * userspace.
1297 */
1298int
1299i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1300 struct drm_file *file)
1301{
1302 struct drm_i915_gem_mmap_gtt *args = data;
1303
Dave Airlieff72145b2011-02-07 12:16:14 +10001304 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1305}
1306
1307
Chris Wilsone5281cc2010-10-28 13:45:36 +01001308static int
Chris Wilson05394f32010-11-08 19:18:58 +00001309i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001310 gfp_t gfpmask)
1311{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001312 int page_count, i;
1313 struct address_space *mapping;
1314 struct inode *inode;
1315 struct page *page;
1316
1317 /* Get the list of pages out of our struct file. They'll be pinned
1318 * at this point until we release them.
1319 */
Chris Wilson05394f32010-11-08 19:18:58 +00001320 page_count = obj->base.size / PAGE_SIZE;
1321 BUG_ON(obj->pages != NULL);
1322 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1323 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001324 return -ENOMEM;
1325
Chris Wilson05394f32010-11-08 19:18:58 +00001326 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001327 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001328 gfpmask |= mapping_gfp_mask(mapping);
1329
Chris Wilsone5281cc2010-10-28 13:45:36 +01001330 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001331 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001332 if (IS_ERR(page))
1333 goto err_pages;
1334
Chris Wilson05394f32010-11-08 19:18:58 +00001335 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001336 }
1337
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001338 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001339 i915_gem_object_do_bit_17_swizzle(obj);
1340
1341 return 0;
1342
1343err_pages:
1344 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001345 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001346
Chris Wilson05394f32010-11-08 19:18:58 +00001347 drm_free_large(obj->pages);
1348 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001349 return PTR_ERR(page);
1350}
1351
Chris Wilson5cdf5882010-09-27 15:51:07 +01001352static void
Chris Wilson05394f32010-11-08 19:18:58 +00001353i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001354{
Chris Wilson05394f32010-11-08 19:18:58 +00001355 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001356 int i;
1357
Chris Wilson05394f32010-11-08 19:18:58 +00001358 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001359
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001360 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001361 i915_gem_object_save_bit_17_swizzle(obj);
1362
Chris Wilson05394f32010-11-08 19:18:58 +00001363 if (obj->madv == I915_MADV_DONTNEED)
1364 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001365
1366 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001367 if (obj->dirty)
1368 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001369
Chris Wilson05394f32010-11-08 19:18:58 +00001370 if (obj->madv == I915_MADV_WILLNEED)
1371 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001372
Chris Wilson05394f32010-11-08 19:18:58 +00001373 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001374 }
Chris Wilson05394f32010-11-08 19:18:58 +00001375 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001376
Chris Wilson05394f32010-11-08 19:18:58 +00001377 drm_free_large(obj->pages);
1378 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001379}
1380
Chris Wilson54cf91d2010-11-25 18:00:26 +00001381void
Chris Wilson05394f32010-11-08 19:18:58 +00001382i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001383 struct intel_ring_buffer *ring,
1384 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001385{
Chris Wilson05394f32010-11-08 19:18:58 +00001386 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001387 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001388
Zou Nan hai852835f2010-05-21 09:08:56 +08001389 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001390 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001391
1392 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001393 if (!obj->active) {
1394 drm_gem_object_reference(&obj->base);
1395 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001396 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001397
Eric Anholt673a3942008-07-30 12:06:12 -07001398 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001399 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1400 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001401
Chris Wilson05394f32010-11-08 19:18:58 +00001402 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001403
Chris Wilsoncaea7472010-11-12 13:53:37 +00001404 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001405 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001406
Chris Wilson7dd49062012-03-21 10:48:18 +00001407 /* Bump MRU to take account of the delayed flush */
1408 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1409 struct drm_i915_fence_reg *reg;
1410
1411 reg = &dev_priv->fence_regs[obj->fence_reg];
1412 list_move_tail(&reg->lru_list,
1413 &dev_priv->mm.fence_list);
1414 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001415 }
1416}
1417
1418static void
1419i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1420{
1421 list_del_init(&obj->ring_list);
1422 obj->last_rendering_seqno = 0;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001423 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001424}
1425
Eric Anholtce44b0e2008-11-06 16:00:31 -08001426static void
Chris Wilson05394f32010-11-08 19:18:58 +00001427i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001428{
Chris Wilson05394f32010-11-08 19:18:58 +00001429 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001430 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001431
Chris Wilson05394f32010-11-08 19:18:58 +00001432 BUG_ON(!obj->active);
1433 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001434
1435 i915_gem_object_move_off_active(obj);
1436}
1437
1438static void
1439i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1440{
1441 struct drm_device *dev = obj->base.dev;
1442 struct drm_i915_private *dev_priv = dev->dev_private;
1443
Chris Wilson1b502472012-04-24 15:47:30 +01001444 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001445
1446 BUG_ON(!list_empty(&obj->gpu_write_list));
1447 BUG_ON(!obj->active);
1448 obj->ring = NULL;
1449
1450 i915_gem_object_move_off_active(obj);
1451 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001452
1453 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001454 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001455 drm_gem_object_unreference(&obj->base);
1456
1457 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001458}
Eric Anholt673a3942008-07-30 12:06:12 -07001459
Chris Wilson963b4832009-09-20 23:03:54 +01001460/* Immediately discard the backing storage */
1461static void
Chris Wilson05394f32010-11-08 19:18:58 +00001462i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001463{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001464 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001465
Chris Wilsonae9fed62010-08-07 11:01:30 +01001466 /* Our goal here is to return as much of the memory as
1467 * is possible back to the system as we are called from OOM.
1468 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001469 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001470 */
Chris Wilson05394f32010-11-08 19:18:58 +00001471 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001472 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001473
Chris Wilsona14917e2012-02-24 21:13:38 +00001474 if (obj->base.map_list.map)
1475 drm_gem_free_mmap_offset(&obj->base);
1476
Chris Wilson05394f32010-11-08 19:18:58 +00001477 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001478}
1479
1480static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001481i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001482{
Chris Wilson05394f32010-11-08 19:18:58 +00001483 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001484}
1485
Eric Anholt673a3942008-07-30 12:06:12 -07001486static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001487i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1488 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001489{
Chris Wilson05394f32010-11-08 19:18:58 +00001490 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001491
Chris Wilson05394f32010-11-08 19:18:58 +00001492 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001493 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001494 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001495 if (obj->base.write_domain & flush_domains) {
1496 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001497
Chris Wilson05394f32010-11-08 19:18:58 +00001498 obj->base.write_domain = 0;
1499 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001500 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001501 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001502
Daniel Vetter63560392010-02-19 11:51:59 +01001503 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001504 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001505 old_write_domain);
1506 }
1507 }
1508}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001509
Daniel Vetter53d227f2012-01-25 16:32:49 +01001510static u32
1511i915_gem_get_seqno(struct drm_device *dev)
1512{
1513 drm_i915_private_t *dev_priv = dev->dev_private;
1514 u32 seqno = dev_priv->next_seqno;
1515
1516 /* reserve 0 for non-seqno */
1517 if (++dev_priv->next_seqno == 0)
1518 dev_priv->next_seqno = 1;
1519
1520 return seqno;
1521}
1522
1523u32
1524i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1525{
1526 if (ring->outstanding_lazy_request == 0)
1527 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1528
1529 return ring->outstanding_lazy_request;
1530}
1531
Chris Wilson3cce4692010-10-27 16:11:02 +01001532int
Chris Wilsondb53a302011-02-03 11:57:46 +00001533i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001534 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001535 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001536{
Chris Wilsondb53a302011-02-03 11:57:46 +00001537 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001538 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001539 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001540 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001541 int ret;
1542
1543 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001544 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001545
Chris Wilsona71d8d92012-02-15 11:25:36 +00001546 /* Record the position of the start of the request so that
1547 * should we detect the updated seqno part-way through the
1548 * GPU processing the request, we never over-estimate the
1549 * position of the head.
1550 */
1551 request_ring_position = intel_ring_get_tail(ring);
1552
Chris Wilson3cce4692010-10-27 16:11:02 +01001553 ret = ring->add_request(ring, &seqno);
1554 if (ret)
1555 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001556
Chris Wilsondb53a302011-02-03 11:57:46 +00001557 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001558
1559 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001560 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001561 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001562 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001563 was_empty = list_empty(&ring->request_list);
1564 list_add_tail(&request->list, &ring->request_list);
1565
Chris Wilsondb53a302011-02-03 11:57:46 +00001566 if (file) {
1567 struct drm_i915_file_private *file_priv = file->driver_priv;
1568
Chris Wilson1c255952010-09-26 11:03:27 +01001569 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001570 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001571 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001572 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001573 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001574 }
Eric Anholt673a3942008-07-30 12:06:12 -07001575
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001576 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001577
Ben Gamarif65d9422009-09-14 17:48:44 -04001578 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001579 if (i915_enable_hangcheck) {
1580 mod_timer(&dev_priv->hangcheck_timer,
1581 jiffies +
1582 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1583 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001584 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001585 queue_delayed_work(dev_priv->wq,
1586 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001587 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001588 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001589}
1590
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001591static inline void
1592i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001593{
Chris Wilson1c255952010-09-26 11:03:27 +01001594 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001595
Chris Wilson1c255952010-09-26 11:03:27 +01001596 if (!file_priv)
1597 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001598
Chris Wilson1c255952010-09-26 11:03:27 +01001599 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001600 if (request->file_priv) {
1601 list_del(&request->client_list);
1602 request->file_priv = NULL;
1603 }
Chris Wilson1c255952010-09-26 11:03:27 +01001604 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001605}
1606
Chris Wilsondfaae392010-09-22 10:31:52 +01001607static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1608 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001609{
Chris Wilsondfaae392010-09-22 10:31:52 +01001610 while (!list_empty(&ring->request_list)) {
1611 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001612
Chris Wilsondfaae392010-09-22 10:31:52 +01001613 request = list_first_entry(&ring->request_list,
1614 struct drm_i915_gem_request,
1615 list);
1616
1617 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001618 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001619 kfree(request);
1620 }
1621
1622 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001623 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001624
Chris Wilson05394f32010-11-08 19:18:58 +00001625 obj = list_first_entry(&ring->active_list,
1626 struct drm_i915_gem_object,
1627 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001628
Chris Wilson05394f32010-11-08 19:18:58 +00001629 obj->base.write_domain = 0;
1630 list_del_init(&obj->gpu_write_list);
1631 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001632 }
Eric Anholt673a3942008-07-30 12:06:12 -07001633}
1634
Chris Wilson312817a2010-11-22 11:50:11 +00001635static void i915_gem_reset_fences(struct drm_device *dev)
1636{
1637 struct drm_i915_private *dev_priv = dev->dev_private;
1638 int i;
1639
Daniel Vetter4b9de732011-10-09 21:52:02 +02001640 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001641 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001642
Chris Wilsonada726c2012-04-17 15:31:32 +01001643 i915_gem_write_fence(dev, i, NULL);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001644
Chris Wilsonada726c2012-04-17 15:31:32 +01001645 if (reg->obj)
1646 i915_gem_object_fence_lost(reg->obj);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001647
Chris Wilsonada726c2012-04-17 15:31:32 +01001648 reg->pin_count = 0;
1649 reg->obj = NULL;
1650 INIT_LIST_HEAD(&reg->lru_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001651 }
Chris Wilsonada726c2012-04-17 15:31:32 +01001652
1653 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001654}
1655
Chris Wilson069efc12010-09-30 16:53:18 +01001656void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001657{
Chris Wilsondfaae392010-09-22 10:31:52 +01001658 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001659 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001660 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001661
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001662 for (i = 0; i < I915_NUM_RINGS; i++)
1663 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001664
1665 /* Remove anything from the flushing lists. The GPU cache is likely
1666 * to be lost on reset along with the data, so simply move the
1667 * lost bo to the inactive list.
1668 */
1669 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001670 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001671 struct drm_i915_gem_object,
1672 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001673
Chris Wilson05394f32010-11-08 19:18:58 +00001674 obj->base.write_domain = 0;
1675 list_del_init(&obj->gpu_write_list);
1676 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001677 }
Chris Wilson9375e442010-09-19 12:21:28 +01001678
Chris Wilsondfaae392010-09-22 10:31:52 +01001679 /* Move everything out of the GPU domains to ensure we do any
1680 * necessary invalidation upon reuse.
1681 */
Chris Wilson05394f32010-11-08 19:18:58 +00001682 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001683 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001684 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001685 {
Chris Wilson05394f32010-11-08 19:18:58 +00001686 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001687 }
Chris Wilson069efc12010-09-30 16:53:18 +01001688
1689 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001690 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001691}
1692
1693/**
1694 * This function clears the request list as sequence numbers are passed.
1695 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001696void
Chris Wilsondb53a302011-02-03 11:57:46 +00001697i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001698{
Eric Anholt673a3942008-07-30 12:06:12 -07001699 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001700 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001701
Chris Wilsondb53a302011-02-03 11:57:46 +00001702 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001703 return;
1704
Chris Wilsondb53a302011-02-03 11:57:46 +00001705 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001706
Chris Wilson78501ea2010-10-27 12:18:21 +01001707 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001708
Chris Wilson076e2c02011-01-21 10:07:18 +00001709 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001710 if (seqno >= ring->sync_seqno[i])
1711 ring->sync_seqno[i] = 0;
1712
Zou Nan hai852835f2010-05-21 09:08:56 +08001713 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001714 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001715
Zou Nan hai852835f2010-05-21 09:08:56 +08001716 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001717 struct drm_i915_gem_request,
1718 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001719
Chris Wilsondfaae392010-09-22 10:31:52 +01001720 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001721 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001722
Chris Wilsondb53a302011-02-03 11:57:46 +00001723 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001724 /* We know the GPU must have read the request to have
1725 * sent us the seqno + interrupt, so use the position
1726 * of tail of the request to update the last known position
1727 * of the GPU head.
1728 */
1729 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001730
1731 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001732 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001733 kfree(request);
1734 }
1735
1736 /* Move any buffers on the active list that are no longer referenced
1737 * by the ringbuffer to the flushing/inactive lists as appropriate.
1738 */
1739 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001740 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001741
Akshay Joshi0206e352011-08-16 15:34:10 -04001742 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001743 struct drm_i915_gem_object,
1744 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001745
Chris Wilson05394f32010-11-08 19:18:58 +00001746 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001747 break;
1748
Chris Wilson05394f32010-11-08 19:18:58 +00001749 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001750 i915_gem_object_move_to_flushing(obj);
1751 else
1752 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001753 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001754
Chris Wilsondb53a302011-02-03 11:57:46 +00001755 if (unlikely(ring->trace_irq_seqno &&
1756 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001757 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001758 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001759 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001760
Chris Wilsondb53a302011-02-03 11:57:46 +00001761 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001762}
1763
1764void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001765i915_gem_retire_requests(struct drm_device *dev)
1766{
1767 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001768 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001769
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001770 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001771 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
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 Wilson0a587052011-01-09 21:05:44 +00001779 bool idle;
1780 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001781
1782 dev_priv = container_of(work, drm_i915_private_t,
1783 mm.retire_work.work);
1784 dev = dev_priv->dev;
1785
Chris Wilson891b48c2010-09-29 12:26:37 +01001786 /* Come back later if the device is busy... */
1787 if (!mutex_trylock(&dev->struct_mutex)) {
1788 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1789 return;
1790 }
1791
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001792 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001793
Chris Wilson0a587052011-01-09 21:05:44 +00001794 /* Send a periodic flush down the ring so we don't hold onto GEM
1795 * objects indefinitely.
1796 */
1797 idle = true;
1798 for (i = 0; i < I915_NUM_RINGS; i++) {
1799 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1800
1801 if (!list_empty(&ring->gpu_write_list)) {
1802 struct drm_i915_gem_request *request;
1803 int ret;
1804
Chris Wilsondb53a302011-02-03 11:57:46 +00001805 ret = i915_gem_flush_ring(ring,
1806 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001807 request = kzalloc(sizeof(*request), GFP_KERNEL);
1808 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001809 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001810 kfree(request);
1811 }
1812
1813 idle &= list_empty(&ring->request_list);
1814 }
1815
1816 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001817 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001818
Eric Anholt673a3942008-07-30 12:06:12 -07001819 mutex_unlock(&dev->struct_mutex);
1820}
1821
Chris Wilsondb53a302011-02-03 11:57:46 +00001822/**
1823 * Waits for a sequence number to be signaled, and cleans up the
1824 * request and object lists appropriately for that event.
1825 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001826int
Chris Wilsondb53a302011-02-03 11:57:46 +00001827i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001828 uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001829{
Chris Wilsondb53a302011-02-03 11:57:46 +00001830 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001831 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001832 int ret = 0;
1833
1834 BUG_ON(seqno == 0);
1835
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001836 if (atomic_read(&dev_priv->mm.wedged)) {
1837 struct completion *x = &dev_priv->error_completion;
1838 bool recovery_complete;
1839 unsigned long flags;
1840
1841 /* Give the error handler a chance to run. */
1842 spin_lock_irqsave(&x->wait.lock, flags);
1843 recovery_complete = x->done > 0;
1844 spin_unlock_irqrestore(&x->wait.lock, flags);
1845
1846 return recovery_complete ? -EIO : -EAGAIN;
1847 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001848
Chris Wilson5d97eb62010-11-10 20:40:02 +00001849 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001850 struct drm_i915_gem_request *request;
1851
1852 request = kzalloc(sizeof(*request), GFP_KERNEL);
1853 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001854 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001855
Chris Wilsondb53a302011-02-03 11:57:46 +00001856 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001857 if (ret) {
1858 kfree(request);
1859 return ret;
1860 }
1861
1862 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001863 }
1864
Chris Wilson78501ea2010-10-27 12:18:21 +01001865 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001866 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001867 ier = I915_READ(DEIER) | I915_READ(GTIER);
Jesse Barnes23e3f9b2012-03-28 13:39:39 -07001868 else if (IS_VALLEYVIEW(ring->dev))
1869 ier = I915_READ(GTIER) | I915_READ(VLV_IER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001870 else
1871 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001872 if (!ier) {
1873 DRM_ERROR("something (likely vbetool) disabled "
1874 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001875 ring->dev->driver->irq_preinstall(ring->dev);
1876 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001877 }
1878
Chris Wilsondb53a302011-02-03 11:57:46 +00001879 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001880
Chris Wilsonb2223492010-10-27 15:27:33 +01001881 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001882 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001883 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001884 ret = wait_event_interruptible(ring->irq_queue,
1885 i915_seqno_passed(ring->get_seqno(ring), seqno)
1886 || atomic_read(&dev_priv->mm.wedged));
1887 else
1888 wait_event(ring->irq_queue,
1889 i915_seqno_passed(ring->get_seqno(ring), seqno)
1890 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001891
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001892 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001893 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1894 seqno) ||
1895 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001896 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001897 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001898
Chris Wilsondb53a302011-02-03 11:57:46 +00001899 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001900 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001901 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001902 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001903
Eric Anholt673a3942008-07-30 12:06:12 -07001904 return ret;
1905}
1906
Daniel Vetter48764bf2009-09-15 22:57:32 +02001907/**
Eric Anholt673a3942008-07-30 12:06:12 -07001908 * Ensures that all rendering to the object has completed and the object is
1909 * safe to unbind from the GTT or access from the CPU.
1910 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001911int
Chris Wilsonce453d82011-02-21 14:43:56 +00001912i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001913{
Eric Anholt673a3942008-07-30 12:06:12 -07001914 int ret;
1915
Eric Anholte47c68e2008-11-14 13:35:19 -08001916 /* This function only exists to support waiting for existing rendering,
1917 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001918 */
Chris Wilson05394f32010-11-08 19:18:58 +00001919 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001920
1921 /* If there is rendering queued on the buffer being evicted, wait for
1922 * it.
1923 */
Chris Wilson05394f32010-11-08 19:18:58 +00001924 if (obj->active) {
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001925 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001926 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001927 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07001928 i915_gem_retire_requests_ring(obj->ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001929 }
1930
1931 return 0;
1932}
1933
Ben Widawsky5816d642012-04-11 11:18:19 -07001934/**
1935 * i915_gem_object_sync - sync an object to a ring.
1936 *
1937 * @obj: object which may be in use on another ring.
1938 * @to: ring we wish to use the object on. May be NULL.
1939 *
1940 * This code is meant to abstract object synchronization with the GPU.
1941 * Calling with NULL implies synchronizing the object with the CPU
1942 * rather than a particular GPU ring.
1943 *
1944 * Returns 0 if successful, else propagates up the lower layer error.
1945 */
Ben Widawsky2911a352012-04-05 14:47:36 -07001946int
1947i915_gem_object_sync(struct drm_i915_gem_object *obj,
1948 struct intel_ring_buffer *to)
1949{
1950 struct intel_ring_buffer *from = obj->ring;
1951 u32 seqno;
1952 int ret, idx;
1953
1954 if (from == NULL || to == from)
1955 return 0;
1956
Ben Widawsky5816d642012-04-11 11:18:19 -07001957 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07001958 return i915_gem_object_wait_rendering(obj);
1959
1960 idx = intel_ring_sync_index(from, to);
1961
1962 seqno = obj->last_rendering_seqno;
1963 if (seqno <= from->sync_seqno[idx])
1964 return 0;
1965
1966 if (seqno == from->outstanding_lazy_request) {
1967 struct drm_i915_gem_request *request;
1968
1969 request = kzalloc(sizeof(*request), GFP_KERNEL);
1970 if (request == NULL)
1971 return -ENOMEM;
1972
1973 ret = i915_add_request(from, NULL, request);
1974 if (ret) {
1975 kfree(request);
1976 return ret;
1977 }
1978
1979 seqno = request->seqno;
1980 }
1981
Ben Widawsky2911a352012-04-05 14:47:36 -07001982
Ben Widawsky1500f7e2012-04-11 11:18:21 -07001983 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07001984 if (!ret)
1985 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07001986
Ben Widawskye3a5a222012-04-11 11:18:20 -07001987 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07001988}
1989
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001990static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
1991{
1992 u32 old_write_domain, old_read_domains;
1993
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001994 /* Act a barrier for all accesses through the GTT */
1995 mb();
1996
1997 /* Force a pagefault for domain tracking on next user access */
1998 i915_gem_release_mmap(obj);
1999
Keith Packardb97c3d92011-06-24 21:02:59 -07002000 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2001 return;
2002
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002003 old_read_domains = obj->base.read_domains;
2004 old_write_domain = obj->base.write_domain;
2005
2006 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2007 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2008
2009 trace_i915_gem_object_change_domain(obj,
2010 old_read_domains,
2011 old_write_domain);
2012}
2013
Eric Anholt673a3942008-07-30 12:06:12 -07002014/**
2015 * Unbinds an object from the GTT aperture.
2016 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002017int
Chris Wilson05394f32010-11-08 19:18:58 +00002018i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002019{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002020 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002021 int ret = 0;
2022
Chris Wilson05394f32010-11-08 19:18:58 +00002023 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002024 return 0;
2025
Chris Wilson05394f32010-11-08 19:18:58 +00002026 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002027 DRM_ERROR("Attempting to unbind pinned buffer\n");
2028 return -EINVAL;
2029 }
2030
Chris Wilsona8198ee2011-04-13 22:04:09 +01002031 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002032 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002033 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002034 /* Continue on if we fail due to EIO, the GPU is hung so we
2035 * should be safe and we need to cleanup or else we might
2036 * cause memory corruption through use-after-free.
2037 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002038
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002039 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002040
2041 /* Move the object to the CPU domain to ensure that
2042 * any possible CPU writes while it's not in the GTT
2043 * are flushed when we go to remap it.
2044 */
2045 if (ret == 0)
2046 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2047 if (ret == -ERESTARTSYS)
2048 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002049 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002050 /* In the event of a disaster, abandon all caches and
2051 * hope for the best.
2052 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002053 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002054 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002055 }
Eric Anholt673a3942008-07-30 12:06:12 -07002056
Daniel Vetter96b47b62009-12-15 17:50:00 +01002057 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002058 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002059 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002060 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002061
Chris Wilsondb53a302011-02-03 11:57:46 +00002062 trace_i915_gem_object_unbind(obj);
2063
Daniel Vetter74898d72012-02-15 23:50:22 +01002064 if (obj->has_global_gtt_mapping)
2065 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002066 if (obj->has_aliasing_ppgtt_mapping) {
2067 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2068 obj->has_aliasing_ppgtt_mapping = 0;
2069 }
Daniel Vetter74163902012-02-15 23:50:21 +01002070 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002071
Chris Wilsone5281cc2010-10-28 13:45:36 +01002072 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002073
Chris Wilson6299f992010-11-24 12:23:44 +00002074 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002075 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002076 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002077 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002078
Chris Wilson05394f32010-11-08 19:18:58 +00002079 drm_mm_put_block(obj->gtt_space);
2080 obj->gtt_space = NULL;
2081 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002082
Chris Wilson05394f32010-11-08 19:18:58 +00002083 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002084 i915_gem_object_truncate(obj);
2085
Chris Wilson8dc17752010-07-23 23:18:51 +01002086 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002087}
2088
Chris Wilson88241782011-01-07 17:09:48 +00002089int
Chris Wilsondb53a302011-02-03 11:57:46 +00002090i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002091 uint32_t invalidate_domains,
2092 uint32_t flush_domains)
2093{
Chris Wilson88241782011-01-07 17:09:48 +00002094 int ret;
2095
Chris Wilson36d527d2011-03-19 22:26:49 +00002096 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2097 return 0;
2098
Chris Wilsondb53a302011-02-03 11:57:46 +00002099 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2100
Chris Wilson88241782011-01-07 17:09:48 +00002101 ret = ring->flush(ring, invalidate_domains, flush_domains);
2102 if (ret)
2103 return ret;
2104
Chris Wilson36d527d2011-03-19 22:26:49 +00002105 if (flush_domains & I915_GEM_GPU_DOMAINS)
2106 i915_gem_process_flushing_list(ring, flush_domains);
2107
Chris Wilson88241782011-01-07 17:09:48 +00002108 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002109}
2110
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002111static int i915_ring_idle(struct intel_ring_buffer *ring)
Chris Wilsona56ba562010-09-28 10:07:56 +01002112{
Chris Wilson88241782011-01-07 17:09:48 +00002113 int ret;
2114
Chris Wilson395b70b2010-10-28 21:28:46 +01002115 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002116 return 0;
2117
Chris Wilson88241782011-01-07 17:09:48 +00002118 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002119 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002120 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002121 if (ret)
2122 return ret;
2123 }
2124
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002125 return i915_wait_request(ring, i915_gem_next_request_seqno(ring));
Chris Wilsona56ba562010-09-28 10:07:56 +01002126}
2127
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002128int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002129{
2130 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002131 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002132
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002133 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002134 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002135 ret = i915_ring_idle(&dev_priv->ring[i]);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002136 if (ret)
2137 return ret;
2138 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002139
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002140 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002141}
2142
Chris Wilson9ce079e2012-04-17 15:31:30 +01002143static void sandybridge_write_fence_reg(struct drm_device *dev, int reg,
2144 struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002145{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002146 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002147 uint64_t val;
2148
Chris Wilson9ce079e2012-04-17 15:31:30 +01002149 if (obj) {
2150 u32 size = obj->gtt_space->size;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002151
Chris Wilson9ce079e2012-04-17 15:31:30 +01002152 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2153 0xfffff000) << 32;
2154 val |= obj->gtt_offset & 0xfffff000;
2155 val |= (uint64_t)((obj->stride / 128) - 1) <<
2156 SANDYBRIDGE_FENCE_PITCH_SHIFT;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002157
Chris Wilson9ce079e2012-04-17 15:31:30 +01002158 if (obj->tiling_mode == I915_TILING_Y)
2159 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2160 val |= I965_FENCE_REG_VALID;
2161 } else
2162 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002163
Chris Wilson9ce079e2012-04-17 15:31:30 +01002164 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + reg * 8, val);
2165 POSTING_READ(FENCE_REG_SANDYBRIDGE_0 + reg * 8);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002166}
2167
Chris Wilson9ce079e2012-04-17 15:31:30 +01002168static void i965_write_fence_reg(struct drm_device *dev, int reg,
2169 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002170{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002171 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002172 uint64_t val;
2173
Chris Wilson9ce079e2012-04-17 15:31:30 +01002174 if (obj) {
2175 u32 size = obj->gtt_space->size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002176
Chris Wilson9ce079e2012-04-17 15:31:30 +01002177 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2178 0xfffff000) << 32;
2179 val |= obj->gtt_offset & 0xfffff000;
2180 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2181 if (obj->tiling_mode == I915_TILING_Y)
2182 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2183 val |= I965_FENCE_REG_VALID;
2184 } else
2185 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002186
Chris Wilson9ce079e2012-04-17 15:31:30 +01002187 I915_WRITE64(FENCE_REG_965_0 + reg * 8, val);
2188 POSTING_READ(FENCE_REG_965_0 + reg * 8);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002189}
2190
Chris Wilson9ce079e2012-04-17 15:31:30 +01002191static void i915_write_fence_reg(struct drm_device *dev, int reg,
2192 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002193{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002194 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002195 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002196
Chris Wilson9ce079e2012-04-17 15:31:30 +01002197 if (obj) {
2198 u32 size = obj->gtt_space->size;
2199 int pitch_val;
2200 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002201
Chris Wilson9ce079e2012-04-17 15:31:30 +01002202 WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2203 (size & -size) != size ||
2204 (obj->gtt_offset & (size - 1)),
2205 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2206 obj->gtt_offset, obj->map_and_fenceable, size);
2207
2208 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2209 tile_width = 128;
2210 else
2211 tile_width = 512;
2212
2213 /* Note: pitch better be a power of two tile widths */
2214 pitch_val = obj->stride / tile_width;
2215 pitch_val = ffs(pitch_val) - 1;
2216
2217 val = obj->gtt_offset;
2218 if (obj->tiling_mode == I915_TILING_Y)
2219 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2220 val |= I915_FENCE_SIZE_BITS(size);
2221 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2222 val |= I830_FENCE_REG_VALID;
2223 } else
2224 val = 0;
2225
2226 if (reg < 8)
2227 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002228 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002229 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002230
Chris Wilson9ce079e2012-04-17 15:31:30 +01002231 I915_WRITE(reg, val);
2232 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002233}
2234
Chris Wilson9ce079e2012-04-17 15:31:30 +01002235static void i830_write_fence_reg(struct drm_device *dev, int reg,
2236 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002237{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002238 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002239 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002240
Chris Wilson9ce079e2012-04-17 15:31:30 +01002241 if (obj) {
2242 u32 size = obj->gtt_space->size;
2243 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002244
Chris Wilson9ce079e2012-04-17 15:31:30 +01002245 WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2246 (size & -size) != size ||
2247 (obj->gtt_offset & (size - 1)),
2248 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2249 obj->gtt_offset, size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002250
Chris Wilson9ce079e2012-04-17 15:31:30 +01002251 pitch_val = obj->stride / 128;
2252 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002253
Chris Wilson9ce079e2012-04-17 15:31:30 +01002254 val = obj->gtt_offset;
2255 if (obj->tiling_mode == I915_TILING_Y)
2256 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2257 val |= I830_FENCE_SIZE_BITS(size);
2258 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2259 val |= I830_FENCE_REG_VALID;
2260 } else
2261 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002262
Chris Wilson9ce079e2012-04-17 15:31:30 +01002263 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2264 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2265}
2266
2267static void i915_gem_write_fence(struct drm_device *dev, int reg,
2268 struct drm_i915_gem_object *obj)
2269{
2270 switch (INTEL_INFO(dev)->gen) {
2271 case 7:
2272 case 6: sandybridge_write_fence_reg(dev, reg, obj); break;
2273 case 5:
2274 case 4: i965_write_fence_reg(dev, reg, obj); break;
2275 case 3: i915_write_fence_reg(dev, reg, obj); break;
2276 case 2: i830_write_fence_reg(dev, reg, obj); break;
2277 default: break;
2278 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002279}
2280
Chris Wilson61050802012-04-17 15:31:31 +01002281static inline int fence_number(struct drm_i915_private *dev_priv,
2282 struct drm_i915_fence_reg *fence)
2283{
2284 return fence - dev_priv->fence_regs;
2285}
2286
2287static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2288 struct drm_i915_fence_reg *fence,
2289 bool enable)
2290{
2291 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2292 int reg = fence_number(dev_priv, fence);
2293
2294 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
2295
2296 if (enable) {
2297 obj->fence_reg = reg;
2298 fence->obj = obj;
2299 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2300 } else {
2301 obj->fence_reg = I915_FENCE_REG_NONE;
2302 fence->obj = NULL;
2303 list_del_init(&fence->lru_list);
2304 }
2305}
2306
Chris Wilsond9e86c02010-11-10 16:40:20 +00002307static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002308i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002309{
2310 int ret;
2311
2312 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002313 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilson1c293ea2012-04-17 15:31:27 +01002314 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00002315 0, obj->base.write_domain);
2316 if (ret)
2317 return ret;
2318 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002319
2320 obj->fenced_gpu_access = false;
2321 }
2322
Chris Wilson1c293ea2012-04-17 15:31:27 +01002323 if (obj->last_fenced_seqno) {
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002324 ret = i915_wait_request(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002325 if (ret)
2326 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002327
2328 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002329 }
2330
Chris Wilson63256ec2011-01-04 18:42:07 +00002331 /* Ensure that all CPU reads are completed before installing a fence
2332 * and all writes before removing the fence.
2333 */
2334 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2335 mb();
2336
Chris Wilsond9e86c02010-11-10 16:40:20 +00002337 return 0;
2338}
2339
2340int
2341i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2342{
Chris Wilson61050802012-04-17 15:31:31 +01002343 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002344 int ret;
2345
Chris Wilsona360bb12012-04-17 15:31:25 +01002346 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002347 if (ret)
2348 return ret;
2349
Chris Wilson61050802012-04-17 15:31:31 +01002350 if (obj->fence_reg == I915_FENCE_REG_NONE)
2351 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002352
Chris Wilson61050802012-04-17 15:31:31 +01002353 i915_gem_object_update_fence(obj,
2354 &dev_priv->fence_regs[obj->fence_reg],
2355 false);
2356 i915_gem_object_fence_lost(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002357
2358 return 0;
2359}
2360
2361static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002362i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002363{
Daniel Vetterae3db242010-02-19 11:51:58 +01002364 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002365 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002366 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002367
2368 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002369 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002370 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2371 reg = &dev_priv->fence_regs[i];
2372 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002373 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002374
Chris Wilson1690e1e2011-12-14 13:57:08 +01002375 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002376 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002377 }
2378
Chris Wilsond9e86c02010-11-10 16:40:20 +00002379 if (avail == NULL)
2380 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002381
2382 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002383 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002384 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002385 continue;
2386
Chris Wilson8fe301a2012-04-17 15:31:28 +01002387 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002388 }
2389
Chris Wilson8fe301a2012-04-17 15:31:28 +01002390 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002391}
2392
Jesse Barnesde151cf2008-11-12 10:03:55 -08002393/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002394 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002395 * @obj: object to map through a fence reg
2396 *
2397 * When mapping objects through the GTT, userspace wants to be able to write
2398 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002399 * This function walks the fence regs looking for a free one for @obj,
2400 * stealing one if it can't find any.
2401 *
2402 * It then sets up the reg based on the object's properties: address, pitch
2403 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002404 *
2405 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002406 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002407int
Chris Wilson06d98132012-04-17 15:31:24 +01002408i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002409{
Chris Wilson05394f32010-11-08 19:18:58 +00002410 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002411 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002412 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002413 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002414 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002415
Chris Wilson14415742012-04-17 15:31:33 +01002416 /* Have we updated the tiling parameters upon the object and so
2417 * will need to serialise the write to the associated fence register?
2418 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002419 if (obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002420 ret = i915_gem_object_flush_fence(obj);
2421 if (ret)
2422 return ret;
2423 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002424
Chris Wilsond9e86c02010-11-10 16:40:20 +00002425 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002426 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2427 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002428 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002429 list_move_tail(&reg->lru_list,
2430 &dev_priv->mm.fence_list);
2431 return 0;
2432 }
2433 } else if (enable) {
2434 reg = i915_find_fence_reg(dev);
2435 if (reg == NULL)
2436 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002437
Chris Wilson14415742012-04-17 15:31:33 +01002438 if (reg->obj) {
2439 struct drm_i915_gem_object *old = reg->obj;
2440
2441 ret = i915_gem_object_flush_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002442 if (ret)
2443 return ret;
2444
Chris Wilson14415742012-04-17 15:31:33 +01002445 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002446 }
Chris Wilson14415742012-04-17 15:31:33 +01002447 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07002448 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002449
Chris Wilson14415742012-04-17 15:31:33 +01002450 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002451 obj->fence_dirty = false;
Chris Wilson14415742012-04-17 15:31:33 +01002452
Chris Wilson9ce079e2012-04-17 15:31:30 +01002453 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454}
2455
2456/**
Eric Anholt673a3942008-07-30 12:06:12 -07002457 * Finds free space in the GTT aperture and binds the object there.
2458 */
2459static int
Chris Wilson05394f32010-11-08 19:18:58 +00002460i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002461 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002462 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002463{
Chris Wilson05394f32010-11-08 19:18:58 +00002464 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002465 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002466 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002467 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002468 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002469 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002470 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002471
Chris Wilson05394f32010-11-08 19:18:58 +00002472 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002473 DRM_ERROR("Attempting to bind a purgeable object\n");
2474 return -EINVAL;
2475 }
2476
Chris Wilsone28f8712011-07-18 13:11:49 -07002477 fence_size = i915_gem_get_gtt_size(dev,
2478 obj->base.size,
2479 obj->tiling_mode);
2480 fence_alignment = i915_gem_get_gtt_alignment(dev,
2481 obj->base.size,
2482 obj->tiling_mode);
2483 unfenced_alignment =
2484 i915_gem_get_unfenced_gtt_alignment(dev,
2485 obj->base.size,
2486 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002487
Eric Anholt673a3942008-07-30 12:06:12 -07002488 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002489 alignment = map_and_fenceable ? fence_alignment :
2490 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002491 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002492 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2493 return -EINVAL;
2494 }
2495
Chris Wilson05394f32010-11-08 19:18:58 +00002496 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002497
Chris Wilson654fc602010-05-27 13:18:21 +01002498 /* If the object is bigger than the entire aperture, reject it early
2499 * before evicting everything in a vain attempt to find space.
2500 */
Chris Wilson05394f32010-11-08 19:18:58 +00002501 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002502 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002503 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2504 return -E2BIG;
2505 }
2506
Eric Anholt673a3942008-07-30 12:06:12 -07002507 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002508 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002509 free_space =
2510 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002511 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002512 dev_priv->mm.gtt_mappable_end,
2513 0);
2514 else
2515 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002516 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002517
2518 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002519 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002520 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002521 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002522 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002523 dev_priv->mm.gtt_mappable_end,
2524 0);
2525 else
Chris Wilson05394f32010-11-08 19:18:58 +00002526 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002527 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002528 }
Chris Wilson05394f32010-11-08 19:18:58 +00002529 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002530 /* If the gtt is empty and we're still having trouble
2531 * fitting our object in, we're out of memory.
2532 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002533 ret = i915_gem_evict_something(dev, size, alignment,
2534 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002535 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002536 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002537
Eric Anholt673a3942008-07-30 12:06:12 -07002538 goto search_free;
2539 }
2540
Chris Wilsone5281cc2010-10-28 13:45:36 +01002541 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002542 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002543 drm_mm_put_block(obj->gtt_space);
2544 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002545
2546 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002547 /* first try to reclaim some memory by clearing the GTT */
2548 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002549 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002550 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002551 if (gfpmask) {
2552 gfpmask = 0;
2553 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002554 }
2555
Chris Wilson809b6332011-01-10 17:33:15 +00002556 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002557 }
2558
2559 goto search_free;
2560 }
2561
Eric Anholt673a3942008-07-30 12:06:12 -07002562 return ret;
2563 }
2564
Daniel Vetter74163902012-02-15 23:50:21 +01002565 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002566 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002567 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002568 drm_mm_put_block(obj->gtt_space);
2569 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002570
Chris Wilson809b6332011-01-10 17:33:15 +00002571 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002572 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002573
2574 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002575 }
Eric Anholt673a3942008-07-30 12:06:12 -07002576
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002577 if (!dev_priv->mm.aliasing_ppgtt)
2578 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002579
Chris Wilson6299f992010-11-24 12:23:44 +00002580 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002581 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002582
Eric Anholt673a3942008-07-30 12:06:12 -07002583 /* Assert that the object is not currently in any GPU domain. As it
2584 * wasn't in the GTT, there shouldn't be any way it could have been in
2585 * a GPU cache
2586 */
Chris Wilson05394f32010-11-08 19:18:58 +00002587 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2588 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002589
Chris Wilson6299f992010-11-24 12:23:44 +00002590 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002591
Daniel Vetter75e9e912010-11-04 17:11:09 +01002592 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002593 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002594 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002595
Daniel Vetter75e9e912010-11-04 17:11:09 +01002596 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002597 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002598
Chris Wilson05394f32010-11-08 19:18:58 +00002599 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002600
Chris Wilsondb53a302011-02-03 11:57:46 +00002601 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002602 return 0;
2603}
2604
2605void
Chris Wilson05394f32010-11-08 19:18:58 +00002606i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002607{
Eric Anholt673a3942008-07-30 12:06:12 -07002608 /* If we don't have a page list set up, then we're not pinned
2609 * to GPU, and we can ignore the cache flush because it'll happen
2610 * again at bind time.
2611 */
Chris Wilson05394f32010-11-08 19:18:58 +00002612 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002613 return;
2614
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002615 /* If the GPU is snooping the contents of the CPU cache,
2616 * we do not need to manually clear the CPU cache lines. However,
2617 * the caches are only snooped when the render cache is
2618 * flushed/invalidated. As we always have to emit invalidations
2619 * and flushes when moving into and out of the RENDER domain, correct
2620 * snooping behaviour occurs naturally as the result of our domain
2621 * tracking.
2622 */
2623 if (obj->cache_level != I915_CACHE_NONE)
2624 return;
2625
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002626 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002627
Chris Wilson05394f32010-11-08 19:18:58 +00002628 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002629}
2630
Eric Anholte47c68e2008-11-14 13:35:19 -08002631/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002632static int
Chris Wilson3619df02010-11-28 15:37:17 +00002633i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002634{
Chris Wilson05394f32010-11-08 19:18:58 +00002635 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002636 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002637
2638 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002639 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002640}
2641
2642/** Flushes the GTT write domain for the object if it's dirty. */
2643static void
Chris Wilson05394f32010-11-08 19:18:58 +00002644i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002645{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002646 uint32_t old_write_domain;
2647
Chris Wilson05394f32010-11-08 19:18:58 +00002648 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002649 return;
2650
Chris Wilson63256ec2011-01-04 18:42:07 +00002651 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002652 * to it immediately go to main memory as far as we know, so there's
2653 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002654 *
2655 * However, we do have to enforce the order so that all writes through
2656 * the GTT land before any writes to the device, such as updates to
2657 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002658 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002659 wmb();
2660
Chris Wilson05394f32010-11-08 19:18:58 +00002661 old_write_domain = obj->base.write_domain;
2662 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002663
2664 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002665 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002666 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002667}
2668
2669/** Flushes the CPU write domain for the object if it's dirty. */
2670static void
Chris Wilson05394f32010-11-08 19:18:58 +00002671i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002672{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002673 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002674
Chris Wilson05394f32010-11-08 19:18:58 +00002675 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002676 return;
2677
2678 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002679 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002680 old_write_domain = obj->base.write_domain;
2681 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002682
2683 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002684 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002685 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002686}
2687
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002688/**
2689 * Moves a single object to the GTT read, and possibly write domain.
2690 *
2691 * This function returns when the move is complete, including waiting on
2692 * flushes to occur.
2693 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002694int
Chris Wilson20217462010-11-23 15:26:33 +00002695i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002696{
Chris Wilson8325a092012-04-24 15:52:35 +01002697 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002698 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002699 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002700
Eric Anholt02354392008-11-26 13:58:13 -08002701 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002702 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002703 return -EINVAL;
2704
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002705 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2706 return 0;
2707
Chris Wilson88241782011-01-07 17:09:48 +00002708 ret = i915_gem_object_flush_gpu_write_domain(obj);
2709 if (ret)
2710 return ret;
2711
Chris Wilson87ca9c82010-12-02 09:42:56 +00002712 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002713 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002714 if (ret)
2715 return ret;
2716 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002717
Chris Wilson72133422010-09-13 23:56:38 +01002718 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002719
Chris Wilson05394f32010-11-08 19:18:58 +00002720 old_write_domain = obj->base.write_domain;
2721 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002722
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002723 /* It should now be out of any other write domains, and we can update
2724 * the domain values for our changes.
2725 */
Chris Wilson05394f32010-11-08 19:18:58 +00002726 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2727 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002728 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002729 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2730 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2731 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002732 }
2733
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002734 trace_i915_gem_object_change_domain(obj,
2735 old_read_domains,
2736 old_write_domain);
2737
Chris Wilson8325a092012-04-24 15:52:35 +01002738 /* And bump the LRU for this access */
2739 if (i915_gem_object_is_inactive(obj))
2740 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
2741
Eric Anholte47c68e2008-11-14 13:35:19 -08002742 return 0;
2743}
2744
Chris Wilsone4ffd172011-04-04 09:44:39 +01002745int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2746 enum i915_cache_level cache_level)
2747{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002748 struct drm_device *dev = obj->base.dev;
2749 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002750 int ret;
2751
2752 if (obj->cache_level == cache_level)
2753 return 0;
2754
2755 if (obj->pin_count) {
2756 DRM_DEBUG("can not change the cache level of pinned objects\n");
2757 return -EBUSY;
2758 }
2759
2760 if (obj->gtt_space) {
2761 ret = i915_gem_object_finish_gpu(obj);
2762 if (ret)
2763 return ret;
2764
2765 i915_gem_object_finish_gtt(obj);
2766
2767 /* Before SandyBridge, you could not use tiling or fence
2768 * registers with snooped memory, so relinquish any fences
2769 * currently pointing to our region in the aperture.
2770 */
2771 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2772 ret = i915_gem_object_put_fence(obj);
2773 if (ret)
2774 return ret;
2775 }
2776
Daniel Vetter74898d72012-02-15 23:50:22 +01002777 if (obj->has_global_gtt_mapping)
2778 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002779 if (obj->has_aliasing_ppgtt_mapping)
2780 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2781 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002782 }
2783
2784 if (cache_level == I915_CACHE_NONE) {
2785 u32 old_read_domains, old_write_domain;
2786
2787 /* If we're coming from LLC cached, then we haven't
2788 * actually been tracking whether the data is in the
2789 * CPU cache or not, since we only allow one bit set
2790 * in obj->write_domain and have been skipping the clflushes.
2791 * Just set it to the CPU cache for now.
2792 */
2793 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2794 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2795
2796 old_read_domains = obj->base.read_domains;
2797 old_write_domain = obj->base.write_domain;
2798
2799 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2800 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2801
2802 trace_i915_gem_object_change_domain(obj,
2803 old_read_domains,
2804 old_write_domain);
2805 }
2806
2807 obj->cache_level = cache_level;
2808 return 0;
2809}
2810
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002811/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002812 * Prepare buffer for display plane (scanout, cursors, etc).
2813 * Can be called from an uninterruptible phase (modesetting) and allows
2814 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002815 */
2816int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002817i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2818 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002819 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002820{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002821 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002822 int ret;
2823
Chris Wilson88241782011-01-07 17:09:48 +00002824 ret = i915_gem_object_flush_gpu_write_domain(obj);
2825 if (ret)
2826 return ret;
2827
Chris Wilson0be73282010-12-06 14:36:27 +00002828 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07002829 ret = i915_gem_object_sync(obj, pipelined);
2830 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002831 return ret;
2832 }
2833
Eric Anholta7ef0642011-03-29 16:59:54 -07002834 /* The display engine is not coherent with the LLC cache on gen6. As
2835 * a result, we make sure that the pinning that is about to occur is
2836 * done with uncached PTEs. This is lowest common denominator for all
2837 * chipsets.
2838 *
2839 * However for gen6+, we could do better by using the GFDT bit instead
2840 * of uncaching, which would allow us to flush all the LLC-cached data
2841 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2842 */
2843 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2844 if (ret)
2845 return ret;
2846
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002847 /* As the user may map the buffer once pinned in the display plane
2848 * (e.g. libkms for the bootup splash), we have to ensure that we
2849 * always use map_and_fenceable for all scanout buffers.
2850 */
2851 ret = i915_gem_object_pin(obj, alignment, true);
2852 if (ret)
2853 return ret;
2854
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002855 i915_gem_object_flush_cpu_write_domain(obj);
2856
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002857 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002858 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002859
2860 /* It should now be out of any other write domains, and we can update
2861 * the domain values for our changes.
2862 */
2863 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002864 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002865
2866 trace_i915_gem_object_change_domain(obj,
2867 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002868 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002869
2870 return 0;
2871}
2872
Chris Wilson85345512010-11-13 09:49:11 +00002873int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002874i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002875{
Chris Wilson88241782011-01-07 17:09:48 +00002876 int ret;
2877
Chris Wilsona8198ee2011-04-13 22:04:09 +01002878 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002879 return 0;
2880
Chris Wilson88241782011-01-07 17:09:48 +00002881 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002882 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002883 if (ret)
2884 return ret;
2885 }
Chris Wilson85345512010-11-13 09:49:11 +00002886
Chris Wilsonc501ae72011-12-14 13:57:23 +01002887 ret = i915_gem_object_wait_rendering(obj);
2888 if (ret)
2889 return ret;
2890
Chris Wilsona8198ee2011-04-13 22:04:09 +01002891 /* Ensure that we invalidate the GPU's caches and TLBs. */
2892 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002893 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002894}
2895
Eric Anholte47c68e2008-11-14 13:35:19 -08002896/**
2897 * Moves a single object to the CPU read, and possibly write domain.
2898 *
2899 * This function returns when the move is complete, including waiting on
2900 * flushes to occur.
2901 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002902int
Chris Wilson919926a2010-11-12 13:42:53 +00002903i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002904{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002905 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002906 int ret;
2907
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002908 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2909 return 0;
2910
Chris Wilson88241782011-01-07 17:09:48 +00002911 ret = i915_gem_object_flush_gpu_write_domain(obj);
2912 if (ret)
2913 return ret;
2914
Chris Wilsonf8413192012-04-10 11:52:50 +01002915 if (write || obj->pending_gpu_write) {
2916 ret = i915_gem_object_wait_rendering(obj);
2917 if (ret)
2918 return ret;
2919 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002920
2921 i915_gem_object_flush_gtt_write_domain(obj);
2922
Chris Wilson05394f32010-11-08 19:18:58 +00002923 old_write_domain = obj->base.write_domain;
2924 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002925
Eric Anholte47c68e2008-11-14 13:35:19 -08002926 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00002927 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002928 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002929
Chris Wilson05394f32010-11-08 19:18:58 +00002930 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002931 }
2932
2933 /* It should now be out of any other write domains, and we can update
2934 * the domain values for our changes.
2935 */
Chris Wilson05394f32010-11-08 19:18:58 +00002936 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08002937
2938 /* If we're writing through the CPU, then the GPU read domains will
2939 * need to be invalidated at next use.
2940 */
2941 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002942 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2943 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002944 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002945
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002946 trace_i915_gem_object_change_domain(obj,
2947 old_read_domains,
2948 old_write_domain);
2949
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002950 return 0;
2951}
2952
Eric Anholt673a3942008-07-30 12:06:12 -07002953/* Throttle our rendering by waiting until the ring has completed our requests
2954 * emitted over 20 msec ago.
2955 *
Eric Anholtb9624422009-06-03 07:27:35 +00002956 * Note that if we were to use the current jiffies each time around the loop,
2957 * we wouldn't escape the function with any frames outstanding if the time to
2958 * render a frame was over 20ms.
2959 *
Eric Anholt673a3942008-07-30 12:06:12 -07002960 * This should get us reasonable parallelism between CPU and GPU but also
2961 * relatively low latency when blocking on a particular request to finish.
2962 */
2963static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002964i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002965{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002966 struct drm_i915_private *dev_priv = dev->dev_private;
2967 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002968 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002969 struct drm_i915_gem_request *request;
2970 struct intel_ring_buffer *ring = NULL;
2971 u32 seqno = 0;
2972 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002973
Chris Wilsone110e8d2011-01-26 15:39:14 +00002974 if (atomic_read(&dev_priv->mm.wedged))
2975 return -EIO;
2976
Chris Wilson1c255952010-09-26 11:03:27 +01002977 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002978 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00002979 if (time_after_eq(request->emitted_jiffies, recent_enough))
2980 break;
2981
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002982 ring = request->ring;
2983 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00002984 }
Chris Wilson1c255952010-09-26 11:03:27 +01002985 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002986
2987 if (seqno == 0)
2988 return 0;
2989
2990 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01002991 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002992 /* And wait for the seqno passing without holding any locks and
2993 * causing extra latency for others. This is safe as the irq
2994 * generation is designed to be run atomically and so is
2995 * lockless.
2996 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002997 if (ring->irq_get(ring)) {
2998 ret = wait_event_interruptible(ring->irq_queue,
2999 i915_seqno_passed(ring->get_seqno(ring), seqno)
3000 || atomic_read(&dev_priv->mm.wedged));
3001 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003002
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003003 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3004 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003005 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3006 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003007 atomic_read(&dev_priv->mm.wedged), 3000)) {
3008 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003009 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003010 }
3011
3012 if (ret == 0)
3013 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003014
Eric Anholt673a3942008-07-30 12:06:12 -07003015 return ret;
3016}
3017
Eric Anholt673a3942008-07-30 12:06:12 -07003018int
Chris Wilson05394f32010-11-08 19:18:58 +00003019i915_gem_object_pin(struct drm_i915_gem_object *obj,
3020 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003021 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003022{
Eric Anholt673a3942008-07-30 12:06:12 -07003023 int ret;
3024
Chris Wilson05394f32010-11-08 19:18:58 +00003025 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003026
Chris Wilson05394f32010-11-08 19:18:58 +00003027 if (obj->gtt_space != NULL) {
3028 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3029 (map_and_fenceable && !obj->map_and_fenceable)) {
3030 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003031 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003032 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3033 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003034 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003035 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003036 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003037 ret = i915_gem_object_unbind(obj);
3038 if (ret)
3039 return ret;
3040 }
3041 }
3042
Chris Wilson05394f32010-11-08 19:18:58 +00003043 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003044 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003045 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003046 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003047 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003048 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003049
Daniel Vetter74898d72012-02-15 23:50:22 +01003050 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3051 i915_gem_gtt_bind_object(obj, obj->cache_level);
3052
Chris Wilson1b502472012-04-24 15:47:30 +01003053 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003054 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003055
3056 return 0;
3057}
3058
3059void
Chris Wilson05394f32010-11-08 19:18:58 +00003060i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003061{
Chris Wilson05394f32010-11-08 19:18:58 +00003062 BUG_ON(obj->pin_count == 0);
3063 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003064
Chris Wilson1b502472012-04-24 15:47:30 +01003065 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003066 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003067}
3068
3069int
3070i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003071 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003072{
3073 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003074 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003075 int ret;
3076
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003077 ret = i915_mutex_lock_interruptible(dev);
3078 if (ret)
3079 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003080
Chris Wilson05394f32010-11-08 19:18:58 +00003081 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003082 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003083 ret = -ENOENT;
3084 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003085 }
Eric Anholt673a3942008-07-30 12:06:12 -07003086
Chris Wilson05394f32010-11-08 19:18:58 +00003087 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003088 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003089 ret = -EINVAL;
3090 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003091 }
3092
Chris Wilson05394f32010-11-08 19:18:58 +00003093 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003094 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3095 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003096 ret = -EINVAL;
3097 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003098 }
3099
Chris Wilson05394f32010-11-08 19:18:58 +00003100 obj->user_pin_count++;
3101 obj->pin_filp = file;
3102 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003103 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003104 if (ret)
3105 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003106 }
3107
3108 /* XXX - flush the CPU caches for pinned objects
3109 * as the X server doesn't manage domains yet
3110 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003111 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003112 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003113out:
Chris Wilson05394f32010-11-08 19:18:58 +00003114 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003115unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003116 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003117 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003118}
3119
3120int
3121i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003122 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003123{
3124 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003125 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003126 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003127
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003128 ret = i915_mutex_lock_interruptible(dev);
3129 if (ret)
3130 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003131
Chris Wilson05394f32010-11-08 19:18:58 +00003132 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003133 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003134 ret = -ENOENT;
3135 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003136 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003137
Chris Wilson05394f32010-11-08 19:18:58 +00003138 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003139 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3140 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003141 ret = -EINVAL;
3142 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003143 }
Chris Wilson05394f32010-11-08 19:18:58 +00003144 obj->user_pin_count--;
3145 if (obj->user_pin_count == 0) {
3146 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003147 i915_gem_object_unpin(obj);
3148 }
Eric Anholt673a3942008-07-30 12:06:12 -07003149
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003150out:
Chris Wilson05394f32010-11-08 19:18:58 +00003151 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003152unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003153 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003154 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003155}
3156
3157int
3158i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003159 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003160{
3161 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003162 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003163 int ret;
3164
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003165 ret = i915_mutex_lock_interruptible(dev);
3166 if (ret)
3167 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003168
Chris Wilson05394f32010-11-08 19:18:58 +00003169 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003170 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003171 ret = -ENOENT;
3172 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003173 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003174
Chris Wilson0be555b2010-08-04 15:36:30 +01003175 /* Count all active objects as busy, even if they are currently not used
3176 * by the gpu. Users of this interface expect objects to eventually
3177 * become non-busy without any further actions, therefore emit any
3178 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003179 */
Chris Wilson05394f32010-11-08 19:18:58 +00003180 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003181 if (args->busy) {
3182 /* Unconditionally flush objects, even when the gpu still uses this
3183 * object. Userspace calling this function indicates that it wants to
3184 * use this buffer rather sooner than later, so issuing the required
3185 * flush earlier is beneficial.
3186 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003187 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003188 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003189 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003190 } else if (obj->ring->outstanding_lazy_request ==
3191 obj->last_rendering_seqno) {
3192 struct drm_i915_gem_request *request;
3193
Chris Wilson7a194872010-12-07 10:38:40 +00003194 /* This ring is not being cleared by active usage,
3195 * so emit a request to do so.
3196 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003197 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003198 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003199 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003200 if (ret)
3201 kfree(request);
3202 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003203 ret = -ENOMEM;
3204 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003205
3206 /* Update the active list for the hardware's current position.
3207 * Otherwise this only updates on a delayed timer or when irqs
3208 * are actually unmasked, and our working set ends up being
3209 * larger than required.
3210 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003211 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003212
Chris Wilson05394f32010-11-08 19:18:58 +00003213 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003214 }
Eric Anholt673a3942008-07-30 12:06:12 -07003215
Chris Wilson05394f32010-11-08 19:18:58 +00003216 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003217unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003218 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003219 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003220}
3221
3222int
3223i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3224 struct drm_file *file_priv)
3225{
Akshay Joshi0206e352011-08-16 15:34:10 -04003226 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003227}
3228
Chris Wilson3ef94da2009-09-14 16:50:29 +01003229int
3230i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3231 struct drm_file *file_priv)
3232{
3233 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003234 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003235 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003236
3237 switch (args->madv) {
3238 case I915_MADV_DONTNEED:
3239 case I915_MADV_WILLNEED:
3240 break;
3241 default:
3242 return -EINVAL;
3243 }
3244
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003245 ret = i915_mutex_lock_interruptible(dev);
3246 if (ret)
3247 return ret;
3248
Chris Wilson05394f32010-11-08 19:18:58 +00003249 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003250 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003251 ret = -ENOENT;
3252 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003253 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003254
Chris Wilson05394f32010-11-08 19:18:58 +00003255 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003256 ret = -EINVAL;
3257 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003258 }
3259
Chris Wilson05394f32010-11-08 19:18:58 +00003260 if (obj->madv != __I915_MADV_PURGED)
3261 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003262
Chris Wilson2d7ef392009-09-20 23:13:10 +01003263 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003264 if (i915_gem_object_is_purgeable(obj) &&
3265 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003266 i915_gem_object_truncate(obj);
3267
Chris Wilson05394f32010-11-08 19:18:58 +00003268 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003269
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003270out:
Chris Wilson05394f32010-11-08 19:18:58 +00003271 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003272unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003273 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003274 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003275}
3276
Chris Wilson05394f32010-11-08 19:18:58 +00003277struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3278 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003279{
Chris Wilson73aa8082010-09-30 11:46:12 +01003280 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003281 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003282 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003283
3284 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3285 if (obj == NULL)
3286 return NULL;
3287
3288 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3289 kfree(obj);
3290 return NULL;
3291 }
3292
Hugh Dickins5949eac2011-06-27 16:18:18 -07003293 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3294 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3295
Chris Wilson73aa8082010-09-30 11:46:12 +01003296 i915_gem_info_add_obj(dev_priv, size);
3297
Daniel Vetterc397b902010-04-09 19:05:07 +00003298 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3299 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3300
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003301 if (HAS_LLC(dev)) {
3302 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003303 * cache) for about a 10% performance improvement
3304 * compared to uncached. Graphics requests other than
3305 * display scanout are coherent with the CPU in
3306 * accessing this cache. This means in this mode we
3307 * don't need to clflush on the CPU side, and on the
3308 * GPU side we only need to flush internal caches to
3309 * get data visible to the CPU.
3310 *
3311 * However, we maintain the display planes as UC, and so
3312 * need to rebind when first used as such.
3313 */
3314 obj->cache_level = I915_CACHE_LLC;
3315 } else
3316 obj->cache_level = I915_CACHE_NONE;
3317
Daniel Vetter62b8b212010-04-09 19:05:08 +00003318 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003319 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003320 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003321 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003322 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003323 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003324 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003325 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003326 /* Avoid an unnecessary call to unbind on the first bind. */
3327 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003328
Chris Wilson05394f32010-11-08 19:18:58 +00003329 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003330}
3331
Eric Anholt673a3942008-07-30 12:06:12 -07003332int i915_gem_init_object(struct drm_gem_object *obj)
3333{
Daniel Vetterc397b902010-04-09 19:05:07 +00003334 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003335
Eric Anholt673a3942008-07-30 12:06:12 -07003336 return 0;
3337}
3338
Chris Wilson1488fc02012-04-24 15:47:31 +01003339void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003340{
Chris Wilson1488fc02012-04-24 15:47:31 +01003341 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003342 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003343 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003344
Chris Wilson26e12f82011-03-20 11:20:19 +00003345 trace_i915_gem_object_destroy(obj);
3346
Chris Wilson1488fc02012-04-24 15:47:31 +01003347 if (obj->phys_obj)
3348 i915_gem_detach_phys_object(dev, obj);
3349
3350 obj->pin_count = 0;
3351 if (WARN_ON(i915_gem_object_unbind(obj) == -ERESTARTSYS)) {
3352 bool was_interruptible;
3353
3354 was_interruptible = dev_priv->mm.interruptible;
3355 dev_priv->mm.interruptible = false;
3356
3357 WARN_ON(i915_gem_object_unbind(obj));
3358
3359 dev_priv->mm.interruptible = was_interruptible;
3360 }
3361
Chris Wilson05394f32010-11-08 19:18:58 +00003362 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003363 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003364
Chris Wilson05394f32010-11-08 19:18:58 +00003365 drm_gem_object_release(&obj->base);
3366 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003367
Chris Wilson05394f32010-11-08 19:18:58 +00003368 kfree(obj->bit_17);
3369 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003370}
3371
Jesse Barnes5669fca2009-02-17 15:13:31 -08003372int
Eric Anholt673a3942008-07-30 12:06:12 -07003373i915_gem_idle(struct drm_device *dev)
3374{
3375 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003376 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003377
Keith Packard6dbe2772008-10-14 21:41:13 -07003378 mutex_lock(&dev->struct_mutex);
3379
Chris Wilson87acb0a2010-10-19 10:13:00 +01003380 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003381 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003382 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003383 }
Eric Anholt673a3942008-07-30 12:06:12 -07003384
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003385 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003386 if (ret) {
3387 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003388 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003389 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003390 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003391
Chris Wilson29105cc2010-01-07 10:39:13 +00003392 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01003393 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3394 i915_gem_evict_everything(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003395
Chris Wilson312817a2010-11-22 11:50:11 +00003396 i915_gem_reset_fences(dev);
3397
Chris Wilson29105cc2010-01-07 10:39:13 +00003398 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3399 * We need to replace this with a semaphore, or something.
3400 * And not confound mm.suspended!
3401 */
3402 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003403 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003404
3405 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003406 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003407
Keith Packard6dbe2772008-10-14 21:41:13 -07003408 mutex_unlock(&dev->struct_mutex);
3409
Chris Wilson29105cc2010-01-07 10:39:13 +00003410 /* Cancel the retire work handler, which should be idle now. */
3411 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3412
Eric Anholt673a3942008-07-30 12:06:12 -07003413 return 0;
3414}
3415
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003416void i915_gem_init_swizzling(struct drm_device *dev)
3417{
3418 drm_i915_private_t *dev_priv = dev->dev_private;
3419
Daniel Vetter11782b02012-01-31 16:47:55 +01003420 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003421 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3422 return;
3423
3424 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3425 DISP_TILE_SURFACE_SWIZZLING);
3426
Daniel Vetter11782b02012-01-31 16:47:55 +01003427 if (IS_GEN5(dev))
3428 return;
3429
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003430 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3431 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02003432 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003433 else
Daniel Vetter6b26c862012-04-24 14:04:12 +02003434 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003435}
Daniel Vettere21af882012-02-09 20:53:27 +01003436
3437void i915_gem_init_ppgtt(struct drm_device *dev)
3438{
3439 drm_i915_private_t *dev_priv = dev->dev_private;
3440 uint32_t pd_offset;
3441 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003442 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3443 uint32_t __iomem *pd_addr;
3444 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003445 int i;
3446
3447 if (!dev_priv->mm.aliasing_ppgtt)
3448 return;
3449
Daniel Vetter55a254a2012-03-22 00:14:43 +01003450
3451 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3452 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3453 dma_addr_t pt_addr;
3454
3455 if (dev_priv->mm.gtt->needs_dmar)
3456 pt_addr = ppgtt->pt_dma_addr[i];
3457 else
3458 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3459
3460 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3461 pd_entry |= GEN6_PDE_VALID;
3462
3463 writel(pd_entry, pd_addr + i);
3464 }
3465 readl(pd_addr);
3466
3467 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003468 pd_offset /= 64; /* in cachelines, */
3469 pd_offset <<= 16;
3470
3471 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003472 uint32_t ecochk, gab_ctl, ecobits;
3473
3474 ecobits = I915_READ(GAC_ECO_BITS);
3475 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003476
3477 gab_ctl = I915_READ(GAB_CTL);
3478 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3479
3480 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003481 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3482 ECOCHK_PPGTT_CACHE64B);
Daniel Vetter6b26c862012-04-24 14:04:12 +02003483 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003484 } else if (INTEL_INFO(dev)->gen >= 7) {
3485 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3486 /* GFX_MODE is per-ring on gen7+ */
3487 }
3488
3489 for (i = 0; i < I915_NUM_RINGS; i++) {
3490 ring = &dev_priv->ring[i];
3491
3492 if (INTEL_INFO(dev)->gen >= 7)
3493 I915_WRITE(RING_MODE_GEN7(ring),
Daniel Vetter6b26c862012-04-24 14:04:12 +02003494 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003495
3496 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3497 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3498 }
3499}
3500
Eric Anholt673a3942008-07-30 12:06:12 -07003501int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003502i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003503{
3504 drm_i915_private_t *dev_priv = dev->dev_private;
3505 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003506
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003507 i915_gem_init_swizzling(dev);
3508
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003509 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003510 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003511 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003512
3513 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003514 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003515 if (ret)
3516 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003517 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003518
Chris Wilson549f7362010-10-19 11:19:32 +01003519 if (HAS_BLT(dev)) {
3520 ret = intel_init_blt_ring_buffer(dev);
3521 if (ret)
3522 goto cleanup_bsd_ring;
3523 }
3524
Chris Wilson6f392d52010-08-07 11:01:22 +01003525 dev_priv->next_seqno = 1;
3526
Daniel Vettere21af882012-02-09 20:53:27 +01003527 i915_gem_init_ppgtt(dev);
3528
Chris Wilson68f95ba2010-05-27 13:18:22 +01003529 return 0;
3530
Chris Wilson549f7362010-10-19 11:19:32 +01003531cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003532 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003533cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003534 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003535 return ret;
3536}
3537
Chris Wilson1070a422012-04-24 15:47:41 +01003538static bool
3539intel_enable_ppgtt(struct drm_device *dev)
3540{
3541 if (i915_enable_ppgtt >= 0)
3542 return i915_enable_ppgtt;
3543
3544#ifdef CONFIG_INTEL_IOMMU
3545 /* Disable ppgtt on SNB if VT-d is on. */
3546 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
3547 return false;
3548#endif
3549
3550 return true;
3551}
3552
3553int i915_gem_init(struct drm_device *dev)
3554{
3555 struct drm_i915_private *dev_priv = dev->dev_private;
3556 unsigned long gtt_size, mappable_size;
3557 int ret;
3558
3559 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
3560 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
3561
3562 mutex_lock(&dev->struct_mutex);
3563 if (intel_enable_ppgtt(dev) && HAS_ALIASING_PPGTT(dev)) {
3564 /* PPGTT pdes are stolen from global gtt ptes, so shrink the
3565 * aperture accordingly when using aliasing ppgtt. */
3566 gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
3567
3568 i915_gem_init_global_gtt(dev, 0, mappable_size, gtt_size);
3569
3570 ret = i915_gem_init_aliasing_ppgtt(dev);
3571 if (ret) {
3572 mutex_unlock(&dev->struct_mutex);
3573 return ret;
3574 }
3575 } else {
3576 /* Let GEM Manage all of the aperture.
3577 *
3578 * However, leave one page at the end still bound to the scratch
3579 * page. There are a number of places where the hardware
3580 * apparently prefetches past the end of the object, and we've
3581 * seen multiple hangs with the GPU head pointer stuck in a
3582 * batchbuffer bound at the last page of the aperture. One page
3583 * should be enough to keep any prefetching inside of the
3584 * aperture.
3585 */
3586 i915_gem_init_global_gtt(dev, 0, mappable_size,
3587 gtt_size);
3588 }
3589
3590 ret = i915_gem_init_hw(dev);
3591 mutex_unlock(&dev->struct_mutex);
3592 if (ret) {
3593 i915_gem_cleanup_aliasing_ppgtt(dev);
3594 return ret;
3595 }
3596
3597 /* Allow hardware batchbuffers unless told otherwise. */
3598 dev_priv->allow_batchbuffer = 1;
3599 return 0;
3600}
3601
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003602void
3603i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3604{
3605 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003606 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003607
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003608 for (i = 0; i < I915_NUM_RINGS; i++)
3609 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003610}
3611
3612int
Eric Anholt673a3942008-07-30 12:06:12 -07003613i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3614 struct drm_file *file_priv)
3615{
3616 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003617 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003618
Jesse Barnes79e53942008-11-07 14:24:08 -08003619 if (drm_core_check_feature(dev, DRIVER_MODESET))
3620 return 0;
3621
Ben Gamariba1234d2009-09-14 17:48:47 -04003622 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003623 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003624 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003625 }
3626
Eric Anholt673a3942008-07-30 12:06:12 -07003627 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003628 dev_priv->mm.suspended = 0;
3629
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003630 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003631 if (ret != 0) {
3632 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003633 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003634 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003635
Chris Wilson69dc4982010-10-19 10:36:51 +01003636 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003637 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3638 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003639 for (i = 0; i < I915_NUM_RINGS; i++) {
3640 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3641 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3642 }
Eric Anholt673a3942008-07-30 12:06:12 -07003643 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003644
Chris Wilson5f353082010-06-07 14:03:03 +01003645 ret = drm_irq_install(dev);
3646 if (ret)
3647 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003648
Eric Anholt673a3942008-07-30 12:06:12 -07003649 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003650
3651cleanup_ringbuffer:
3652 mutex_lock(&dev->struct_mutex);
3653 i915_gem_cleanup_ringbuffer(dev);
3654 dev_priv->mm.suspended = 1;
3655 mutex_unlock(&dev->struct_mutex);
3656
3657 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003658}
3659
3660int
3661i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3662 struct drm_file *file_priv)
3663{
Jesse Barnes79e53942008-11-07 14:24:08 -08003664 if (drm_core_check_feature(dev, DRIVER_MODESET))
3665 return 0;
3666
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003667 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003668 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003669}
3670
3671void
3672i915_gem_lastclose(struct drm_device *dev)
3673{
3674 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003675
Eric Anholte806b492009-01-22 09:56:58 -08003676 if (drm_core_check_feature(dev, DRIVER_MODESET))
3677 return;
3678
Keith Packard6dbe2772008-10-14 21:41:13 -07003679 ret = i915_gem_idle(dev);
3680 if (ret)
3681 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003682}
3683
Chris Wilson64193402010-10-24 12:38:05 +01003684static void
3685init_ring_lists(struct intel_ring_buffer *ring)
3686{
3687 INIT_LIST_HEAD(&ring->active_list);
3688 INIT_LIST_HEAD(&ring->request_list);
3689 INIT_LIST_HEAD(&ring->gpu_write_list);
3690}
3691
Eric Anholt673a3942008-07-30 12:06:12 -07003692void
3693i915_gem_load(struct drm_device *dev)
3694{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003695 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003696 drm_i915_private_t *dev_priv = dev->dev_private;
3697
Chris Wilson69dc4982010-10-19 10:36:51 +01003698 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003699 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3700 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003701 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003702 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003703 for (i = 0; i < I915_NUM_RINGS; i++)
3704 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003705 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003706 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003707 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3708 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003709 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003710
Dave Airlie94400122010-07-20 13:15:31 +10003711 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3712 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02003713 I915_WRITE(MI_ARB_STATE,
3714 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10003715 }
3716
Chris Wilson72bfa192010-12-19 11:42:05 +00003717 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3718
Jesse Barnesde151cf2008-11-12 10:03:55 -08003719 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003720 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3721 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003722
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003723 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003724 dev_priv->num_fence_regs = 16;
3725 else
3726 dev_priv->num_fence_regs = 8;
3727
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003728 /* Initialize fence registers to zero */
Chris Wilsonada726c2012-04-17 15:31:32 +01003729 i915_gem_reset_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07003730
Eric Anholt673a3942008-07-30 12:06:12 -07003731 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003732 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003733
Chris Wilsonce453d82011-02-21 14:43:56 +00003734 dev_priv->mm.interruptible = true;
3735
Chris Wilson17250b72010-10-28 12:51:39 +01003736 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3737 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3738 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003739}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003740
3741/*
3742 * Create a physically contiguous memory object for this object
3743 * e.g. for cursor + overlay regs
3744 */
Chris Wilson995b6762010-08-20 13:23:26 +01003745static int i915_gem_init_phys_object(struct drm_device *dev,
3746 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003747{
3748 drm_i915_private_t *dev_priv = dev->dev_private;
3749 struct drm_i915_gem_phys_object *phys_obj;
3750 int ret;
3751
3752 if (dev_priv->mm.phys_objs[id - 1] || !size)
3753 return 0;
3754
Eric Anholt9a298b22009-03-24 12:23:04 -07003755 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003756 if (!phys_obj)
3757 return -ENOMEM;
3758
3759 phys_obj->id = id;
3760
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003761 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003762 if (!phys_obj->handle) {
3763 ret = -ENOMEM;
3764 goto kfree_obj;
3765 }
3766#ifdef CONFIG_X86
3767 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3768#endif
3769
3770 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3771
3772 return 0;
3773kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003774 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003775 return ret;
3776}
3777
Chris Wilson995b6762010-08-20 13:23:26 +01003778static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003779{
3780 drm_i915_private_t *dev_priv = dev->dev_private;
3781 struct drm_i915_gem_phys_object *phys_obj;
3782
3783 if (!dev_priv->mm.phys_objs[id - 1])
3784 return;
3785
3786 phys_obj = dev_priv->mm.phys_objs[id - 1];
3787 if (phys_obj->cur_obj) {
3788 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3789 }
3790
3791#ifdef CONFIG_X86
3792 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3793#endif
3794 drm_pci_free(dev, phys_obj->handle);
3795 kfree(phys_obj);
3796 dev_priv->mm.phys_objs[id - 1] = NULL;
3797}
3798
3799void i915_gem_free_all_phys_object(struct drm_device *dev)
3800{
3801 int i;
3802
Dave Airlie260883c2009-01-22 17:58:49 +10003803 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003804 i915_gem_free_phys_object(dev, i);
3805}
3806
3807void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003808 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003809{
Chris Wilson05394f32010-11-08 19:18:58 +00003810 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003811 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003812 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003813 int page_count;
3814
Chris Wilson05394f32010-11-08 19:18:58 +00003815 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003816 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003817 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003818
Chris Wilson05394f32010-11-08 19:18:58 +00003819 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003820 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003821 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003822 if (!IS_ERR(page)) {
3823 char *dst = kmap_atomic(page);
3824 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3825 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003826
Chris Wilsone5281cc2010-10-28 13:45:36 +01003827 drm_clflush_pages(&page, 1);
3828
3829 set_page_dirty(page);
3830 mark_page_accessed(page);
3831 page_cache_release(page);
3832 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003833 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003834 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003835
Chris Wilson05394f32010-11-08 19:18:58 +00003836 obj->phys_obj->cur_obj = NULL;
3837 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003838}
3839
3840int
3841i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003842 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003843 int id,
3844 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003845{
Chris Wilson05394f32010-11-08 19:18:58 +00003846 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003847 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003848 int ret = 0;
3849 int page_count;
3850 int i;
3851
3852 if (id > I915_MAX_PHYS_OBJECT)
3853 return -EINVAL;
3854
Chris Wilson05394f32010-11-08 19:18:58 +00003855 if (obj->phys_obj) {
3856 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003857 return 0;
3858 i915_gem_detach_phys_object(dev, obj);
3859 }
3860
Dave Airlie71acb5e2008-12-30 20:31:46 +10003861 /* create a new object */
3862 if (!dev_priv->mm.phys_objs[id - 1]) {
3863 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003864 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003865 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003866 DRM_ERROR("failed to init phys object %d size: %zu\n",
3867 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003868 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003869 }
3870 }
3871
3872 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003873 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3874 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003875
Chris Wilson05394f32010-11-08 19:18:58 +00003876 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003877
3878 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003879 struct page *page;
3880 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003881
Hugh Dickins5949eac2011-06-27 16:18:18 -07003882 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003883 if (IS_ERR(page))
3884 return PTR_ERR(page);
3885
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003886 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003887 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003888 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003889 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003890
3891 mark_page_accessed(page);
3892 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003893 }
3894
3895 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003896}
3897
3898static int
Chris Wilson05394f32010-11-08 19:18:58 +00003899i915_gem_phys_pwrite(struct drm_device *dev,
3900 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003901 struct drm_i915_gem_pwrite *args,
3902 struct drm_file *file_priv)
3903{
Chris Wilson05394f32010-11-08 19:18:58 +00003904 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003905 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003906
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003907 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3908 unsigned long unwritten;
3909
3910 /* The physical object once assigned is fixed for the lifetime
3911 * of the obj, so we can safely drop the lock and continue
3912 * to access vaddr.
3913 */
3914 mutex_unlock(&dev->struct_mutex);
3915 unwritten = copy_from_user(vaddr, user_data, args->size);
3916 mutex_lock(&dev->struct_mutex);
3917 if (unwritten)
3918 return -EFAULT;
3919 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003920
Daniel Vetter40ce6572010-11-05 18:12:18 +01003921 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003922 return 0;
3923}
Eric Anholtb9624422009-06-03 07:27:35 +00003924
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003925void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003926{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003927 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003928
3929 /* Clean up our request list when the client is going away, so that
3930 * later retire_requests won't dereference our soon-to-be-gone
3931 * file_priv.
3932 */
Chris Wilson1c255952010-09-26 11:03:27 +01003933 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003934 while (!list_empty(&file_priv->mm.request_list)) {
3935 struct drm_i915_gem_request *request;
3936
3937 request = list_first_entry(&file_priv->mm.request_list,
3938 struct drm_i915_gem_request,
3939 client_list);
3940 list_del(&request->client_list);
3941 request->file_priv = NULL;
3942 }
Chris Wilson1c255952010-09-26 11:03:27 +01003943 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003944}
Chris Wilson31169712009-09-14 16:50:28 +01003945
Chris Wilson31169712009-09-14 16:50:28 +01003946static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003947i915_gpu_is_active(struct drm_device *dev)
3948{
3949 drm_i915_private_t *dev_priv = dev->dev_private;
3950 int lists_empty;
3951
Chris Wilson1637ef42010-04-20 17:10:35 +01003952 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003953 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003954
3955 return !lists_empty;
3956}
3957
3958static int
Ying Han1495f232011-05-24 17:12:27 -07003959i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01003960{
Chris Wilson17250b72010-10-28 12:51:39 +01003961 struct drm_i915_private *dev_priv =
3962 container_of(shrinker,
3963 struct drm_i915_private,
3964 mm.inactive_shrinker);
3965 struct drm_device *dev = dev_priv->dev;
3966 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07003967 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01003968 int cnt;
3969
3970 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01003971 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01003972
3973 /* "fast-path" to count number of available objects */
3974 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01003975 cnt = 0;
3976 list_for_each_entry(obj,
3977 &dev_priv->mm.inactive_list,
3978 mm_list)
3979 cnt++;
3980 mutex_unlock(&dev->struct_mutex);
3981 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01003982 }
3983
Chris Wilson1637ef42010-04-20 17:10:35 +01003984rescan:
Chris Wilson31169712009-09-14 16:50:28 +01003985 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01003986 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01003987
Chris Wilson17250b72010-10-28 12:51:39 +01003988 list_for_each_entry_safe(obj, next,
3989 &dev_priv->mm.inactive_list,
3990 mm_list) {
3991 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00003992 if (i915_gem_object_unbind(obj) == 0 &&
3993 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01003994 break;
Chris Wilson31169712009-09-14 16:50:28 +01003995 }
Chris Wilson31169712009-09-14 16:50:28 +01003996 }
3997
3998 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01003999 cnt = 0;
4000 list_for_each_entry_safe(obj, next,
4001 &dev_priv->mm.inactive_list,
4002 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004003 if (nr_to_scan &&
4004 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004005 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004006 else
Chris Wilson17250b72010-10-28 12:51:39 +01004007 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004008 }
4009
Chris Wilson17250b72010-10-28 12:51:39 +01004010 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004011 /*
4012 * We are desperate for pages, so as a last resort, wait
4013 * for the GPU to finish and discard whatever we can.
4014 * This has a dramatic impact to reduce the number of
4015 * OOM-killer events whilst running the GPU aggressively.
4016 */
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004017 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004018 goto rescan;
4019 }
Chris Wilson17250b72010-10-28 12:51:39 +01004020 mutex_unlock(&dev->struct_mutex);
4021 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004022}