blob: e09ac3a95308b4b2f994e8101a58ebc0f549166e [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);
49static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070050
Chris Wilson61050802012-04-17 15:31:31 +010051static void i915_gem_write_fence(struct drm_device *dev, int reg,
52 struct drm_i915_gem_object *obj);
53static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
54 struct drm_i915_fence_reg *fence,
55 bool enable);
56
Chris Wilson17250b72010-10-28 12:51:39 +010057static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070058 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010059static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010060
Chris Wilson61050802012-04-17 15:31:31 +010061static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
62{
63 if (obj->tiling_mode)
64 i915_gem_release_mmap(obj);
65
66 /* As we do not have an associated fence register, we will force
67 * a tiling change if we ever need to acquire one.
68 */
69 obj->tiling_changed = false;
70 obj->fence_reg = I915_FENCE_REG_NONE;
71}
72
Chris Wilson73aa8082010-09-30 11:46:12 +010073/* some bookkeeping */
74static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
75 size_t size)
76{
77 dev_priv->mm.object_count++;
78 dev_priv->mm.object_memory += size;
79}
80
81static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
82 size_t size)
83{
84 dev_priv->mm.object_count--;
85 dev_priv->mm.object_memory -= size;
86}
87
Chris Wilson21dd3732011-01-26 15:55:56 +000088static int
89i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010090{
91 struct drm_i915_private *dev_priv = dev->dev_private;
92 struct completion *x = &dev_priv->error_completion;
93 unsigned long flags;
94 int ret;
95
96 if (!atomic_read(&dev_priv->mm.wedged))
97 return 0;
98
99 ret = wait_for_completion_interruptible(x);
100 if (ret)
101 return ret;
102
Chris Wilson21dd3732011-01-26 15:55:56 +0000103 if (atomic_read(&dev_priv->mm.wedged)) {
104 /* GPU is hung, bump the completion count to account for
105 * the token we just consumed so that we never hit zero and
106 * end up waiting upon a subsequent completion event that
107 * will never happen.
108 */
109 spin_lock_irqsave(&x->wait.lock, flags);
110 x->done++;
111 spin_unlock_irqrestore(&x->wait.lock, flags);
112 }
113 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100114}
115
Chris Wilson54cf91d2010-11-25 18:00:26 +0000116int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100117{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100118 int ret;
119
Chris Wilson21dd3732011-01-26 15:55:56 +0000120 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100121 if (ret)
122 return ret;
123
124 ret = mutex_lock_interruptible(&dev->struct_mutex);
125 if (ret)
126 return ret;
127
Chris Wilson23bc5982010-09-29 16:10:57 +0100128 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100129 return 0;
130}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100131
Chris Wilson7d1c4802010-08-07 21:45:03 +0100132static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000133i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100134{
Chris Wilson05394f32010-11-08 19:18:58 +0000135 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100136}
137
Eric Anholt673a3942008-07-30 12:06:12 -0700138int
139i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000140 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700141{
Eric Anholt673a3942008-07-30 12:06:12 -0700142 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000143
144 if (args->gtt_start >= args->gtt_end ||
145 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
146 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700147
Daniel Vetterf534bc02012-03-26 22:37:04 +0200148 /* GEM with user mode setting was never supported on ilk and later. */
149 if (INTEL_INFO(dev)->gen >= 5)
150 return -ENODEV;
151
Eric Anholt673a3942008-07-30 12:06:12 -0700152 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200153 i915_gem_init_global_gtt(dev, args->gtt_start,
154 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700155 mutex_unlock(&dev->struct_mutex);
156
Chris Wilson20217462010-11-23 15:26:33 +0000157 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700158}
159
Eric Anholt5a125c32008-10-22 21:40:13 -0700160int
161i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000162 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700163{
Chris Wilson73aa8082010-09-30 11:46:12 +0100164 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700165 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000166 struct drm_i915_gem_object *obj;
167 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700168
169 if (!(dev->driver->driver_features & DRIVER_GEM))
170 return -ENODEV;
171
Chris Wilson6299f992010-11-24 12:23:44 +0000172 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100173 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000174 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
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;
246 return i915_gem_create(file, dev,
247 args->size, &args->handle);
248}
249
Chris Wilson05394f32010-11-08 19:18:58 +0000250static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700251{
Chris Wilson05394f32010-11-08 19:18:58 +0000252 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700253
254 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000255 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700256}
257
Daniel Vetter8c599672011-12-14 13:57:31 +0100258static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100259__copy_to_user_swizzled(char __user *cpu_vaddr,
260 const char *gpu_vaddr, int gpu_offset,
261 int length)
262{
263 int ret, cpu_offset = 0;
264
265 while (length > 0) {
266 int cacheline_end = ALIGN(gpu_offset + 1, 64);
267 int this_length = min(cacheline_end - gpu_offset, length);
268 int swizzled_gpu_offset = gpu_offset ^ 64;
269
270 ret = __copy_to_user(cpu_vaddr + cpu_offset,
271 gpu_vaddr + swizzled_gpu_offset,
272 this_length);
273 if (ret)
274 return ret + length;
275
276 cpu_offset += this_length;
277 gpu_offset += this_length;
278 length -= this_length;
279 }
280
281 return 0;
282}
283
284static inline int
Daniel Vetter8c599672011-12-14 13:57:31 +0100285__copy_from_user_swizzled(char __user *gpu_vaddr, int gpu_offset,
286 const char *cpu_vaddr,
287 int length)
288{
289 int ret, cpu_offset = 0;
290
291 while (length > 0) {
292 int cacheline_end = ALIGN(gpu_offset + 1, 64);
293 int this_length = min(cacheline_end - gpu_offset, length);
294 int swizzled_gpu_offset = gpu_offset ^ 64;
295
296 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
297 cpu_vaddr + cpu_offset,
298 this_length);
299 if (ret)
300 return ret + length;
301
302 cpu_offset += this_length;
303 gpu_offset += this_length;
304 length -= this_length;
305 }
306
307 return 0;
308}
309
Daniel Vetterd174bd62012-03-25 19:47:40 +0200310/* Per-page copy function for the shmem pread fastpath.
311 * Flushes invalid cachelines before reading the target if
312 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700313static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200314shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
315 char __user *user_data,
316 bool page_do_bit17_swizzling, bool needs_clflush)
317{
318 char *vaddr;
319 int ret;
320
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200321 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200322 return -EINVAL;
323
324 vaddr = kmap_atomic(page);
325 if (needs_clflush)
326 drm_clflush_virt_range(vaddr + shmem_page_offset,
327 page_length);
328 ret = __copy_to_user_inatomic(user_data,
329 vaddr + shmem_page_offset,
330 page_length);
331 kunmap_atomic(vaddr);
332
333 return ret;
334}
335
Daniel Vetter23c18c72012-03-25 19:47:42 +0200336static void
337shmem_clflush_swizzled_range(char *addr, unsigned long length,
338 bool swizzled)
339{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200340 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200341 unsigned long start = (unsigned long) addr;
342 unsigned long end = (unsigned long) addr + length;
343
344 /* For swizzling simply ensure that we always flush both
345 * channels. Lame, but simple and it works. Swizzled
346 * pwrite/pread is far from a hotpath - current userspace
347 * doesn't use it at all. */
348 start = round_down(start, 128);
349 end = round_up(end, 128);
350
351 drm_clflush_virt_range((void *)start, end - start);
352 } else {
353 drm_clflush_virt_range(addr, length);
354 }
355
356}
357
Daniel Vetterd174bd62012-03-25 19:47:40 +0200358/* Only difference to the fast-path function is that this can handle bit17
359 * and uses non-atomic copy and kmap functions. */
360static int
361shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
362 char __user *user_data,
363 bool page_do_bit17_swizzling, bool needs_clflush)
364{
365 char *vaddr;
366 int ret;
367
368 vaddr = kmap(page);
369 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200370 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
371 page_length,
372 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200373
374 if (page_do_bit17_swizzling)
375 ret = __copy_to_user_swizzled(user_data,
376 vaddr, shmem_page_offset,
377 page_length);
378 else
379 ret = __copy_to_user(user_data,
380 vaddr + shmem_page_offset,
381 page_length);
382 kunmap(page);
383
384 return ret;
385}
386
Eric Anholteb014592009-03-10 11:44:52 -0700387static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200388i915_gem_shmem_pread(struct drm_device *dev,
389 struct drm_i915_gem_object *obj,
390 struct drm_i915_gem_pread *args,
391 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700392{
Chris Wilson05394f32010-11-08 19:18:58 +0000393 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100394 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700395 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100396 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100397 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100398 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200399 int hit_slowpath = 0;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200400 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200401 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200402 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700403
Daniel Vetter8461d222011-12-14 13:57:32 +0100404 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700405 remain = args->size;
406
Daniel Vetter8461d222011-12-14 13:57:32 +0100407 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700408
Daniel Vetter84897312012-03-25 19:47:31 +0200409 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
410 /* If we're not in the cpu read domain, set ourself into the gtt
411 * read domain and manually flush cachelines (if required). This
412 * optimizes for the case when the gpu will dirty the data
413 * anyway again before the next pread happens. */
414 if (obj->cache_level == I915_CACHE_NONE)
415 needs_clflush = 1;
416 ret = i915_gem_object_set_to_gtt_domain(obj, false);
417 if (ret)
418 return ret;
419 }
Eric Anholteb014592009-03-10 11:44:52 -0700420
Eric Anholteb014592009-03-10 11:44:52 -0700421 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100422
Eric Anholteb014592009-03-10 11:44:52 -0700423 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100424 struct page *page;
425
Eric Anholteb014592009-03-10 11:44:52 -0700426 /* Operation in this page
427 *
Eric Anholteb014592009-03-10 11:44:52 -0700428 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700429 * page_length = bytes to copy for this page
430 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100431 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700432 page_length = remain;
433 if ((shmem_page_offset + page_length) > PAGE_SIZE)
434 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700435
Daniel Vetter692a5762012-03-25 19:47:34 +0200436 if (obj->pages) {
437 page = obj->pages[offset >> PAGE_SHIFT];
438 release_page = 0;
439 } else {
440 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
441 if (IS_ERR(page)) {
442 ret = PTR_ERR(page);
443 goto out;
444 }
445 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000446 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100447
Daniel Vetter8461d222011-12-14 13:57:32 +0100448 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
449 (page_to_phys(page) & (1 << 17)) != 0;
450
Daniel Vetterd174bd62012-03-25 19:47:40 +0200451 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
452 user_data, page_do_bit17_swizzling,
453 needs_clflush);
454 if (ret == 0)
455 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700456
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200457 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200458 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200459 mutex_unlock(&dev->struct_mutex);
460
Daniel Vetter96d79b52012-03-25 19:47:36 +0200461 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200462 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200463 /* Userspace is tricking us, but we've already clobbered
464 * its pages with the prefault and promised to write the
465 * data up to the first fault. Hence ignore any errors
466 * and just continue. */
467 (void)ret;
468 prefaulted = 1;
469 }
470
Daniel Vetterd174bd62012-03-25 19:47:40 +0200471 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
472 user_data, page_do_bit17_swizzling,
473 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700474
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200475 mutex_lock(&dev->struct_mutex);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100476 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200477next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100478 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200479 if (release_page)
480 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100481
Daniel Vetter8461d222011-12-14 13:57:32 +0100482 if (ret) {
483 ret = -EFAULT;
484 goto out;
485 }
486
Eric Anholteb014592009-03-10 11:44:52 -0700487 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100488 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700489 offset += page_length;
490 }
491
Chris Wilson4f27b752010-10-14 15:26:45 +0100492out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200493 if (hit_slowpath) {
494 /* Fixup: Kill any reinstated backing storage pages */
495 if (obj->madv == __I915_MADV_PURGED)
496 i915_gem_object_truncate(obj);
497 }
Eric Anholteb014592009-03-10 11:44:52 -0700498
499 return ret;
500}
501
Eric Anholt673a3942008-07-30 12:06:12 -0700502/**
503 * Reads data from the object referenced by handle.
504 *
505 * On error, the contents of *data are undefined.
506 */
507int
508i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000509 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700510{
511 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000512 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100513 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700514
Chris Wilson51311d02010-11-17 09:10:42 +0000515 if (args->size == 0)
516 return 0;
517
518 if (!access_ok(VERIFY_WRITE,
519 (char __user *)(uintptr_t)args->data_ptr,
520 args->size))
521 return -EFAULT;
522
Chris Wilson4f27b752010-10-14 15:26:45 +0100523 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100524 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100525 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700526
Chris Wilson05394f32010-11-08 19:18:58 +0000527 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000528 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100529 ret = -ENOENT;
530 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100531 }
Eric Anholt673a3942008-07-30 12:06:12 -0700532
Chris Wilson7dcd2492010-09-26 20:21:44 +0100533 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000534 if (args->offset > obj->base.size ||
535 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100536 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100537 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100538 }
539
Chris Wilsondb53a302011-02-03 11:57:46 +0000540 trace_i915_gem_object_pread(obj, args->offset, args->size);
541
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200542 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700543
Chris Wilson35b62a82010-09-26 20:23:38 +0100544out:
Chris Wilson05394f32010-11-08 19:18:58 +0000545 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100546unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100547 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700548 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700549}
550
Keith Packard0839ccb2008-10-30 19:38:48 -0700551/* This is the fast write path which cannot handle
552 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700553 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700554
Keith Packard0839ccb2008-10-30 19:38:48 -0700555static inline int
556fast_user_write(struct io_mapping *mapping,
557 loff_t page_base, int page_offset,
558 char __user *user_data,
559 int length)
560{
561 char *vaddr_atomic;
562 unsigned long unwritten;
563
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700564 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700565 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
566 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700567 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100568 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700569}
570
Eric Anholt3de09aa2009-03-09 09:42:23 -0700571/**
572 * This is the fast pwrite path, where we copy the data directly from the
573 * user into the GTT, uncached.
574 */
Eric Anholt673a3942008-07-30 12:06:12 -0700575static int
Chris Wilson05394f32010-11-08 19:18:58 +0000576i915_gem_gtt_pwrite_fast(struct drm_device *dev,
577 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700578 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000579 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700580{
Keith Packard0839ccb2008-10-30 19:38:48 -0700581 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700582 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700583 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700584 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200585 int page_offset, page_length, ret;
586
587 ret = i915_gem_object_pin(obj, 0, true);
588 if (ret)
589 goto out;
590
591 ret = i915_gem_object_set_to_gtt_domain(obj, true);
592 if (ret)
593 goto out_unpin;
594
595 ret = i915_gem_object_put_fence(obj);
596 if (ret)
597 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700598
599 user_data = (char __user *) (uintptr_t) args->data_ptr;
600 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700601
Chris Wilson05394f32010-11-08 19:18:58 +0000602 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700603
604 while (remain > 0) {
605 /* Operation in this page
606 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700607 * page_base = page offset within aperture
608 * page_offset = offset within page
609 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700610 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100611 page_base = offset & PAGE_MASK;
612 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700613 page_length = remain;
614 if ((page_offset + remain) > PAGE_SIZE)
615 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700616
Keith Packard0839ccb2008-10-30 19:38:48 -0700617 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700618 * source page isn't available. Return the error and we'll
619 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700620 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100621 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200622 page_offset, user_data, page_length)) {
623 ret = -EFAULT;
624 goto out_unpin;
625 }
Eric Anholt673a3942008-07-30 12:06:12 -0700626
Keith Packard0839ccb2008-10-30 19:38:48 -0700627 remain -= page_length;
628 user_data += page_length;
629 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700630 }
Eric Anholt673a3942008-07-30 12:06:12 -0700631
Daniel Vetter935aaa62012-03-25 19:47:35 +0200632out_unpin:
633 i915_gem_object_unpin(obj);
634out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700635 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700636}
637
Daniel Vetterd174bd62012-03-25 19:47:40 +0200638/* Per-page copy function for the shmem pwrite fastpath.
639 * Flushes invalid cachelines before writing to the target if
640 * needs_clflush_before is set and flushes out any written cachelines after
641 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700642static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200643shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
644 char __user *user_data,
645 bool page_do_bit17_swizzling,
646 bool needs_clflush_before,
647 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700648{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200649 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700650 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700651
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200652 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200653 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700654
Daniel Vetterd174bd62012-03-25 19:47:40 +0200655 vaddr = kmap_atomic(page);
656 if (needs_clflush_before)
657 drm_clflush_virt_range(vaddr + shmem_page_offset,
658 page_length);
659 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
660 user_data,
661 page_length);
662 if (needs_clflush_after)
663 drm_clflush_virt_range(vaddr + shmem_page_offset,
664 page_length);
665 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700666
667 return ret;
668}
669
Daniel Vetterd174bd62012-03-25 19:47:40 +0200670/* Only difference to the fast-path function is that this can handle bit17
671 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700672static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200673shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
674 char __user *user_data,
675 bool page_do_bit17_swizzling,
676 bool needs_clflush_before,
677 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700678{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200679 char *vaddr;
680 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700681
Daniel Vetterd174bd62012-03-25 19:47:40 +0200682 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200683 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200684 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
685 page_length,
686 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200687 if (page_do_bit17_swizzling)
688 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100689 user_data,
690 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200691 else
692 ret = __copy_from_user(vaddr + shmem_page_offset,
693 user_data,
694 page_length);
695 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200696 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
697 page_length,
698 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200699 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100700
Daniel Vetterd174bd62012-03-25 19:47:40 +0200701 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700702}
703
Eric Anholt40123c12009-03-09 13:42:30 -0700704static int
Daniel Vettere244a442012-03-25 19:47:28 +0200705i915_gem_shmem_pwrite(struct drm_device *dev,
706 struct drm_i915_gem_object *obj,
707 struct drm_i915_gem_pwrite *args,
708 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700709{
Chris Wilson05394f32010-11-08 19:18:58 +0000710 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700711 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100712 loff_t offset;
713 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100714 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100715 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200716 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200717 int needs_clflush_after = 0;
718 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200719 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700720
Daniel Vetter8c599672011-12-14 13:57:31 +0100721 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700722 remain = args->size;
723
Daniel Vetter8c599672011-12-14 13:57:31 +0100724 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700725
Daniel Vetter58642882012-03-25 19:47:37 +0200726 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
727 /* If we're not in the cpu write domain, set ourself into the gtt
728 * write domain and manually flush cachelines (if required). This
729 * optimizes for the case when the gpu will use the data
730 * right away and we therefore have to clflush anyway. */
731 if (obj->cache_level == I915_CACHE_NONE)
732 needs_clflush_after = 1;
733 ret = i915_gem_object_set_to_gtt_domain(obj, true);
734 if (ret)
735 return ret;
736 }
737 /* Same trick applies for invalidate partially written cachelines before
738 * writing. */
739 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
740 && obj->cache_level == I915_CACHE_NONE)
741 needs_clflush_before = 1;
742
Eric Anholt40123c12009-03-09 13:42:30 -0700743 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000744 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700745
746 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100747 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200748 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100749
Eric Anholt40123c12009-03-09 13:42:30 -0700750 /* Operation in this page
751 *
Eric Anholt40123c12009-03-09 13:42:30 -0700752 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700753 * page_length = bytes to copy for this page
754 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100755 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700756
757 page_length = remain;
758 if ((shmem_page_offset + page_length) > PAGE_SIZE)
759 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700760
Daniel Vetter58642882012-03-25 19:47:37 +0200761 /* If we don't overwrite a cacheline completely we need to be
762 * careful to have up-to-date data by first clflushing. Don't
763 * overcomplicate things and flush the entire patch. */
764 partial_cacheline_write = needs_clflush_before &&
765 ((shmem_page_offset | page_length)
766 & (boot_cpu_data.x86_clflush_size - 1));
767
Daniel Vetter692a5762012-03-25 19:47:34 +0200768 if (obj->pages) {
769 page = obj->pages[offset >> PAGE_SHIFT];
770 release_page = 0;
771 } else {
772 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
773 if (IS_ERR(page)) {
774 ret = PTR_ERR(page);
775 goto out;
776 }
777 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100778 }
779
Daniel Vetter8c599672011-12-14 13:57:31 +0100780 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
781 (page_to_phys(page) & (1 << 17)) != 0;
782
Daniel Vetterd174bd62012-03-25 19:47:40 +0200783 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
784 user_data, page_do_bit17_swizzling,
785 partial_cacheline_write,
786 needs_clflush_after);
787 if (ret == 0)
788 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700789
Daniel Vettere244a442012-03-25 19:47:28 +0200790 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200791 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200792 mutex_unlock(&dev->struct_mutex);
793
Daniel Vetterd174bd62012-03-25 19:47:40 +0200794 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
795 user_data, page_do_bit17_swizzling,
796 partial_cacheline_write,
797 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700798
Daniel Vettere244a442012-03-25 19:47:28 +0200799 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200800 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200801next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100802 set_page_dirty(page);
803 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200804 if (release_page)
805 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100806
Daniel Vetter8c599672011-12-14 13:57:31 +0100807 if (ret) {
808 ret = -EFAULT;
809 goto out;
810 }
811
Eric Anholt40123c12009-03-09 13:42:30 -0700812 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100813 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700814 offset += page_length;
815 }
816
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100817out:
Daniel Vettere244a442012-03-25 19:47:28 +0200818 if (hit_slowpath) {
819 /* Fixup: Kill any reinstated backing storage pages */
820 if (obj->madv == __I915_MADV_PURGED)
821 i915_gem_object_truncate(obj);
822 /* and flush dirty cachelines in case the object isn't in the cpu write
823 * domain anymore. */
824 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
825 i915_gem_clflush_object(obj);
826 intel_gtt_chipset_flush();
827 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100828 }
Eric Anholt40123c12009-03-09 13:42:30 -0700829
Daniel Vetter58642882012-03-25 19:47:37 +0200830 if (needs_clflush_after)
831 intel_gtt_chipset_flush();
832
Eric Anholt40123c12009-03-09 13:42:30 -0700833 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700834}
835
836/**
837 * Writes data to the object referenced by handle.
838 *
839 * On error, the contents of the buffer that were to be modified are undefined.
840 */
841int
842i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100843 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700844{
845 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000846 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000847 int ret;
848
849 if (args->size == 0)
850 return 0;
851
852 if (!access_ok(VERIFY_READ,
853 (char __user *)(uintptr_t)args->data_ptr,
854 args->size))
855 return -EFAULT;
856
Daniel Vetterf56f8212012-03-25 19:47:41 +0200857 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
858 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000859 if (ret)
860 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700861
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100862 ret = i915_mutex_lock_interruptible(dev);
863 if (ret)
864 return ret;
865
Chris Wilson05394f32010-11-08 19:18:58 +0000866 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000867 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100868 ret = -ENOENT;
869 goto unlock;
870 }
Eric Anholt673a3942008-07-30 12:06:12 -0700871
Chris Wilson7dcd2492010-09-26 20:21:44 +0100872 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000873 if (args->offset > obj->base.size ||
874 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100875 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100876 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100877 }
878
Chris Wilsondb53a302011-02-03 11:57:46 +0000879 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
880
Daniel Vetter935aaa62012-03-25 19:47:35 +0200881 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700882 /* We can only do the GTT pwrite on untiled buffers, as otherwise
883 * it would end up going through the fenced access, and we'll get
884 * different detiling behavior between reading and writing.
885 * pread/pwrite currently are reading and writing from the CPU
886 * perspective, requiring manual detiling by the client.
887 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100888 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100889 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100890 goto out;
891 }
892
893 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200894 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200895 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200896 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100897 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100898 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200899 /* Note that the gtt paths might fail with non-page-backed user
900 * pointers (e.g. gtt mappings when moving data between
901 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700902 }
Eric Anholt673a3942008-07-30 12:06:12 -0700903
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100904 if (ret == -EFAULT)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200905 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100906
Chris Wilson35b62a82010-09-26 20:23:38 +0100907out:
Chris Wilson05394f32010-11-08 19:18:58 +0000908 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100909unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100910 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700911 return ret;
912}
913
914/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800915 * Called when user space prepares to use an object with the CPU, either
916 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700917 */
918int
919i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000920 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700921{
922 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000923 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800924 uint32_t read_domains = args->read_domains;
925 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700926 int ret;
927
928 if (!(dev->driver->driver_features & DRIVER_GEM))
929 return -ENODEV;
930
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800931 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100932 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800933 return -EINVAL;
934
Chris Wilson21d509e2009-06-06 09:46:02 +0100935 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800936 return -EINVAL;
937
938 /* Having something in the write domain implies it's in the read
939 * domain, and only that read domain. Enforce that in the request.
940 */
941 if (write_domain != 0 && read_domains != write_domain)
942 return -EINVAL;
943
Chris Wilson76c1dec2010-09-25 11:22:51 +0100944 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100945 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100946 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700947
Chris Wilson05394f32010-11-08 19:18:58 +0000948 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000949 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100950 ret = -ENOENT;
951 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100952 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700953
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800954 if (read_domains & I915_GEM_DOMAIN_GTT) {
955 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800956
957 /* Silently promote "you're not bound, there was nothing to do"
958 * to success, since the client was just asking us to
959 * make sure everything was done.
960 */
961 if (ret == -EINVAL)
962 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800963 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800964 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800965 }
966
Chris Wilson05394f32010-11-08 19:18:58 +0000967 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100968unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700969 mutex_unlock(&dev->struct_mutex);
970 return ret;
971}
972
973/**
974 * Called when user space has done writes to this buffer
975 */
976int
977i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000978 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700979{
980 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000981 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700982 int ret = 0;
983
984 if (!(dev->driver->driver_features & DRIVER_GEM))
985 return -ENODEV;
986
Chris Wilson76c1dec2010-09-25 11:22:51 +0100987 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100988 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100989 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100990
Chris Wilson05394f32010-11-08 19:18:58 +0000991 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000992 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100993 ret = -ENOENT;
994 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700995 }
996
Eric Anholt673a3942008-07-30 12:06:12 -0700997 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000998 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800999 i915_gem_object_flush_cpu_write_domain(obj);
1000
Chris Wilson05394f32010-11-08 19:18:58 +00001001 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001002unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001003 mutex_unlock(&dev->struct_mutex);
1004 return ret;
1005}
1006
1007/**
1008 * Maps the contents of an object, returning the address it is mapped
1009 * into.
1010 *
1011 * While the mapping holds a reference on the contents of the object, it doesn't
1012 * imply a ref on the object itself.
1013 */
1014int
1015i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001016 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001017{
1018 struct drm_i915_gem_mmap *args = data;
1019 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001020 unsigned long addr;
1021
1022 if (!(dev->driver->driver_features & DRIVER_GEM))
1023 return -ENODEV;
1024
Chris Wilson05394f32010-11-08 19:18:58 +00001025 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001026 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001027 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001028
Eric Anholt673a3942008-07-30 12:06:12 -07001029 down_write(&current->mm->mmap_sem);
1030 addr = do_mmap(obj->filp, 0, args->size,
1031 PROT_READ | PROT_WRITE, MAP_SHARED,
1032 args->offset);
1033 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001034 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001035 if (IS_ERR((void *)addr))
1036 return addr;
1037
1038 args->addr_ptr = (uint64_t) addr;
1039
1040 return 0;
1041}
1042
Jesse Barnesde151cf2008-11-12 10:03:55 -08001043/**
1044 * i915_gem_fault - fault a page into the GTT
1045 * vma: VMA in question
1046 * vmf: fault info
1047 *
1048 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1049 * from userspace. The fault handler takes care of binding the object to
1050 * the GTT (if needed), allocating and programming a fence register (again,
1051 * only if needed based on whether the old reg is still valid or the object
1052 * is tiled) and inserting a new PTE into the faulting process.
1053 *
1054 * Note that the faulting process may involve evicting existing objects
1055 * from the GTT and/or fence registers to make room. So performance may
1056 * suffer if the GTT working set is large or there are few fence registers
1057 * left.
1058 */
1059int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1060{
Chris Wilson05394f32010-11-08 19:18:58 +00001061 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1062 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001063 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001064 pgoff_t page_offset;
1065 unsigned long pfn;
1066 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001067 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001068
1069 /* We don't use vmf->pgoff since that has the fake offset */
1070 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1071 PAGE_SHIFT;
1072
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001073 ret = i915_mutex_lock_interruptible(dev);
1074 if (ret)
1075 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001076
Chris Wilsondb53a302011-02-03 11:57:46 +00001077 trace_i915_gem_object_fault(obj, page_offset, true, write);
1078
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001079 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001080 if (!obj->map_and_fenceable) {
1081 ret = i915_gem_object_unbind(obj);
1082 if (ret)
1083 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001084 }
Chris Wilson05394f32010-11-08 19:18:58 +00001085 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001086 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001087 if (ret)
1088 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001089
Eric Anholte92d03b2011-06-14 16:43:09 -07001090 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1091 if (ret)
1092 goto unlock;
1093 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001094
Daniel Vetter74898d72012-02-15 23:50:22 +01001095 if (!obj->has_global_gtt_mapping)
1096 i915_gem_gtt_bind_object(obj, obj->cache_level);
1097
Chris Wilson06d98132012-04-17 15:31:24 +01001098 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001099 if (ret)
1100 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001101
Chris Wilson05394f32010-11-08 19:18:58 +00001102 if (i915_gem_object_is_inactive(obj))
1103 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001104
Chris Wilson6299f992010-11-24 12:23:44 +00001105 obj->fault_mappable = true;
1106
Chris Wilson05394f32010-11-08 19:18:58 +00001107 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001108 page_offset;
1109
1110 /* Finally, remap it using the new GTT offset */
1111 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001112unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001113 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001114out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001115 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001116 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001117 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001118 /* Give the error handler a chance to run and move the
1119 * objects off the GPU active list. Next time we service the
1120 * fault, we should be able to transition the page into the
1121 * GTT without touching the GPU (and so avoid further
1122 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1123 * with coherency, just lost writes.
1124 */
Chris Wilson045e7692010-11-07 09:18:22 +00001125 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001126 case 0:
1127 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001128 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001129 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001130 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001131 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001132 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001133 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001134 }
1135}
1136
1137/**
Chris Wilson901782b2009-07-10 08:18:50 +01001138 * i915_gem_release_mmap - remove physical page mappings
1139 * @obj: obj in question
1140 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001141 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001142 * relinquish ownership of the pages back to the system.
1143 *
1144 * It is vital that we remove the page mapping if we have mapped a tiled
1145 * object through the GTT and then lose the fence register due to
1146 * resource pressure. Similarly if the object has been moved out of the
1147 * aperture, than pages mapped into userspace must be revoked. Removing the
1148 * mapping will then trigger a page fault on the next user access, allowing
1149 * fixup by i915_gem_fault().
1150 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001151void
Chris Wilson05394f32010-11-08 19:18:58 +00001152i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001153{
Chris Wilson6299f992010-11-24 12:23:44 +00001154 if (!obj->fault_mappable)
1155 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001156
Chris Wilsonf6e47882011-03-20 21:09:12 +00001157 if (obj->base.dev->dev_mapping)
1158 unmap_mapping_range(obj->base.dev->dev_mapping,
1159 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1160 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001161
Chris Wilson6299f992010-11-24 12:23:44 +00001162 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001163}
1164
Chris Wilson92b88ae2010-11-09 11:47:32 +00001165static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001166i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001167{
Chris Wilsone28f8712011-07-18 13:11:49 -07001168 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001169
1170 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001171 tiling_mode == I915_TILING_NONE)
1172 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001173
1174 /* Previous chips need a power-of-two fence region when tiling */
1175 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001176 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001177 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001178 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001179
Chris Wilsone28f8712011-07-18 13:11:49 -07001180 while (gtt_size < size)
1181 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001182
Chris Wilsone28f8712011-07-18 13:11:49 -07001183 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001184}
1185
Jesse Barnesde151cf2008-11-12 10:03:55 -08001186/**
1187 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1188 * @obj: object to check
1189 *
1190 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001191 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001192 */
1193static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001194i915_gem_get_gtt_alignment(struct drm_device *dev,
1195 uint32_t size,
1196 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001197{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001198 /*
1199 * Minimum alignment is 4k (GTT page size), but might be greater
1200 * if a fence register is needed for the object.
1201 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001202 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001203 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001204 return 4096;
1205
1206 /*
1207 * Previous chips need to be aligned to the size of the smallest
1208 * fence register that can contain the object.
1209 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001210 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001211}
1212
Daniel Vetter5e783302010-11-14 22:32:36 +01001213/**
1214 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1215 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001216 * @dev: the device
1217 * @size: size of the object
1218 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001219 *
1220 * Return the required GTT alignment for an object, only taking into account
1221 * unfenced tiled surface requirements.
1222 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001223uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001224i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1225 uint32_t size,
1226 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001227{
Daniel Vetter5e783302010-11-14 22:32:36 +01001228 /*
1229 * Minimum alignment is 4k (GTT page size) for sane hw.
1230 */
1231 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001232 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001233 return 4096;
1234
Chris Wilsone28f8712011-07-18 13:11:49 -07001235 /* Previous hardware however needs to be aligned to a power-of-two
1236 * tile height. The simplest method for determining this is to reuse
1237 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001238 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001239 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001240}
1241
Jesse Barnesde151cf2008-11-12 10:03:55 -08001242int
Dave Airlieff72145b2011-02-07 12:16:14 +10001243i915_gem_mmap_gtt(struct drm_file *file,
1244 struct drm_device *dev,
1245 uint32_t handle,
1246 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001247{
Chris Wilsonda761a62010-10-27 17:37:08 +01001248 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001249 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001250 int ret;
1251
1252 if (!(dev->driver->driver_features & DRIVER_GEM))
1253 return -ENODEV;
1254
Chris Wilson76c1dec2010-09-25 11:22:51 +01001255 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001256 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001257 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001258
Dave Airlieff72145b2011-02-07 12:16:14 +10001259 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001260 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001261 ret = -ENOENT;
1262 goto unlock;
1263 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001264
Chris Wilson05394f32010-11-08 19:18:58 +00001265 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001266 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001267 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001268 }
1269
Chris Wilson05394f32010-11-08 19:18:58 +00001270 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001271 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001272 ret = -EINVAL;
1273 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001274 }
1275
Chris Wilson05394f32010-11-08 19:18:58 +00001276 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001277 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001278 if (ret)
1279 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001280 }
1281
Dave Airlieff72145b2011-02-07 12:16:14 +10001282 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001283
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001284out:
Chris Wilson05394f32010-11-08 19:18:58 +00001285 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001286unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001287 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001288 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001289}
1290
Dave Airlieff72145b2011-02-07 12:16:14 +10001291/**
1292 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1293 * @dev: DRM device
1294 * @data: GTT mapping ioctl data
1295 * @file: GEM object info
1296 *
1297 * Simply returns the fake offset to userspace so it can mmap it.
1298 * The mmap call will end up in drm_gem_mmap(), which will set things
1299 * up so we can get faults in the handler above.
1300 *
1301 * The fault handler will take care of binding the object into the GTT
1302 * (since it may have been evicted to make room for something), allocating
1303 * a fence register, and mapping the appropriate aperture address into
1304 * userspace.
1305 */
1306int
1307i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1308 struct drm_file *file)
1309{
1310 struct drm_i915_gem_mmap_gtt *args = data;
1311
1312 if (!(dev->driver->driver_features & DRIVER_GEM))
1313 return -ENODEV;
1314
1315 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1316}
1317
1318
Chris Wilsone5281cc2010-10-28 13:45:36 +01001319static int
Chris Wilson05394f32010-11-08 19:18:58 +00001320i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001321 gfp_t gfpmask)
1322{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001323 int page_count, i;
1324 struct address_space *mapping;
1325 struct inode *inode;
1326 struct page *page;
1327
1328 /* Get the list of pages out of our struct file. They'll be pinned
1329 * at this point until we release them.
1330 */
Chris Wilson05394f32010-11-08 19:18:58 +00001331 page_count = obj->base.size / PAGE_SIZE;
1332 BUG_ON(obj->pages != NULL);
1333 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1334 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001335 return -ENOMEM;
1336
Chris Wilson05394f32010-11-08 19:18:58 +00001337 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001338 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001339 gfpmask |= mapping_gfp_mask(mapping);
1340
Chris Wilsone5281cc2010-10-28 13:45:36 +01001341 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001342 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001343 if (IS_ERR(page))
1344 goto err_pages;
1345
Chris Wilson05394f32010-11-08 19:18:58 +00001346 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001347 }
1348
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001349 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001350 i915_gem_object_do_bit_17_swizzle(obj);
1351
1352 return 0;
1353
1354err_pages:
1355 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001356 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001357
Chris Wilson05394f32010-11-08 19:18:58 +00001358 drm_free_large(obj->pages);
1359 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001360 return PTR_ERR(page);
1361}
1362
Chris Wilson5cdf5882010-09-27 15:51:07 +01001363static void
Chris Wilson05394f32010-11-08 19:18:58 +00001364i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001365{
Chris Wilson05394f32010-11-08 19:18:58 +00001366 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001367 int i;
1368
Chris Wilson05394f32010-11-08 19:18:58 +00001369 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001370
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001371 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001372 i915_gem_object_save_bit_17_swizzle(obj);
1373
Chris Wilson05394f32010-11-08 19:18:58 +00001374 if (obj->madv == I915_MADV_DONTNEED)
1375 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001376
1377 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001378 if (obj->dirty)
1379 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001380
Chris Wilson05394f32010-11-08 19:18:58 +00001381 if (obj->madv == I915_MADV_WILLNEED)
1382 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001383
Chris Wilson05394f32010-11-08 19:18:58 +00001384 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001385 }
Chris Wilson05394f32010-11-08 19:18:58 +00001386 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001387
Chris Wilson05394f32010-11-08 19:18:58 +00001388 drm_free_large(obj->pages);
1389 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001390}
1391
Chris Wilson54cf91d2010-11-25 18:00:26 +00001392void
Chris Wilson05394f32010-11-08 19:18:58 +00001393i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001394 struct intel_ring_buffer *ring,
1395 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001396{
Chris Wilson05394f32010-11-08 19:18:58 +00001397 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001398 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001399
Zou Nan hai852835f2010-05-21 09:08:56 +08001400 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001401 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001402
1403 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001404 if (!obj->active) {
1405 drm_gem_object_reference(&obj->base);
1406 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001407 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001408
Eric Anholt673a3942008-07-30 12:06:12 -07001409 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001410 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1411 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001412
Chris Wilson05394f32010-11-08 19:18:58 +00001413 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001414
Chris Wilsoncaea7472010-11-12 13:53:37 +00001415 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001416 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001417
Chris Wilson7dd49062012-03-21 10:48:18 +00001418 /* Bump MRU to take account of the delayed flush */
1419 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1420 struct drm_i915_fence_reg *reg;
1421
1422 reg = &dev_priv->fence_regs[obj->fence_reg];
1423 list_move_tail(&reg->lru_list,
1424 &dev_priv->mm.fence_list);
1425 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001426 }
1427}
1428
1429static void
1430i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1431{
1432 list_del_init(&obj->ring_list);
1433 obj->last_rendering_seqno = 0;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001434 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001435}
1436
Eric Anholtce44b0e2008-11-06 16:00:31 -08001437static void
Chris Wilson05394f32010-11-08 19:18:58 +00001438i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001439{
Chris Wilson05394f32010-11-08 19:18:58 +00001440 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001441 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001442
Chris Wilson05394f32010-11-08 19:18:58 +00001443 BUG_ON(!obj->active);
1444 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001445
1446 i915_gem_object_move_off_active(obj);
1447}
1448
1449static void
1450i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1451{
1452 struct drm_device *dev = obj->base.dev;
1453 struct drm_i915_private *dev_priv = dev->dev_private;
1454
1455 if (obj->pin_count != 0)
1456 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1457 else
1458 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1459
1460 BUG_ON(!list_empty(&obj->gpu_write_list));
1461 BUG_ON(!obj->active);
1462 obj->ring = NULL;
1463
1464 i915_gem_object_move_off_active(obj);
1465 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001466
1467 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001468 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001469 drm_gem_object_unreference(&obj->base);
1470
1471 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001472}
Eric Anholt673a3942008-07-30 12:06:12 -07001473
Chris Wilson963b4832009-09-20 23:03:54 +01001474/* Immediately discard the backing storage */
1475static void
Chris Wilson05394f32010-11-08 19:18:58 +00001476i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001477{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001478 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001479
Chris Wilsonae9fed62010-08-07 11:01:30 +01001480 /* Our goal here is to return as much of the memory as
1481 * is possible back to the system as we are called from OOM.
1482 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001483 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001484 */
Chris Wilson05394f32010-11-08 19:18:58 +00001485 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001486 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001487
Chris Wilsona14917e2012-02-24 21:13:38 +00001488 if (obj->base.map_list.map)
1489 drm_gem_free_mmap_offset(&obj->base);
1490
Chris Wilson05394f32010-11-08 19:18:58 +00001491 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001492}
1493
1494static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001495i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001496{
Chris Wilson05394f32010-11-08 19:18:58 +00001497 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001498}
1499
Eric Anholt673a3942008-07-30 12:06:12 -07001500static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001501i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1502 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001503{
Chris Wilson05394f32010-11-08 19:18:58 +00001504 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001505
Chris Wilson05394f32010-11-08 19:18:58 +00001506 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001507 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001508 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001509 if (obj->base.write_domain & flush_domains) {
1510 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001511
Chris Wilson05394f32010-11-08 19:18:58 +00001512 obj->base.write_domain = 0;
1513 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001514 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001515 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001516
Daniel Vetter63560392010-02-19 11:51:59 +01001517 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001518 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001519 old_write_domain);
1520 }
1521 }
1522}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001523
Daniel Vetter53d227f2012-01-25 16:32:49 +01001524static u32
1525i915_gem_get_seqno(struct drm_device *dev)
1526{
1527 drm_i915_private_t *dev_priv = dev->dev_private;
1528 u32 seqno = dev_priv->next_seqno;
1529
1530 /* reserve 0 for non-seqno */
1531 if (++dev_priv->next_seqno == 0)
1532 dev_priv->next_seqno = 1;
1533
1534 return seqno;
1535}
1536
1537u32
1538i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1539{
1540 if (ring->outstanding_lazy_request == 0)
1541 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1542
1543 return ring->outstanding_lazy_request;
1544}
1545
Chris Wilson3cce4692010-10-27 16:11:02 +01001546int
Chris Wilsondb53a302011-02-03 11:57:46 +00001547i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001548 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001549 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001550{
Chris Wilsondb53a302011-02-03 11:57:46 +00001551 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001552 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001553 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001554 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001555 int ret;
1556
1557 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001558 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001559
Chris Wilsona71d8d92012-02-15 11:25:36 +00001560 /* Record the position of the start of the request so that
1561 * should we detect the updated seqno part-way through the
1562 * GPU processing the request, we never over-estimate the
1563 * position of the head.
1564 */
1565 request_ring_position = intel_ring_get_tail(ring);
1566
Chris Wilson3cce4692010-10-27 16:11:02 +01001567 ret = ring->add_request(ring, &seqno);
1568 if (ret)
1569 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001570
Chris Wilsondb53a302011-02-03 11:57:46 +00001571 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001572
1573 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001574 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001575 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001576 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001577 was_empty = list_empty(&ring->request_list);
1578 list_add_tail(&request->list, &ring->request_list);
1579
Chris Wilsondb53a302011-02-03 11:57:46 +00001580 if (file) {
1581 struct drm_i915_file_private *file_priv = file->driver_priv;
1582
Chris Wilson1c255952010-09-26 11:03:27 +01001583 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001584 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001585 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001586 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001587 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001588 }
Eric Anholt673a3942008-07-30 12:06:12 -07001589
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001590 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001591
Ben Gamarif65d9422009-09-14 17:48:44 -04001592 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001593 if (i915_enable_hangcheck) {
1594 mod_timer(&dev_priv->hangcheck_timer,
1595 jiffies +
1596 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1597 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001598 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001599 queue_delayed_work(dev_priv->wq,
1600 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001601 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001602 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001603}
1604
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001605static inline void
1606i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001607{
Chris Wilson1c255952010-09-26 11:03:27 +01001608 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001609
Chris Wilson1c255952010-09-26 11:03:27 +01001610 if (!file_priv)
1611 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001612
Chris Wilson1c255952010-09-26 11:03:27 +01001613 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001614 if (request->file_priv) {
1615 list_del(&request->client_list);
1616 request->file_priv = NULL;
1617 }
Chris Wilson1c255952010-09-26 11:03:27 +01001618 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001619}
1620
Chris Wilsondfaae392010-09-22 10:31:52 +01001621static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1622 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001623{
Chris Wilsondfaae392010-09-22 10:31:52 +01001624 while (!list_empty(&ring->request_list)) {
1625 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001626
Chris Wilsondfaae392010-09-22 10:31:52 +01001627 request = list_first_entry(&ring->request_list,
1628 struct drm_i915_gem_request,
1629 list);
1630
1631 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001632 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001633 kfree(request);
1634 }
1635
1636 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001637 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001638
Chris Wilson05394f32010-11-08 19:18:58 +00001639 obj = list_first_entry(&ring->active_list,
1640 struct drm_i915_gem_object,
1641 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001642
Chris Wilson05394f32010-11-08 19:18:58 +00001643 obj->base.write_domain = 0;
1644 list_del_init(&obj->gpu_write_list);
1645 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001646 }
Eric Anholt673a3942008-07-30 12:06:12 -07001647}
1648
Chris Wilson312817a2010-11-22 11:50:11 +00001649static void i915_gem_reset_fences(struct drm_device *dev)
1650{
1651 struct drm_i915_private *dev_priv = dev->dev_private;
1652 int i;
1653
Daniel Vetter4b9de732011-10-09 21:52:02 +02001654 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001655 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001656
Chris Wilsonada726c2012-04-17 15:31:32 +01001657 i915_gem_write_fence(dev, i, NULL);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001658
Chris Wilsonada726c2012-04-17 15:31:32 +01001659 if (reg->obj)
1660 i915_gem_object_fence_lost(reg->obj);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001661
Chris Wilsonada726c2012-04-17 15:31:32 +01001662 reg->pin_count = 0;
1663 reg->obj = NULL;
1664 INIT_LIST_HEAD(&reg->lru_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001665 }
Chris Wilsonada726c2012-04-17 15:31:32 +01001666
1667 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001668}
1669
Chris Wilson069efc12010-09-30 16:53:18 +01001670void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001671{
Chris Wilsondfaae392010-09-22 10:31:52 +01001672 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001673 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001674 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001675
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001676 for (i = 0; i < I915_NUM_RINGS; i++)
1677 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001678
1679 /* Remove anything from the flushing lists. The GPU cache is likely
1680 * to be lost on reset along with the data, so simply move the
1681 * lost bo to the inactive list.
1682 */
1683 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001684 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001685 struct drm_i915_gem_object,
1686 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001687
Chris Wilson05394f32010-11-08 19:18:58 +00001688 obj->base.write_domain = 0;
1689 list_del_init(&obj->gpu_write_list);
1690 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001691 }
Chris Wilson9375e442010-09-19 12:21:28 +01001692
Chris Wilsondfaae392010-09-22 10:31:52 +01001693 /* Move everything out of the GPU domains to ensure we do any
1694 * necessary invalidation upon reuse.
1695 */
Chris Wilson05394f32010-11-08 19:18:58 +00001696 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001697 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001698 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001699 {
Chris Wilson05394f32010-11-08 19:18:58 +00001700 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001701 }
Chris Wilson069efc12010-09-30 16:53:18 +01001702
1703 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001704 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001705}
1706
1707/**
1708 * This function clears the request list as sequence numbers are passed.
1709 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001710void
Chris Wilsondb53a302011-02-03 11:57:46 +00001711i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001712{
Eric Anholt673a3942008-07-30 12:06:12 -07001713 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001714 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001715
Chris Wilsondb53a302011-02-03 11:57:46 +00001716 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001717 return;
1718
Chris Wilsondb53a302011-02-03 11:57:46 +00001719 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001720
Chris Wilson78501ea2010-10-27 12:18:21 +01001721 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001722
Chris Wilson076e2c02011-01-21 10:07:18 +00001723 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001724 if (seqno >= ring->sync_seqno[i])
1725 ring->sync_seqno[i] = 0;
1726
Zou Nan hai852835f2010-05-21 09:08:56 +08001727 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001728 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001729
Zou Nan hai852835f2010-05-21 09:08:56 +08001730 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001731 struct drm_i915_gem_request,
1732 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001733
Chris Wilsondfaae392010-09-22 10:31:52 +01001734 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001735 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001736
Chris Wilsondb53a302011-02-03 11:57:46 +00001737 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001738 /* We know the GPU must have read the request to have
1739 * sent us the seqno + interrupt, so use the position
1740 * of tail of the request to update the last known position
1741 * of the GPU head.
1742 */
1743 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001744
1745 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001746 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001747 kfree(request);
1748 }
1749
1750 /* Move any buffers on the active list that are no longer referenced
1751 * by the ringbuffer to the flushing/inactive lists as appropriate.
1752 */
1753 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001754 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001755
Akshay Joshi0206e352011-08-16 15:34:10 -04001756 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001757 struct drm_i915_gem_object,
1758 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001759
Chris Wilson05394f32010-11-08 19:18:58 +00001760 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001761 break;
1762
Chris Wilson05394f32010-11-08 19:18:58 +00001763 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001764 i915_gem_object_move_to_flushing(obj);
1765 else
1766 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001767 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001768
Chris Wilsondb53a302011-02-03 11:57:46 +00001769 if (unlikely(ring->trace_irq_seqno &&
1770 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001771 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001772 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001773 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001774
Chris Wilsondb53a302011-02-03 11:57:46 +00001775 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001776}
1777
1778void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001779i915_gem_retire_requests(struct drm_device *dev)
1780{
1781 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001782 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001783
Chris Wilsonbe726152010-07-23 23:18:50 +01001784 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001785 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001786
1787 /* We must be careful that during unbind() we do not
1788 * accidentally infinitely recurse into retire requests.
1789 * Currently:
1790 * retire -> free -> unbind -> wait -> retire_ring
1791 */
Chris Wilson05394f32010-11-08 19:18:58 +00001792 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001793 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001794 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001795 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001796 }
1797
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001798 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001799 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001800}
1801
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001802static void
Eric Anholt673a3942008-07-30 12:06:12 -07001803i915_gem_retire_work_handler(struct work_struct *work)
1804{
1805 drm_i915_private_t *dev_priv;
1806 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001807 bool idle;
1808 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001809
1810 dev_priv = container_of(work, drm_i915_private_t,
1811 mm.retire_work.work);
1812 dev = dev_priv->dev;
1813
Chris Wilson891b48c2010-09-29 12:26:37 +01001814 /* Come back later if the device is busy... */
1815 if (!mutex_trylock(&dev->struct_mutex)) {
1816 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1817 return;
1818 }
1819
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001820 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001821
Chris Wilson0a587052011-01-09 21:05:44 +00001822 /* Send a periodic flush down the ring so we don't hold onto GEM
1823 * objects indefinitely.
1824 */
1825 idle = true;
1826 for (i = 0; i < I915_NUM_RINGS; i++) {
1827 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1828
1829 if (!list_empty(&ring->gpu_write_list)) {
1830 struct drm_i915_gem_request *request;
1831 int ret;
1832
Chris Wilsondb53a302011-02-03 11:57:46 +00001833 ret = i915_gem_flush_ring(ring,
1834 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001835 request = kzalloc(sizeof(*request), GFP_KERNEL);
1836 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001837 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001838 kfree(request);
1839 }
1840
1841 idle &= list_empty(&ring->request_list);
1842 }
1843
1844 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001845 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001846
Eric Anholt673a3942008-07-30 12:06:12 -07001847 mutex_unlock(&dev->struct_mutex);
1848}
1849
Chris Wilsondb53a302011-02-03 11:57:46 +00001850/**
1851 * Waits for a sequence number to be signaled, and cleans up the
1852 * request and object lists appropriately for that event.
1853 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001854int
Chris Wilsondb53a302011-02-03 11:57:46 +00001855i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001856 uint32_t seqno,
1857 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001858{
Chris Wilsondb53a302011-02-03 11:57:46 +00001859 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001860 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001861 int ret = 0;
1862
1863 BUG_ON(seqno == 0);
1864
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001865 if (atomic_read(&dev_priv->mm.wedged)) {
1866 struct completion *x = &dev_priv->error_completion;
1867 bool recovery_complete;
1868 unsigned long flags;
1869
1870 /* Give the error handler a chance to run. */
1871 spin_lock_irqsave(&x->wait.lock, flags);
1872 recovery_complete = x->done > 0;
1873 spin_unlock_irqrestore(&x->wait.lock, flags);
1874
1875 return recovery_complete ? -EIO : -EAGAIN;
1876 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001877
Chris Wilson5d97eb62010-11-10 20:40:02 +00001878 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001879 struct drm_i915_gem_request *request;
1880
1881 request = kzalloc(sizeof(*request), GFP_KERNEL);
1882 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001883 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001884
Chris Wilsondb53a302011-02-03 11:57:46 +00001885 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001886 if (ret) {
1887 kfree(request);
1888 return ret;
1889 }
1890
1891 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001892 }
1893
Chris Wilson78501ea2010-10-27 12:18:21 +01001894 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001895 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001896 ier = I915_READ(DEIER) | I915_READ(GTIER);
Jesse Barnes23e3f9b2012-03-28 13:39:39 -07001897 else if (IS_VALLEYVIEW(ring->dev))
1898 ier = I915_READ(GTIER) | I915_READ(VLV_IER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001899 else
1900 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001901 if (!ier) {
1902 DRM_ERROR("something (likely vbetool) disabled "
1903 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001904 ring->dev->driver->irq_preinstall(ring->dev);
1905 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001906 }
1907
Chris Wilsondb53a302011-02-03 11:57:46 +00001908 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001909
Chris Wilsonb2223492010-10-27 15:27:33 +01001910 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001911 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001912 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001913 ret = wait_event_interruptible(ring->irq_queue,
1914 i915_seqno_passed(ring->get_seqno(ring), seqno)
1915 || atomic_read(&dev_priv->mm.wedged));
1916 else
1917 wait_event(ring->irq_queue,
1918 i915_seqno_passed(ring->get_seqno(ring), seqno)
1919 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001920
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001921 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001922 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1923 seqno) ||
1924 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001925 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001926 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001927
Chris Wilsondb53a302011-02-03 11:57:46 +00001928 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001929 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001930 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001931 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001932
Eric Anholt673a3942008-07-30 12:06:12 -07001933 /* Directly dispatch request retiring. While we have the work queue
1934 * to handle this, the waiter on a request often wants an associated
1935 * buffer to have made it to the inactive list, and we would need
1936 * a separate wait queue to handle that.
1937 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001938 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001939 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001940
1941 return ret;
1942}
1943
Daniel Vetter48764bf2009-09-15 22:57:32 +02001944/**
Eric Anholt673a3942008-07-30 12:06:12 -07001945 * Ensures that all rendering to the object has completed and the object is
1946 * safe to unbind from the GTT or access from the CPU.
1947 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001948int
Chris Wilsonce453d82011-02-21 14:43:56 +00001949i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001950{
Eric Anholt673a3942008-07-30 12:06:12 -07001951 int ret;
1952
Eric Anholte47c68e2008-11-14 13:35:19 -08001953 /* This function only exists to support waiting for existing rendering,
1954 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001955 */
Chris Wilson05394f32010-11-08 19:18:58 +00001956 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001957
1958 /* If there is rendering queued on the buffer being evicted, wait for
1959 * it.
1960 */
Chris Wilson05394f32010-11-08 19:18:58 +00001961 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001962 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1963 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001964 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001965 return ret;
1966 }
1967
1968 return 0;
1969}
1970
Ben Widawsky5816d642012-04-11 11:18:19 -07001971/**
1972 * i915_gem_object_sync - sync an object to a ring.
1973 *
1974 * @obj: object which may be in use on another ring.
1975 * @to: ring we wish to use the object on. May be NULL.
1976 *
1977 * This code is meant to abstract object synchronization with the GPU.
1978 * Calling with NULL implies synchronizing the object with the CPU
1979 * rather than a particular GPU ring.
1980 *
1981 * Returns 0 if successful, else propagates up the lower layer error.
1982 */
Ben Widawsky2911a352012-04-05 14:47:36 -07001983int
1984i915_gem_object_sync(struct drm_i915_gem_object *obj,
1985 struct intel_ring_buffer *to)
1986{
1987 struct intel_ring_buffer *from = obj->ring;
1988 u32 seqno;
1989 int ret, idx;
1990
1991 if (from == NULL || to == from)
1992 return 0;
1993
Ben Widawsky5816d642012-04-11 11:18:19 -07001994 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07001995 return i915_gem_object_wait_rendering(obj);
1996
1997 idx = intel_ring_sync_index(from, to);
1998
1999 seqno = obj->last_rendering_seqno;
2000 if (seqno <= from->sync_seqno[idx])
2001 return 0;
2002
2003 if (seqno == from->outstanding_lazy_request) {
2004 struct drm_i915_gem_request *request;
2005
2006 request = kzalloc(sizeof(*request), GFP_KERNEL);
2007 if (request == NULL)
2008 return -ENOMEM;
2009
2010 ret = i915_add_request(from, NULL, request);
2011 if (ret) {
2012 kfree(request);
2013 return ret;
2014 }
2015
2016 seqno = request->seqno;
2017 }
2018
Ben Widawsky2911a352012-04-05 14:47:36 -07002019
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002020 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002021 if (!ret)
2022 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002023
Ben Widawskye3a5a222012-04-11 11:18:20 -07002024 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002025}
2026
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002027static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2028{
2029 u32 old_write_domain, old_read_domains;
2030
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002031 /* Act a barrier for all accesses through the GTT */
2032 mb();
2033
2034 /* Force a pagefault for domain tracking on next user access */
2035 i915_gem_release_mmap(obj);
2036
Keith Packardb97c3d92011-06-24 21:02:59 -07002037 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2038 return;
2039
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002040 old_read_domains = obj->base.read_domains;
2041 old_write_domain = obj->base.write_domain;
2042
2043 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2044 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2045
2046 trace_i915_gem_object_change_domain(obj,
2047 old_read_domains,
2048 old_write_domain);
2049}
2050
Eric Anholt673a3942008-07-30 12:06:12 -07002051/**
2052 * Unbinds an object from the GTT aperture.
2053 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002054int
Chris Wilson05394f32010-11-08 19:18:58 +00002055i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002056{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002057 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002058 int ret = 0;
2059
Chris Wilson05394f32010-11-08 19:18:58 +00002060 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002061 return 0;
2062
Chris Wilson05394f32010-11-08 19:18:58 +00002063 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002064 DRM_ERROR("Attempting to unbind pinned buffer\n");
2065 return -EINVAL;
2066 }
2067
Chris Wilsona8198ee2011-04-13 22:04:09 +01002068 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01002069 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002070 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002071 /* Continue on if we fail due to EIO, the GPU is hung so we
2072 * should be safe and we need to cleanup or else we might
2073 * cause memory corruption through use-after-free.
2074 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002075
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002076 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002077
2078 /* Move the object to the CPU domain to ensure that
2079 * any possible CPU writes while it's not in the GTT
2080 * are flushed when we go to remap it.
2081 */
2082 if (ret == 0)
2083 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2084 if (ret == -ERESTARTSYS)
2085 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002086 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002087 /* In the event of a disaster, abandon all caches and
2088 * hope for the best.
2089 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002090 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002091 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002092 }
Eric Anholt673a3942008-07-30 12:06:12 -07002093
Daniel Vetter96b47b62009-12-15 17:50:00 +01002094 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002095 ret = i915_gem_object_put_fence(obj);
2096 if (ret == -ERESTARTSYS)
2097 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002098
Chris Wilsondb53a302011-02-03 11:57:46 +00002099 trace_i915_gem_object_unbind(obj);
2100
Daniel Vetter74898d72012-02-15 23:50:22 +01002101 if (obj->has_global_gtt_mapping)
2102 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002103 if (obj->has_aliasing_ppgtt_mapping) {
2104 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2105 obj->has_aliasing_ppgtt_mapping = 0;
2106 }
Daniel Vetter74163902012-02-15 23:50:21 +01002107 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002108
Chris Wilsone5281cc2010-10-28 13:45:36 +01002109 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002110
Chris Wilson6299f992010-11-24 12:23:44 +00002111 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002112 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002113 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002114 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002115
Chris Wilson05394f32010-11-08 19:18:58 +00002116 drm_mm_put_block(obj->gtt_space);
2117 obj->gtt_space = NULL;
2118 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002119
Chris Wilson05394f32010-11-08 19:18:58 +00002120 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002121 i915_gem_object_truncate(obj);
2122
Chris Wilson8dc17752010-07-23 23:18:51 +01002123 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002124}
2125
Chris Wilson88241782011-01-07 17:09:48 +00002126int
Chris Wilsondb53a302011-02-03 11:57:46 +00002127i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002128 uint32_t invalidate_domains,
2129 uint32_t flush_domains)
2130{
Chris Wilson88241782011-01-07 17:09:48 +00002131 int ret;
2132
Chris Wilson36d527d2011-03-19 22:26:49 +00002133 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2134 return 0;
2135
Chris Wilsondb53a302011-02-03 11:57:46 +00002136 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2137
Chris Wilson88241782011-01-07 17:09:48 +00002138 ret = ring->flush(ring, invalidate_domains, flush_domains);
2139 if (ret)
2140 return ret;
2141
Chris Wilson36d527d2011-03-19 22:26:49 +00002142 if (flush_domains & I915_GEM_GPU_DOMAINS)
2143 i915_gem_process_flushing_list(ring, flush_domains);
2144
Chris Wilson88241782011-01-07 17:09:48 +00002145 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002146}
2147
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002148static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002149{
Chris Wilson88241782011-01-07 17:09:48 +00002150 int ret;
2151
Chris Wilson395b70b2010-10-28 21:28:46 +01002152 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002153 return 0;
2154
Chris Wilson88241782011-01-07 17:09:48 +00002155 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002156 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002157 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002158 if (ret)
2159 return ret;
2160 }
2161
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002162 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2163 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002164}
2165
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002166int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002167{
2168 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002169 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002170
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002171 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002172 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002173 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002174 if (ret)
2175 return ret;
2176 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002177
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002178 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002179}
2180
Chris Wilson9ce079e2012-04-17 15:31:30 +01002181static void sandybridge_write_fence_reg(struct drm_device *dev, int reg,
2182 struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002183{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002184 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002185 uint64_t val;
2186
Chris Wilson9ce079e2012-04-17 15:31:30 +01002187 if (obj) {
2188 u32 size = obj->gtt_space->size;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002189
Chris Wilson9ce079e2012-04-17 15:31:30 +01002190 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2191 0xfffff000) << 32;
2192 val |= obj->gtt_offset & 0xfffff000;
2193 val |= (uint64_t)((obj->stride / 128) - 1) <<
2194 SANDYBRIDGE_FENCE_PITCH_SHIFT;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002195
Chris Wilson9ce079e2012-04-17 15:31:30 +01002196 if (obj->tiling_mode == I915_TILING_Y)
2197 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2198 val |= I965_FENCE_REG_VALID;
2199 } else
2200 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002201
Chris Wilson9ce079e2012-04-17 15:31:30 +01002202 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + reg * 8, val);
2203 POSTING_READ(FENCE_REG_SANDYBRIDGE_0 + reg * 8);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002204}
2205
Chris Wilson9ce079e2012-04-17 15:31:30 +01002206static void i965_write_fence_reg(struct drm_device *dev, int reg,
2207 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002208{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002209 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002210 uint64_t val;
2211
Chris Wilson9ce079e2012-04-17 15:31:30 +01002212 if (obj) {
2213 u32 size = obj->gtt_space->size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002214
Chris Wilson9ce079e2012-04-17 15:31:30 +01002215 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2216 0xfffff000) << 32;
2217 val |= obj->gtt_offset & 0xfffff000;
2218 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2219 if (obj->tiling_mode == I915_TILING_Y)
2220 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2221 val |= I965_FENCE_REG_VALID;
2222 } else
2223 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002224
Chris Wilson9ce079e2012-04-17 15:31:30 +01002225 I915_WRITE64(FENCE_REG_965_0 + reg * 8, val);
2226 POSTING_READ(FENCE_REG_965_0 + reg * 8);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002227}
2228
Chris Wilson9ce079e2012-04-17 15:31:30 +01002229static void i915_write_fence_reg(struct drm_device *dev, int reg,
2230 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002231{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002232 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002233 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002234
Chris Wilson9ce079e2012-04-17 15:31:30 +01002235 if (obj) {
2236 u32 size = obj->gtt_space->size;
2237 int pitch_val;
2238 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002239
Chris Wilson9ce079e2012-04-17 15:31:30 +01002240 WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2241 (size & -size) != size ||
2242 (obj->gtt_offset & (size - 1)),
2243 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2244 obj->gtt_offset, obj->map_and_fenceable, size);
2245
2246 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2247 tile_width = 128;
2248 else
2249 tile_width = 512;
2250
2251 /* Note: pitch better be a power of two tile widths */
2252 pitch_val = obj->stride / tile_width;
2253 pitch_val = ffs(pitch_val) - 1;
2254
2255 val = obj->gtt_offset;
2256 if (obj->tiling_mode == I915_TILING_Y)
2257 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2258 val |= I915_FENCE_SIZE_BITS(size);
2259 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2260 val |= I830_FENCE_REG_VALID;
2261 } else
2262 val = 0;
2263
2264 if (reg < 8)
2265 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002266 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002267 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002268
Chris Wilson9ce079e2012-04-17 15:31:30 +01002269 I915_WRITE(reg, val);
2270 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002271}
2272
Chris Wilson9ce079e2012-04-17 15:31:30 +01002273static void i830_write_fence_reg(struct drm_device *dev, int reg,
2274 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002275{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002276 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002277 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002278
Chris Wilson9ce079e2012-04-17 15:31:30 +01002279 if (obj) {
2280 u32 size = obj->gtt_space->size;
2281 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002282
Chris Wilson9ce079e2012-04-17 15:31:30 +01002283 WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2284 (size & -size) != size ||
2285 (obj->gtt_offset & (size - 1)),
2286 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2287 obj->gtt_offset, size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002288
Chris Wilson9ce079e2012-04-17 15:31:30 +01002289 pitch_val = obj->stride / 128;
2290 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002291
Chris Wilson9ce079e2012-04-17 15:31:30 +01002292 val = obj->gtt_offset;
2293 if (obj->tiling_mode == I915_TILING_Y)
2294 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2295 val |= I830_FENCE_SIZE_BITS(size);
2296 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2297 val |= I830_FENCE_REG_VALID;
2298 } else
2299 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002300
Chris Wilson9ce079e2012-04-17 15:31:30 +01002301 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2302 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2303}
2304
2305static void i915_gem_write_fence(struct drm_device *dev, int reg,
2306 struct drm_i915_gem_object *obj)
2307{
2308 switch (INTEL_INFO(dev)->gen) {
2309 case 7:
2310 case 6: sandybridge_write_fence_reg(dev, reg, obj); break;
2311 case 5:
2312 case 4: i965_write_fence_reg(dev, reg, obj); break;
2313 case 3: i915_write_fence_reg(dev, reg, obj); break;
2314 case 2: i830_write_fence_reg(dev, reg, obj); break;
2315 default: break;
2316 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002317}
2318
Chris Wilson61050802012-04-17 15:31:31 +01002319static inline int fence_number(struct drm_i915_private *dev_priv,
2320 struct drm_i915_fence_reg *fence)
2321{
2322 return fence - dev_priv->fence_regs;
2323}
2324
2325static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2326 struct drm_i915_fence_reg *fence,
2327 bool enable)
2328{
2329 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2330 int reg = fence_number(dev_priv, fence);
2331
2332 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
2333
2334 if (enable) {
2335 obj->fence_reg = reg;
2336 fence->obj = obj;
2337 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2338 } else {
2339 obj->fence_reg = I915_FENCE_REG_NONE;
2340 fence->obj = NULL;
2341 list_del_init(&fence->lru_list);
2342 }
2343}
2344
Chris Wilsond9e86c02010-11-10 16:40:20 +00002345static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002346i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002347{
2348 int ret;
2349
2350 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002351 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilson1c293ea2012-04-17 15:31:27 +01002352 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00002353 0, obj->base.write_domain);
2354 if (ret)
2355 return ret;
2356 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002357
2358 obj->fenced_gpu_access = false;
2359 }
2360
Chris Wilson1c293ea2012-04-17 15:31:27 +01002361 if (obj->last_fenced_seqno) {
Chris Wilson18991842012-04-17 15:31:29 +01002362 ret = i915_wait_request(obj->ring,
2363 obj->last_fenced_seqno,
2364 true);
2365 if (ret)
2366 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002367
2368 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002369 }
2370
Chris Wilson63256ec2011-01-04 18:42:07 +00002371 /* Ensure that all CPU reads are completed before installing a fence
2372 * and all writes before removing the fence.
2373 */
2374 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2375 mb();
2376
Chris Wilsond9e86c02010-11-10 16:40:20 +00002377 return 0;
2378}
2379
2380int
2381i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2382{
Chris Wilson61050802012-04-17 15:31:31 +01002383 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002384 int ret;
2385
Chris Wilsona360bb12012-04-17 15:31:25 +01002386 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002387 if (ret)
2388 return ret;
2389
Chris Wilson61050802012-04-17 15:31:31 +01002390 if (obj->fence_reg == I915_FENCE_REG_NONE)
2391 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002392
Chris Wilson61050802012-04-17 15:31:31 +01002393 i915_gem_object_update_fence(obj,
2394 &dev_priv->fence_regs[obj->fence_reg],
2395 false);
2396 i915_gem_object_fence_lost(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002397
2398 return 0;
2399}
2400
2401static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002402i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002403{
Daniel Vetterae3db242010-02-19 11:51:58 +01002404 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002405 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002406 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002407
2408 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002409 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002410 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2411 reg = &dev_priv->fence_regs[i];
2412 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002413 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002414
Chris Wilson1690e1e2011-12-14 13:57:08 +01002415 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002416 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002417 }
2418
Chris Wilsond9e86c02010-11-10 16:40:20 +00002419 if (avail == NULL)
2420 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002421
2422 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002423 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002424 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002425 continue;
2426
Chris Wilson8fe301a2012-04-17 15:31:28 +01002427 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002428 }
2429
Chris Wilson8fe301a2012-04-17 15:31:28 +01002430 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002431}
2432
Jesse Barnesde151cf2008-11-12 10:03:55 -08002433/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002434 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002435 * @obj: object to map through a fence reg
2436 *
2437 * When mapping objects through the GTT, userspace wants to be able to write
2438 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002439 * This function walks the fence regs looking for a free one for @obj,
2440 * stealing one if it can't find any.
2441 *
2442 * It then sets up the reg based on the object's properties: address, pitch
2443 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002444 *
2445 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002446 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002447int
Chris Wilson06d98132012-04-17 15:31:24 +01002448i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002449{
Chris Wilson05394f32010-11-08 19:18:58 +00002450 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002451 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002452 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002453 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002455 if (obj->tiling_mode == I915_TILING_NONE)
2456 return i915_gem_object_put_fence(obj);
2457
Chris Wilsond9e86c02010-11-10 16:40:20 +00002458 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002459 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2460 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002461 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002462
Chris Wilson29c5a582011-03-17 15:23:22 +00002463 if (obj->tiling_changed) {
Chris Wilsona360bb12012-04-17 15:31:25 +01002464 ret = i915_gem_object_flush_fence(obj);
Chris Wilson29c5a582011-03-17 15:23:22 +00002465 if (ret)
2466 return ret;
2467
Chris Wilson29c5a582011-03-17 15:23:22 +00002468 goto update;
2469 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002470
Eric Anholta09ba7f2009-08-29 12:49:51 -07002471 return 0;
2472 }
2473
Chris Wilsona360bb12012-04-17 15:31:25 +01002474 reg = i915_find_fence_reg(dev);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002475 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002476 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002477
Chris Wilsona360bb12012-04-17 15:31:25 +01002478 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002479 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002480 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002481
Chris Wilsond9e86c02010-11-10 16:40:20 +00002482 if (reg->obj) {
2483 struct drm_i915_gem_object *old = reg->obj;
2484
2485 drm_gem_object_reference(&old->base);
2486
2487 if (old->tiling_mode)
2488 i915_gem_release_mmap(old);
2489
Chris Wilsona360bb12012-04-17 15:31:25 +01002490 ret = i915_gem_object_flush_fence(old);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002491 if (ret) {
2492 drm_gem_object_unreference(&old->base);
2493 return ret;
2494 }
2495
Chris Wilsond9e86c02010-11-10 16:40:20 +00002496 old->fence_reg = I915_FENCE_REG_NONE;
Chris Wilsona360bb12012-04-17 15:31:25 +01002497 old->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002498
2499 drm_gem_object_unreference(&old->base);
Chris Wilsona360bb12012-04-17 15:31:25 +01002500 }
Eric Anholta09ba7f2009-08-29 12:49:51 -07002501
Jesse Barnesde151cf2008-11-12 10:03:55 -08002502 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002503 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2504 obj->fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002505
Chris Wilsond9e86c02010-11-10 16:40:20 +00002506update:
2507 obj->tiling_changed = false;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002508 i915_gem_write_fence(dev, reg - dev_priv->fence_regs, obj);
2509 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002510}
2511
2512/**
Eric Anholt673a3942008-07-30 12:06:12 -07002513 * Finds free space in the GTT aperture and binds the object there.
2514 */
2515static int
Chris Wilson05394f32010-11-08 19:18:58 +00002516i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002517 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002518 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002519{
Chris Wilson05394f32010-11-08 19:18:58 +00002520 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002521 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002522 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002523 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002524 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002525 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002526 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002527
Chris Wilson05394f32010-11-08 19:18:58 +00002528 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002529 DRM_ERROR("Attempting to bind a purgeable object\n");
2530 return -EINVAL;
2531 }
2532
Chris Wilsone28f8712011-07-18 13:11:49 -07002533 fence_size = i915_gem_get_gtt_size(dev,
2534 obj->base.size,
2535 obj->tiling_mode);
2536 fence_alignment = i915_gem_get_gtt_alignment(dev,
2537 obj->base.size,
2538 obj->tiling_mode);
2539 unfenced_alignment =
2540 i915_gem_get_unfenced_gtt_alignment(dev,
2541 obj->base.size,
2542 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002543
Eric Anholt673a3942008-07-30 12:06:12 -07002544 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002545 alignment = map_and_fenceable ? fence_alignment :
2546 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002547 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002548 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2549 return -EINVAL;
2550 }
2551
Chris Wilson05394f32010-11-08 19:18:58 +00002552 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002553
Chris Wilson654fc602010-05-27 13:18:21 +01002554 /* If the object is bigger than the entire aperture, reject it early
2555 * before evicting everything in a vain attempt to find space.
2556 */
Chris Wilson05394f32010-11-08 19:18:58 +00002557 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002558 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002559 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2560 return -E2BIG;
2561 }
2562
Eric Anholt673a3942008-07-30 12:06:12 -07002563 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002564 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002565 free_space =
2566 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002567 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002568 dev_priv->mm.gtt_mappable_end,
2569 0);
2570 else
2571 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002572 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002573
2574 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002575 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002576 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002577 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002578 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002579 dev_priv->mm.gtt_mappable_end,
2580 0);
2581 else
Chris Wilson05394f32010-11-08 19:18:58 +00002582 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002583 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002584 }
Chris Wilson05394f32010-11-08 19:18:58 +00002585 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002586 /* If the gtt is empty and we're still having trouble
2587 * fitting our object in, we're out of memory.
2588 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002589 ret = i915_gem_evict_something(dev, size, alignment,
2590 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002591 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002592 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002593
Eric Anholt673a3942008-07-30 12:06:12 -07002594 goto search_free;
2595 }
2596
Chris Wilsone5281cc2010-10-28 13:45:36 +01002597 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002598 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002599 drm_mm_put_block(obj->gtt_space);
2600 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002601
2602 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002603 /* first try to reclaim some memory by clearing the GTT */
2604 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002605 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002606 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002607 if (gfpmask) {
2608 gfpmask = 0;
2609 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002610 }
2611
Chris Wilson809b6332011-01-10 17:33:15 +00002612 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002613 }
2614
2615 goto search_free;
2616 }
2617
Eric Anholt673a3942008-07-30 12:06:12 -07002618 return ret;
2619 }
2620
Daniel Vetter74163902012-02-15 23:50:21 +01002621 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002622 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002623 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002624 drm_mm_put_block(obj->gtt_space);
2625 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002626
Chris Wilson809b6332011-01-10 17:33:15 +00002627 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002628 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002629
2630 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002631 }
Eric Anholt673a3942008-07-30 12:06:12 -07002632
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002633 if (!dev_priv->mm.aliasing_ppgtt)
2634 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002635
Chris Wilson6299f992010-11-24 12:23:44 +00002636 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002637 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002638
Eric Anholt673a3942008-07-30 12:06:12 -07002639 /* Assert that the object is not currently in any GPU domain. As it
2640 * wasn't in the GTT, there shouldn't be any way it could have been in
2641 * a GPU cache
2642 */
Chris Wilson05394f32010-11-08 19:18:58 +00002643 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2644 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002645
Chris Wilson6299f992010-11-24 12:23:44 +00002646 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002647
Daniel Vetter75e9e912010-11-04 17:11:09 +01002648 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002649 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002650 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002651
Daniel Vetter75e9e912010-11-04 17:11:09 +01002652 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002653 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002654
Chris Wilson05394f32010-11-08 19:18:58 +00002655 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002656
Chris Wilsondb53a302011-02-03 11:57:46 +00002657 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002658 return 0;
2659}
2660
2661void
Chris Wilson05394f32010-11-08 19:18:58 +00002662i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002663{
Eric Anholt673a3942008-07-30 12:06:12 -07002664 /* If we don't have a page list set up, then we're not pinned
2665 * to GPU, and we can ignore the cache flush because it'll happen
2666 * again at bind time.
2667 */
Chris Wilson05394f32010-11-08 19:18:58 +00002668 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002669 return;
2670
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002671 /* If the GPU is snooping the contents of the CPU cache,
2672 * we do not need to manually clear the CPU cache lines. However,
2673 * the caches are only snooped when the render cache is
2674 * flushed/invalidated. As we always have to emit invalidations
2675 * and flushes when moving into and out of the RENDER domain, correct
2676 * snooping behaviour occurs naturally as the result of our domain
2677 * tracking.
2678 */
2679 if (obj->cache_level != I915_CACHE_NONE)
2680 return;
2681
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002682 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002683
Chris Wilson05394f32010-11-08 19:18:58 +00002684 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002685}
2686
Eric Anholte47c68e2008-11-14 13:35:19 -08002687/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002688static int
Chris Wilson3619df02010-11-28 15:37:17 +00002689i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002690{
Chris Wilson05394f32010-11-08 19:18:58 +00002691 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002692 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002693
2694 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002695 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002696}
2697
2698/** Flushes the GTT write domain for the object if it's dirty. */
2699static void
Chris Wilson05394f32010-11-08 19:18:58 +00002700i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002701{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002702 uint32_t old_write_domain;
2703
Chris Wilson05394f32010-11-08 19:18:58 +00002704 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002705 return;
2706
Chris Wilson63256ec2011-01-04 18:42:07 +00002707 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002708 * to it immediately go to main memory as far as we know, so there's
2709 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002710 *
2711 * However, we do have to enforce the order so that all writes through
2712 * the GTT land before any writes to the device, such as updates to
2713 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002714 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002715 wmb();
2716
Chris Wilson05394f32010-11-08 19:18:58 +00002717 old_write_domain = obj->base.write_domain;
2718 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002719
2720 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002721 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002722 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002723}
2724
2725/** Flushes the CPU write domain for the object if it's dirty. */
2726static void
Chris Wilson05394f32010-11-08 19:18:58 +00002727i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002728{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002729 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002730
Chris Wilson05394f32010-11-08 19:18:58 +00002731 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002732 return;
2733
2734 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002735 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002736 old_write_domain = obj->base.write_domain;
2737 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002738
2739 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002740 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002741 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002742}
2743
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002744/**
2745 * Moves a single object to the GTT read, and possibly write domain.
2746 *
2747 * This function returns when the move is complete, including waiting on
2748 * flushes to occur.
2749 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002750int
Chris Wilson20217462010-11-23 15:26:33 +00002751i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002752{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002753 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002754 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002755
Eric Anholt02354392008-11-26 13:58:13 -08002756 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002757 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002758 return -EINVAL;
2759
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002760 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2761 return 0;
2762
Chris Wilson88241782011-01-07 17:09:48 +00002763 ret = i915_gem_object_flush_gpu_write_domain(obj);
2764 if (ret)
2765 return ret;
2766
Chris Wilson87ca9c82010-12-02 09:42:56 +00002767 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002768 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002769 if (ret)
2770 return ret;
2771 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002772
Chris Wilson72133422010-09-13 23:56:38 +01002773 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002774
Chris Wilson05394f32010-11-08 19:18:58 +00002775 old_write_domain = obj->base.write_domain;
2776 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002777
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002778 /* It should now be out of any other write domains, and we can update
2779 * the domain values for our changes.
2780 */
Chris Wilson05394f32010-11-08 19:18:58 +00002781 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2782 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002783 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002784 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2785 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2786 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002787 }
2788
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002789 trace_i915_gem_object_change_domain(obj,
2790 old_read_domains,
2791 old_write_domain);
2792
Eric Anholte47c68e2008-11-14 13:35:19 -08002793 return 0;
2794}
2795
Chris Wilsone4ffd172011-04-04 09:44:39 +01002796int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2797 enum i915_cache_level cache_level)
2798{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002799 struct drm_device *dev = obj->base.dev;
2800 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002801 int ret;
2802
2803 if (obj->cache_level == cache_level)
2804 return 0;
2805
2806 if (obj->pin_count) {
2807 DRM_DEBUG("can not change the cache level of pinned objects\n");
2808 return -EBUSY;
2809 }
2810
2811 if (obj->gtt_space) {
2812 ret = i915_gem_object_finish_gpu(obj);
2813 if (ret)
2814 return ret;
2815
2816 i915_gem_object_finish_gtt(obj);
2817
2818 /* Before SandyBridge, you could not use tiling or fence
2819 * registers with snooped memory, so relinquish any fences
2820 * currently pointing to our region in the aperture.
2821 */
2822 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2823 ret = i915_gem_object_put_fence(obj);
2824 if (ret)
2825 return ret;
2826 }
2827
Daniel Vetter74898d72012-02-15 23:50:22 +01002828 if (obj->has_global_gtt_mapping)
2829 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002830 if (obj->has_aliasing_ppgtt_mapping)
2831 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2832 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002833 }
2834
2835 if (cache_level == I915_CACHE_NONE) {
2836 u32 old_read_domains, old_write_domain;
2837
2838 /* If we're coming from LLC cached, then we haven't
2839 * actually been tracking whether the data is in the
2840 * CPU cache or not, since we only allow one bit set
2841 * in obj->write_domain and have been skipping the clflushes.
2842 * Just set it to the CPU cache for now.
2843 */
2844 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2845 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2846
2847 old_read_domains = obj->base.read_domains;
2848 old_write_domain = obj->base.write_domain;
2849
2850 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2851 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2852
2853 trace_i915_gem_object_change_domain(obj,
2854 old_read_domains,
2855 old_write_domain);
2856 }
2857
2858 obj->cache_level = cache_level;
2859 return 0;
2860}
2861
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002862/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002863 * Prepare buffer for display plane (scanout, cursors, etc).
2864 * Can be called from an uninterruptible phase (modesetting) and allows
2865 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002866 */
2867int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002868i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2869 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002870 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002871{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002872 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002873 int ret;
2874
Chris Wilson88241782011-01-07 17:09:48 +00002875 ret = i915_gem_object_flush_gpu_write_domain(obj);
2876 if (ret)
2877 return ret;
2878
Chris Wilson0be73282010-12-06 14:36:27 +00002879 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07002880 ret = i915_gem_object_sync(obj, pipelined);
2881 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002882 return ret;
2883 }
2884
Eric Anholta7ef0642011-03-29 16:59:54 -07002885 /* The display engine is not coherent with the LLC cache on gen6. As
2886 * a result, we make sure that the pinning that is about to occur is
2887 * done with uncached PTEs. This is lowest common denominator for all
2888 * chipsets.
2889 *
2890 * However for gen6+, we could do better by using the GFDT bit instead
2891 * of uncaching, which would allow us to flush all the LLC-cached data
2892 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2893 */
2894 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2895 if (ret)
2896 return ret;
2897
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002898 /* As the user may map the buffer once pinned in the display plane
2899 * (e.g. libkms for the bootup splash), we have to ensure that we
2900 * always use map_and_fenceable for all scanout buffers.
2901 */
2902 ret = i915_gem_object_pin(obj, alignment, true);
2903 if (ret)
2904 return ret;
2905
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002906 i915_gem_object_flush_cpu_write_domain(obj);
2907
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002908 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002909 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002910
2911 /* It should now be out of any other write domains, and we can update
2912 * the domain values for our changes.
2913 */
2914 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002915 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002916
2917 trace_i915_gem_object_change_domain(obj,
2918 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002919 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002920
2921 return 0;
2922}
2923
Chris Wilson85345512010-11-13 09:49:11 +00002924int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002925i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002926{
Chris Wilson88241782011-01-07 17:09:48 +00002927 int ret;
2928
Chris Wilsona8198ee2011-04-13 22:04:09 +01002929 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002930 return 0;
2931
Chris Wilson88241782011-01-07 17:09:48 +00002932 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002933 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002934 if (ret)
2935 return ret;
2936 }
Chris Wilson85345512010-11-13 09:49:11 +00002937
Chris Wilsonc501ae72011-12-14 13:57:23 +01002938 ret = i915_gem_object_wait_rendering(obj);
2939 if (ret)
2940 return ret;
2941
Chris Wilsona8198ee2011-04-13 22:04:09 +01002942 /* Ensure that we invalidate the GPU's caches and TLBs. */
2943 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002944 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002945}
2946
Eric Anholte47c68e2008-11-14 13:35:19 -08002947/**
2948 * Moves a single object to the CPU read, and possibly write domain.
2949 *
2950 * This function returns when the move is complete, including waiting on
2951 * flushes to occur.
2952 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002953int
Chris Wilson919926a2010-11-12 13:42:53 +00002954i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002955{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002956 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002957 int ret;
2958
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002959 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2960 return 0;
2961
Chris Wilson88241782011-01-07 17:09:48 +00002962 ret = i915_gem_object_flush_gpu_write_domain(obj);
2963 if (ret)
2964 return ret;
2965
Chris Wilsonf8413192012-04-10 11:52:50 +01002966 if (write || obj->pending_gpu_write) {
2967 ret = i915_gem_object_wait_rendering(obj);
2968 if (ret)
2969 return ret;
2970 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002971
2972 i915_gem_object_flush_gtt_write_domain(obj);
2973
Chris Wilson05394f32010-11-08 19:18:58 +00002974 old_write_domain = obj->base.write_domain;
2975 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002976
Eric Anholte47c68e2008-11-14 13:35:19 -08002977 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00002978 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002979 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002980
Chris Wilson05394f32010-11-08 19:18:58 +00002981 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002982 }
2983
2984 /* It should now be out of any other write domains, and we can update
2985 * the domain values for our changes.
2986 */
Chris Wilson05394f32010-11-08 19:18:58 +00002987 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08002988
2989 /* If we're writing through the CPU, then the GPU read domains will
2990 * need to be invalidated at next use.
2991 */
2992 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002993 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2994 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002995 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002996
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002997 trace_i915_gem_object_change_domain(obj,
2998 old_read_domains,
2999 old_write_domain);
3000
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003001 return 0;
3002}
3003
Eric Anholt673a3942008-07-30 12:06:12 -07003004/* Throttle our rendering by waiting until the ring has completed our requests
3005 * emitted over 20 msec ago.
3006 *
Eric Anholtb9624422009-06-03 07:27:35 +00003007 * Note that if we were to use the current jiffies each time around the loop,
3008 * we wouldn't escape the function with any frames outstanding if the time to
3009 * render a frame was over 20ms.
3010 *
Eric Anholt673a3942008-07-30 12:06:12 -07003011 * This should get us reasonable parallelism between CPU and GPU but also
3012 * relatively low latency when blocking on a particular request to finish.
3013 */
3014static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003015i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003016{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003017 struct drm_i915_private *dev_priv = dev->dev_private;
3018 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003019 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003020 struct drm_i915_gem_request *request;
3021 struct intel_ring_buffer *ring = NULL;
3022 u32 seqno = 0;
3023 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003024
Chris Wilsone110e8d2011-01-26 15:39:14 +00003025 if (atomic_read(&dev_priv->mm.wedged))
3026 return -EIO;
3027
Chris Wilson1c255952010-09-26 11:03:27 +01003028 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003029 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003030 if (time_after_eq(request->emitted_jiffies, recent_enough))
3031 break;
3032
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003033 ring = request->ring;
3034 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003035 }
Chris Wilson1c255952010-09-26 11:03:27 +01003036 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003037
3038 if (seqno == 0)
3039 return 0;
3040
3041 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003042 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003043 /* And wait for the seqno passing without holding any locks and
3044 * causing extra latency for others. This is safe as the irq
3045 * generation is designed to be run atomically and so is
3046 * lockless.
3047 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003048 if (ring->irq_get(ring)) {
3049 ret = wait_event_interruptible(ring->irq_queue,
3050 i915_seqno_passed(ring->get_seqno(ring), seqno)
3051 || atomic_read(&dev_priv->mm.wedged));
3052 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003053
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003054 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3055 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003056 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3057 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003058 atomic_read(&dev_priv->mm.wedged), 3000)) {
3059 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003060 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003061 }
3062
3063 if (ret == 0)
3064 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003065
Eric Anholt673a3942008-07-30 12:06:12 -07003066 return ret;
3067}
3068
Eric Anholt673a3942008-07-30 12:06:12 -07003069int
Chris Wilson05394f32010-11-08 19:18:58 +00003070i915_gem_object_pin(struct drm_i915_gem_object *obj,
3071 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003072 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003073{
Chris Wilson05394f32010-11-08 19:18:58 +00003074 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003075 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003076 int ret;
3077
Chris Wilson05394f32010-11-08 19:18:58 +00003078 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003079 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003080
Chris Wilson05394f32010-11-08 19:18:58 +00003081 if (obj->gtt_space != NULL) {
3082 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3083 (map_and_fenceable && !obj->map_and_fenceable)) {
3084 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003085 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003086 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3087 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003088 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003089 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003090 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003091 ret = i915_gem_object_unbind(obj);
3092 if (ret)
3093 return ret;
3094 }
3095 }
3096
Chris Wilson05394f32010-11-08 19:18:58 +00003097 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003098 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003099 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003100 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003101 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003102 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003103
Daniel Vetter74898d72012-02-15 23:50:22 +01003104 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3105 i915_gem_gtt_bind_object(obj, obj->cache_level);
3106
Chris Wilson05394f32010-11-08 19:18:58 +00003107 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003108 if (!obj->active)
3109 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003110 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003111 }
Chris Wilson6299f992010-11-24 12:23:44 +00003112 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003113
Chris Wilson23bc5982010-09-29 16:10:57 +01003114 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003115 return 0;
3116}
3117
3118void
Chris Wilson05394f32010-11-08 19:18:58 +00003119i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003120{
Chris Wilson05394f32010-11-08 19:18:58 +00003121 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003122 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003123
Chris Wilson23bc5982010-09-29 16:10:57 +01003124 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003125 BUG_ON(obj->pin_count == 0);
3126 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003127
Chris Wilson05394f32010-11-08 19:18:58 +00003128 if (--obj->pin_count == 0) {
3129 if (!obj->active)
3130 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003131 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003132 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003133 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003134 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003135}
3136
3137int
3138i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003139 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003140{
3141 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003142 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003143 int ret;
3144
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003145 ret = i915_mutex_lock_interruptible(dev);
3146 if (ret)
3147 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003148
Chris Wilson05394f32010-11-08 19:18:58 +00003149 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003150 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003151 ret = -ENOENT;
3152 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003153 }
Eric Anholt673a3942008-07-30 12:06:12 -07003154
Chris Wilson05394f32010-11-08 19:18:58 +00003155 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003156 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003157 ret = -EINVAL;
3158 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003159 }
3160
Chris Wilson05394f32010-11-08 19:18:58 +00003161 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003162 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3163 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003164 ret = -EINVAL;
3165 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003166 }
3167
Chris Wilson05394f32010-11-08 19:18:58 +00003168 obj->user_pin_count++;
3169 obj->pin_filp = file;
3170 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003171 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003172 if (ret)
3173 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003174 }
3175
3176 /* XXX - flush the CPU caches for pinned objects
3177 * as the X server doesn't manage domains yet
3178 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003179 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003180 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003181out:
Chris Wilson05394f32010-11-08 19:18:58 +00003182 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003183unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003184 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003185 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003186}
3187
3188int
3189i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003190 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003191{
3192 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003193 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003194 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003195
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003196 ret = i915_mutex_lock_interruptible(dev);
3197 if (ret)
3198 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003199
Chris Wilson05394f32010-11-08 19:18:58 +00003200 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003201 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003202 ret = -ENOENT;
3203 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003204 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003205
Chris Wilson05394f32010-11-08 19:18:58 +00003206 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003207 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3208 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003209 ret = -EINVAL;
3210 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003211 }
Chris Wilson05394f32010-11-08 19:18:58 +00003212 obj->user_pin_count--;
3213 if (obj->user_pin_count == 0) {
3214 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003215 i915_gem_object_unpin(obj);
3216 }
Eric Anholt673a3942008-07-30 12:06:12 -07003217
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003218out:
Chris Wilson05394f32010-11-08 19:18:58 +00003219 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003220unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003221 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003222 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003223}
3224
3225int
3226i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003227 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003228{
3229 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003230 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003231 int ret;
3232
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003233 ret = i915_mutex_lock_interruptible(dev);
3234 if (ret)
3235 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003236
Chris Wilson05394f32010-11-08 19:18:58 +00003237 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003238 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003239 ret = -ENOENT;
3240 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003241 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003242
Chris Wilson0be555b2010-08-04 15:36:30 +01003243 /* Count all active objects as busy, even if they are currently not used
3244 * by the gpu. Users of this interface expect objects to eventually
3245 * become non-busy without any further actions, therefore emit any
3246 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003247 */
Chris Wilson05394f32010-11-08 19:18:58 +00003248 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003249 if (args->busy) {
3250 /* Unconditionally flush objects, even when the gpu still uses this
3251 * object. Userspace calling this function indicates that it wants to
3252 * use this buffer rather sooner than later, so issuing the required
3253 * flush earlier is beneficial.
3254 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003255 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003256 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003257 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003258 } else if (obj->ring->outstanding_lazy_request ==
3259 obj->last_rendering_seqno) {
3260 struct drm_i915_gem_request *request;
3261
Chris Wilson7a194872010-12-07 10:38:40 +00003262 /* This ring is not being cleared by active usage,
3263 * so emit a request to do so.
3264 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003265 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003266 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003267 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003268 if (ret)
3269 kfree(request);
3270 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003271 ret = -ENOMEM;
3272 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003273
3274 /* Update the active list for the hardware's current position.
3275 * Otherwise this only updates on a delayed timer or when irqs
3276 * are actually unmasked, and our working set ends up being
3277 * larger than required.
3278 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003279 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003280
Chris Wilson05394f32010-11-08 19:18:58 +00003281 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003282 }
Eric Anholt673a3942008-07-30 12:06:12 -07003283
Chris Wilson05394f32010-11-08 19:18:58 +00003284 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003285unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003286 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003287 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003288}
3289
3290int
3291i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3292 struct drm_file *file_priv)
3293{
Akshay Joshi0206e352011-08-16 15:34:10 -04003294 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003295}
3296
Chris Wilson3ef94da2009-09-14 16:50:29 +01003297int
3298i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3299 struct drm_file *file_priv)
3300{
3301 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003302 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003303 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003304
3305 switch (args->madv) {
3306 case I915_MADV_DONTNEED:
3307 case I915_MADV_WILLNEED:
3308 break;
3309 default:
3310 return -EINVAL;
3311 }
3312
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003313 ret = i915_mutex_lock_interruptible(dev);
3314 if (ret)
3315 return ret;
3316
Chris Wilson05394f32010-11-08 19:18:58 +00003317 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003318 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003319 ret = -ENOENT;
3320 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003321 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003322
Chris Wilson05394f32010-11-08 19:18:58 +00003323 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003324 ret = -EINVAL;
3325 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003326 }
3327
Chris Wilson05394f32010-11-08 19:18:58 +00003328 if (obj->madv != __I915_MADV_PURGED)
3329 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003330
Chris Wilson2d7ef392009-09-20 23:13:10 +01003331 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003332 if (i915_gem_object_is_purgeable(obj) &&
3333 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003334 i915_gem_object_truncate(obj);
3335
Chris Wilson05394f32010-11-08 19:18:58 +00003336 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003337
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003338out:
Chris Wilson05394f32010-11-08 19:18:58 +00003339 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003340unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003341 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003342 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003343}
3344
Chris Wilson05394f32010-11-08 19:18:58 +00003345struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3346 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003347{
Chris Wilson73aa8082010-09-30 11:46:12 +01003348 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003349 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003350 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003351
3352 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3353 if (obj == NULL)
3354 return NULL;
3355
3356 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3357 kfree(obj);
3358 return NULL;
3359 }
3360
Hugh Dickins5949eac2011-06-27 16:18:18 -07003361 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3362 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3363
Chris Wilson73aa8082010-09-30 11:46:12 +01003364 i915_gem_info_add_obj(dev_priv, size);
3365
Daniel Vetterc397b902010-04-09 19:05:07 +00003366 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3367 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3368
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003369 if (HAS_LLC(dev)) {
3370 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003371 * cache) for about a 10% performance improvement
3372 * compared to uncached. Graphics requests other than
3373 * display scanout are coherent with the CPU in
3374 * accessing this cache. This means in this mode we
3375 * don't need to clflush on the CPU side, and on the
3376 * GPU side we only need to flush internal caches to
3377 * get data visible to the CPU.
3378 *
3379 * However, we maintain the display planes as UC, and so
3380 * need to rebind when first used as such.
3381 */
3382 obj->cache_level = I915_CACHE_LLC;
3383 } else
3384 obj->cache_level = I915_CACHE_NONE;
3385
Daniel Vetter62b8b212010-04-09 19:05:08 +00003386 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003387 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003388 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003389 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003390 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003391 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003392 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003393 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003394 /* Avoid an unnecessary call to unbind on the first bind. */
3395 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003396
Chris Wilson05394f32010-11-08 19:18:58 +00003397 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003398}
3399
Eric Anholt673a3942008-07-30 12:06:12 -07003400int i915_gem_init_object(struct drm_gem_object *obj)
3401{
Daniel Vetterc397b902010-04-09 19:05:07 +00003402 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003403
Eric Anholt673a3942008-07-30 12:06:12 -07003404 return 0;
3405}
3406
Chris Wilson05394f32010-11-08 19:18:58 +00003407static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003408{
Chris Wilson05394f32010-11-08 19:18:58 +00003409 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003410 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003411 int ret;
3412
3413 ret = i915_gem_object_unbind(obj);
3414 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003415 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003416 &dev_priv->mm.deferred_free_list);
3417 return;
3418 }
3419
Chris Wilson26e12f892011-03-20 11:20:19 +00003420 trace_i915_gem_object_destroy(obj);
3421
Chris Wilson05394f32010-11-08 19:18:58 +00003422 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003423 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003424
Chris Wilson05394f32010-11-08 19:18:58 +00003425 drm_gem_object_release(&obj->base);
3426 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003427
Chris Wilson05394f32010-11-08 19:18:58 +00003428 kfree(obj->bit_17);
3429 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003430}
3431
Chris Wilson05394f32010-11-08 19:18:58 +00003432void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003433{
Chris Wilson05394f32010-11-08 19:18:58 +00003434 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3435 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003436
Chris Wilson05394f32010-11-08 19:18:58 +00003437 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003438 i915_gem_object_unpin(obj);
3439
Chris Wilson05394f32010-11-08 19:18:58 +00003440 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003441 i915_gem_detach_phys_object(dev, obj);
3442
Chris Wilsonbe726152010-07-23 23:18:50 +01003443 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003444}
3445
Jesse Barnes5669fca2009-02-17 15:13:31 -08003446int
Eric Anholt673a3942008-07-30 12:06:12 -07003447i915_gem_idle(struct drm_device *dev)
3448{
3449 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003450 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003451
Keith Packard6dbe2772008-10-14 21:41:13 -07003452 mutex_lock(&dev->struct_mutex);
3453
Chris Wilson87acb0a2010-10-19 10:13:00 +01003454 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003455 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003456 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003457 }
Eric Anholt673a3942008-07-30 12:06:12 -07003458
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003459 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003460 if (ret) {
3461 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003462 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003463 }
Eric Anholt673a3942008-07-30 12:06:12 -07003464
Chris Wilson29105cc2010-01-07 10:39:13 +00003465 /* Under UMS, be paranoid and evict. */
3466 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003467 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003468 if (ret) {
3469 mutex_unlock(&dev->struct_mutex);
3470 return ret;
3471 }
3472 }
3473
Chris Wilson312817a2010-11-22 11:50:11 +00003474 i915_gem_reset_fences(dev);
3475
Chris Wilson29105cc2010-01-07 10:39:13 +00003476 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3477 * We need to replace this with a semaphore, or something.
3478 * And not confound mm.suspended!
3479 */
3480 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003481 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003482
3483 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003484 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003485
Keith Packard6dbe2772008-10-14 21:41:13 -07003486 mutex_unlock(&dev->struct_mutex);
3487
Chris Wilson29105cc2010-01-07 10:39:13 +00003488 /* Cancel the retire work handler, which should be idle now. */
3489 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3490
Eric Anholt673a3942008-07-30 12:06:12 -07003491 return 0;
3492}
3493
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003494void i915_gem_init_swizzling(struct drm_device *dev)
3495{
3496 drm_i915_private_t *dev_priv = dev->dev_private;
3497
Daniel Vetter11782b02012-01-31 16:47:55 +01003498 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003499 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3500 return;
3501
3502 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3503 DISP_TILE_SURFACE_SWIZZLING);
3504
Daniel Vetter11782b02012-01-31 16:47:55 +01003505 if (IS_GEN5(dev))
3506 return;
3507
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003508 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3509 if (IS_GEN6(dev))
3510 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3511 else
3512 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3513}
Daniel Vettere21af882012-02-09 20:53:27 +01003514
3515void i915_gem_init_ppgtt(struct drm_device *dev)
3516{
3517 drm_i915_private_t *dev_priv = dev->dev_private;
3518 uint32_t pd_offset;
3519 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003520 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3521 uint32_t __iomem *pd_addr;
3522 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003523 int i;
3524
3525 if (!dev_priv->mm.aliasing_ppgtt)
3526 return;
3527
Daniel Vetter55a254a2012-03-22 00:14:43 +01003528
3529 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3530 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3531 dma_addr_t pt_addr;
3532
3533 if (dev_priv->mm.gtt->needs_dmar)
3534 pt_addr = ppgtt->pt_dma_addr[i];
3535 else
3536 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3537
3538 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3539 pd_entry |= GEN6_PDE_VALID;
3540
3541 writel(pd_entry, pd_addr + i);
3542 }
3543 readl(pd_addr);
3544
3545 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003546 pd_offset /= 64; /* in cachelines, */
3547 pd_offset <<= 16;
3548
3549 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003550 uint32_t ecochk, gab_ctl, ecobits;
3551
3552 ecobits = I915_READ(GAC_ECO_BITS);
3553 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003554
3555 gab_ctl = I915_READ(GAB_CTL);
3556 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3557
3558 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003559 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3560 ECOCHK_PPGTT_CACHE64B);
3561 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3562 } else if (INTEL_INFO(dev)->gen >= 7) {
3563 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3564 /* GFX_MODE is per-ring on gen7+ */
3565 }
3566
3567 for (i = 0; i < I915_NUM_RINGS; i++) {
3568 ring = &dev_priv->ring[i];
3569
3570 if (INTEL_INFO(dev)->gen >= 7)
3571 I915_WRITE(RING_MODE_GEN7(ring),
3572 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3573
3574 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3575 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3576 }
3577}
3578
Eric Anholt673a3942008-07-30 12:06:12 -07003579int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003580i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003581{
3582 drm_i915_private_t *dev_priv = dev->dev_private;
3583 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003584
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003585 i915_gem_init_swizzling(dev);
3586
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003587 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003588 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003589 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003590
3591 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003592 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003593 if (ret)
3594 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003595 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003596
Chris Wilson549f7362010-10-19 11:19:32 +01003597 if (HAS_BLT(dev)) {
3598 ret = intel_init_blt_ring_buffer(dev);
3599 if (ret)
3600 goto cleanup_bsd_ring;
3601 }
3602
Chris Wilson6f392d5482010-08-07 11:01:22 +01003603 dev_priv->next_seqno = 1;
3604
Daniel Vettere21af882012-02-09 20:53:27 +01003605 i915_gem_init_ppgtt(dev);
3606
Chris Wilson68f95ba2010-05-27 13:18:22 +01003607 return 0;
3608
Chris Wilson549f7362010-10-19 11:19:32 +01003609cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003610 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003611cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003612 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003613 return ret;
3614}
3615
3616void
3617i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3618{
3619 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003620 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003621
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003622 for (i = 0; i < I915_NUM_RINGS; i++)
3623 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003624}
3625
3626int
Eric Anholt673a3942008-07-30 12:06:12 -07003627i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3628 struct drm_file *file_priv)
3629{
3630 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003631 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003632
Jesse Barnes79e53942008-11-07 14:24:08 -08003633 if (drm_core_check_feature(dev, DRIVER_MODESET))
3634 return 0;
3635
Ben Gamariba1234d2009-09-14 17:48:47 -04003636 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003637 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003638 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003639 }
3640
Eric Anholt673a3942008-07-30 12:06:12 -07003641 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003642 dev_priv->mm.suspended = 0;
3643
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003644 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003645 if (ret != 0) {
3646 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003647 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003648 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003649
Chris Wilson69dc4982010-10-19 10:36:51 +01003650 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003651 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3652 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003653 for (i = 0; i < I915_NUM_RINGS; i++) {
3654 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3655 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3656 }
Eric Anholt673a3942008-07-30 12:06:12 -07003657 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003658
Chris Wilson5f353082010-06-07 14:03:03 +01003659 ret = drm_irq_install(dev);
3660 if (ret)
3661 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003662
Eric Anholt673a3942008-07-30 12:06:12 -07003663 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003664
3665cleanup_ringbuffer:
3666 mutex_lock(&dev->struct_mutex);
3667 i915_gem_cleanup_ringbuffer(dev);
3668 dev_priv->mm.suspended = 1;
3669 mutex_unlock(&dev->struct_mutex);
3670
3671 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003672}
3673
3674int
3675i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3676 struct drm_file *file_priv)
3677{
Jesse Barnes79e53942008-11-07 14:24:08 -08003678 if (drm_core_check_feature(dev, DRIVER_MODESET))
3679 return 0;
3680
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003681 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003682 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003683}
3684
3685void
3686i915_gem_lastclose(struct drm_device *dev)
3687{
3688 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003689
Eric Anholte806b492009-01-22 09:56:58 -08003690 if (drm_core_check_feature(dev, DRIVER_MODESET))
3691 return;
3692
Keith Packard6dbe2772008-10-14 21:41:13 -07003693 ret = i915_gem_idle(dev);
3694 if (ret)
3695 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003696}
3697
Chris Wilson64193402010-10-24 12:38:05 +01003698static void
3699init_ring_lists(struct intel_ring_buffer *ring)
3700{
3701 INIT_LIST_HEAD(&ring->active_list);
3702 INIT_LIST_HEAD(&ring->request_list);
3703 INIT_LIST_HEAD(&ring->gpu_write_list);
3704}
3705
Eric Anholt673a3942008-07-30 12:06:12 -07003706void
3707i915_gem_load(struct drm_device *dev)
3708{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003709 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003710 drm_i915_private_t *dev_priv = dev->dev_private;
3711
Chris Wilson69dc4982010-10-19 10:36:51 +01003712 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003713 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3714 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003715 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003716 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003717 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003718 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003719 for (i = 0; i < I915_NUM_RINGS; i++)
3720 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003721 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003722 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003723 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3724 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003725 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003726
Dave Airlie94400122010-07-20 13:15:31 +10003727 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3728 if (IS_GEN3(dev)) {
3729 u32 tmp = I915_READ(MI_ARB_STATE);
3730 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3731 /* arb state is a masked write, so set bit + bit in mask */
3732 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3733 I915_WRITE(MI_ARB_STATE, tmp);
3734 }
3735 }
3736
Chris Wilson72bfa192010-12-19 11:42:05 +00003737 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3738
Jesse Barnesde151cf2008-11-12 10:03:55 -08003739 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003740 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3741 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003742
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003743 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003744 dev_priv->num_fence_regs = 16;
3745 else
3746 dev_priv->num_fence_regs = 8;
3747
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003748 /* Initialize fence registers to zero */
Chris Wilsonada726c2012-04-17 15:31:32 +01003749 i915_gem_reset_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07003750
Eric Anholt673a3942008-07-30 12:06:12 -07003751 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003752 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003753
Chris Wilsonce453d82011-02-21 14:43:56 +00003754 dev_priv->mm.interruptible = true;
3755
Chris Wilson17250b72010-10-28 12:51:39 +01003756 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3757 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3758 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003759}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003760
3761/*
3762 * Create a physically contiguous memory object for this object
3763 * e.g. for cursor + overlay regs
3764 */
Chris Wilson995b6762010-08-20 13:23:26 +01003765static int i915_gem_init_phys_object(struct drm_device *dev,
3766 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003767{
3768 drm_i915_private_t *dev_priv = dev->dev_private;
3769 struct drm_i915_gem_phys_object *phys_obj;
3770 int ret;
3771
3772 if (dev_priv->mm.phys_objs[id - 1] || !size)
3773 return 0;
3774
Eric Anholt9a298b22009-03-24 12:23:04 -07003775 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003776 if (!phys_obj)
3777 return -ENOMEM;
3778
3779 phys_obj->id = id;
3780
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003781 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003782 if (!phys_obj->handle) {
3783 ret = -ENOMEM;
3784 goto kfree_obj;
3785 }
3786#ifdef CONFIG_X86
3787 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3788#endif
3789
3790 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3791
3792 return 0;
3793kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003794 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003795 return ret;
3796}
3797
Chris Wilson995b6762010-08-20 13:23:26 +01003798static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003799{
3800 drm_i915_private_t *dev_priv = dev->dev_private;
3801 struct drm_i915_gem_phys_object *phys_obj;
3802
3803 if (!dev_priv->mm.phys_objs[id - 1])
3804 return;
3805
3806 phys_obj = dev_priv->mm.phys_objs[id - 1];
3807 if (phys_obj->cur_obj) {
3808 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3809 }
3810
3811#ifdef CONFIG_X86
3812 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3813#endif
3814 drm_pci_free(dev, phys_obj->handle);
3815 kfree(phys_obj);
3816 dev_priv->mm.phys_objs[id - 1] = NULL;
3817}
3818
3819void i915_gem_free_all_phys_object(struct drm_device *dev)
3820{
3821 int i;
3822
Dave Airlie260883c2009-01-22 17:58:49 +10003823 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003824 i915_gem_free_phys_object(dev, i);
3825}
3826
3827void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003828 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003829{
Chris Wilson05394f32010-11-08 19:18:58 +00003830 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003831 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003832 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003833 int page_count;
3834
Chris Wilson05394f32010-11-08 19:18:58 +00003835 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003836 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003837 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003838
Chris Wilson05394f32010-11-08 19:18:58 +00003839 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003840 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003841 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003842 if (!IS_ERR(page)) {
3843 char *dst = kmap_atomic(page);
3844 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3845 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003846
Chris Wilsone5281cc2010-10-28 13:45:36 +01003847 drm_clflush_pages(&page, 1);
3848
3849 set_page_dirty(page);
3850 mark_page_accessed(page);
3851 page_cache_release(page);
3852 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003853 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003854 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003855
Chris Wilson05394f32010-11-08 19:18:58 +00003856 obj->phys_obj->cur_obj = NULL;
3857 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003858}
3859
3860int
3861i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003862 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003863 int id,
3864 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003865{
Chris Wilson05394f32010-11-08 19:18:58 +00003866 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003867 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003868 int ret = 0;
3869 int page_count;
3870 int i;
3871
3872 if (id > I915_MAX_PHYS_OBJECT)
3873 return -EINVAL;
3874
Chris Wilson05394f32010-11-08 19:18:58 +00003875 if (obj->phys_obj) {
3876 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003877 return 0;
3878 i915_gem_detach_phys_object(dev, obj);
3879 }
3880
Dave Airlie71acb5e2008-12-30 20:31:46 +10003881 /* create a new object */
3882 if (!dev_priv->mm.phys_objs[id - 1]) {
3883 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003884 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003885 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003886 DRM_ERROR("failed to init phys object %d size: %zu\n",
3887 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003888 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003889 }
3890 }
3891
3892 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003893 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3894 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003895
Chris Wilson05394f32010-11-08 19:18:58 +00003896 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003897
3898 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003899 struct page *page;
3900 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003901
Hugh Dickins5949eac2011-06-27 16:18:18 -07003902 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003903 if (IS_ERR(page))
3904 return PTR_ERR(page);
3905
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003906 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003907 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003908 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003909 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003910
3911 mark_page_accessed(page);
3912 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003913 }
3914
3915 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003916}
3917
3918static int
Chris Wilson05394f32010-11-08 19:18:58 +00003919i915_gem_phys_pwrite(struct drm_device *dev,
3920 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003921 struct drm_i915_gem_pwrite *args,
3922 struct drm_file *file_priv)
3923{
Chris Wilson05394f32010-11-08 19:18:58 +00003924 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003925 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003926
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003927 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3928 unsigned long unwritten;
3929
3930 /* The physical object once assigned is fixed for the lifetime
3931 * of the obj, so we can safely drop the lock and continue
3932 * to access vaddr.
3933 */
3934 mutex_unlock(&dev->struct_mutex);
3935 unwritten = copy_from_user(vaddr, user_data, args->size);
3936 mutex_lock(&dev->struct_mutex);
3937 if (unwritten)
3938 return -EFAULT;
3939 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003940
Daniel Vetter40ce6572010-11-05 18:12:18 +01003941 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003942 return 0;
3943}
Eric Anholtb9624422009-06-03 07:27:35 +00003944
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003945void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003946{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003947 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003948
3949 /* Clean up our request list when the client is going away, so that
3950 * later retire_requests won't dereference our soon-to-be-gone
3951 * file_priv.
3952 */
Chris Wilson1c255952010-09-26 11:03:27 +01003953 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003954 while (!list_empty(&file_priv->mm.request_list)) {
3955 struct drm_i915_gem_request *request;
3956
3957 request = list_first_entry(&file_priv->mm.request_list,
3958 struct drm_i915_gem_request,
3959 client_list);
3960 list_del(&request->client_list);
3961 request->file_priv = NULL;
3962 }
Chris Wilson1c255952010-09-26 11:03:27 +01003963 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003964}
Chris Wilson31169712009-09-14 16:50:28 +01003965
Chris Wilson31169712009-09-14 16:50:28 +01003966static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003967i915_gpu_is_active(struct drm_device *dev)
3968{
3969 drm_i915_private_t *dev_priv = dev->dev_private;
3970 int lists_empty;
3971
Chris Wilson1637ef42010-04-20 17:10:35 +01003972 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003973 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003974
3975 return !lists_empty;
3976}
3977
3978static int
Ying Han1495f232011-05-24 17:12:27 -07003979i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01003980{
Chris Wilson17250b72010-10-28 12:51:39 +01003981 struct drm_i915_private *dev_priv =
3982 container_of(shrinker,
3983 struct drm_i915_private,
3984 mm.inactive_shrinker);
3985 struct drm_device *dev = dev_priv->dev;
3986 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07003987 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01003988 int cnt;
3989
3990 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01003991 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01003992
3993 /* "fast-path" to count number of available objects */
3994 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01003995 cnt = 0;
3996 list_for_each_entry(obj,
3997 &dev_priv->mm.inactive_list,
3998 mm_list)
3999 cnt++;
4000 mutex_unlock(&dev->struct_mutex);
4001 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004002 }
4003
Chris Wilson1637ef42010-04-20 17:10:35 +01004004rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004005 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004006 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004007
Chris Wilson17250b72010-10-28 12:51:39 +01004008 list_for_each_entry_safe(obj, next,
4009 &dev_priv->mm.inactive_list,
4010 mm_list) {
4011 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004012 if (i915_gem_object_unbind(obj) == 0 &&
4013 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004014 break;
Chris Wilson31169712009-09-14 16:50:28 +01004015 }
Chris Wilson31169712009-09-14 16:50:28 +01004016 }
4017
4018 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004019 cnt = 0;
4020 list_for_each_entry_safe(obj, next,
4021 &dev_priv->mm.inactive_list,
4022 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004023 if (nr_to_scan &&
4024 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004025 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004026 else
Chris Wilson17250b72010-10-28 12:51:39 +01004027 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004028 }
4029
Chris Wilson17250b72010-10-28 12:51:39 +01004030 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004031 /*
4032 * We are desperate for pages, so as a last resort, wait
4033 * for the GPU to finish and discard whatever we can.
4034 * This has a dramatic impact to reduce the number of
4035 * OOM-killer events whilst running the GPU aggressively.
4036 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004037 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004038 goto rescan;
4039 }
Chris Wilson17250b72010-10-28 12:51:39 +01004040 mutex_unlock(&dev->struct_mutex);
4041 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004042}