blob: 56060aeb12e3b80ff9622d2f53c01e600f0576cf [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
Daniel Vetterbe6a0372015-03-18 10:46:04 +01002 * Copyright © 2008-2015 Intel Corporation
Eric Anholt673a3942008-07-30 12:06:12 -07003 *
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
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Chris Wilsonc13d87e2016-07-20 09:21:15 +010032#include "i915_gem_dmabuf.h"
Yu Zhangeb822892015-02-10 19:05:49 +080033#include "i915_vgpu.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010034#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070035#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010036#include "intel_frontbuffer.h"
Peter Antoine0ccdacf2016-04-13 15:03:25 +010037#include "intel_mocs.h"
Chris Wilsonc13d87e2016-07-20 09:21:15 +010038#include <linux/reservation.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070039#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070041#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080042#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020043#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070044
Chris Wilson05394f32010-11-08 19:18:58 +000045static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Daniel Vettere62b59e2015-01-21 14:53:48 +010046static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson61050802012-04-17 15:31:31 +010047
Chris Wilsonc76ce032013-08-08 14:41:03 +010048static bool cpu_cache_is_coherent(struct drm_device *dev,
49 enum i915_cache_level level)
50{
51 return HAS_LLC(dev) || level != I915_CACHE_NONE;
52}
53
Chris Wilson2c225692013-08-09 12:26:45 +010054static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
55{
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +053056 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
57 return false;
58
Chris Wilson2c225692013-08-09 12:26:45 +010059 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
60 return true;
61
62 return obj->pin_display;
63}
64
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053065static int
66insert_mappable_node(struct drm_i915_private *i915,
67 struct drm_mm_node *node, u32 size)
68{
69 memset(node, 0, sizeof(*node));
70 return drm_mm_insert_node_in_range_generic(&i915->ggtt.base.mm, node,
71 size, 0, 0, 0,
72 i915->ggtt.mappable_end,
73 DRM_MM_SEARCH_DEFAULT,
74 DRM_MM_CREATE_DEFAULT);
75}
76
77static void
78remove_mappable_node(struct drm_mm_node *node)
79{
80 drm_mm_remove_node(node);
81}
82
Chris Wilson73aa8082010-09-30 11:46:12 +010083/* some bookkeeping */
84static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +010085 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +010086{
Daniel Vetterc20e8352013-07-24 22:40:23 +020087 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010088 dev_priv->mm.object_count++;
89 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020090 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010091}
92
93static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +010094 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +010095{
Daniel Vetterc20e8352013-07-24 22:40:23 +020096 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010097 dev_priv->mm.object_count--;
98 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020099 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100100}
101
Chris Wilson21dd3732011-01-26 15:55:56 +0000102static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100103i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100104{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100105 int ret;
106
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100107 might_sleep();
108
Chris Wilsond98c52c2016-04-13 17:35:05 +0100109 if (!i915_reset_in_progress(error))
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100110 return 0;
111
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200112 /*
113 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
114 * userspace. If it takes that long something really bad is going on and
115 * we should simply try to bail out and fail as gracefully as possible.
116 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 ret = wait_event_interruptible_timeout(error->reset_queue,
Chris Wilsond98c52c2016-04-13 17:35:05 +0100118 !i915_reset_in_progress(error),
Chris Wilsonb52992c2016-10-28 13:58:24 +0100119 I915_RESET_TIMEOUT);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 if (ret == 0) {
121 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
122 return -EIO;
123 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100124 return ret;
Chris Wilsond98c52c2016-04-13 17:35:05 +0100125 } else {
126 return 0;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200127 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100128}
129
Chris Wilson54cf91d2010-11-25 18:00:26 +0000130int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100131{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100132 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100133 int ret;
134
Daniel Vetter33196de2012-11-14 17:14:05 +0100135 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100136 if (ret)
137 return ret;
138
139 ret = mutex_lock_interruptible(&dev->struct_mutex);
140 if (ret)
141 return ret;
142
Chris Wilson76c1dec2010-09-25 11:22:51 +0100143 return 0;
144}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100145
Eric Anholt673a3942008-07-30 12:06:12 -0700146int
Eric Anholt5a125c32008-10-22 21:40:13 -0700147i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000148 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700149{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300150 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen62106b42016-03-18 10:42:57 +0200151 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300152 struct drm_i915_gem_get_aperture *args = data;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100153 struct i915_vma *vma;
Chris Wilson6299f992010-11-24 12:23:44 +0000154 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700155
Chris Wilson6299f992010-11-24 12:23:44 +0000156 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100157 mutex_lock(&dev->struct_mutex);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000158 list_for_each_entry(vma, &ggtt->base.active_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100159 if (i915_vma_is_pinned(vma))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100160 pinned += vma->node.size;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000161 list_for_each_entry(vma, &ggtt->base.inactive_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100162 if (i915_vma_is_pinned(vma))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100163 pinned += vma->node.size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100164 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700165
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300166 args->aper_size = ggtt->base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400167 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000168
Eric Anholt5a125c32008-10-22 21:40:13 -0700169 return 0;
170}
171
Chris Wilson03ac84f2016-10-28 13:58:36 +0100172static struct sg_table *
Chris Wilson6a2c4232014-11-04 04:51:40 -0800173i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100174{
Al Viro93c76a32015-12-04 23:45:44 -0500175 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800176 char *vaddr = obj->phys_handle->vaddr;
177 struct sg_table *st;
178 struct scatterlist *sg;
179 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100180
Chris Wilson6a2c4232014-11-04 04:51:40 -0800181 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
Chris Wilson03ac84f2016-10-28 13:58:36 +0100182 return ERR_PTR(-EINVAL);
Chris Wilson00731152014-05-21 12:42:56 +0100183
Chris Wilson6a2c4232014-11-04 04:51:40 -0800184 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
185 struct page *page;
186 char *src;
187
188 page = shmem_read_mapping_page(mapping, i);
189 if (IS_ERR(page))
Chris Wilson03ac84f2016-10-28 13:58:36 +0100190 return ERR_CAST(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800191
192 src = kmap_atomic(page);
193 memcpy(vaddr, src, PAGE_SIZE);
194 drm_clflush_virt_range(vaddr, PAGE_SIZE);
195 kunmap_atomic(src);
196
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300197 put_page(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800198 vaddr += PAGE_SIZE;
199 }
200
Chris Wilsonc0336662016-05-06 15:40:21 +0100201 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800202
203 st = kmalloc(sizeof(*st), GFP_KERNEL);
204 if (st == NULL)
Chris Wilson03ac84f2016-10-28 13:58:36 +0100205 return ERR_PTR(-ENOMEM);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800206
207 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
208 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100209 return ERR_PTR(-ENOMEM);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800210 }
211
212 sg = st->sgl;
213 sg->offset = 0;
214 sg->length = obj->base.size;
215
216 sg_dma_address(sg) = obj->phys_handle->busaddr;
217 sg_dma_len(sg) = obj->base.size;
218
Chris Wilson03ac84f2016-10-28 13:58:36 +0100219 return st;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800220}
221
222static void
Chris Wilson03ac84f2016-10-28 13:58:36 +0100223__i915_gem_object_release_shmem(struct drm_i915_gem_object *obj)
Chris Wilson6a2c4232014-11-04 04:51:40 -0800224{
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100225 GEM_BUG_ON(obj->mm.madv == __I915_MADV_PURGED);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800226
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100227 if (obj->mm.madv == I915_MADV_DONTNEED)
228 obj->mm.dirty = false;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800229
Chris Wilson03ac84f2016-10-28 13:58:36 +0100230 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
231 i915_gem_clflush_object(obj, false);
232
233 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
234 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
235}
236
237static void
238i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj,
239 struct sg_table *pages)
240{
241 __i915_gem_object_release_shmem(obj);
242
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100243 if (obj->mm.dirty) {
Al Viro93c76a32015-12-04 23:45:44 -0500244 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800245 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100246 int i;
247
248 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800249 struct page *page;
250 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100251
Chris Wilson6a2c4232014-11-04 04:51:40 -0800252 page = shmem_read_mapping_page(mapping, i);
253 if (IS_ERR(page))
254 continue;
255
256 dst = kmap_atomic(page);
257 drm_clflush_virt_range(vaddr, PAGE_SIZE);
258 memcpy(dst, vaddr, PAGE_SIZE);
259 kunmap_atomic(dst);
260
261 set_page_dirty(page);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100262 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100263 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300264 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100265 vaddr += PAGE_SIZE;
266 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100267 obj->mm.dirty = false;
Chris Wilson00731152014-05-21 12:42:56 +0100268 }
269
Chris Wilson03ac84f2016-10-28 13:58:36 +0100270 sg_free_table(pages);
271 kfree(pages);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800272}
273
274static void
275i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
276{
277 drm_pci_free(obj->base.dev, obj->phys_handle);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100278 i915_gem_object_unpin_pages(obj);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800279}
280
281static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
282 .get_pages = i915_gem_object_get_pages_phys,
283 .put_pages = i915_gem_object_put_pages_phys,
284 .release = i915_gem_object_release_phys,
285};
286
Chris Wilson35a96112016-08-14 18:44:40 +0100287int i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Chris Wilsonaa653a62016-08-04 07:52:27 +0100288{
289 struct i915_vma *vma;
290 LIST_HEAD(still_in_list);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100291 int ret;
Chris Wilsonaa653a62016-08-04 07:52:27 +0100292
Chris Wilson02bef8f2016-08-14 18:44:41 +0100293 lockdep_assert_held(&obj->base.dev->struct_mutex);
294
295 /* Closed vma are removed from the obj->vma_list - but they may
296 * still have an active binding on the object. To remove those we
297 * must wait for all rendering to complete to the object (as unbinding
298 * must anyway), and retire the requests.
Chris Wilsonaa653a62016-08-04 07:52:27 +0100299 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100300 ret = i915_gem_object_wait(obj,
301 I915_WAIT_INTERRUPTIBLE |
302 I915_WAIT_LOCKED |
303 I915_WAIT_ALL,
304 MAX_SCHEDULE_TIMEOUT,
305 NULL);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100306 if (ret)
307 return ret;
308
309 i915_gem_retire_requests(to_i915(obj->base.dev));
310
Chris Wilsonaa653a62016-08-04 07:52:27 +0100311 while ((vma = list_first_entry_or_null(&obj->vma_list,
312 struct i915_vma,
313 obj_link))) {
314 list_move_tail(&vma->obj_link, &still_in_list);
315 ret = i915_vma_unbind(vma);
316 if (ret)
317 break;
318 }
319 list_splice(&still_in_list, &obj->vma_list);
320
321 return ret;
322}
323
Chris Wilsone95433c2016-10-28 13:58:27 +0100324static long
325i915_gem_object_wait_fence(struct dma_fence *fence,
326 unsigned int flags,
327 long timeout,
328 struct intel_rps_client *rps)
329{
330 struct drm_i915_gem_request *rq;
331
332 BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1);
333
334 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
335 return timeout;
336
337 if (!dma_fence_is_i915(fence))
338 return dma_fence_wait_timeout(fence,
339 flags & I915_WAIT_INTERRUPTIBLE,
340 timeout);
341
342 rq = to_request(fence);
343 if (i915_gem_request_completed(rq))
344 goto out;
345
346 /* This client is about to stall waiting for the GPU. In many cases
347 * this is undesirable and limits the throughput of the system, as
348 * many clients cannot continue processing user input/output whilst
349 * blocked. RPS autotuning may take tens of milliseconds to respond
350 * to the GPU load and thus incurs additional latency for the client.
351 * We can circumvent that by promoting the GPU frequency to maximum
352 * before we wait. This makes the GPU throttle up much more quickly
353 * (good for benchmarks and user experience, e.g. window animations),
354 * but at a cost of spending more power processing the workload
355 * (bad for battery). Not all clients even want their results
356 * immediately and for them we should just let the GPU select its own
357 * frequency to maximise efficiency. To prevent a single client from
358 * forcing the clocks too high for the whole system, we only allow
359 * each client to waitboost once in a busy period.
360 */
361 if (rps) {
362 if (INTEL_GEN(rq->i915) >= 6)
363 gen6_rps_boost(rq->i915, rps, rq->emitted_jiffies);
364 else
365 rps = NULL;
366 }
367
368 timeout = i915_wait_request(rq, flags, timeout);
369
370out:
371 if (flags & I915_WAIT_LOCKED && i915_gem_request_completed(rq))
372 i915_gem_request_retire_upto(rq);
373
374 if (rps && rq->fence.seqno == rq->engine->last_submitted_seqno) {
375 /* The GPU is now idle and this client has stalled.
376 * Since no other client has submitted a request in the
377 * meantime, assume that this client is the only one
378 * supplying work to the GPU but is unable to keep that
379 * work supplied because it is waiting. Since the GPU is
380 * then never kept fully busy, RPS autoclocking will
381 * keep the clocks relatively low, causing further delays.
382 * Compensate by giving the synchronous client credit for
383 * a waitboost next time.
384 */
385 spin_lock(&rq->i915->rps.client_lock);
386 list_del_init(&rps->link);
387 spin_unlock(&rq->i915->rps.client_lock);
388 }
389
390 return timeout;
391}
392
393static long
394i915_gem_object_wait_reservation(struct reservation_object *resv,
395 unsigned int flags,
396 long timeout,
397 struct intel_rps_client *rps)
398{
399 struct dma_fence *excl;
400
401 if (flags & I915_WAIT_ALL) {
402 struct dma_fence **shared;
403 unsigned int count, i;
404 int ret;
405
406 ret = reservation_object_get_fences_rcu(resv,
407 &excl, &count, &shared);
408 if (ret)
409 return ret;
410
411 for (i = 0; i < count; i++) {
412 timeout = i915_gem_object_wait_fence(shared[i],
413 flags, timeout,
414 rps);
415 if (timeout <= 0)
416 break;
417
418 dma_fence_put(shared[i]);
419 }
420
421 for (; i < count; i++)
422 dma_fence_put(shared[i]);
423 kfree(shared);
424 } else {
425 excl = reservation_object_get_excl_rcu(resv);
426 }
427
428 if (excl && timeout > 0)
429 timeout = i915_gem_object_wait_fence(excl, flags, timeout, rps);
430
431 dma_fence_put(excl);
432
433 return timeout;
434}
435
Chris Wilson00e60f22016-08-04 16:32:40 +0100436/**
Chris Wilsone95433c2016-10-28 13:58:27 +0100437 * Waits for rendering to the object to be completed
Chris Wilson00e60f22016-08-04 16:32:40 +0100438 * @obj: i915 gem object
Chris Wilsone95433c2016-10-28 13:58:27 +0100439 * @flags: how to wait (under a lock, for all rendering or just for writes etc)
440 * @timeout: how long to wait
441 * @rps: client (user process) to charge for any waitboosting
Chris Wilson00e60f22016-08-04 16:32:40 +0100442 */
443int
Chris Wilsone95433c2016-10-28 13:58:27 +0100444i915_gem_object_wait(struct drm_i915_gem_object *obj,
445 unsigned int flags,
446 long timeout,
447 struct intel_rps_client *rps)
Chris Wilson00e60f22016-08-04 16:32:40 +0100448{
449 struct reservation_object *resv;
450 struct i915_gem_active *active;
451 unsigned long active_mask;
452 int idx;
453
Chris Wilsone95433c2016-10-28 13:58:27 +0100454 might_sleep();
455#if IS_ENABLED(CONFIG_LOCKDEP)
456 GEM_BUG_ON(debug_locks &&
457 !!lockdep_is_held(&obj->base.dev->struct_mutex) !=
458 !!(flags & I915_WAIT_LOCKED));
459#endif
460 GEM_BUG_ON(timeout < 0);
Chris Wilson00e60f22016-08-04 16:32:40 +0100461
Chris Wilsone95433c2016-10-28 13:58:27 +0100462 if (flags & I915_WAIT_ALL) {
Chris Wilson00e60f22016-08-04 16:32:40 +0100463 active = obj->last_read;
464 active_mask = i915_gem_object_get_active(obj);
465 } else {
466 active_mask = 1;
467 active = &obj->last_write;
468 }
469
470 for_each_active(active_mask, idx) {
Chris Wilsone95433c2016-10-28 13:58:27 +0100471 struct drm_i915_gem_request *request;
Chris Wilson00e60f22016-08-04 16:32:40 +0100472
Chris Wilsone95433c2016-10-28 13:58:27 +0100473 request = i915_gem_active_get_unlocked(&active[idx]);
474 if (request) {
475 timeout = i915_gem_object_wait_fence(&request->fence,
476 flags, timeout,
477 rps);
478 i915_gem_request_put(request);
479 }
480 if (timeout < 0)
481 return timeout;
Chris Wilson00e60f22016-08-04 16:32:40 +0100482 }
483
484 resv = i915_gem_object_get_dmabuf_resv(obj);
Chris Wilsone95433c2016-10-28 13:58:27 +0100485 if (resv)
486 timeout = i915_gem_object_wait_reservation(resv,
487 flags, timeout,
488 rps);
489 return timeout < 0 ? timeout : 0;
Chris Wilson00e60f22016-08-04 16:32:40 +0100490}
491
492static struct intel_rps_client *to_rps_client(struct drm_file *file)
493{
494 struct drm_i915_file_private *fpriv = file->driver_priv;
495
496 return &fpriv->rps;
497}
498
Chris Wilson00731152014-05-21 12:42:56 +0100499int
500i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
501 int align)
502{
503 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800504 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100505
506 if (obj->phys_handle) {
507 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
508 return -EBUSY;
509
510 return 0;
511 }
512
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100513 if (obj->mm.madv != I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100514 return -EFAULT;
515
516 if (obj->base.filp == NULL)
517 return -EINVAL;
518
Chris Wilson4717ca92016-08-04 07:52:28 +0100519 ret = i915_gem_object_unbind(obj);
520 if (ret)
521 return ret;
522
Chris Wilson03ac84f2016-10-28 13:58:36 +0100523 __i915_gem_object_put_pages(obj);
524 if (obj->mm.pages)
525 return -EBUSY;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800526
Chris Wilson00731152014-05-21 12:42:56 +0100527 /* create a new object */
528 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
529 if (!phys)
530 return -ENOMEM;
531
Chris Wilson00731152014-05-21 12:42:56 +0100532 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800533 obj->ops = &i915_gem_phys_ops;
534
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100535 return i915_gem_object_pin_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100536}
537
538static int
539i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
540 struct drm_i915_gem_pwrite *args,
Chris Wilson03ac84f2016-10-28 13:58:36 +0100541 struct drm_file *file)
Chris Wilson00731152014-05-21 12:42:56 +0100542{
543 struct drm_device *dev = obj->base.dev;
544 void *vaddr = obj->phys_handle->vaddr + args->offset;
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300545 char __user *user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilsone95433c2016-10-28 13:58:27 +0100546 int ret;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800547
548 /* We manually control the domain here and pretend that it
549 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
550 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100551 lockdep_assert_held(&obj->base.dev->struct_mutex);
552 ret = i915_gem_object_wait(obj,
553 I915_WAIT_INTERRUPTIBLE |
554 I915_WAIT_LOCKED |
555 I915_WAIT_ALL,
556 MAX_SCHEDULE_TIMEOUT,
Chris Wilson03ac84f2016-10-28 13:58:36 +0100557 to_rps_client(file));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800558 if (ret)
559 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100560
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700561 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100562 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
563 unsigned long unwritten;
564
565 /* The physical object once assigned is fixed for the lifetime
566 * of the obj, so we can safely drop the lock and continue
567 * to access vaddr.
568 */
569 mutex_unlock(&dev->struct_mutex);
570 unwritten = copy_from_user(vaddr, user_data, args->size);
571 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200572 if (unwritten) {
573 ret = -EFAULT;
574 goto out;
575 }
Chris Wilson00731152014-05-21 12:42:56 +0100576 }
577
Chris Wilson6a2c4232014-11-04 04:51:40 -0800578 drm_clflush_virt_range(vaddr, args->size);
Chris Wilsonc0336662016-05-06 15:40:21 +0100579 i915_gem_chipset_flush(to_i915(dev));
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200580
581out:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700582 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200583 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100584}
585
Chris Wilson42dcedd2012-11-15 11:32:30 +0000586void *i915_gem_object_alloc(struct drm_device *dev)
587{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100588 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100589 return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000590}
591
592void i915_gem_object_free(struct drm_i915_gem_object *obj)
593{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100594 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100595 kmem_cache_free(dev_priv->objects, obj);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000596}
597
Dave Airlieff72145b2011-02-07 12:16:14 +1000598static int
599i915_gem_create(struct drm_file *file,
600 struct drm_device *dev,
601 uint64_t size,
602 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700603{
Chris Wilson05394f32010-11-08 19:18:58 +0000604 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300605 int ret;
606 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700607
Dave Airlieff72145b2011-02-07 12:16:14 +1000608 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200609 if (size == 0)
610 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700611
612 /* Allocate the new object */
Dave Gordond37cd8a2016-04-22 19:14:32 +0100613 obj = i915_gem_object_create(dev, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100614 if (IS_ERR(obj))
615 return PTR_ERR(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700616
Chris Wilson05394f32010-11-08 19:18:58 +0000617 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100618 /* drop reference from allocate - handle holds it now */
Chris Wilson34911fd2016-07-20 13:31:54 +0100619 i915_gem_object_put_unlocked(obj);
Daniel Vetterd861e332013-07-24 23:25:03 +0200620 if (ret)
621 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100622
Dave Airlieff72145b2011-02-07 12:16:14 +1000623 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700624 return 0;
625}
626
Dave Airlieff72145b2011-02-07 12:16:14 +1000627int
628i915_gem_dumb_create(struct drm_file *file,
629 struct drm_device *dev,
630 struct drm_mode_create_dumb *args)
631{
632 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300633 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000634 args->size = args->pitch * args->height;
635 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000636 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000637}
638
Dave Airlieff72145b2011-02-07 12:16:14 +1000639/**
640 * Creates a new mm object and returns a handle to it.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100641 * @dev: drm device pointer
642 * @data: ioctl data blob
643 * @file: drm file pointer
Dave Airlieff72145b2011-02-07 12:16:14 +1000644 */
645int
646i915_gem_create_ioctl(struct drm_device *dev, void *data,
647 struct drm_file *file)
648{
649 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200650
Dave Airlieff72145b2011-02-07 12:16:14 +1000651 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000652 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000653}
654
Daniel Vetter8c599672011-12-14 13:57:31 +0100655static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100656__copy_to_user_swizzled(char __user *cpu_vaddr,
657 const char *gpu_vaddr, int gpu_offset,
658 int length)
659{
660 int ret, cpu_offset = 0;
661
662 while (length > 0) {
663 int cacheline_end = ALIGN(gpu_offset + 1, 64);
664 int this_length = min(cacheline_end - gpu_offset, length);
665 int swizzled_gpu_offset = gpu_offset ^ 64;
666
667 ret = __copy_to_user(cpu_vaddr + cpu_offset,
668 gpu_vaddr + swizzled_gpu_offset,
669 this_length);
670 if (ret)
671 return ret + length;
672
673 cpu_offset += this_length;
674 gpu_offset += this_length;
675 length -= this_length;
676 }
677
678 return 0;
679}
680
681static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700682__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
683 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100684 int length)
685{
686 int ret, cpu_offset = 0;
687
688 while (length > 0) {
689 int cacheline_end = ALIGN(gpu_offset + 1, 64);
690 int this_length = min(cacheline_end - gpu_offset, length);
691 int swizzled_gpu_offset = gpu_offset ^ 64;
692
693 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
694 cpu_vaddr + cpu_offset,
695 this_length);
696 if (ret)
697 return ret + length;
698
699 cpu_offset += this_length;
700 gpu_offset += this_length;
701 length -= this_length;
702 }
703
704 return 0;
705}
706
Brad Volkin4c914c02014-02-18 10:15:45 -0800707/*
708 * Pins the specified object's pages and synchronizes the object with
709 * GPU accesses. Sets needs_clflush to non-zero if the caller should
710 * flush the object from the CPU cache.
711 */
712int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
Chris Wilson43394c72016-08-18 17:16:47 +0100713 unsigned int *needs_clflush)
Brad Volkin4c914c02014-02-18 10:15:45 -0800714{
715 int ret;
716
Chris Wilsone95433c2016-10-28 13:58:27 +0100717 lockdep_assert_held(&obj->base.dev->struct_mutex);
Brad Volkin4c914c02014-02-18 10:15:45 -0800718
Chris Wilsone95433c2016-10-28 13:58:27 +0100719 *needs_clflush = 0;
Chris Wilson43394c72016-08-18 17:16:47 +0100720 if (!i915_gem_object_has_struct_page(obj))
721 return -ENODEV;
Brad Volkin4c914c02014-02-18 10:15:45 -0800722
Chris Wilsone95433c2016-10-28 13:58:27 +0100723 ret = i915_gem_object_wait(obj,
724 I915_WAIT_INTERRUPTIBLE |
725 I915_WAIT_LOCKED,
726 MAX_SCHEDULE_TIMEOUT,
727 NULL);
Chris Wilsonc13d87e2016-07-20 09:21:15 +0100728 if (ret)
729 return ret;
730
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100731 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100732 if (ret)
733 return ret;
734
Chris Wilsona314d5c2016-08-18 17:16:48 +0100735 i915_gem_object_flush_gtt_write_domain(obj);
736
Chris Wilson43394c72016-08-18 17:16:47 +0100737 /* If we're not in the cpu read domain, set ourself into the gtt
738 * read domain and manually flush cachelines (if required). This
739 * optimizes for the case when the gpu will dirty the data
740 * anyway again before the next pread happens.
741 */
742 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
Brad Volkin4c914c02014-02-18 10:15:45 -0800743 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
744 obj->cache_level);
Brad Volkin4c914c02014-02-18 10:15:45 -0800745
Chris Wilson43394c72016-08-18 17:16:47 +0100746 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
747 ret = i915_gem_object_set_to_cpu_domain(obj, false);
Chris Wilson97649512016-08-18 17:16:50 +0100748 if (ret)
749 goto err_unpin;
750
Chris Wilson43394c72016-08-18 17:16:47 +0100751 *needs_clflush = 0;
752 }
753
Chris Wilson97649512016-08-18 17:16:50 +0100754 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100755 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100756
757err_unpin:
758 i915_gem_object_unpin_pages(obj);
759 return ret;
Chris Wilson43394c72016-08-18 17:16:47 +0100760}
761
762int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj,
763 unsigned int *needs_clflush)
764{
765 int ret;
766
Chris Wilsone95433c2016-10-28 13:58:27 +0100767 lockdep_assert_held(&obj->base.dev->struct_mutex);
768
Chris Wilson43394c72016-08-18 17:16:47 +0100769 *needs_clflush = 0;
770 if (!i915_gem_object_has_struct_page(obj))
771 return -ENODEV;
772
Chris Wilsone95433c2016-10-28 13:58:27 +0100773 ret = i915_gem_object_wait(obj,
774 I915_WAIT_INTERRUPTIBLE |
775 I915_WAIT_LOCKED |
776 I915_WAIT_ALL,
777 MAX_SCHEDULE_TIMEOUT,
778 NULL);
Chris Wilson43394c72016-08-18 17:16:47 +0100779 if (ret)
780 return ret;
781
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100782 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100783 if (ret)
784 return ret;
785
Chris Wilsona314d5c2016-08-18 17:16:48 +0100786 i915_gem_object_flush_gtt_write_domain(obj);
787
Chris Wilson43394c72016-08-18 17:16:47 +0100788 /* If we're not in the cpu write domain, set ourself into the
789 * gtt write domain and manually flush cachelines (as required).
790 * This optimizes for the case when the gpu will use the data
791 * right away and we therefore have to clflush anyway.
792 */
793 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
794 *needs_clflush |= cpu_write_needs_clflush(obj) << 1;
795
796 /* Same trick applies to invalidate partially written cachelines read
797 * before writing.
798 */
799 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
800 *needs_clflush |= !cpu_cache_is_coherent(obj->base.dev,
801 obj->cache_level);
802
Chris Wilson43394c72016-08-18 17:16:47 +0100803 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
804 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilson97649512016-08-18 17:16:50 +0100805 if (ret)
806 goto err_unpin;
807
Chris Wilson43394c72016-08-18 17:16:47 +0100808 *needs_clflush = 0;
809 }
810
811 if ((*needs_clflush & CLFLUSH_AFTER) == 0)
812 obj->cache_dirty = true;
813
814 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100815 obj->mm.dirty = true;
Chris Wilson97649512016-08-18 17:16:50 +0100816 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100817 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100818
819err_unpin:
820 i915_gem_object_unpin_pages(obj);
821 return ret;
Brad Volkin4c914c02014-02-18 10:15:45 -0800822}
823
Daniel Vetterd174bd62012-03-25 19:47:40 +0200824/* Per-page copy function for the shmem pread fastpath.
825 * Flushes invalid cachelines before reading the target if
826 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700827static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200828shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
829 char __user *user_data,
830 bool page_do_bit17_swizzling, bool needs_clflush)
831{
832 char *vaddr;
833 int ret;
834
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200835 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200836 return -EINVAL;
837
838 vaddr = kmap_atomic(page);
839 if (needs_clflush)
840 drm_clflush_virt_range(vaddr + shmem_page_offset,
841 page_length);
842 ret = __copy_to_user_inatomic(user_data,
843 vaddr + shmem_page_offset,
844 page_length);
845 kunmap_atomic(vaddr);
846
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100847 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200848}
849
Daniel Vetter23c18c72012-03-25 19:47:42 +0200850static void
851shmem_clflush_swizzled_range(char *addr, unsigned long length,
852 bool swizzled)
853{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200854 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200855 unsigned long start = (unsigned long) addr;
856 unsigned long end = (unsigned long) addr + length;
857
858 /* For swizzling simply ensure that we always flush both
859 * channels. Lame, but simple and it works. Swizzled
860 * pwrite/pread is far from a hotpath - current userspace
861 * doesn't use it at all. */
862 start = round_down(start, 128);
863 end = round_up(end, 128);
864
865 drm_clflush_virt_range((void *)start, end - start);
866 } else {
867 drm_clflush_virt_range(addr, length);
868 }
869
870}
871
Daniel Vetterd174bd62012-03-25 19:47:40 +0200872/* Only difference to the fast-path function is that this can handle bit17
873 * and uses non-atomic copy and kmap functions. */
874static int
875shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
876 char __user *user_data,
877 bool page_do_bit17_swizzling, bool needs_clflush)
878{
879 char *vaddr;
880 int ret;
881
882 vaddr = kmap(page);
883 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200884 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
885 page_length,
886 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200887
888 if (page_do_bit17_swizzling)
889 ret = __copy_to_user_swizzled(user_data,
890 vaddr, shmem_page_offset,
891 page_length);
892 else
893 ret = __copy_to_user(user_data,
894 vaddr + shmem_page_offset,
895 page_length);
896 kunmap(page);
897
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100898 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200899}
900
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530901static inline unsigned long
902slow_user_access(struct io_mapping *mapping,
903 uint64_t page_base, int page_offset,
904 char __user *user_data,
905 unsigned long length, bool pwrite)
906{
907 void __iomem *ioaddr;
908 void *vaddr;
909 uint64_t unwritten;
910
911 ioaddr = io_mapping_map_wc(mapping, page_base, PAGE_SIZE);
912 /* We can use the cpu mem copy function because this is X86. */
913 vaddr = (void __force *)ioaddr + page_offset;
914 if (pwrite)
915 unwritten = __copy_from_user(vaddr, user_data, length);
916 else
917 unwritten = __copy_to_user(user_data, vaddr, length);
918
919 io_mapping_unmap(ioaddr);
920 return unwritten;
921}
922
923static int
924i915_gem_gtt_pread(struct drm_device *dev,
925 struct drm_i915_gem_object *obj, uint64_t size,
926 uint64_t data_offset, uint64_t data_ptr)
927{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100928 struct drm_i915_private *dev_priv = to_i915(dev);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530929 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson058d88c2016-08-15 10:49:06 +0100930 struct i915_vma *vma;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530931 struct drm_mm_node node;
932 char __user *user_data;
933 uint64_t remain;
934 uint64_t offset;
935 int ret;
936
Chris Wilson9c870d02016-10-24 13:42:15 +0100937 intel_runtime_pm_get(to_i915(dev));
Chris Wilson058d88c2016-08-15 10:49:06 +0100938 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, PIN_MAPPABLE);
Chris Wilson18034582016-08-18 17:16:45 +0100939 if (!IS_ERR(vma)) {
940 node.start = i915_ggtt_offset(vma);
941 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +0100942 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +0100943 if (ret) {
944 i915_vma_unpin(vma);
945 vma = ERR_PTR(ret);
946 }
947 }
Chris Wilson058d88c2016-08-15 10:49:06 +0100948 if (IS_ERR(vma)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530949 ret = insert_mappable_node(dev_priv, &node, PAGE_SIZE);
950 if (ret)
951 goto out;
952
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100953 ret = i915_gem_object_pin_pages(obj);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530954 if (ret) {
955 remove_mappable_node(&node);
956 goto out;
957 }
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530958 }
959
960 ret = i915_gem_object_set_to_gtt_domain(obj, false);
961 if (ret)
962 goto out_unpin;
963
964 user_data = u64_to_user_ptr(data_ptr);
965 remain = size;
966 offset = data_offset;
967
968 mutex_unlock(&dev->struct_mutex);
969 if (likely(!i915.prefault_disable)) {
Al Viro4bce9f62016-09-17 18:02:44 -0400970 ret = fault_in_pages_writeable(user_data, remain);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530971 if (ret) {
972 mutex_lock(&dev->struct_mutex);
973 goto out_unpin;
974 }
975 }
976
977 while (remain > 0) {
978 /* Operation in this page
979 *
980 * page_base = page offset within aperture
981 * page_offset = offset within page
982 * page_length = bytes to copy for this page
983 */
984 u32 page_base = node.start;
985 unsigned page_offset = offset_in_page(offset);
986 unsigned page_length = PAGE_SIZE - page_offset;
987 page_length = remain < page_length ? remain : page_length;
988 if (node.allocated) {
989 wmb();
990 ggtt->base.insert_page(&ggtt->base,
991 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
992 node.start,
993 I915_CACHE_NONE, 0);
994 wmb();
995 } else {
996 page_base += offset & PAGE_MASK;
997 }
998 /* This is a slow read/write as it tries to read from
999 * and write to user memory which may result into page
1000 * faults, and so we cannot perform this under struct_mutex.
1001 */
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001002 if (slow_user_access(&ggtt->mappable, page_base,
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301003 page_offset, user_data,
1004 page_length, false)) {
1005 ret = -EFAULT;
1006 break;
1007 }
1008
1009 remain -= page_length;
1010 user_data += page_length;
1011 offset += page_length;
1012 }
1013
1014 mutex_lock(&dev->struct_mutex);
1015 if (ret == 0 && (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) {
1016 /* The user has modified the object whilst we tried
1017 * reading from it, and we now have no idea what domain
1018 * the pages should be in. As we have just been touching
1019 * them directly, flush everything back to the GTT
1020 * domain.
1021 */
1022 ret = i915_gem_object_set_to_gtt_domain(obj, false);
1023 }
1024
1025out_unpin:
1026 if (node.allocated) {
1027 wmb();
1028 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001029 node.start, node.size);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301030 i915_gem_object_unpin_pages(obj);
1031 remove_mappable_node(&node);
1032 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001033 i915_vma_unpin(vma);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301034 }
1035out:
Chris Wilson9c870d02016-10-24 13:42:15 +01001036 intel_runtime_pm_put(to_i915(dev));
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301037 return ret;
1038}
1039
Eric Anholteb014592009-03-10 11:44:52 -07001040static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001041i915_gem_shmem_pread(struct drm_device *dev,
1042 struct drm_i915_gem_object *obj,
1043 struct drm_i915_gem_pread *args,
1044 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -07001045{
Daniel Vetter8461d222011-12-14 13:57:32 +01001046 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -07001047 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +01001048 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +01001049 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +01001050 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +02001051 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +02001052 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +02001053 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -07001054
Brad Volkin4c914c02014-02-18 10:15:45 -08001055 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001056 if (ret)
1057 return ret;
1058
Chris Wilson43394c72016-08-18 17:16:47 +01001059 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
1060 user_data = u64_to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -07001061 offset = args->offset;
Chris Wilson43394c72016-08-18 17:16:47 +01001062 remain = args->size;
Daniel Vetter8461d222011-12-14 13:57:32 +01001063
Chris Wilsona4f5ea62016-10-28 13:58:35 +01001064 for_each_sg_page(obj->mm.pages->sgl, &sg_iter, obj->mm.pages->nents,
Imre Deak67d5a502013-02-18 19:28:02 +02001065 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +02001066 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001067
1068 if (remain <= 0)
1069 break;
1070
Eric Anholteb014592009-03-10 11:44:52 -07001071 /* Operation in this page
1072 *
Eric Anholteb014592009-03-10 11:44:52 -07001073 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -07001074 * page_length = bytes to copy for this page
1075 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +01001076 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -07001077 page_length = remain;
1078 if ((shmem_page_offset + page_length) > PAGE_SIZE)
1079 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -07001080
Daniel Vetter8461d222011-12-14 13:57:32 +01001081 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
1082 (page_to_phys(page) & (1 << 17)) != 0;
1083
Daniel Vetterd174bd62012-03-25 19:47:40 +02001084 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
1085 user_data, page_do_bit17_swizzling,
1086 needs_clflush);
1087 if (ret == 0)
1088 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -07001089
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001090 mutex_unlock(&dev->struct_mutex);
1091
Jani Nikulad330a952014-01-21 11:24:25 +02001092 if (likely(!i915.prefault_disable) && !prefaulted) {
Al Viro4bce9f62016-09-17 18:02:44 -04001093 ret = fault_in_pages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +02001094 /* Userspace is tricking us, but we've already clobbered
1095 * its pages with the prefault and promised to write the
1096 * data up to the first fault. Hence ignore any errors
1097 * and just continue. */
1098 (void)ret;
1099 prefaulted = 1;
1100 }
1101
Daniel Vetterd174bd62012-03-25 19:47:40 +02001102 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
1103 user_data, page_do_bit17_swizzling,
1104 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -07001105
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001106 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001107
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001108 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +01001109 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +01001110
Chris Wilson17793c92014-03-07 08:30:36 +00001111next_page:
Eric Anholteb014592009-03-10 11:44:52 -07001112 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +01001113 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -07001114 offset += page_length;
1115 }
1116
Chris Wilson4f27b752010-10-14 15:26:45 +01001117out:
Chris Wilson43394c72016-08-18 17:16:47 +01001118 i915_gem_obj_finish_shmem_access(obj);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001119
Eric Anholteb014592009-03-10 11:44:52 -07001120 return ret;
1121}
1122
Eric Anholt673a3942008-07-30 12:06:12 -07001123/**
1124 * Reads data from the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001125 * @dev: drm device pointer
1126 * @data: ioctl data blob
1127 * @file: drm file pointer
Eric Anholt673a3942008-07-30 12:06:12 -07001128 *
1129 * On error, the contents of *data are undefined.
1130 */
1131int
1132i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001133 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001134{
1135 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001136 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +01001137 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001138
Chris Wilson51311d02010-11-17 09:10:42 +00001139 if (args->size == 0)
1140 return 0;
1141
1142 if (!access_ok(VERIFY_WRITE,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001143 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001144 args->size))
1145 return -EFAULT;
1146
Chris Wilson03ac0642016-07-20 13:31:51 +01001147 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001148 if (!obj)
1149 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001150
Chris Wilson7dcd2492010-09-26 20:21:44 +01001151 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +00001152 if (args->offset > obj->base.size ||
1153 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001154 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001155 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001156 }
1157
Chris Wilsondb53a302011-02-03 11:57:46 +00001158 trace_i915_gem_object_pread(obj, args->offset, args->size);
1159
Chris Wilsone95433c2016-10-28 13:58:27 +01001160 ret = i915_gem_object_wait(obj,
1161 I915_WAIT_INTERRUPTIBLE,
1162 MAX_SCHEDULE_TIMEOUT,
1163 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001164 if (ret)
1165 goto err;
1166
1167 ret = i915_mutex_lock_interruptible(dev);
1168 if (ret)
1169 goto err;
1170
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001171 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -07001172
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301173 /* pread for non shmem backed objects */
Chris Wilson9c870d02016-10-24 13:42:15 +01001174 if (ret == -EFAULT || ret == -ENODEV)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301175 ret = i915_gem_gtt_pread(dev, obj, args->size,
1176 args->offset, args->data_ptr);
1177
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001178 i915_gem_object_put(obj);
Chris Wilson4f27b752010-10-14 15:26:45 +01001179 mutex_unlock(&dev->struct_mutex);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001180
1181 return ret;
1182
1183err:
1184 i915_gem_object_put_unlocked(obj);
Eric Anholteb014592009-03-10 11:44:52 -07001185 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001186}
1187
Keith Packard0839ccb2008-10-30 19:38:48 -07001188/* This is the fast write path which cannot handle
1189 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001190 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001191
Keith Packard0839ccb2008-10-30 19:38:48 -07001192static inline int
1193fast_user_write(struct io_mapping *mapping,
1194 loff_t page_base, int page_offset,
1195 char __user *user_data,
1196 int length)
1197{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001198 void __iomem *vaddr_atomic;
1199 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -07001200 unsigned long unwritten;
1201
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07001202 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001203 /* We can use the cpu mem copy function because this is X86. */
1204 vaddr = (void __force*)vaddr_atomic + page_offset;
1205 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -07001206 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07001207 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001208 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -07001209}
1210
Eric Anholt3de09aa2009-03-09 09:42:23 -07001211/**
1212 * This is the fast pwrite path, where we copy the data directly from the
1213 * user into the GTT, uncached.
Daniel Vetter62f90b32016-07-15 21:48:07 +02001214 * @i915: i915 device private data
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001215 * @obj: i915 gem object
1216 * @args: pwrite arguments structure
1217 * @file: drm file pointer
Eric Anholt3de09aa2009-03-09 09:42:23 -07001218 */
Eric Anholt673a3942008-07-30 12:06:12 -07001219static int
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301220i915_gem_gtt_pwrite_fast(struct drm_i915_private *i915,
Chris Wilson05394f32010-11-08 19:18:58 +00001221 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -07001222 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +00001223 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001224{
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301225 struct i915_ggtt *ggtt = &i915->ggtt;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301226 struct drm_device *dev = obj->base.dev;
Chris Wilson058d88c2016-08-15 10:49:06 +01001227 struct i915_vma *vma;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301228 struct drm_mm_node node;
1229 uint64_t remain, offset;
Eric Anholt673a3942008-07-30 12:06:12 -07001230 char __user *user_data;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301231 int ret;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301232 bool hit_slow_path = false;
1233
Chris Wilson3e510a82016-08-05 10:14:23 +01001234 if (i915_gem_object_is_tiled(obj))
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301235 return -EFAULT;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001236
Chris Wilson9c870d02016-10-24 13:42:15 +01001237 intel_runtime_pm_get(i915);
Chris Wilson058d88c2016-08-15 10:49:06 +01001238 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilsonde895082016-08-04 16:32:34 +01001239 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +01001240 if (!IS_ERR(vma)) {
1241 node.start = i915_ggtt_offset(vma);
1242 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +01001243 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +01001244 if (ret) {
1245 i915_vma_unpin(vma);
1246 vma = ERR_PTR(ret);
1247 }
1248 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001249 if (IS_ERR(vma)) {
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301250 ret = insert_mappable_node(i915, &node, PAGE_SIZE);
1251 if (ret)
1252 goto out;
1253
Chris Wilsona4f5ea62016-10-28 13:58:35 +01001254 ret = i915_gem_object_pin_pages(obj);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301255 if (ret) {
1256 remove_mappable_node(&node);
1257 goto out;
1258 }
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301259 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001260
1261 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1262 if (ret)
1263 goto out_unpin;
1264
Chris Wilsonb19482d2016-08-18 17:16:43 +01001265 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01001266 obj->mm.dirty = true;
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001267
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301268 user_data = u64_to_user_ptr(args->data_ptr);
1269 offset = args->offset;
1270 remain = args->size;
1271 while (remain) {
Eric Anholt673a3942008-07-30 12:06:12 -07001272 /* Operation in this page
1273 *
Keith Packard0839ccb2008-10-30 19:38:48 -07001274 * page_base = page offset within aperture
1275 * page_offset = offset within page
1276 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -07001277 */
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301278 u32 page_base = node.start;
1279 unsigned page_offset = offset_in_page(offset);
1280 unsigned page_length = PAGE_SIZE - page_offset;
1281 page_length = remain < page_length ? remain : page_length;
1282 if (node.allocated) {
1283 wmb(); /* flush the write before we modify the GGTT */
1284 ggtt->base.insert_page(&ggtt->base,
1285 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
1286 node.start, I915_CACHE_NONE, 0);
1287 wmb(); /* flush modifications to the GGTT (insert_page) */
1288 } else {
1289 page_base += offset & PAGE_MASK;
1290 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001291 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -07001292 * source page isn't available. Return the error and we'll
1293 * retry in the slow path.
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301294 * If the object is non-shmem backed, we retry again with the
1295 * path that handles page fault.
Keith Packard0839ccb2008-10-30 19:38:48 -07001296 */
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001297 if (fast_user_write(&ggtt->mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +02001298 page_offset, user_data, page_length)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301299 hit_slow_path = true;
1300 mutex_unlock(&dev->struct_mutex);
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001301 if (slow_user_access(&ggtt->mappable,
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301302 page_base,
1303 page_offset, user_data,
1304 page_length, true)) {
1305 ret = -EFAULT;
1306 mutex_lock(&dev->struct_mutex);
1307 goto out_flush;
1308 }
1309
1310 mutex_lock(&dev->struct_mutex);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001311 }
Eric Anholt673a3942008-07-30 12:06:12 -07001312
Keith Packard0839ccb2008-10-30 19:38:48 -07001313 remain -= page_length;
1314 user_data += page_length;
1315 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -07001316 }
Eric Anholt673a3942008-07-30 12:06:12 -07001317
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001318out_flush:
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301319 if (hit_slow_path) {
1320 if (ret == 0 &&
1321 (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) {
1322 /* The user has modified the object whilst we tried
1323 * reading from it, and we now have no idea what domain
1324 * the pages should be in. As we have just been touching
1325 * them directly, flush everything back to the GTT
1326 * domain.
1327 */
1328 ret = i915_gem_object_set_to_gtt_domain(obj, false);
1329 }
1330 }
1331
Chris Wilsonb19482d2016-08-18 17:16:43 +01001332 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001333out_unpin:
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301334 if (node.allocated) {
1335 wmb();
1336 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001337 node.start, node.size);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301338 i915_gem_object_unpin_pages(obj);
1339 remove_mappable_node(&node);
1340 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001341 i915_vma_unpin(vma);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301342 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001343out:
Chris Wilson9c870d02016-10-24 13:42:15 +01001344 intel_runtime_pm_put(i915);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001345 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001346}
1347
Daniel Vetterd174bd62012-03-25 19:47:40 +02001348/* Per-page copy function for the shmem pwrite fastpath.
1349 * Flushes invalid cachelines before writing to the target if
1350 * needs_clflush_before is set and flushes out any written cachelines after
1351 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -07001352static int
Daniel Vetterd174bd62012-03-25 19:47:40 +02001353shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
1354 char __user *user_data,
1355 bool page_do_bit17_swizzling,
1356 bool needs_clflush_before,
1357 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001358{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001359 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001360 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001361
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001362 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +02001363 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001364
Daniel Vetterd174bd62012-03-25 19:47:40 +02001365 vaddr = kmap_atomic(page);
1366 if (needs_clflush_before)
1367 drm_clflush_virt_range(vaddr + shmem_page_offset,
1368 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +00001369 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
1370 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001371 if (needs_clflush_after)
1372 drm_clflush_virt_range(vaddr + shmem_page_offset,
1373 page_length);
1374 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001375
Chris Wilson755d2212012-09-04 21:02:55 +01001376 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001377}
1378
Daniel Vetterd174bd62012-03-25 19:47:40 +02001379/* Only difference to the fast-path function is that this can handle bit17
1380 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -07001381static int
Daniel Vetterd174bd62012-03-25 19:47:40 +02001382shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
1383 char __user *user_data,
1384 bool page_do_bit17_swizzling,
1385 bool needs_clflush_before,
1386 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001387{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001388 char *vaddr;
1389 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001390
Daniel Vetterd174bd62012-03-25 19:47:40 +02001391 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001392 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +02001393 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
1394 page_length,
1395 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001396 if (page_do_bit17_swizzling)
1397 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001398 user_data,
1399 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001400 else
1401 ret = __copy_from_user(vaddr + shmem_page_offset,
1402 user_data,
1403 page_length);
1404 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +02001405 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
1406 page_length,
1407 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001408 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001409
Chris Wilson755d2212012-09-04 21:02:55 +01001410 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001411}
1412
Eric Anholt40123c12009-03-09 13:42:30 -07001413static int
Daniel Vettere244a442012-03-25 19:47:28 +02001414i915_gem_shmem_pwrite(struct drm_device *dev,
1415 struct drm_i915_gem_object *obj,
1416 struct drm_i915_gem_pwrite *args,
1417 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -07001418{
Eric Anholt40123c12009-03-09 13:42:30 -07001419 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +01001420 loff_t offset;
1421 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +01001422 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +01001423 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +02001424 int hit_slowpath = 0;
Chris Wilson43394c72016-08-18 17:16:47 +01001425 unsigned int needs_clflush;
Imre Deak67d5a502013-02-18 19:28:02 +02001426 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -07001427
Chris Wilson43394c72016-08-18 17:16:47 +01001428 ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush);
1429 if (ret)
1430 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001431
Daniel Vetter8c599672011-12-14 13:57:31 +01001432 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Chris Wilson43394c72016-08-18 17:16:47 +01001433 user_data = u64_to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -07001434 offset = args->offset;
Chris Wilson43394c72016-08-18 17:16:47 +01001435 remain = args->size;
Eric Anholt40123c12009-03-09 13:42:30 -07001436
Chris Wilsona4f5ea62016-10-28 13:58:35 +01001437 for_each_sg_page(obj->mm.pages->sgl, &sg_iter, obj->mm.pages->nents,
Imre Deak67d5a502013-02-18 19:28:02 +02001438 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +02001439 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +02001440 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001441
Chris Wilson9da3da62012-06-01 15:20:22 +01001442 if (remain <= 0)
1443 break;
1444
Eric Anholt40123c12009-03-09 13:42:30 -07001445 /* Operation in this page
1446 *
Eric Anholt40123c12009-03-09 13:42:30 -07001447 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -07001448 * page_length = bytes to copy for this page
1449 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +01001450 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -07001451
1452 page_length = remain;
1453 if ((shmem_page_offset + page_length) > PAGE_SIZE)
1454 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -07001455
Daniel Vetter58642882012-03-25 19:47:37 +02001456 /* If we don't overwrite a cacheline completely we need to be
1457 * careful to have up-to-date data by first clflushing. Don't
1458 * overcomplicate things and flush the entire patch. */
Chris Wilson43394c72016-08-18 17:16:47 +01001459 partial_cacheline_write = needs_clflush & CLFLUSH_BEFORE &&
Daniel Vetter58642882012-03-25 19:47:37 +02001460 ((shmem_page_offset | page_length)
1461 & (boot_cpu_data.x86_clflush_size - 1));
1462
Daniel Vetter8c599672011-12-14 13:57:31 +01001463 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
1464 (page_to_phys(page) & (1 << 17)) != 0;
1465
Daniel Vetterd174bd62012-03-25 19:47:40 +02001466 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
1467 user_data, page_do_bit17_swizzling,
1468 partial_cacheline_write,
Chris Wilson43394c72016-08-18 17:16:47 +01001469 needs_clflush & CLFLUSH_AFTER);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001470 if (ret == 0)
1471 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001472
Daniel Vettere244a442012-03-25 19:47:28 +02001473 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001474 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001475 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1476 user_data, page_do_bit17_swizzling,
1477 partial_cacheline_write,
Chris Wilson43394c72016-08-18 17:16:47 +01001478 needs_clflush & CLFLUSH_AFTER);
Eric Anholt40123c12009-03-09 13:42:30 -07001479
Daniel Vettere244a442012-03-25 19:47:28 +02001480 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001481
Chris Wilson755d2212012-09-04 21:02:55 +01001482 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001483 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001484
Chris Wilson17793c92014-03-07 08:30:36 +00001485next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001486 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001487 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001488 offset += page_length;
1489 }
1490
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001491out:
Chris Wilson43394c72016-08-18 17:16:47 +01001492 i915_gem_obj_finish_shmem_access(obj);
Chris Wilson755d2212012-09-04 21:02:55 +01001493
Daniel Vettere244a442012-03-25 19:47:28 +02001494 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001495 /*
1496 * Fixup: Flush cpu caches in case we didn't flush the dirty
1497 * cachelines in-line while writing and the object moved
1498 * out of the cpu write domain while we've dropped the lock.
1499 */
Chris Wilson43394c72016-08-18 17:16:47 +01001500 if (!(needs_clflush & CLFLUSH_AFTER) &&
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001501 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001502 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson43394c72016-08-18 17:16:47 +01001503 needs_clflush |= CLFLUSH_AFTER;
Daniel Vettere244a442012-03-25 19:47:28 +02001504 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001505 }
Eric Anholt40123c12009-03-09 13:42:30 -07001506
Chris Wilson43394c72016-08-18 17:16:47 +01001507 if (needs_clflush & CLFLUSH_AFTER)
Chris Wilsonc0336662016-05-06 15:40:21 +01001508 i915_gem_chipset_flush(to_i915(dev));
Daniel Vetter58642882012-03-25 19:47:37 +02001509
Rodrigo Vivide152b62015-07-07 16:28:51 -07001510 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Eric Anholt40123c12009-03-09 13:42:30 -07001511 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001512}
1513
1514/**
1515 * Writes data to the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001516 * @dev: drm device
1517 * @data: ioctl data blob
1518 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001519 *
1520 * On error, the contents of the buffer that were to be modified are undefined.
1521 */
1522int
1523i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001524 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001525{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001526 struct drm_i915_private *dev_priv = to_i915(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001527 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001528 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001529 int ret;
1530
1531 if (args->size == 0)
1532 return 0;
1533
1534 if (!access_ok(VERIFY_READ,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001535 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001536 args->size))
1537 return -EFAULT;
1538
Jani Nikulad330a952014-01-21 11:24:25 +02001539 if (likely(!i915.prefault_disable)) {
Al Viro4bce9f62016-09-17 18:02:44 -04001540 ret = fault_in_pages_readable(u64_to_user_ptr(args->data_ptr),
Xiong Zhang0b74b502013-07-19 13:51:24 +08001541 args->size);
1542 if (ret)
1543 return -EFAULT;
1544 }
Eric Anholt673a3942008-07-30 12:06:12 -07001545
Chris Wilson03ac0642016-07-20 13:31:51 +01001546 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001547 if (!obj)
1548 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001549
Chris Wilson7dcd2492010-09-26 20:21:44 +01001550 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001551 if (args->offset > obj->base.size ||
1552 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001553 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001554 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001555 }
1556
Chris Wilsondb53a302011-02-03 11:57:46 +00001557 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1558
Chris Wilsone95433c2016-10-28 13:58:27 +01001559 ret = i915_gem_object_wait(obj,
1560 I915_WAIT_INTERRUPTIBLE |
1561 I915_WAIT_ALL,
1562 MAX_SCHEDULE_TIMEOUT,
1563 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001564 if (ret)
1565 goto err;
1566
1567 intel_runtime_pm_get(dev_priv);
1568
1569 ret = i915_mutex_lock_interruptible(dev);
1570 if (ret)
1571 goto err_rpm;
1572
Daniel Vetter935aaa62012-03-25 19:47:35 +02001573 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001574 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1575 * it would end up going through the fenced access, and we'll get
1576 * different detiling behavior between reading and writing.
1577 * pread/pwrite currently are reading and writing from the CPU
1578 * perspective, requiring manual detiling by the client.
1579 */
Chris Wilson6eae0052016-06-20 15:05:52 +01001580 if (!i915_gem_object_has_struct_page(obj) ||
Chris Wilson9c870d02016-10-24 13:42:15 +01001581 cpu_write_needs_clflush(obj))
Daniel Vetter935aaa62012-03-25 19:47:35 +02001582 /* Note that the gtt paths might fail with non-page-backed user
1583 * pointers (e.g. gtt mappings when moving data between
Chris Wilson9c870d02016-10-24 13:42:15 +01001584 * textures). Fallback to the shmem path in that case.
1585 */
1586 ret = i915_gem_gtt_pwrite_fast(dev_priv, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -07001587
Chris Wilsond1054ee2016-07-16 18:42:36 +01001588 if (ret == -EFAULT || ret == -ENOSPC) {
Chris Wilson6a2c4232014-11-04 04:51:40 -08001589 if (obj->phys_handle)
1590 ret = i915_gem_phys_pwrite(obj, args, file);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301591 else
Chris Wilson43394c72016-08-18 17:16:47 +01001592 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Chris Wilson6a2c4232014-11-04 04:51:40 -08001593 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001594
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001595 i915_gem_object_put(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001596 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001597 intel_runtime_pm_put(dev_priv);
1598
Eric Anholt673a3942008-07-30 12:06:12 -07001599 return ret;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001600
1601err_rpm:
1602 intel_runtime_pm_put(dev_priv);
1603err:
1604 i915_gem_object_put_unlocked(obj);
1605 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001606}
1607
Chris Wilsond243ad82016-08-18 17:16:44 +01001608static inline enum fb_op_origin
Chris Wilsonaeecc962016-06-17 14:46:39 -03001609write_origin(struct drm_i915_gem_object *obj, unsigned domain)
1610{
Chris Wilson50349242016-08-18 17:17:04 +01001611 return (domain == I915_GEM_DOMAIN_GTT ?
1612 obj->frontbuffer_ggtt_origin : ORIGIN_CPU);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001613}
1614
Eric Anholt673a3942008-07-30 12:06:12 -07001615/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001616 * Called when user space prepares to use an object with the CPU, either
1617 * through the mmap ioctl's mapping or a GTT mapping.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001618 * @dev: drm device
1619 * @data: ioctl data blob
1620 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001621 */
1622int
1623i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001624 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001625{
1626 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001627 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001628 uint32_t read_domains = args->read_domains;
1629 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001630 int ret;
1631
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001632 /* Only handle setting domains to types used by the CPU. */
Chris Wilsonb8f90962016-08-05 10:14:07 +01001633 if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001634 return -EINVAL;
1635
1636 /* Having something in the write domain implies it's in the read
1637 * domain, and only that read domain. Enforce that in the request.
1638 */
1639 if (write_domain != 0 && read_domains != write_domain)
1640 return -EINVAL;
1641
Chris Wilson03ac0642016-07-20 13:31:51 +01001642 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001643 if (!obj)
1644 return -ENOENT;
Jesse Barnes652c3932009-08-17 13:31:43 -07001645
Chris Wilson3236f572012-08-24 09:35:09 +01001646 /* Try to flush the object off the GPU without holding the lock.
1647 * We will repeat the flush holding the lock in the normal manner
1648 * to catch cases where we are gazumped.
1649 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001650 ret = i915_gem_object_wait(obj,
1651 I915_WAIT_INTERRUPTIBLE |
1652 (write_domain ? I915_WAIT_ALL : 0),
1653 MAX_SCHEDULE_TIMEOUT,
1654 to_rps_client(file));
Chris Wilson3236f572012-08-24 09:35:09 +01001655 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001656 goto err;
1657
1658 ret = i915_mutex_lock_interruptible(dev);
1659 if (ret)
1660 goto err;
Chris Wilson3236f572012-08-24 09:35:09 +01001661
Chris Wilson43566de2015-01-02 16:29:29 +05301662 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001663 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301664 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001665 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001666
Daniel Vetter031b6982015-06-26 19:35:16 +02001667 if (write_domain != 0)
Chris Wilsonaeecc962016-06-17 14:46:39 -03001668 intel_fb_obj_invalidate(obj, write_origin(obj, write_domain));
Daniel Vetter031b6982015-06-26 19:35:16 +02001669
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001670 i915_gem_object_put(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001671 mutex_unlock(&dev->struct_mutex);
1672 return ret;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001673
1674err:
1675 i915_gem_object_put_unlocked(obj);
1676 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001677}
1678
1679/**
1680 * Called when user space has done writes to this buffer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001681 * @dev: drm device
1682 * @data: ioctl data blob
1683 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001684 */
1685int
1686i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001687 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001688{
1689 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001690 struct drm_i915_gem_object *obj;
Chris Wilsonc21724c2016-08-05 10:14:19 +01001691 int err = 0;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001692
Chris Wilson03ac0642016-07-20 13:31:51 +01001693 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001694 if (!obj)
1695 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001696
Eric Anholt673a3942008-07-30 12:06:12 -07001697 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilsonc21724c2016-08-05 10:14:19 +01001698 if (READ_ONCE(obj->pin_display)) {
1699 err = i915_mutex_lock_interruptible(dev);
1700 if (!err) {
1701 i915_gem_object_flush_cpu_write_domain(obj);
1702 mutex_unlock(&dev->struct_mutex);
1703 }
1704 }
Eric Anholte47c68e2008-11-14 13:35:19 -08001705
Chris Wilsonc21724c2016-08-05 10:14:19 +01001706 i915_gem_object_put_unlocked(obj);
1707 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001708}
1709
1710/**
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001711 * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address
1712 * it is mapped to.
1713 * @dev: drm device
1714 * @data: ioctl data blob
1715 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001716 *
1717 * While the mapping holds a reference on the contents of the object, it doesn't
1718 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001719 *
1720 * IMPORTANT:
1721 *
1722 * DRM driver writers who look a this function as an example for how to do GEM
1723 * mmap support, please don't implement mmap support like here. The modern way
1724 * to implement DRM mmap support is with an mmap offset ioctl (like
1725 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1726 * That way debug tooling like valgrind will understand what's going on, hiding
1727 * the mmap call in a driver private ioctl will break that. The i915 driver only
1728 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001729 */
1730int
1731i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001732 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001733{
1734 struct drm_i915_gem_mmap *args = data;
Chris Wilson03ac0642016-07-20 13:31:51 +01001735 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001736 unsigned long addr;
1737
Akash Goel1816f922015-01-02 16:29:30 +05301738 if (args->flags & ~(I915_MMAP_WC))
1739 return -EINVAL;
1740
Borislav Petkov568a58e2016-03-29 17:42:01 +02001741 if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT))
Akash Goel1816f922015-01-02 16:29:30 +05301742 return -ENODEV;
1743
Chris Wilson03ac0642016-07-20 13:31:51 +01001744 obj = i915_gem_object_lookup(file, args->handle);
1745 if (!obj)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001746 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001747
Daniel Vetter1286ff72012-05-10 15:25:09 +02001748 /* prime objects have no backing filp to GEM mmap
1749 * pages from.
1750 */
Chris Wilson03ac0642016-07-20 13:31:51 +01001751 if (!obj->base.filp) {
Chris Wilson34911fd2016-07-20 13:31:54 +01001752 i915_gem_object_put_unlocked(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001753 return -EINVAL;
1754 }
1755
Chris Wilson03ac0642016-07-20 13:31:51 +01001756 addr = vm_mmap(obj->base.filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001757 PROT_READ | PROT_WRITE, MAP_SHARED,
1758 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301759 if (args->flags & I915_MMAP_WC) {
1760 struct mm_struct *mm = current->mm;
1761 struct vm_area_struct *vma;
1762
Michal Hocko80a89a52016-05-23 16:26:11 -07001763 if (down_write_killable(&mm->mmap_sem)) {
Chris Wilson34911fd2016-07-20 13:31:54 +01001764 i915_gem_object_put_unlocked(obj);
Michal Hocko80a89a52016-05-23 16:26:11 -07001765 return -EINTR;
1766 }
Akash Goel1816f922015-01-02 16:29:30 +05301767 vma = find_vma(mm, addr);
1768 if (vma)
1769 vma->vm_page_prot =
1770 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1771 else
1772 addr = -ENOMEM;
1773 up_write(&mm->mmap_sem);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001774
1775 /* This may race, but that's ok, it only gets set */
Chris Wilson50349242016-08-18 17:17:04 +01001776 WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU);
Akash Goel1816f922015-01-02 16:29:30 +05301777 }
Chris Wilson34911fd2016-07-20 13:31:54 +01001778 i915_gem_object_put_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001779 if (IS_ERR((void *)addr))
1780 return addr;
1781
1782 args->addr_ptr = (uint64_t) addr;
1783
1784 return 0;
1785}
1786
Chris Wilson03af84f2016-08-18 17:17:01 +01001787static unsigned int tile_row_pages(struct drm_i915_gem_object *obj)
1788{
1789 u64 size;
1790
1791 size = i915_gem_object_get_stride(obj);
1792 size *= i915_gem_object_get_tiling(obj) == I915_TILING_Y ? 32 : 8;
1793
1794 return size >> PAGE_SHIFT;
1795}
1796
Jesse Barnesde151cf2008-11-12 10:03:55 -08001797/**
Chris Wilson4cc69072016-08-25 19:05:19 +01001798 * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps
1799 *
1800 * A history of the GTT mmap interface:
1801 *
1802 * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to
1803 * aligned and suitable for fencing, and still fit into the available
1804 * mappable space left by the pinned display objects. A classic problem
1805 * we called the page-fault-of-doom where we would ping-pong between
1806 * two objects that could not fit inside the GTT and so the memcpy
1807 * would page one object in at the expense of the other between every
1808 * single byte.
1809 *
1810 * 1 - Objects can be any size, and have any compatible fencing (X Y, or none
1811 * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the
1812 * object is too large for the available space (or simply too large
1813 * for the mappable aperture!), a view is created instead and faulted
1814 * into userspace. (This view is aligned and sized appropriately for
1815 * fenced access.)
1816 *
1817 * Restrictions:
1818 *
1819 * * snoopable objects cannot be accessed via the GTT. It can cause machine
1820 * hangs on some architectures, corruption on others. An attempt to service
1821 * a GTT page fault from a snoopable object will generate a SIGBUS.
1822 *
1823 * * the object must be able to fit into RAM (physical memory, though no
1824 * limited to the mappable aperture).
1825 *
1826 *
1827 * Caveats:
1828 *
1829 * * a new GTT page fault will synchronize rendering from the GPU and flush
1830 * all data to system memory. Subsequent access will not be synchronized.
1831 *
1832 * * all mappings are revoked on runtime device suspend.
1833 *
1834 * * there are only 8, 16 or 32 fence registers to share between all users
1835 * (older machines require fence register for display and blitter access
1836 * as well). Contention of the fence registers will cause the previous users
1837 * to be unmapped and any new access will generate new page faults.
1838 *
1839 * * running out of memory while servicing a fault may generate a SIGBUS,
1840 * rather than the expected SIGSEGV.
1841 */
1842int i915_gem_mmap_gtt_version(void)
1843{
1844 return 1;
1845}
1846
1847/**
Jesse Barnesde151cf2008-11-12 10:03:55 -08001848 * i915_gem_fault - fault a page into the GTT
Chris Wilson058d88c2016-08-15 10:49:06 +01001849 * @area: CPU VMA in question
Geliang Tangd9072a32015-09-15 05:58:44 -07001850 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001851 *
1852 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1853 * from userspace. The fault handler takes care of binding the object to
1854 * the GTT (if needed), allocating and programming a fence register (again,
1855 * only if needed based on whether the old reg is still valid or the object
1856 * is tiled) and inserting a new PTE into the faulting process.
1857 *
1858 * Note that the faulting process may involve evicting existing objects
1859 * from the GTT and/or fence registers to make room. So performance may
1860 * suffer if the GTT working set is large or there are few fence registers
1861 * left.
Chris Wilson4cc69072016-08-25 19:05:19 +01001862 *
1863 * The current feature set supported by i915_gem_fault() and thus GTT mmaps
1864 * is exposed via I915_PARAM_MMAP_GTT_VERSION (see i915_gem_mmap_gtt_version).
Jesse Barnesde151cf2008-11-12 10:03:55 -08001865 */
Chris Wilson058d88c2016-08-15 10:49:06 +01001866int i915_gem_fault(struct vm_area_struct *area, struct vm_fault *vmf)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001867{
Chris Wilson03af84f2016-08-18 17:17:01 +01001868#define MIN_CHUNK_PAGES ((1 << 20) >> PAGE_SHIFT) /* 1 MiB */
Chris Wilson058d88c2016-08-15 10:49:06 +01001869 struct drm_i915_gem_object *obj = to_intel_bo(area->vm_private_data);
Chris Wilson05394f32010-11-08 19:18:58 +00001870 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001871 struct drm_i915_private *dev_priv = to_i915(dev);
1872 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001873 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001874 struct i915_vma *vma;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001875 pgoff_t page_offset;
Chris Wilson82118872016-08-18 17:17:05 +01001876 unsigned int flags;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001877 int ret;
Paulo Zanonif65c9162013-11-27 18:20:34 -02001878
Jesse Barnesde151cf2008-11-12 10:03:55 -08001879 /* We don't use vmf->pgoff since that has the fake offset */
Chris Wilson058d88c2016-08-15 10:49:06 +01001880 page_offset = ((unsigned long)vmf->virtual_address - area->vm_start) >>
Jesse Barnesde151cf2008-11-12 10:03:55 -08001881 PAGE_SHIFT;
1882
Chris Wilsondb53a302011-02-03 11:57:46 +00001883 trace_i915_gem_object_fault(obj, page_offset, true, write);
1884
Chris Wilson6e4930f2014-02-07 18:37:06 -02001885 /* Try to flush the object off the GPU first without holding the lock.
Chris Wilsonb8f90962016-08-05 10:14:07 +01001886 * Upon acquiring the lock, we will perform our sanity checks and then
Chris Wilson6e4930f2014-02-07 18:37:06 -02001887 * repeat the flush holding the lock in the normal manner to catch cases
1888 * where we are gazumped.
1889 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001890 ret = i915_gem_object_wait(obj,
1891 I915_WAIT_INTERRUPTIBLE,
1892 MAX_SCHEDULE_TIMEOUT,
1893 NULL);
Chris Wilson6e4930f2014-02-07 18:37:06 -02001894 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001895 goto err;
1896
1897 intel_runtime_pm_get(dev_priv);
1898
1899 ret = i915_mutex_lock_interruptible(dev);
1900 if (ret)
1901 goto err_rpm;
Chris Wilson6e4930f2014-02-07 18:37:06 -02001902
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001903 /* Access to snoopable pages through the GTT is incoherent. */
1904 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001905 ret = -EFAULT;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001906 goto err_unlock;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001907 }
1908
Chris Wilson82118872016-08-18 17:17:05 +01001909 /* If the object is smaller than a couple of partial vma, it is
1910 * not worth only creating a single partial vma - we may as well
1911 * clear enough space for the full object.
1912 */
1913 flags = PIN_MAPPABLE;
1914 if (obj->base.size > 2 * MIN_CHUNK_PAGES << PAGE_SHIFT)
1915 flags |= PIN_NONBLOCK | PIN_NONFAULT;
1916
Chris Wilsona61007a2016-08-18 17:17:02 +01001917 /* Now pin it into the GTT as needed */
Chris Wilson82118872016-08-18 17:17:05 +01001918 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, flags);
Chris Wilsona61007a2016-08-18 17:17:02 +01001919 if (IS_ERR(vma)) {
1920 struct i915_ggtt_view view;
Chris Wilson03af84f2016-08-18 17:17:01 +01001921 unsigned int chunk_size;
1922
Chris Wilsona61007a2016-08-18 17:17:02 +01001923 /* Use a partial view if it is bigger than available space */
Chris Wilson03af84f2016-08-18 17:17:01 +01001924 chunk_size = MIN_CHUNK_PAGES;
1925 if (i915_gem_object_is_tiled(obj))
1926 chunk_size = max(chunk_size, tile_row_pages(obj));
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001927
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001928 memset(&view, 0, sizeof(view));
1929 view.type = I915_GGTT_VIEW_PARTIAL;
1930 view.params.partial.offset = rounddown(page_offset, chunk_size);
1931 view.params.partial.size =
Chris Wilsona61007a2016-08-18 17:17:02 +01001932 min_t(unsigned int, chunk_size,
Chris Wilson908b1232016-10-11 10:06:56 +01001933 vma_pages(area) - view.params.partial.offset);
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001934
Chris Wilsonaa136d92016-08-18 17:17:03 +01001935 /* If the partial covers the entire object, just create a
1936 * normal VMA.
1937 */
1938 if (chunk_size >= obj->base.size >> PAGE_SHIFT)
1939 view.type = I915_GGTT_VIEW_NORMAL;
1940
Chris Wilson50349242016-08-18 17:17:04 +01001941 /* Userspace is now writing through an untracked VMA, abandon
1942 * all hope that the hardware is able to track future writes.
1943 */
1944 obj->frontbuffer_ggtt_origin = ORIGIN_CPU;
1945
Chris Wilsona61007a2016-08-18 17:17:02 +01001946 vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, PIN_MAPPABLE);
1947 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001948 if (IS_ERR(vma)) {
1949 ret = PTR_ERR(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001950 goto err_unlock;
Chris Wilson058d88c2016-08-15 10:49:06 +01001951 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001952
Chris Wilsonc9839302012-11-20 10:45:17 +00001953 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1954 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001955 goto err_unpin;
Chris Wilsonc9839302012-11-20 10:45:17 +00001956
Chris Wilson49ef5292016-08-18 17:17:00 +01001957 ret = i915_vma_get_fence(vma);
Chris Wilsonc9839302012-11-20 10:45:17 +00001958 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001959 goto err_unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001960
Chris Wilson275f0392016-10-24 13:42:14 +01001961 /* Mark as being mmapped into userspace for later revocation */
Chris Wilson9c870d02016-10-24 13:42:15 +01001962 assert_rpm_wakelock_held(dev_priv);
Chris Wilson275f0392016-10-24 13:42:14 +01001963 if (list_empty(&obj->userfault_link))
1964 list_add(&obj->userfault_link, &dev_priv->mm.userfault_list);
Chris Wilson275f0392016-10-24 13:42:14 +01001965
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001966 /* Finally, remap it using the new GTT offset */
Chris Wilsonc58305a2016-08-19 16:54:28 +01001967 ret = remap_io_mapping(area,
1968 area->vm_start + (vma->ggtt_view.params.partial.offset << PAGE_SHIFT),
1969 (ggtt->mappable_base + vma->node.start) >> PAGE_SHIFT,
1970 min_t(u64, vma->size, area->vm_end - area->vm_start),
1971 &ggtt->mappable);
Chris Wilsona61007a2016-08-18 17:17:02 +01001972
Chris Wilsonb8f90962016-08-05 10:14:07 +01001973err_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +01001974 __i915_vma_unpin(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001975err_unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001976 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001977err_rpm:
1978 intel_runtime_pm_put(dev_priv);
1979err:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001980 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001981 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001982 /*
1983 * We eat errors when the gpu is terminally wedged to avoid
1984 * userspace unduly crashing (gl has no provisions for mmaps to
1985 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1986 * and so needs to be reported.
1987 */
1988 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001989 ret = VM_FAULT_SIGBUS;
1990 break;
1991 }
Chris Wilson045e7692010-11-07 09:18:22 +00001992 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001993 /*
1994 * EAGAIN means the gpu is hung and we'll wait for the error
1995 * handler to reset everything when re-faulting in
1996 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001997 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001998 case 0:
1999 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00002000 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03002001 case -EBUSY:
2002 /*
2003 * EBUSY is ok: this just means that another thread
2004 * already did the job.
2005 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02002006 ret = VM_FAULT_NOPAGE;
2007 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002008 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02002009 ret = VM_FAULT_OOM;
2010 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02002011 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00002012 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02002013 ret = VM_FAULT_SIGBUS;
2014 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002015 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02002016 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02002017 ret = VM_FAULT_SIGBUS;
2018 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002019 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02002020 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002021}
2022
2023/**
Chris Wilson901782b2009-07-10 08:18:50 +01002024 * i915_gem_release_mmap - remove physical page mappings
2025 * @obj: obj in question
2026 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002027 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01002028 * relinquish ownership of the pages back to the system.
2029 *
2030 * It is vital that we remove the page mapping if we have mapped a tiled
2031 * object through the GTT and then lose the fence register due to
2032 * resource pressure. Similarly if the object has been moved out of the
2033 * aperture, than pages mapped into userspace must be revoked. Removing the
2034 * mapping will then trigger a page fault on the next user access, allowing
2035 * fixup by i915_gem_fault().
2036 */
Eric Anholtd05ca302009-07-10 13:02:26 -07002037void
Chris Wilson05394f32010-11-08 19:18:58 +00002038i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01002039{
Chris Wilson275f0392016-10-24 13:42:14 +01002040 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson275f0392016-10-24 13:42:14 +01002041
Chris Wilson349f2cc2016-04-13 17:35:12 +01002042 /* Serialisation between user GTT access and our code depends upon
2043 * revoking the CPU's PTE whilst the mutex is held. The next user
2044 * pagefault then has to wait until we release the mutex.
Chris Wilson9c870d02016-10-24 13:42:15 +01002045 *
2046 * Note that RPM complicates somewhat by adding an additional
2047 * requirement that operations to the GGTT be made holding the RPM
2048 * wakeref.
Chris Wilson349f2cc2016-04-13 17:35:12 +01002049 */
Chris Wilson275f0392016-10-24 13:42:14 +01002050 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson9c870d02016-10-24 13:42:15 +01002051 intel_runtime_pm_get(i915);
Chris Wilson349f2cc2016-04-13 17:35:12 +01002052
Chris Wilson3594a3e2016-10-24 13:42:16 +01002053 if (list_empty(&obj->userfault_link))
Chris Wilson9c870d02016-10-24 13:42:15 +01002054 goto out;
Chris Wilson901782b2009-07-10 08:18:50 +01002055
Chris Wilson3594a3e2016-10-24 13:42:16 +01002056 list_del_init(&obj->userfault_link);
David Herrmann6796cb12014-01-03 14:24:19 +01002057 drm_vma_node_unmap(&obj->base.vma_node,
2058 obj->base.dev->anon_inode->i_mapping);
Chris Wilson349f2cc2016-04-13 17:35:12 +01002059
2060 /* Ensure that the CPU's PTE are revoked and there are not outstanding
2061 * memory transactions from userspace before we return. The TLB
2062 * flushing implied above by changing the PTE above *should* be
2063 * sufficient, an extra barrier here just provides us with a bit
2064 * of paranoid documentation about our requirement to serialise
2065 * memory writes before touching registers / GSM.
2066 */
2067 wmb();
Chris Wilson9c870d02016-10-24 13:42:15 +01002068
2069out:
2070 intel_runtime_pm_put(i915);
Chris Wilson901782b2009-07-10 08:18:50 +01002071}
2072
Chris Wilson7c108fd2016-10-24 13:42:18 +01002073void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv)
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002074{
Chris Wilson3594a3e2016-10-24 13:42:16 +01002075 struct drm_i915_gem_object *obj, *on;
Chris Wilson7c108fd2016-10-24 13:42:18 +01002076 int i;
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002077
Chris Wilson3594a3e2016-10-24 13:42:16 +01002078 /*
2079 * Only called during RPM suspend. All users of the userfault_list
2080 * must be holding an RPM wakeref to ensure that this can not
2081 * run concurrently with themselves (and use the struct_mutex for
2082 * protection between themselves).
2083 */
2084
2085 list_for_each_entry_safe(obj, on,
2086 &dev_priv->mm.userfault_list, userfault_link) {
Chris Wilson275f0392016-10-24 13:42:14 +01002087 list_del_init(&obj->userfault_link);
Chris Wilson275f0392016-10-24 13:42:14 +01002088 drm_vma_node_unmap(&obj->base.vma_node,
2089 obj->base.dev->anon_inode->i_mapping);
Chris Wilson275f0392016-10-24 13:42:14 +01002090 }
Chris Wilson7c108fd2016-10-24 13:42:18 +01002091
2092 /* The fence will be lost when the device powers down. If any were
2093 * in use by hardware (i.e. they are pinned), we should not be powering
2094 * down! All other fences will be reacquired by the user upon waking.
2095 */
2096 for (i = 0; i < dev_priv->num_fence_regs; i++) {
2097 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
2098
2099 if (WARN_ON(reg->pin_count))
2100 continue;
2101
2102 if (!reg->vma)
2103 continue;
2104
2105 GEM_BUG_ON(!list_empty(&reg->vma->obj->userfault_link));
2106 reg->dirty = true;
2107 }
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002108}
2109
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002110/**
2111 * i915_gem_get_ggtt_size - return required global GTT size for an object
Chris Wilsona9f14812016-08-04 16:32:28 +01002112 * @dev_priv: i915 device
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002113 * @size: object size
2114 * @tiling_mode: tiling mode
2115 *
2116 * Return the required global GTT size for an object, taking into account
2117 * potential fence register mapping.
2118 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002119u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv,
2120 u64 size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00002121{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002122 u64 ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002123
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002124 GEM_BUG_ON(size == 0);
2125
Chris Wilsona9f14812016-08-04 16:32:28 +01002126 if (INTEL_GEN(dev_priv) >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002127 tiling_mode == I915_TILING_NONE)
2128 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002129
2130 /* Previous chips need a power-of-two fence region when tiling */
Chris Wilsona9f14812016-08-04 16:32:28 +01002131 if (IS_GEN3(dev_priv))
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002132 ggtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002133 else
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002134 ggtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002135
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002136 while (ggtt_size < size)
2137 ggtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002138
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002139 return ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002140}
2141
Jesse Barnesde151cf2008-11-12 10:03:55 -08002142/**
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002143 * i915_gem_get_ggtt_alignment - return required global GTT alignment
Chris Wilsona9f14812016-08-04 16:32:28 +01002144 * @dev_priv: i915 device
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002145 * @size: object size
2146 * @tiling_mode: tiling mode
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002147 * @fenced: is fenced alignment required or not
Jesse Barnesde151cf2008-11-12 10:03:55 -08002148 *
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002149 * Return the required global GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01002150 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002151 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002152u64 i915_gem_get_ggtt_alignment(struct drm_i915_private *dev_priv, u64 size,
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002153 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002154{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002155 GEM_BUG_ON(size == 0);
2156
Jesse Barnesde151cf2008-11-12 10:03:55 -08002157 /*
2158 * Minimum alignment is 4k (GTT page size), but might be greater
2159 * if a fence register is needed for the object.
2160 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002161 if (INTEL_GEN(dev_priv) >= 4 || (!fenced && IS_G33(dev_priv)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002162 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002163 return 4096;
2164
2165 /*
2166 * Previous chips need to be aligned to the size of the smallest
2167 * fence register that can contain the object.
2168 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002169 return i915_gem_get_ggtt_size(dev_priv, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002170}
2171
Chris Wilsond8cb5082012-08-11 15:41:03 +01002172static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2173{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002174 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002175 int err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002176
Chris Wilsonf3f61842016-08-05 10:14:14 +01002177 err = drm_gem_create_mmap_offset(&obj->base);
2178 if (!err)
2179 return 0;
Daniel Vetterda494d72012-12-20 15:11:16 +01002180
Chris Wilsonf3f61842016-08-05 10:14:14 +01002181 /* We can idle the GPU locklessly to flush stale objects, but in order
2182 * to claim that space for ourselves, we need to take the big
2183 * struct_mutex to free the requests+objects and allocate our slot.
Chris Wilsond8cb5082012-08-11 15:41:03 +01002184 */
Chris Wilsonea746f32016-09-09 14:11:49 +01002185 err = i915_gem_wait_for_idle(dev_priv, I915_WAIT_INTERRUPTIBLE);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002186 if (err)
2187 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002188
Chris Wilsonf3f61842016-08-05 10:14:14 +01002189 err = i915_mutex_lock_interruptible(&dev_priv->drm);
2190 if (!err) {
2191 i915_gem_retire_requests(dev_priv);
2192 err = drm_gem_create_mmap_offset(&obj->base);
2193 mutex_unlock(&dev_priv->drm.struct_mutex);
2194 }
Daniel Vetterda494d72012-12-20 15:11:16 +01002195
Chris Wilsonf3f61842016-08-05 10:14:14 +01002196 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002197}
2198
2199static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2200{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002201 drm_gem_free_mmap_offset(&obj->base);
2202}
2203
Dave Airlieda6b51d2014-12-24 13:11:17 +10002204int
Dave Airlieff72145b2011-02-07 12:16:14 +10002205i915_gem_mmap_gtt(struct drm_file *file,
2206 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002207 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10002208 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002209{
Chris Wilson05394f32010-11-08 19:18:58 +00002210 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002211 int ret;
2212
Chris Wilson03ac0642016-07-20 13:31:51 +01002213 obj = i915_gem_object_lookup(file, handle);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002214 if (!obj)
2215 return -ENOENT;
Chris Wilsonab182822009-09-22 18:46:17 +01002216
Chris Wilsond8cb5082012-08-11 15:41:03 +01002217 ret = i915_gem_object_create_mmap_offset(obj);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002218 if (ret == 0)
2219 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002220
Chris Wilsonf3f61842016-08-05 10:14:14 +01002221 i915_gem_object_put_unlocked(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002222 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002223}
2224
Dave Airlieff72145b2011-02-07 12:16:14 +10002225/**
2226 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2227 * @dev: DRM device
2228 * @data: GTT mapping ioctl data
2229 * @file: GEM object info
2230 *
2231 * Simply returns the fake offset to userspace so it can mmap it.
2232 * The mmap call will end up in drm_gem_mmap(), which will set things
2233 * up so we can get faults in the handler above.
2234 *
2235 * The fault handler will take care of binding the object into the GTT
2236 * (since it may have been evicted to make room for something), allocating
2237 * a fence register, and mapping the appropriate aperture address into
2238 * userspace.
2239 */
2240int
2241i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2242 struct drm_file *file)
2243{
2244 struct drm_i915_gem_mmap_gtt *args = data;
2245
Dave Airlieda6b51d2014-12-24 13:11:17 +10002246 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002247}
2248
Daniel Vetter225067e2012-08-20 10:23:20 +02002249/* Immediately discard the backing storage */
2250static void
2251i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002252{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002253 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002254
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002255 if (obj->base.filp == NULL)
2256 return;
2257
Daniel Vetter225067e2012-08-20 10:23:20 +02002258 /* Our goal here is to return as much of the memory as
2259 * is possible back to the system as we are called from OOM.
2260 * To do this we must instruct the shmfs to drop all of its
2261 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002262 */
Chris Wilson55372522014-03-25 13:23:06 +00002263 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002264 obj->mm.madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01002265}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002266
Chris Wilson55372522014-03-25 13:23:06 +00002267/* Try to discard unwanted pages */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002268void __i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02002269{
Chris Wilson55372522014-03-25 13:23:06 +00002270 struct address_space *mapping;
2271
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002272 switch (obj->mm.madv) {
Chris Wilson55372522014-03-25 13:23:06 +00002273 case I915_MADV_DONTNEED:
2274 i915_gem_object_truncate(obj);
2275 case __I915_MADV_PURGED:
2276 return;
2277 }
2278
2279 if (obj->base.filp == NULL)
2280 return;
2281
Al Viro93c76a32015-12-04 23:45:44 -05002282 mapping = obj->base.filp->f_mapping,
Chris Wilson55372522014-03-25 13:23:06 +00002283 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002284}
2285
Chris Wilson5cdf5882010-09-27 15:51:07 +01002286static void
Chris Wilson03ac84f2016-10-28 13:58:36 +01002287i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj,
2288 struct sg_table *pages)
Eric Anholt673a3942008-07-30 12:06:12 -07002289{
Dave Gordon85d12252016-05-20 11:54:06 +01002290 struct sgt_iter sgt_iter;
2291 struct page *page;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002292
Chris Wilson03ac84f2016-10-28 13:58:36 +01002293 __i915_gem_object_release_shmem(obj);
Eric Anholt856fa192009-03-19 14:10:50 -07002294
Chris Wilson03ac84f2016-10-28 13:58:36 +01002295 i915_gem_gtt_finish_pages(obj, pages);
Imre Deake2273302015-07-09 12:59:05 +03002296
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002297 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002298 i915_gem_object_save_bit_17_swizzle(obj, pages);
Eric Anholt280b7132009-03-12 16:56:27 -07002299
Chris Wilson03ac84f2016-10-28 13:58:36 +01002300 for_each_sgt_page(page, sgt_iter, pages) {
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002301 if (obj->mm.dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002302 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002303
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002304 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002305 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002306
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002307 put_page(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002308 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002309 obj->mm.dirty = false;
Eric Anholt673a3942008-07-30 12:06:12 -07002310
Chris Wilson03ac84f2016-10-28 13:58:36 +01002311 sg_free_table(pages);
2312 kfree(pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002313}
2314
Chris Wilson96d77632016-10-28 13:58:33 +01002315static void __i915_gem_object_reset_page_iter(struct drm_i915_gem_object *obj)
2316{
2317 struct radix_tree_iter iter;
2318 void **slot;
2319
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002320 radix_tree_for_each_slot(slot, &obj->mm.get_page.radix, &iter, 0)
2321 radix_tree_delete(&obj->mm.get_page.radix, iter.index);
Chris Wilson96d77632016-10-28 13:58:33 +01002322}
2323
Chris Wilson03ac84f2016-10-28 13:58:36 +01002324void __i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
Chris Wilson37e680a2012-06-07 15:38:42 +01002325{
Chris Wilson03ac84f2016-10-28 13:58:36 +01002326 struct sg_table *pages;
Chris Wilson37e680a2012-06-07 15:38:42 +01002327
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002328 lockdep_assert_held(&obj->base.dev->struct_mutex);
2329
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002330 if (i915_gem_object_has_pinned_pages(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002331 return;
Chris Wilsona5570172012-09-04 21:02:54 +01002332
Chris Wilson15717de2016-08-04 07:52:26 +01002333 GEM_BUG_ON(obj->bind_count);
Ben Widawsky3e123022013-07-31 17:00:04 -07002334
Chris Wilsona2165e32012-12-03 11:49:00 +00002335 /* ->put_pages might need to allocate memory for the bit17 swizzle
2336 * array, hence protect them from being reaped by removing them from gtt
2337 * lists early. */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002338 pages = fetch_and_zero(&obj->mm.pages);
2339 GEM_BUG_ON(!pages);
Chris Wilsona2165e32012-12-03 11:49:00 +00002340
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002341 if (obj->mm.mapping) {
Chris Wilson4b30cb22016-08-18 17:16:42 +01002342 void *ptr;
2343
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002344 ptr = ptr_mask_bits(obj->mm.mapping);
Chris Wilson4b30cb22016-08-18 17:16:42 +01002345 if (is_vmalloc_addr(ptr))
2346 vunmap(ptr);
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002347 else
Chris Wilson4b30cb22016-08-18 17:16:42 +01002348 kunmap(kmap_to_page(ptr));
2349
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002350 obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002351 }
2352
Chris Wilson96d77632016-10-28 13:58:33 +01002353 __i915_gem_object_reset_page_iter(obj);
2354
Chris Wilson03ac84f2016-10-28 13:58:36 +01002355 obj->ops->put_pages(obj, pages);
Chris Wilson6c085a72012-08-20 11:40:46 +02002356}
2357
Chris Wilson4ff340f02016-10-18 13:02:50 +01002358static unsigned int swiotlb_max_size(void)
Chris Wilson871dfbd2016-10-11 09:20:21 +01002359{
2360#if IS_ENABLED(CONFIG_SWIOTLB)
2361 return rounddown(swiotlb_nr_tbl() << IO_TLB_SHIFT, PAGE_SIZE);
2362#else
2363 return 0;
2364#endif
2365}
2366
Chris Wilson03ac84f2016-10-28 13:58:36 +01002367static struct sg_table *
Chris Wilson6c085a72012-08-20 11:40:46 +02002368i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002369{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002370 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002371 int page_count, i;
2372 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002373 struct sg_table *st;
2374 struct scatterlist *sg;
Dave Gordon85d12252016-05-20 11:54:06 +01002375 struct sgt_iter sgt_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002376 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002377 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson4ff340f02016-10-18 13:02:50 +01002378 unsigned int max_segment;
Imre Deake2273302015-07-09 12:59:05 +03002379 int ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002380 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002381
Chris Wilson6c085a72012-08-20 11:40:46 +02002382 /* Assert that the object is not currently in any GPU domain. As it
2383 * wasn't in the GTT, there shouldn't be any way it could have been in
2384 * a GPU cache
2385 */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002386 GEM_BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2387 GEM_BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Chris Wilson6c085a72012-08-20 11:40:46 +02002388
Chris Wilson871dfbd2016-10-11 09:20:21 +01002389 max_segment = swiotlb_max_size();
2390 if (!max_segment)
Chris Wilson4ff340f02016-10-18 13:02:50 +01002391 max_segment = rounddown(UINT_MAX, PAGE_SIZE);
Chris Wilson871dfbd2016-10-11 09:20:21 +01002392
Chris Wilson9da3da62012-06-01 15:20:22 +01002393 st = kmalloc(sizeof(*st), GFP_KERNEL);
2394 if (st == NULL)
Chris Wilson03ac84f2016-10-28 13:58:36 +01002395 return ERR_PTR(-ENOMEM);
Eric Anholt673a3942008-07-30 12:06:12 -07002396
Chris Wilson9da3da62012-06-01 15:20:22 +01002397 page_count = obj->base.size / PAGE_SIZE;
2398 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002399 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002400 return ERR_PTR(-ENOMEM);
Chris Wilson9da3da62012-06-01 15:20:22 +01002401 }
2402
2403 /* Get the list of pages out of our struct file. They'll be pinned
2404 * at this point until we release them.
2405 *
2406 * Fail silently without starting the shrinker
2407 */
Al Viro93c76a32015-12-04 23:45:44 -05002408 mapping = obj->base.filp->f_mapping;
Michal Hockoc62d2552015-11-06 16:28:49 -08002409 gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM));
Mel Gormand0164ad2015-11-06 16:28:21 -08002410 gfp |= __GFP_NORETRY | __GFP_NOWARN;
Imre Deak90797e62013-02-18 19:28:03 +02002411 sg = st->sgl;
2412 st->nents = 0;
2413 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002414 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2415 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002416 i915_gem_shrink(dev_priv,
2417 page_count,
2418 I915_SHRINK_BOUND |
2419 I915_SHRINK_UNBOUND |
2420 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002421 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2422 }
2423 if (IS_ERR(page)) {
2424 /* We've tried hard to allocate the memory by reaping
2425 * our own buffer, now let the real VM do its job and
2426 * go down in flames if truly OOM.
2427 */
David Herrmannf461d1b2014-05-25 14:34:10 +02002428 page = shmem_read_mapping_page(mapping, i);
Imre Deake2273302015-07-09 12:59:05 +03002429 if (IS_ERR(page)) {
2430 ret = PTR_ERR(page);
Chris Wilson6c085a72012-08-20 11:40:46 +02002431 goto err_pages;
Imre Deake2273302015-07-09 12:59:05 +03002432 }
Chris Wilson6c085a72012-08-20 11:40:46 +02002433 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002434 if (!i ||
2435 sg->length >= max_segment ||
2436 page_to_pfn(page) != last_pfn + 1) {
Imre Deak90797e62013-02-18 19:28:03 +02002437 if (i)
2438 sg = sg_next(sg);
2439 st->nents++;
2440 sg_set_page(sg, page, PAGE_SIZE, 0);
2441 } else {
2442 sg->length += PAGE_SIZE;
2443 }
2444 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002445
2446 /* Check that the i965g/gm workaround works. */
2447 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002448 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002449 if (sg) /* loop terminated early; short sg table */
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002450 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002451
Chris Wilson03ac84f2016-10-28 13:58:36 +01002452 ret = i915_gem_gtt_prepare_pages(obj, st);
Imre Deake2273302015-07-09 12:59:05 +03002453 if (ret)
2454 goto err_pages;
2455
Eric Anholt673a3942008-07-30 12:06:12 -07002456 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002457 i915_gem_object_do_bit_17_swizzle(obj, st);
Eric Anholt673a3942008-07-30 12:06:12 -07002458
Chris Wilson3e510a82016-08-05 10:14:23 +01002459 if (i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01002460 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002461 __i915_gem_object_pin_pages(obj);
Daniel Vetter656bfa32014-11-20 09:26:30 +01002462
Chris Wilson03ac84f2016-10-28 13:58:36 +01002463 return st;
Eric Anholt673a3942008-07-30 12:06:12 -07002464
2465err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002466 sg_mark_end(sg);
Dave Gordon85d12252016-05-20 11:54:06 +01002467 for_each_sgt_page(page, sgt_iter, st)
2468 put_page(page);
Chris Wilson9da3da62012-06-01 15:20:22 +01002469 sg_free_table(st);
2470 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002471
2472 /* shmemfs first checks if there is enough memory to allocate the page
2473 * and reports ENOSPC should there be insufficient, along with the usual
2474 * ENOMEM for a genuine allocation failure.
2475 *
2476 * We use ENOSPC in our driver to mean that we have run out of aperture
2477 * space and so want to translate the error from shmemfs back to our
2478 * usual understanding of ENOMEM.
2479 */
Imre Deake2273302015-07-09 12:59:05 +03002480 if (ret == -ENOSPC)
2481 ret = -ENOMEM;
2482
Chris Wilson03ac84f2016-10-28 13:58:36 +01002483 return ERR_PTR(ret);
2484}
2485
2486void __i915_gem_object_set_pages(struct drm_i915_gem_object *obj,
2487 struct sg_table *pages)
2488{
2489 lockdep_assert_held(&obj->base.dev->struct_mutex);
2490
2491 obj->mm.get_page.sg_pos = pages->sgl;
2492 obj->mm.get_page.sg_idx = 0;
2493
2494 obj->mm.pages = pages;
2495}
2496
2497static int ____i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2498{
2499 struct sg_table *pages;
2500
2501 if (unlikely(obj->mm.madv != I915_MADV_WILLNEED)) {
2502 DRM_DEBUG("Attempting to obtain a purgeable object\n");
2503 return -EFAULT;
2504 }
2505
2506 pages = obj->ops->get_pages(obj);
2507 if (unlikely(IS_ERR(pages)))
2508 return PTR_ERR(pages);
2509
2510 __i915_gem_object_set_pages(obj, pages);
2511 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002512}
2513
Chris Wilson37e680a2012-06-07 15:38:42 +01002514/* Ensure that the associated pages are gathered from the backing storage
2515 * and pinned into our object. i915_gem_object_get_pages() may be called
2516 * multiple times before they are released by a single call to
2517 * i915_gem_object_put_pages() - once the pages are no longer referenced
2518 * either as a result of memory pressure (reaping pages under the shrinker)
2519 * or as the object is itself released.
2520 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002521int __i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
Chris Wilson37e680a2012-06-07 15:38:42 +01002522{
Chris Wilson03ac84f2016-10-28 13:58:36 +01002523 int err;
Chris Wilson37e680a2012-06-07 15:38:42 +01002524
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002525 lockdep_assert_held(&obj->base.dev->struct_mutex);
2526
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002527 if (obj->mm.pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002528 return 0;
2529
Chris Wilson03ac84f2016-10-28 13:58:36 +01002530 err = ____i915_gem_object_get_pages(obj);
2531 if (err)
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002532 __i915_gem_object_unpin_pages(obj);
Chris Wilson43e28f02013-01-08 10:53:09 +00002533
Chris Wilson03ac84f2016-10-28 13:58:36 +01002534 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07002535}
2536
Dave Gordondd6034c2016-05-20 11:54:04 +01002537/* The 'mapping' part of i915_gem_object_pin_map() below */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002538static void *i915_gem_object_map(const struct drm_i915_gem_object *obj,
2539 enum i915_map_type type)
Dave Gordondd6034c2016-05-20 11:54:04 +01002540{
2541 unsigned long n_pages = obj->base.size >> PAGE_SHIFT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002542 struct sg_table *sgt = obj->mm.pages;
Dave Gordon85d12252016-05-20 11:54:06 +01002543 struct sgt_iter sgt_iter;
2544 struct page *page;
Dave Gordonb338fa42016-05-20 11:54:05 +01002545 struct page *stack_pages[32];
2546 struct page **pages = stack_pages;
Dave Gordondd6034c2016-05-20 11:54:04 +01002547 unsigned long i = 0;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002548 pgprot_t pgprot;
Dave Gordondd6034c2016-05-20 11:54:04 +01002549 void *addr;
2550
2551 /* A single page can always be kmapped */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002552 if (n_pages == 1 && type == I915_MAP_WB)
Dave Gordondd6034c2016-05-20 11:54:04 +01002553 return kmap(sg_page(sgt->sgl));
2554
Dave Gordonb338fa42016-05-20 11:54:05 +01002555 if (n_pages > ARRAY_SIZE(stack_pages)) {
2556 /* Too big for stack -- allocate temporary array instead */
2557 pages = drm_malloc_gfp(n_pages, sizeof(*pages), GFP_TEMPORARY);
2558 if (!pages)
2559 return NULL;
2560 }
Dave Gordondd6034c2016-05-20 11:54:04 +01002561
Dave Gordon85d12252016-05-20 11:54:06 +01002562 for_each_sgt_page(page, sgt_iter, sgt)
2563 pages[i++] = page;
Dave Gordondd6034c2016-05-20 11:54:04 +01002564
2565 /* Check that we have the expected number of pages */
2566 GEM_BUG_ON(i != n_pages);
2567
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002568 switch (type) {
2569 case I915_MAP_WB:
2570 pgprot = PAGE_KERNEL;
2571 break;
2572 case I915_MAP_WC:
2573 pgprot = pgprot_writecombine(PAGE_KERNEL_IO);
2574 break;
2575 }
2576 addr = vmap(pages, n_pages, 0, pgprot);
Dave Gordondd6034c2016-05-20 11:54:04 +01002577
Dave Gordonb338fa42016-05-20 11:54:05 +01002578 if (pages != stack_pages)
2579 drm_free_large(pages);
Dave Gordondd6034c2016-05-20 11:54:04 +01002580
2581 return addr;
2582}
2583
2584/* get, pin, and map the pages of the object into kernel space */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002585void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj,
2586 enum i915_map_type type)
Chris Wilson0a798eb2016-04-08 12:11:11 +01002587{
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002588 enum i915_map_type has_type;
2589 bool pinned;
2590 void *ptr;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002591 int ret;
2592
2593 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002594 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002595
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002596 ret = i915_gem_object_pin_pages(obj);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002597 if (ret)
2598 return ERR_PTR(ret);
2599
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002600 pinned = obj->mm.pages_pin_count > 1;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002601
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002602 ptr = ptr_unpack_bits(obj->mm.mapping, has_type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002603 if (ptr && has_type != type) {
2604 if (pinned) {
2605 ret = -EBUSY;
2606 goto err;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002607 }
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002608
2609 if (is_vmalloc_addr(ptr))
2610 vunmap(ptr);
2611 else
2612 kunmap(kmap_to_page(ptr));
2613
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002614 ptr = obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002615 }
2616
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002617 if (!ptr) {
2618 ptr = i915_gem_object_map(obj, type);
2619 if (!ptr) {
2620 ret = -ENOMEM;
2621 goto err;
2622 }
2623
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002624 obj->mm.mapping = ptr_pack_bits(ptr, type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002625 }
2626
2627 return ptr;
2628
2629err:
2630 i915_gem_object_unpin_pages(obj);
2631 return ERR_PTR(ret);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002632}
2633
Chris Wilsoncaea7472010-11-12 13:53:37 +00002634static void
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002635i915_gem_object_retire__write(struct i915_gem_active *active,
2636 struct drm_i915_gem_request *request)
Chris Wilsonb4716182015-04-27 13:41:17 +01002637{
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002638 struct drm_i915_gem_object *obj =
2639 container_of(active, struct drm_i915_gem_object, last_write);
Chris Wilsonb4716182015-04-27 13:41:17 +01002640
Rodrigo Vivide152b62015-07-07 16:28:51 -07002641 intel_fb_obj_flush(obj, true, ORIGIN_CS);
Chris Wilsonb4716182015-04-27 13:41:17 +01002642}
2643
2644static void
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002645i915_gem_object_retire__read(struct i915_gem_active *active,
2646 struct drm_i915_gem_request *request)
Chris Wilsoncaea7472010-11-12 13:53:37 +00002647{
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002648 int idx = request->engine->id;
2649 struct drm_i915_gem_object *obj =
2650 container_of(active, struct drm_i915_gem_object, last_read[idx]);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002651
Chris Wilson573adb32016-08-04 16:32:39 +01002652 GEM_BUG_ON(!i915_gem_object_has_active_engine(obj, idx));
Chris Wilsonb4716182015-04-27 13:41:17 +01002653
Chris Wilson573adb32016-08-04 16:32:39 +01002654 i915_gem_object_clear_active(obj, idx);
2655 if (i915_gem_object_is_active(obj))
Chris Wilsonb4716182015-04-27 13:41:17 +01002656 return;
Chris Wilson65ce3022012-07-20 12:41:02 +01002657
Chris Wilson6c246952015-07-27 10:26:26 +01002658 /* Bump our place on the bound list to keep it roughly in LRU order
2659 * so that we don't steal from recently used but inactive objects
2660 * (unless we are forced to ofc!)
2661 */
Chris Wilsonb0decaf2016-08-04 07:52:44 +01002662 if (obj->bind_count)
2663 list_move_tail(&obj->global_list,
2664 &request->i915->mm.bound_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002665
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002666 if (i915_gem_object_has_active_reference(obj)) {
2667 i915_gem_object_clear_active_reference(obj);
2668 i915_gem_object_put(obj);
2669 }
Chris Wilsonc8725f32014-03-17 12:21:55 +00002670}
2671
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002672static bool i915_context_is_banned(const struct i915_gem_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002673{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002674 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002675
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002676 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002677 return true;
2678
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002679 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
Chris Wilson676fa572014-12-24 08:13:39 -08002680 if (ctx->hang_stats.ban_period_seconds &&
2681 elapsed <= ctx->hang_stats.ban_period_seconds) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002682 DRM_DEBUG("context hanging too fast, banning!\n");
2683 return true;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002684 }
2685
2686 return false;
2687}
2688
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002689static void i915_set_reset_status(struct i915_gem_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002690 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002691{
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002692 struct i915_ctx_hang_stats *hs = &ctx->hang_stats;
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002693
2694 if (guilty) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002695 hs->banned = i915_context_is_banned(ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002696 hs->batch_active++;
2697 hs->guilty_ts = get_seconds();
2698 } else {
2699 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002700 }
2701}
2702
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002703struct drm_i915_gem_request *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002704i915_gem_find_active_request(struct intel_engine_cs *engine)
Chris Wilson9375e442010-09-19 12:21:28 +01002705{
Chris Wilson4db080f2013-12-04 11:37:09 +00002706 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002707
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002708 /* We are called by the error capture and reset at a random
2709 * point in time. In particular, note that neither is crucially
2710 * ordered with an interrupt. After a hang, the GPU is dead and we
2711 * assume that no more writes can happen (we waited long enough for
2712 * all writes that were in transaction to be flushed) - adding an
2713 * extra delay for a recent interrupt is pointless. Hence, we do
2714 * not need an engine->irq_seqno_barrier() before the seqno reads.
2715 */
Chris Wilsonefdf7c02016-08-04 07:52:33 +01002716 list_for_each_entry(request, &engine->request_list, link) {
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002717 if (i915_gem_request_completed(request))
Chris Wilson4db080f2013-12-04 11:37:09 +00002718 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002719
Chris Wilson5590af32016-09-09 14:11:54 +01002720 if (!i915_sw_fence_done(&request->submit))
2721 break;
2722
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002723 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002724 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002725
2726 return NULL;
2727}
2728
Chris Wilson821ed7d2016-09-09 14:11:53 +01002729static void reset_request(struct drm_i915_gem_request *request)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002730{
Chris Wilson821ed7d2016-09-09 14:11:53 +01002731 void *vaddr = request->ring->vaddr;
2732 u32 head;
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002733
Chris Wilson821ed7d2016-09-09 14:11:53 +01002734 /* As this request likely depends on state from the lost
2735 * context, clear out all the user operations leaving the
2736 * breadcrumb at the end (so we get the fence notifications).
2737 */
2738 head = request->head;
2739 if (request->postfix < head) {
2740 memset(vaddr + head, 0, request->ring->size - head);
2741 head = 0;
2742 }
2743 memset(vaddr + head, 0, request->postfix - head);
Chris Wilson4db080f2013-12-04 11:37:09 +00002744}
2745
Chris Wilson821ed7d2016-09-09 14:11:53 +01002746static void i915_gem_reset_engine(struct intel_engine_cs *engine)
Chris Wilson4db080f2013-12-04 11:37:09 +00002747{
Chris Wilsondcff85c2016-08-05 10:14:11 +01002748 struct drm_i915_gem_request *request;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002749 struct i915_gem_context *incomplete_ctx;
2750 bool ring_hung;
Chris Wilson608c1a52015-09-03 13:01:40 +01002751
Chris Wilson821ed7d2016-09-09 14:11:53 +01002752 if (engine->irq_seqno_barrier)
2753 engine->irq_seqno_barrier(engine);
2754
2755 request = i915_gem_find_active_request(engine);
2756 if (!request)
2757 return;
2758
2759 ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
Chris Wilson77c60702016-10-04 21:11:29 +01002760 if (engine->hangcheck.seqno != intel_engine_get_seqno(engine))
2761 ring_hung = false;
2762
Chris Wilson821ed7d2016-09-09 14:11:53 +01002763 i915_set_reset_status(request->ctx, ring_hung);
2764 if (!ring_hung)
2765 return;
2766
2767 DRM_DEBUG_DRIVER("resetting %s to restart from tail of request 0x%x\n",
2768 engine->name, request->fence.seqno);
2769
2770 /* Setup the CS to resume from the breadcrumb of the hung request */
2771 engine->reset_hw(engine, request);
2772
2773 /* Users of the default context do not rely on logical state
2774 * preserved between batches. They have to emit full state on
2775 * every batch and so it is safe to execute queued requests following
2776 * the hang.
2777 *
2778 * Other contexts preserve state, now corrupt. We want to skip all
2779 * queued requests that reference the corrupt context.
2780 */
2781 incomplete_ctx = request->ctx;
2782 if (i915_gem_context_is_default(incomplete_ctx))
2783 return;
2784
2785 list_for_each_entry_continue(request, &engine->request_list, link)
2786 if (request->ctx == incomplete_ctx)
2787 reset_request(request);
2788}
2789
2790void i915_gem_reset(struct drm_i915_private *dev_priv)
2791{
2792 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302793 enum intel_engine_id id;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002794
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002795 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2796
Chris Wilson821ed7d2016-09-09 14:11:53 +01002797 i915_gem_retire_requests(dev_priv);
2798
Akash Goel3b3f1652016-10-13 22:44:48 +05302799 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002800 i915_gem_reset_engine(engine);
2801
2802 i915_gem_restore_fences(&dev_priv->drm);
Chris Wilsonf2a91d12016-09-21 14:51:06 +01002803
2804 if (dev_priv->gt.awake) {
2805 intel_sanitize_gt_powersave(dev_priv);
2806 intel_enable_gt_powersave(dev_priv);
2807 if (INTEL_GEN(dev_priv) >= 6)
2808 gen6_rps_busy(dev_priv);
2809 }
Chris Wilson821ed7d2016-09-09 14:11:53 +01002810}
2811
2812static void nop_submit_request(struct drm_i915_gem_request *request)
2813{
2814}
2815
2816static void i915_gem_cleanup_engine(struct intel_engine_cs *engine)
2817{
2818 engine->submit_request = nop_submit_request;
Chris Wilson70c2a242016-09-09 14:11:46 +01002819
Chris Wilsonc4b09302016-07-20 09:21:10 +01002820 /* Mark all pending requests as complete so that any concurrent
2821 * (lockless) lookup doesn't try and wait upon the request as we
2822 * reset it.
2823 */
Chris Wilson87b723a2016-08-09 08:37:02 +01002824 intel_engine_init_seqno(engine, engine->last_submitted_seqno);
Chris Wilsonc4b09302016-07-20 09:21:10 +01002825
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002826 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002827 * Clear the execlists queue up before freeing the requests, as those
2828 * are the ones that keep the context and ringbuffer backing objects
2829 * pinned in place.
2830 */
Oscar Mateodcb4c122014-11-13 10:28:10 +00002831
Tomas Elf7de1691a2015-10-19 16:32:32 +01002832 if (i915.enable_execlists) {
Chris Wilson70c2a242016-09-09 14:11:46 +01002833 spin_lock(&engine->execlist_lock);
2834 INIT_LIST_HEAD(&engine->execlist_queue);
2835 i915_gem_request_put(engine->execlist_port[0].request);
2836 i915_gem_request_put(engine->execlist_port[1].request);
2837 memset(engine->execlist_port, 0, sizeof(engine->execlist_port));
2838 spin_unlock(&engine->execlist_lock);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002839 }
2840
Chris Wilsonb913b332016-07-13 09:10:31 +01002841 engine->i915->gt.active_engines &= ~intel_engine_flag(engine);
Eric Anholt673a3942008-07-30 12:06:12 -07002842}
2843
Chris Wilson821ed7d2016-09-09 14:11:53 +01002844void i915_gem_set_wedged(struct drm_i915_private *dev_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002845{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002846 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302847 enum intel_engine_id id;
Eric Anholt673a3942008-07-30 12:06:12 -07002848
Chris Wilson821ed7d2016-09-09 14:11:53 +01002849 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2850 set_bit(I915_WEDGED, &dev_priv->gpu_error.flags);
Chris Wilson4db080f2013-12-04 11:37:09 +00002851
Chris Wilson821ed7d2016-09-09 14:11:53 +01002852 i915_gem_context_lost(dev_priv);
Akash Goel3b3f1652016-10-13 22:44:48 +05302853 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002854 i915_gem_cleanup_engine(engine);
Chris Wilsonb913b332016-07-13 09:10:31 +01002855 mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0);
Chris Wilsondfaae392010-09-22 10:31:52 +01002856
Chris Wilson821ed7d2016-09-09 14:11:53 +01002857 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002858}
2859
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002860static void
Eric Anholt673a3942008-07-30 12:06:12 -07002861i915_gem_retire_work_handler(struct work_struct *work)
2862{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002863 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002864 container_of(work, typeof(*dev_priv), gt.retire_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002865 struct drm_device *dev = &dev_priv->drm;
Eric Anholt673a3942008-07-30 12:06:12 -07002866
Chris Wilson891b48c2010-09-29 12:26:37 +01002867 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002868 if (mutex_trylock(&dev->struct_mutex)) {
Chris Wilson67d97da2016-07-04 08:08:31 +01002869 i915_gem_retire_requests(dev_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002870 mutex_unlock(&dev->struct_mutex);
2871 }
Chris Wilson67d97da2016-07-04 08:08:31 +01002872
2873 /* Keep the retire handler running until we are finally idle.
2874 * We do not need to do this test under locking as in the worst-case
2875 * we queue the retire worker once too often.
2876 */
Chris Wilsonc9615612016-07-09 10:12:06 +01002877 if (READ_ONCE(dev_priv->gt.awake)) {
2878 i915_queue_hangcheck(dev_priv);
Chris Wilson67d97da2016-07-04 08:08:31 +01002879 queue_delayed_work(dev_priv->wq,
2880 &dev_priv->gt.retire_work,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002881 round_jiffies_up_relative(HZ));
Chris Wilsonc9615612016-07-09 10:12:06 +01002882 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002883}
Chris Wilson891b48c2010-09-29 12:26:37 +01002884
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002885static void
2886i915_gem_idle_work_handler(struct work_struct *work)
2887{
2888 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002889 container_of(work, typeof(*dev_priv), gt.idle_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002890 struct drm_device *dev = &dev_priv->drm;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002891 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302892 enum intel_engine_id id;
Chris Wilson67d97da2016-07-04 08:08:31 +01002893 bool rearm_hangcheck;
2894
2895 if (!READ_ONCE(dev_priv->gt.awake))
2896 return;
2897
2898 if (READ_ONCE(dev_priv->gt.active_engines))
2899 return;
2900
2901 rearm_hangcheck =
2902 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
2903
2904 if (!mutex_trylock(&dev->struct_mutex)) {
2905 /* Currently busy, come back later */
2906 mod_delayed_work(dev_priv->wq,
2907 &dev_priv->gt.idle_work,
2908 msecs_to_jiffies(50));
2909 goto out_rearm;
2910 }
2911
2912 if (dev_priv->gt.active_engines)
2913 goto out_unlock;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002914
Akash Goel3b3f1652016-10-13 22:44:48 +05302915 for_each_engine(engine, dev_priv, id)
Chris Wilson67d97da2016-07-04 08:08:31 +01002916 i915_gem_batch_pool_fini(&engine->batch_pool);
Zou Nan hai852835f2010-05-21 09:08:56 +08002917
Chris Wilson67d97da2016-07-04 08:08:31 +01002918 GEM_BUG_ON(!dev_priv->gt.awake);
2919 dev_priv->gt.awake = false;
2920 rearm_hangcheck = false;
Daniel Vetter30ecad72015-12-09 09:29:36 +01002921
Chris Wilson67d97da2016-07-04 08:08:31 +01002922 if (INTEL_GEN(dev_priv) >= 6)
2923 gen6_rps_idle(dev_priv);
2924 intel_runtime_pm_put(dev_priv);
2925out_unlock:
2926 mutex_unlock(&dev->struct_mutex);
Chris Wilson35c94182015-04-07 16:20:37 +01002927
Chris Wilson67d97da2016-07-04 08:08:31 +01002928out_rearm:
2929 if (rearm_hangcheck) {
2930 GEM_BUG_ON(!dev_priv->gt.awake);
2931 i915_queue_hangcheck(dev_priv);
Chris Wilson35c94182015-04-07 16:20:37 +01002932 }
Eric Anholt673a3942008-07-30 12:06:12 -07002933}
2934
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002935void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
2936{
2937 struct drm_i915_gem_object *obj = to_intel_bo(gem);
2938 struct drm_i915_file_private *fpriv = file->driver_priv;
2939 struct i915_vma *vma, *vn;
2940
2941 mutex_lock(&obj->base.dev->struct_mutex);
2942 list_for_each_entry_safe(vma, vn, &obj->vma_list, obj_link)
2943 if (vma->vm->file == fpriv)
2944 i915_vma_close(vma);
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002945
2946 if (i915_gem_object_is_active(obj) &&
2947 !i915_gem_object_has_active_reference(obj)) {
2948 i915_gem_object_set_active_reference(obj);
2949 i915_gem_object_get(obj);
2950 }
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002951 mutex_unlock(&obj->base.dev->struct_mutex);
2952}
2953
Chris Wilsone95433c2016-10-28 13:58:27 +01002954static unsigned long to_wait_timeout(s64 timeout_ns)
2955{
2956 if (timeout_ns < 0)
2957 return MAX_SCHEDULE_TIMEOUT;
2958
2959 if (timeout_ns == 0)
2960 return 0;
2961
2962 return nsecs_to_jiffies_timeout(timeout_ns);
2963}
2964
Ben Widawsky5816d642012-04-11 11:18:19 -07002965/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002966 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002967 * @dev: drm device pointer
2968 * @data: ioctl data blob
2969 * @file: drm file pointer
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002970 *
2971 * Returns 0 if successful, else an error is returned with the remaining time in
2972 * the timeout parameter.
2973 * -ETIME: object is still busy after timeout
2974 * -ERESTARTSYS: signal interrupted the wait
2975 * -ENONENT: object doesn't exist
2976 * Also possible, but rare:
2977 * -EAGAIN: GPU wedged
2978 * -ENOMEM: damn
2979 * -ENODEV: Internal IRQ fail
2980 * -E?: The add request failed
2981 *
2982 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2983 * non-zero timeout parameter the wait ioctl will wait for the given number of
2984 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2985 * without holding struct_mutex the object may become re-busied before this
2986 * function completes. A similar but shorter * race condition exists in the busy
2987 * ioctl
2988 */
2989int
2990i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2991{
2992 struct drm_i915_gem_wait *args = data;
2993 struct drm_i915_gem_object *obj;
Chris Wilsone95433c2016-10-28 13:58:27 +01002994 ktime_t start;
2995 long ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002996
Daniel Vetter11b5d512014-09-29 15:31:26 +02002997 if (args->flags != 0)
2998 return -EINVAL;
2999
Chris Wilson03ac0642016-07-20 13:31:51 +01003000 obj = i915_gem_object_lookup(file, args->bo_handle);
Chris Wilson033d5492016-08-05 10:14:17 +01003001 if (!obj)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003002 return -ENOENT;
Chris Wilson033d5492016-08-05 10:14:17 +01003003
Chris Wilsone95433c2016-10-28 13:58:27 +01003004 start = ktime_get();
3005
3006 ret = i915_gem_object_wait(obj,
3007 I915_WAIT_INTERRUPTIBLE | I915_WAIT_ALL,
3008 to_wait_timeout(args->timeout_ns),
3009 to_rps_client(file));
3010
3011 if (args->timeout_ns > 0) {
3012 args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start));
3013 if (args->timeout_ns < 0)
3014 args->timeout_ns = 0;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003015 }
3016
Chris Wilson033d5492016-08-05 10:14:17 +01003017 i915_gem_object_put_unlocked(obj);
John Harrisonff865882014-11-24 18:49:28 +00003018 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003019}
3020
Chris Wilson8ef85612016-04-28 09:56:39 +01003021static void __i915_vma_iounmap(struct i915_vma *vma)
3022{
Chris Wilson20dfbde2016-08-04 16:32:30 +01003023 GEM_BUG_ON(i915_vma_is_pinned(vma));
Chris Wilson8ef85612016-04-28 09:56:39 +01003024
3025 if (vma->iomap == NULL)
3026 return;
3027
3028 io_mapping_unmap(vma->iomap);
3029 vma->iomap = NULL;
3030}
3031
Chris Wilsondf0e9a22016-08-04 07:52:47 +01003032int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003033{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003034 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003035 unsigned long active;
Chris Wilson43e28f02013-01-08 10:53:09 +00003036 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003037
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003038 lockdep_assert_held(&obj->base.dev->struct_mutex);
3039
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003040 /* First wait upon any activity as retiring the request may
3041 * have side-effects such as unpinning or even unbinding this vma.
3042 */
3043 active = i915_vma_get_active(vma);
Chris Wilsondf0e9a22016-08-04 07:52:47 +01003044 if (active) {
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003045 int idx;
3046
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003047 /* When a closed VMA is retired, it is unbound - eek.
3048 * In order to prevent it from being recursively closed,
3049 * take a pin on the vma so that the second unbind is
3050 * aborted.
3051 */
Chris Wilson20dfbde2016-08-04 16:32:30 +01003052 __i915_vma_pin(vma);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003053
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003054 for_each_active(active, idx) {
3055 ret = i915_gem_active_retire(&vma->last_read[idx],
3056 &vma->vm->dev->struct_mutex);
3057 if (ret)
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003058 break;
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003059 }
3060
Chris Wilson20dfbde2016-08-04 16:32:30 +01003061 __i915_vma_unpin(vma);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003062 if (ret)
3063 return ret;
3064
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003065 GEM_BUG_ON(i915_vma_is_active(vma));
3066 }
3067
Chris Wilson20dfbde2016-08-04 16:32:30 +01003068 if (i915_vma_is_pinned(vma))
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003069 return -EBUSY;
3070
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003071 if (!drm_mm_node_allocated(&vma->node))
3072 goto destroy;
Ben Widawsky433544b2013-08-13 18:09:06 -07003073
Chris Wilson15717de2016-08-04 07:52:26 +01003074 GEM_BUG_ON(obj->bind_count == 0);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003075 GEM_BUG_ON(!obj->mm.pages);
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003076
Chris Wilson05a20d02016-08-18 17:16:55 +01003077 if (i915_vma_is_map_and_fenceable(vma)) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003078 /* release the fence reg _after_ flushing */
Chris Wilson49ef5292016-08-18 17:17:00 +01003079 ret = i915_vma_put_fence(vma);
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003080 if (ret)
3081 return ret;
Chris Wilson8ef85612016-04-28 09:56:39 +01003082
Chris Wilsoncd3127d2016-08-18 17:17:09 +01003083 /* Force a pagefault for domain tracking on next user access */
3084 i915_gem_release_mmap(obj);
3085
Chris Wilson8ef85612016-04-28 09:56:39 +01003086 __i915_vma_iounmap(vma);
Chris Wilson05a20d02016-08-18 17:16:55 +01003087 vma->flags &= ~I915_VMA_CAN_FENCE;
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003088 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003089
Chris Wilson50e046b2016-08-04 07:52:46 +01003090 if (likely(!vma->vm->closed)) {
3091 trace_i915_vma_unbind(vma);
3092 vma->vm->unbind_vma(vma);
3093 }
Chris Wilson3272db52016-08-04 16:32:32 +01003094 vma->flags &= ~(I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003095
Chris Wilson50e046b2016-08-04 07:52:46 +01003096 drm_mm_remove_node(&vma->node);
3097 list_move_tail(&vma->vm_link, &vma->vm->unbound_list);
3098
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003099 if (vma->pages != obj->mm.pages) {
Chris Wilson05a20d02016-08-18 17:16:55 +01003100 GEM_BUG_ON(!vma->pages);
3101 sg_free_table(vma->pages);
3102 kfree(vma->pages);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003103 }
Chris Wilson247177d2016-08-15 10:48:47 +01003104 vma->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07003105
Ben Widawsky2f633152013-07-17 12:19:03 -07003106 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003107 * no more VMAs exist. */
Chris Wilson15717de2016-08-04 07:52:26 +01003108 if (--obj->bind_count == 0)
3109 list_move_tail(&obj->global_list,
3110 &to_i915(obj->base.dev)->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003111
Chris Wilson70903c32013-12-04 09:59:09 +00003112 /* And finally now the object is completely decoupled from this vma,
3113 * we can drop its hold on the backing storage and allow it to be
3114 * reaped by the shrinker.
3115 */
3116 i915_gem_object_unpin_pages(obj);
3117
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003118destroy:
Chris Wilson3272db52016-08-04 16:32:32 +01003119 if (unlikely(i915_vma_is_closed(vma)))
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003120 i915_vma_destroy(vma);
3121
Chris Wilson88241782011-01-07 17:09:48 +00003122 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003123}
3124
Chris Wilsondcff85c2016-08-05 10:14:11 +01003125int i915_gem_wait_for_idle(struct drm_i915_private *dev_priv,
Chris Wilsonea746f32016-09-09 14:11:49 +01003126 unsigned int flags)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003127{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003128 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05303129 enum intel_engine_id id;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003130 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003131
Akash Goel3b3f1652016-10-13 22:44:48 +05303132 for_each_engine(engine, dev_priv, id) {
Chris Wilson62e63002016-06-24 14:55:52 +01003133 if (engine->last_context == NULL)
3134 continue;
3135
Chris Wilsonea746f32016-09-09 14:11:49 +01003136 ret = intel_engine_idle(engine, flags);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003137 if (ret)
3138 return ret;
3139 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003140
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003141 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003142}
3143
Chris Wilson4144f9b2014-09-11 08:43:48 +01003144static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003145 unsigned long cache_level)
3146{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003147 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003148 struct drm_mm_node *other;
3149
Chris Wilson4144f9b2014-09-11 08:43:48 +01003150 /*
3151 * On some machines we have to be careful when putting differing types
3152 * of snoopable memory together to avoid the prefetcher crossing memory
3153 * domains and dying. During vm initialisation, we decide whether or not
3154 * these constraints apply and set the drm_mm.color_adjust
3155 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003156 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003157 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003158 return true;
3159
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003160 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003161 return true;
3162
3163 if (list_empty(&gtt_space->node_list))
3164 return true;
3165
3166 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3167 if (other->allocated && !other->hole_follows && other->color != cache_level)
3168 return false;
3169
3170 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3171 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3172 return false;
3173
3174 return true;
3175}
3176
Jesse Barnesde151cf2008-11-12 10:03:55 -08003177/**
Chris Wilson59bfa122016-08-04 16:32:31 +01003178 * i915_vma_insert - finds a slot for the vma in its address space
3179 * @vma: the vma
Chris Wilson91b2db62016-08-04 16:32:23 +01003180 * @size: requested size in bytes (can be larger than the VMA)
Chris Wilson59bfa122016-08-04 16:32:31 +01003181 * @alignment: required alignment
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003182 * @flags: mask of PIN_* flags to use
Chris Wilson59bfa122016-08-04 16:32:31 +01003183 *
3184 * First we try to allocate some free space that meets the requirements for
3185 * the VMA. Failiing that, if the flags permit, it will evict an old VMA,
3186 * preferrably the oldest idle entry to make room for the new VMA.
3187 *
3188 * Returns:
3189 * 0 on success, negative error code otherwise.
Eric Anholt673a3942008-07-30 12:06:12 -07003190 */
Chris Wilson59bfa122016-08-04 16:32:31 +01003191static int
3192i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003193{
Chris Wilson59bfa122016-08-04 16:32:31 +01003194 struct drm_i915_private *dev_priv = to_i915(vma->vm->dev);
3195 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsonde180032016-08-04 16:32:29 +01003196 u64 start, end;
Chris Wilson07f73f62009-09-14 16:50:30 +01003197 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003198
Chris Wilson3272db52016-08-04 16:32:32 +01003199 GEM_BUG_ON(vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
Chris Wilson59bfa122016-08-04 16:32:31 +01003200 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003201
Chris Wilsonde180032016-08-04 16:32:29 +01003202 size = max(size, vma->size);
3203 if (flags & PIN_MAPPABLE)
Chris Wilson3e510a82016-08-05 10:14:23 +01003204 size = i915_gem_get_ggtt_size(dev_priv, size,
3205 i915_gem_object_get_tiling(obj));
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003206
Chris Wilsond8923dc2016-08-18 17:17:07 +01003207 alignment = max(max(alignment, vma->display_alignment),
3208 i915_gem_get_ggtt_alignment(dev_priv, size,
3209 i915_gem_object_get_tiling(obj),
3210 flags & PIN_MAPPABLE));
Chris Wilsona00b10c2010-09-24 21:15:47 +01003211
Michel Thierry101b5062015-10-01 13:33:57 +01003212 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
Chris Wilsonde180032016-08-04 16:32:29 +01003213
3214 end = vma->vm->total;
Michel Thierry101b5062015-10-01 13:33:57 +01003215 if (flags & PIN_MAPPABLE)
Chris Wilson91b2db62016-08-04 16:32:23 +01003216 end = min_t(u64, end, dev_priv->ggtt.mappable_end);
Michel Thierry101b5062015-10-01 13:33:57 +01003217 if (flags & PIN_ZONE_4G)
Michel Thierry48ea1e32016-01-11 11:39:27 +00003218 end = min_t(u64, end, (1ULL << 32) - PAGE_SIZE);
Michel Thierry101b5062015-10-01 13:33:57 +01003219
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003220 /* If binding the object/GGTT view requires more space than the entire
3221 * aperture has, reject it early before evicting everything in a vain
3222 * attempt to find space.
Chris Wilson654fc602010-05-27 13:18:21 +01003223 */
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003224 if (size > end) {
Chris Wilsonde180032016-08-04 16:32:29 +01003225 DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu [object=%zd] > %s aperture=%llu\n",
Chris Wilson91b2db62016-08-04 16:32:23 +01003226 size, obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003227 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003228 end);
Chris Wilson59bfa122016-08-04 16:32:31 +01003229 return -E2BIG;
Chris Wilson654fc602010-05-27 13:18:21 +01003230 }
3231
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003232 ret = i915_gem_object_pin_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003233 if (ret)
Chris Wilson59bfa122016-08-04 16:32:31 +01003234 return ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02003235
Chris Wilson506a8e82015-12-08 11:55:07 +00003236 if (flags & PIN_OFFSET_FIXED) {
Chris Wilson59bfa122016-08-04 16:32:31 +01003237 u64 offset = flags & PIN_OFFSET_MASK;
Chris Wilsonde180032016-08-04 16:32:29 +01003238 if (offset & (alignment - 1) || offset > end - size) {
Chris Wilson506a8e82015-12-08 11:55:07 +00003239 ret = -EINVAL;
Chris Wilsonde180032016-08-04 16:32:29 +01003240 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003241 }
Chris Wilsonde180032016-08-04 16:32:29 +01003242
Chris Wilson506a8e82015-12-08 11:55:07 +00003243 vma->node.start = offset;
3244 vma->node.size = size;
3245 vma->node.color = obj->cache_level;
Chris Wilsonde180032016-08-04 16:32:29 +01003246 ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node);
Chris Wilson506a8e82015-12-08 11:55:07 +00003247 if (ret) {
3248 ret = i915_gem_evict_for_vma(vma);
3249 if (ret == 0)
Chris Wilsonde180032016-08-04 16:32:29 +01003250 ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node);
3251 if (ret)
3252 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003253 }
Michel Thierry101b5062015-10-01 13:33:57 +01003254 } else {
Chris Wilsonde180032016-08-04 16:32:29 +01003255 u32 search_flag, alloc_flag;
3256
Chris Wilson506a8e82015-12-08 11:55:07 +00003257 if (flags & PIN_HIGH) {
3258 search_flag = DRM_MM_SEARCH_BELOW;
3259 alloc_flag = DRM_MM_CREATE_TOP;
3260 } else {
3261 search_flag = DRM_MM_SEARCH_DEFAULT;
3262 alloc_flag = DRM_MM_CREATE_DEFAULT;
3263 }
Michel Thierry101b5062015-10-01 13:33:57 +01003264
Chris Wilson954c4692016-08-04 16:32:26 +01003265 /* We only allocate in PAGE_SIZE/GTT_PAGE_SIZE (4096) chunks,
3266 * so we know that we always have a minimum alignment of 4096.
3267 * The drm_mm range manager is optimised to return results
3268 * with zero alignment, so where possible use the optimal
3269 * path.
3270 */
3271 if (alignment <= 4096)
3272 alignment = 0;
3273
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003274search_free:
Chris Wilsonde180032016-08-04 16:32:29 +01003275 ret = drm_mm_insert_node_in_range_generic(&vma->vm->mm,
3276 &vma->node,
Chris Wilson506a8e82015-12-08 11:55:07 +00003277 size, alignment,
3278 obj->cache_level,
3279 start, end,
3280 search_flag,
3281 alloc_flag);
3282 if (ret) {
Chris Wilsonde180032016-08-04 16:32:29 +01003283 ret = i915_gem_evict_something(vma->vm, size, alignment,
Chris Wilson506a8e82015-12-08 11:55:07 +00003284 obj->cache_level,
3285 start, end,
3286 flags);
3287 if (ret == 0)
3288 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003289
Chris Wilsonde180032016-08-04 16:32:29 +01003290 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003291 }
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003292
3293 GEM_BUG_ON(vma->node.start < start);
3294 GEM_BUG_ON(vma->node.start + vma->node.size > end);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003295 }
Chris Wilson37508582016-08-04 16:32:24 +01003296 GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level));
Eric Anholt673a3942008-07-30 12:06:12 -07003297
Ben Widawsky35c20a62013-05-31 11:28:48 -07003298 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilsonde180032016-08-04 16:32:29 +01003299 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
Chris Wilson15717de2016-08-04 07:52:26 +01003300 obj->bind_count++;
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003301
Chris Wilson59bfa122016-08-04 16:32:31 +01003302 return 0;
Ben Widawsky2f633152013-07-17 12:19:03 -07003303
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003304err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003305 i915_gem_object_unpin_pages(obj);
Chris Wilson59bfa122016-08-04 16:32:31 +01003306 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003307}
3308
Chris Wilson000433b2013-08-08 14:41:09 +01003309bool
Chris Wilson2c225692013-08-09 12:26:45 +01003310i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3311 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003312{
Eric Anholt673a3942008-07-30 12:06:12 -07003313 /* If we don't have a page list set up, then we're not pinned
3314 * to GPU, and we can ignore the cache flush because it'll happen
3315 * again at bind time.
3316 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003317 if (!obj->mm.pages)
Chris Wilson000433b2013-08-08 14:41:09 +01003318 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003319
Imre Deak769ce462013-02-13 21:56:05 +02003320 /*
3321 * Stolen memory is always coherent with the GPU as it is explicitly
3322 * marked as wc by the system, or the system is cache-coherent.
3323 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003324 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003325 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003326
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003327 /* If the GPU is snooping the contents of the CPU cache,
3328 * we do not need to manually clear the CPU cache lines. However,
3329 * the caches are only snooped when the render cache is
3330 * flushed/invalidated. As we always have to emit invalidations
3331 * and flushes when moving into and out of the RENDER domain, correct
3332 * snooping behaviour occurs naturally as the result of our domain
3333 * tracking.
3334 */
Chris Wilson0f719792015-01-13 13:32:52 +00003335 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3336 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003337 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003338 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003339
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003340 trace_i915_gem_object_clflush(obj);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003341 drm_clflush_sg(obj->mm.pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003342 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003343
3344 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003345}
3346
3347/** Flushes the GTT write domain for the object if it's dirty. */
3348static void
Chris Wilson05394f32010-11-08 19:18:58 +00003349i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003350{
Chris Wilson3b5724d2016-08-18 17:16:49 +01003351 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003352
Chris Wilson05394f32010-11-08 19:18:58 +00003353 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003354 return;
3355
Chris Wilson63256ec2011-01-04 18:42:07 +00003356 /* No actual flushing is required for the GTT write domain. Writes
Chris Wilson3b5724d2016-08-18 17:16:49 +01003357 * to it "immediately" go to main memory as far as we know, so there's
Eric Anholte47c68e2008-11-14 13:35:19 -08003358 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003359 *
3360 * However, we do have to enforce the order so that all writes through
3361 * the GTT land before any writes to the device, such as updates to
3362 * the GATT itself.
Chris Wilson3b5724d2016-08-18 17:16:49 +01003363 *
3364 * We also have to wait a bit for the writes to land from the GTT.
3365 * An uncached read (i.e. mmio) seems to be ideal for the round-trip
3366 * timing. This issue has only been observed when switching quickly
3367 * between GTT writes and CPU reads from inside the kernel on recent hw,
3368 * and it appears to only affect discrete GTT blocks (i.e. on LLC
3369 * system agents we cannot reproduce this behaviour).
Eric Anholte47c68e2008-11-14 13:35:19 -08003370 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003371 wmb();
Chris Wilson3b5724d2016-08-18 17:16:49 +01003372 if (INTEL_GEN(dev_priv) >= 6 && !HAS_LLC(dev_priv))
Akash Goel3b3f1652016-10-13 22:44:48 +05303373 POSTING_READ(RING_ACTHD(dev_priv->engine[RCS]->mmio_base));
Chris Wilson63256ec2011-01-04 18:42:07 +00003374
Chris Wilsond243ad82016-08-18 17:16:44 +01003375 intel_fb_obj_flush(obj, false, write_origin(obj, I915_GEM_DOMAIN_GTT));
Daniel Vetterf99d7062014-06-19 16:01:59 +02003376
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003377 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003378 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003379 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003380 I915_GEM_DOMAIN_GTT);
Eric Anholte47c68e2008-11-14 13:35:19 -08003381}
3382
3383/** Flushes the CPU write domain for the object if it's dirty. */
3384static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003385i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003386{
Chris Wilson05394f32010-11-08 19:18:58 +00003387 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003388 return;
3389
Daniel Vettere62b59e2015-01-21 14:53:48 +01003390 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilsonc0336662016-05-06 15:40:21 +01003391 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilson000433b2013-08-08 14:41:09 +01003392
Rodrigo Vivide152b62015-07-07 16:28:51 -07003393 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003394
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003395 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003396 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003397 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003398 I915_GEM_DOMAIN_CPU);
Eric Anholte47c68e2008-11-14 13:35:19 -08003399}
3400
Chris Wilson383d5822016-08-18 17:17:08 +01003401static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj)
3402{
3403 struct i915_vma *vma;
3404
3405 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3406 if (!i915_vma_is_ggtt(vma))
3407 continue;
3408
3409 if (i915_vma_is_active(vma))
3410 continue;
3411
3412 if (!drm_mm_node_allocated(&vma->node))
3413 continue;
3414
3415 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3416 }
3417}
3418
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003419/**
3420 * Moves a single object to the GTT read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003421 * @obj: object to act on
3422 * @write: ask for write access or read only
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003423 *
3424 * This function returns when the move is complete, including waiting on
3425 * flushes to occur.
3426 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003427int
Chris Wilson20217462010-11-23 15:26:33 +00003428i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003429{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003430 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003431 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003432
Chris Wilsone95433c2016-10-28 13:58:27 +01003433 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003434
Chris Wilsone95433c2016-10-28 13:58:27 +01003435 ret = i915_gem_object_wait(obj,
3436 I915_WAIT_INTERRUPTIBLE |
3437 I915_WAIT_LOCKED |
3438 (write ? I915_WAIT_ALL : 0),
3439 MAX_SCHEDULE_TIMEOUT,
3440 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003441 if (ret)
3442 return ret;
3443
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003444 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3445 return 0;
3446
Chris Wilson43566de2015-01-02 16:29:29 +05303447 /* Flush and acquire obj->pages so that we are coherent through
3448 * direct access in memory with previous cached writes through
3449 * shmemfs and that our cache domain tracking remains valid.
3450 * For example, if the obj->filp was moved to swap without us
3451 * being notified and releasing the pages, we would mistakenly
3452 * continue to assume that the obj remained out of the CPU cached
3453 * domain.
3454 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003455 ret = i915_gem_object_pin_pages(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303456 if (ret)
3457 return ret;
3458
Daniel Vettere62b59e2015-01-21 14:53:48 +01003459 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003460
Chris Wilsond0a57782012-10-09 19:24:37 +01003461 /* Serialise direct access to this object with the barriers for
3462 * coherent writes from the GPU, by effectively invalidating the
3463 * GTT domain upon first access.
3464 */
3465 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3466 mb();
3467
Chris Wilson05394f32010-11-08 19:18:58 +00003468 old_write_domain = obj->base.write_domain;
3469 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003470
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003471 /* It should now be out of any other write domains, and we can update
3472 * the domain values for our changes.
3473 */
Chris Wilson05394f32010-11-08 19:18:58 +00003474 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3475 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003476 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003477 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3478 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003479 obj->mm.dirty = true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003480 }
3481
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003482 trace_i915_gem_object_change_domain(obj,
3483 old_read_domains,
3484 old_write_domain);
3485
Chris Wilson8325a092012-04-24 15:52:35 +01003486 /* And bump the LRU for this access */
Chris Wilson383d5822016-08-18 17:17:08 +01003487 i915_gem_object_bump_inactive_ggtt(obj);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003488 i915_gem_object_unpin_pages(obj);
Chris Wilson8325a092012-04-24 15:52:35 +01003489
Eric Anholte47c68e2008-11-14 13:35:19 -08003490 return 0;
3491}
3492
Chris Wilsonef55f922015-10-09 14:11:27 +01003493/**
3494 * Changes the cache-level of an object across all VMA.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003495 * @obj: object to act on
3496 * @cache_level: new cache level to set for the object
Chris Wilsonef55f922015-10-09 14:11:27 +01003497 *
3498 * After this function returns, the object will be in the new cache-level
3499 * across all GTT and the contents of the backing storage will be coherent,
3500 * with respect to the new cache-level. In order to keep the backing storage
3501 * coherent for all users, we only allow a single cache level to be set
3502 * globally on the object and prevent it from being changed whilst the
3503 * hardware is reading from the object. That is if the object is currently
3504 * on the scanout it will be set to uncached (or equivalent display
3505 * cache coherency) and all non-MOCS GPU access will also be uncached so
3506 * that all direct access to the scanout remains coherent.
3507 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003508int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3509 enum i915_cache_level cache_level)
3510{
Chris Wilsonaa653a62016-08-04 07:52:27 +01003511 struct i915_vma *vma;
Ville Syrjäläed75a552015-08-11 19:47:10 +03003512 int ret = 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003513
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003514 lockdep_assert_held(&obj->base.dev->struct_mutex);
3515
Chris Wilsone4ffd172011-04-04 09:44:39 +01003516 if (obj->cache_level == cache_level)
Ville Syrjäläed75a552015-08-11 19:47:10 +03003517 goto out;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003518
Chris Wilsonef55f922015-10-09 14:11:27 +01003519 /* Inspect the list of currently bound VMA and unbind any that would
3520 * be invalid given the new cache-level. This is principally to
3521 * catch the issue of the CS prefetch crossing page boundaries and
3522 * reading an invalid PTE on older architectures.
3523 */
Chris Wilsonaa653a62016-08-04 07:52:27 +01003524restart:
3525 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003526 if (!drm_mm_node_allocated(&vma->node))
3527 continue;
3528
Chris Wilson20dfbde2016-08-04 16:32:30 +01003529 if (i915_vma_is_pinned(vma)) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003530 DRM_DEBUG("can not change the cache level of pinned objects\n");
3531 return -EBUSY;
3532 }
3533
Chris Wilsonaa653a62016-08-04 07:52:27 +01003534 if (i915_gem_valid_gtt_space(vma, cache_level))
3535 continue;
3536
3537 ret = i915_vma_unbind(vma);
3538 if (ret)
3539 return ret;
3540
3541 /* As unbinding may affect other elements in the
3542 * obj->vma_list (due to side-effects from retiring
3543 * an active vma), play safe and restart the iterator.
3544 */
3545 goto restart;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003546 }
3547
Chris Wilsonef55f922015-10-09 14:11:27 +01003548 /* We can reuse the existing drm_mm nodes but need to change the
3549 * cache-level on the PTE. We could simply unbind them all and
3550 * rebind with the correct cache-level on next use. However since
3551 * we already have a valid slot, dma mapping, pages etc, we may as
3552 * rewrite the PTE in the belief that doing so tramples upon less
3553 * state and so involves less work.
3554 */
Chris Wilson15717de2016-08-04 07:52:26 +01003555 if (obj->bind_count) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003556 /* Before we change the PTE, the GPU must not be accessing it.
3557 * If we wait upon the object, we know that all the bound
3558 * VMA are no longer active.
3559 */
Chris Wilsone95433c2016-10-28 13:58:27 +01003560 ret = i915_gem_object_wait(obj,
3561 I915_WAIT_INTERRUPTIBLE |
3562 I915_WAIT_LOCKED |
3563 I915_WAIT_ALL,
3564 MAX_SCHEDULE_TIMEOUT,
3565 NULL);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003566 if (ret)
3567 return ret;
3568
Chris Wilsonaa653a62016-08-04 07:52:27 +01003569 if (!HAS_LLC(obj->base.dev) && cache_level != I915_CACHE_NONE) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003570 /* Access to snoopable pages through the GTT is
3571 * incoherent and on some machines causes a hard
3572 * lockup. Relinquish the CPU mmaping to force
3573 * userspace to refault in the pages and we can
3574 * then double check if the GTT mapping is still
3575 * valid for that pointer access.
3576 */
3577 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003578
Chris Wilsonef55f922015-10-09 14:11:27 +01003579 /* As we no longer need a fence for GTT access,
3580 * we can relinquish it now (and so prevent having
3581 * to steal a fence from someone else on the next
3582 * fence request). Note GPU activity would have
3583 * dropped the fence as all snoopable access is
3584 * supposed to be linear.
3585 */
Chris Wilson49ef5292016-08-18 17:17:00 +01003586 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3587 ret = i915_vma_put_fence(vma);
3588 if (ret)
3589 return ret;
3590 }
Chris Wilsonef55f922015-10-09 14:11:27 +01003591 } else {
3592 /* We either have incoherent backing store and
3593 * so no GTT access or the architecture is fully
3594 * coherent. In such cases, existing GTT mmaps
3595 * ignore the cache bit in the PTE and we can
3596 * rewrite it without confusing the GPU or having
3597 * to force userspace to fault back in its mmaps.
3598 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003599 }
3600
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003601 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003602 if (!drm_mm_node_allocated(&vma->node))
3603 continue;
3604
3605 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3606 if (ret)
3607 return ret;
3608 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003609 }
3610
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003611 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003612 vma->node.color = cache_level;
3613 obj->cache_level = cache_level;
3614
Ville Syrjäläed75a552015-08-11 19:47:10 +03003615out:
Chris Wilsonef55f922015-10-09 14:11:27 +01003616 /* Flush the dirty CPU caches to the backing storage so that the
3617 * object is now coherent at its new cache level (with respect
3618 * to the access domain).
3619 */
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05303620 if (obj->cache_dirty && cpu_write_needs_clflush(obj)) {
Chris Wilson0f719792015-01-13 13:32:52 +00003621 if (i915_gem_clflush_object(obj, true))
Chris Wilsonc0336662016-05-06 15:40:21 +01003622 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilsone4ffd172011-04-04 09:44:39 +01003623 }
3624
Chris Wilsone4ffd172011-04-04 09:44:39 +01003625 return 0;
3626}
3627
Ben Widawsky199adf42012-09-21 17:01:20 -07003628int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3629 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003630{
Ben Widawsky199adf42012-09-21 17:01:20 -07003631 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003632 struct drm_i915_gem_object *obj;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003633
Chris Wilson03ac0642016-07-20 13:31:51 +01003634 obj = i915_gem_object_lookup(file, args->handle);
3635 if (!obj)
Chris Wilson432be692015-05-07 12:14:55 +01003636 return -ENOENT;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003637
Chris Wilson651d7942013-08-08 14:41:10 +01003638 switch (obj->cache_level) {
3639 case I915_CACHE_LLC:
3640 case I915_CACHE_L3_LLC:
3641 args->caching = I915_CACHING_CACHED;
3642 break;
3643
Chris Wilson4257d3b2013-08-08 14:41:11 +01003644 case I915_CACHE_WT:
3645 args->caching = I915_CACHING_DISPLAY;
3646 break;
3647
Chris Wilson651d7942013-08-08 14:41:10 +01003648 default:
3649 args->caching = I915_CACHING_NONE;
3650 break;
3651 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003652
Chris Wilson34911fd2016-07-20 13:31:54 +01003653 i915_gem_object_put_unlocked(obj);
Chris Wilson432be692015-05-07 12:14:55 +01003654 return 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003655}
3656
Ben Widawsky199adf42012-09-21 17:01:20 -07003657int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3658 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003659{
Chris Wilson9c870d02016-10-24 13:42:15 +01003660 struct drm_i915_private *i915 = to_i915(dev);
Ben Widawsky199adf42012-09-21 17:01:20 -07003661 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003662 struct drm_i915_gem_object *obj;
3663 enum i915_cache_level level;
3664 int ret;
3665
Ben Widawsky199adf42012-09-21 17:01:20 -07003666 switch (args->caching) {
3667 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003668 level = I915_CACHE_NONE;
3669 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003670 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003671 /*
3672 * Due to a HW issue on BXT A stepping, GPU stores via a
3673 * snooped mapping may leave stale data in a corresponding CPU
3674 * cacheline, whereas normally such cachelines would get
3675 * invalidated.
3676 */
Chris Wilson9c870d02016-10-24 13:42:15 +01003677 if (!HAS_LLC(i915) && !HAS_SNOOP(i915))
Imre Deake5756c12015-08-14 18:43:30 +03003678 return -ENODEV;
3679
Chris Wilsone6994ae2012-07-10 10:27:08 +01003680 level = I915_CACHE_LLC;
3681 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003682 case I915_CACHING_DISPLAY:
Chris Wilson9c870d02016-10-24 13:42:15 +01003683 level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003684 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003685 default:
3686 return -EINVAL;
3687 }
3688
Ben Widawsky3bc29132012-09-26 16:15:20 -07003689 ret = i915_mutex_lock_interruptible(dev);
3690 if (ret)
Chris Wilson9c870d02016-10-24 13:42:15 +01003691 return ret;
Ben Widawsky3bc29132012-09-26 16:15:20 -07003692
Chris Wilson03ac0642016-07-20 13:31:51 +01003693 obj = i915_gem_object_lookup(file, args->handle);
3694 if (!obj) {
Chris Wilsone6994ae2012-07-10 10:27:08 +01003695 ret = -ENOENT;
3696 goto unlock;
3697 }
3698
3699 ret = i915_gem_object_set_cache_level(obj, level);
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003700 i915_gem_object_put(obj);
Chris Wilsone6994ae2012-07-10 10:27:08 +01003701unlock:
3702 mutex_unlock(&dev->struct_mutex);
3703 return ret;
3704}
3705
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003706/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003707 * Prepare buffer for display plane (scanout, cursors, etc).
3708 * Can be called from an uninterruptible phase (modesetting) and allows
3709 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003710 */
Chris Wilson058d88c2016-08-15 10:49:06 +01003711struct i915_vma *
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003712i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3713 u32 alignment,
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003714 const struct i915_ggtt_view *view)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003715{
Chris Wilson058d88c2016-08-15 10:49:06 +01003716 struct i915_vma *vma;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003717 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003718 int ret;
3719
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003720 lockdep_assert_held(&obj->base.dev->struct_mutex);
3721
Chris Wilsoncc98b412013-08-09 12:25:09 +01003722 /* Mark the pin_display early so that we account for the
3723 * display coherency whilst setting up the cache domains.
3724 */
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003725 obj->pin_display++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003726
Eric Anholta7ef0642011-03-29 16:59:54 -07003727 /* The display engine is not coherent with the LLC cache on gen6. As
3728 * a result, we make sure that the pinning that is about to occur is
3729 * done with uncached PTEs. This is lowest common denominator for all
3730 * chipsets.
3731 *
3732 * However for gen6+, we could do better by using the GFDT bit instead
3733 * of uncaching, which would allow us to flush all the LLC-cached data
3734 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3735 */
Chris Wilson651d7942013-08-08 14:41:10 +01003736 ret = i915_gem_object_set_cache_level(obj,
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003737 HAS_WT(to_i915(obj->base.dev)) ?
3738 I915_CACHE_WT : I915_CACHE_NONE);
Chris Wilson058d88c2016-08-15 10:49:06 +01003739 if (ret) {
3740 vma = ERR_PTR(ret);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003741 goto err_unpin_display;
Chris Wilson058d88c2016-08-15 10:49:06 +01003742 }
Eric Anholta7ef0642011-03-29 16:59:54 -07003743
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003744 /* As the user may map the buffer once pinned in the display plane
3745 * (e.g. libkms for the bootup splash), we have to ensure that we
Chris Wilson2efb8132016-08-18 17:17:06 +01003746 * always use map_and_fenceable for all scanout buffers. However,
3747 * it may simply be too big to fit into mappable, in which case
3748 * put it anyway and hope that userspace can cope (but always first
3749 * try to preserve the existing ABI).
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003750 */
Chris Wilson2efb8132016-08-18 17:17:06 +01003751 vma = ERR_PTR(-ENOSPC);
3752 if (view->type == I915_GGTT_VIEW_NORMAL)
3753 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment,
3754 PIN_MAPPABLE | PIN_NONBLOCK);
3755 if (IS_ERR(vma))
3756 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, 0);
Chris Wilson058d88c2016-08-15 10:49:06 +01003757 if (IS_ERR(vma))
Chris Wilsoncc98b412013-08-09 12:25:09 +01003758 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003759
Chris Wilsond8923dc2016-08-18 17:17:07 +01003760 vma->display_alignment = max_t(u64, vma->display_alignment, alignment);
3761
Daniel Vettere62b59e2015-01-21 14:53:48 +01003762 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003763
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003764 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003765 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003766
3767 /* It should now be out of any other write domains, and we can update
3768 * the domain values for our changes.
3769 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003770 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003771 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003772
3773 trace_i915_gem_object_change_domain(obj,
3774 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003775 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003776
Chris Wilson058d88c2016-08-15 10:49:06 +01003777 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003778
3779err_unpin_display:
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003780 obj->pin_display--;
Chris Wilson058d88c2016-08-15 10:49:06 +01003781 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003782}
3783
3784void
Chris Wilson058d88c2016-08-15 10:49:06 +01003785i915_gem_object_unpin_from_display_plane(struct i915_vma *vma)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003786{
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003787 lockdep_assert_held(&vma->vm->dev->struct_mutex);
3788
Chris Wilson058d88c2016-08-15 10:49:06 +01003789 if (WARN_ON(vma->obj->pin_display == 0))
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003790 return;
3791
Chris Wilsond8923dc2016-08-18 17:17:07 +01003792 if (--vma->obj->pin_display == 0)
3793 vma->display_alignment = 0;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003794
Chris Wilson383d5822016-08-18 17:17:08 +01003795 /* Bump the LRU to try and avoid premature eviction whilst flipping */
3796 if (!i915_vma_is_active(vma))
3797 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3798
Chris Wilson058d88c2016-08-15 10:49:06 +01003799 i915_vma_unpin(vma);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003800}
3801
Eric Anholte47c68e2008-11-14 13:35:19 -08003802/**
3803 * Moves a single object to the CPU read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003804 * @obj: object to act on
3805 * @write: requesting write or read-only access
Eric Anholte47c68e2008-11-14 13:35:19 -08003806 *
3807 * This function returns when the move is complete, including waiting on
3808 * flushes to occur.
3809 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003810int
Chris Wilson919926a2010-11-12 13:42:53 +00003811i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003812{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003813 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003814 int ret;
3815
Chris Wilsone95433c2016-10-28 13:58:27 +01003816 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003817
Chris Wilsone95433c2016-10-28 13:58:27 +01003818 ret = i915_gem_object_wait(obj,
3819 I915_WAIT_INTERRUPTIBLE |
3820 I915_WAIT_LOCKED |
3821 (write ? I915_WAIT_ALL : 0),
3822 MAX_SCHEDULE_TIMEOUT,
3823 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003824 if (ret)
3825 return ret;
3826
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003827 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3828 return 0;
3829
Eric Anholte47c68e2008-11-14 13:35:19 -08003830 i915_gem_object_flush_gtt_write_domain(obj);
3831
Chris Wilson05394f32010-11-08 19:18:58 +00003832 old_write_domain = obj->base.write_domain;
3833 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003834
Eric Anholte47c68e2008-11-14 13:35:19 -08003835 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003836 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003837 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003838
Chris Wilson05394f32010-11-08 19:18:58 +00003839 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003840 }
3841
3842 /* It should now be out of any other write domains, and we can update
3843 * the domain values for our changes.
3844 */
Chris Wilson05394f32010-11-08 19:18:58 +00003845 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003846
3847 /* If we're writing through the CPU, then the GPU read domains will
3848 * need to be invalidated at next use.
3849 */
3850 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003851 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3852 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003853 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003854
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003855 trace_i915_gem_object_change_domain(obj,
3856 old_read_domains,
3857 old_write_domain);
3858
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003859 return 0;
3860}
3861
Eric Anholt673a3942008-07-30 12:06:12 -07003862/* Throttle our rendering by waiting until the ring has completed our requests
3863 * emitted over 20 msec ago.
3864 *
Eric Anholtb9624422009-06-03 07:27:35 +00003865 * Note that if we were to use the current jiffies each time around the loop,
3866 * we wouldn't escape the function with any frames outstanding if the time to
3867 * render a frame was over 20ms.
3868 *
Eric Anholt673a3942008-07-30 12:06:12 -07003869 * This should get us reasonable parallelism between CPU and GPU but also
3870 * relatively low latency when blocking on a particular request to finish.
3871 */
3872static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003873i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003874{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003875 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003876 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01003877 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
John Harrison54fb2412014-11-24 18:49:27 +00003878 struct drm_i915_gem_request *request, *target = NULL;
Chris Wilsone95433c2016-10-28 13:58:27 +01003879 long ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003880
Chris Wilsonf4457ae2016-04-13 17:35:08 +01003881 /* ABI: return -EIO if already wedged */
3882 if (i915_terminally_wedged(&dev_priv->gpu_error))
3883 return -EIO;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003884
Chris Wilson1c255952010-09-26 11:03:27 +01003885 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003886 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003887 if (time_after_eq(request->emitted_jiffies, recent_enough))
3888 break;
3889
John Harrisonfcfa423c2015-05-29 17:44:12 +01003890 /*
3891 * Note that the request might not have been submitted yet.
3892 * In which case emitted_jiffies will be zero.
3893 */
3894 if (!request->emitted_jiffies)
3895 continue;
3896
John Harrison54fb2412014-11-24 18:49:27 +00003897 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00003898 }
John Harrisonff865882014-11-24 18:49:28 +00003899 if (target)
Chris Wilsone8a261e2016-07-20 13:31:49 +01003900 i915_gem_request_get(target);
Chris Wilson1c255952010-09-26 11:03:27 +01003901 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003902
John Harrison54fb2412014-11-24 18:49:27 +00003903 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003904 return 0;
3905
Chris Wilsone95433c2016-10-28 13:58:27 +01003906 ret = i915_wait_request(target,
3907 I915_WAIT_INTERRUPTIBLE,
3908 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone8a261e2016-07-20 13:31:49 +01003909 i915_gem_request_put(target);
John Harrisonff865882014-11-24 18:49:28 +00003910
Chris Wilsone95433c2016-10-28 13:58:27 +01003911 return ret < 0 ? ret : 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003912}
3913
Chris Wilsond23db882014-05-23 08:48:08 +02003914static bool
Chris Wilson91b2db62016-08-04 16:32:23 +01003915i915_vma_misplaced(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
Chris Wilsond23db882014-05-23 08:48:08 +02003916{
Chris Wilson59bfa122016-08-04 16:32:31 +01003917 if (!drm_mm_node_allocated(&vma->node))
3918 return false;
3919
Chris Wilson91b2db62016-08-04 16:32:23 +01003920 if (vma->node.size < size)
3921 return true;
3922
3923 if (alignment && vma->node.start & (alignment - 1))
Chris Wilsond23db882014-05-23 08:48:08 +02003924 return true;
3925
Chris Wilson05a20d02016-08-18 17:16:55 +01003926 if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma))
Chris Wilsond23db882014-05-23 08:48:08 +02003927 return true;
3928
3929 if (flags & PIN_OFFSET_BIAS &&
3930 vma->node.start < (flags & PIN_OFFSET_MASK))
3931 return true;
3932
Chris Wilson506a8e82015-12-08 11:55:07 +00003933 if (flags & PIN_OFFSET_FIXED &&
3934 vma->node.start != (flags & PIN_OFFSET_MASK))
3935 return true;
3936
Chris Wilsond23db882014-05-23 08:48:08 +02003937 return false;
3938}
3939
Chris Wilsond0710ab2015-11-20 14:16:39 +00003940void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
3941{
3942 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsona9f14812016-08-04 16:32:28 +01003943 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003944 bool mappable, fenceable;
3945 u32 fence_size, fence_alignment;
3946
Chris Wilsona9f14812016-08-04 16:32:28 +01003947 fence_size = i915_gem_get_ggtt_size(dev_priv,
Chris Wilson05a20d02016-08-18 17:16:55 +01003948 vma->size,
Chris Wilson3e510a82016-08-05 10:14:23 +01003949 i915_gem_object_get_tiling(obj));
Chris Wilsona9f14812016-08-04 16:32:28 +01003950 fence_alignment = i915_gem_get_ggtt_alignment(dev_priv,
Chris Wilson05a20d02016-08-18 17:16:55 +01003951 vma->size,
Chris Wilson3e510a82016-08-05 10:14:23 +01003952 i915_gem_object_get_tiling(obj),
Chris Wilsonad1a7d22016-08-04 16:32:27 +01003953 true);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003954
3955 fenceable = (vma->node.size == fence_size &&
3956 (vma->node.start & (fence_alignment - 1)) == 0);
3957
3958 mappable = (vma->node.start + fence_size <=
Chris Wilsona9f14812016-08-04 16:32:28 +01003959 dev_priv->ggtt.mappable_end);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003960
Tvrtko Ursulin07ee2bc2016-10-25 17:40:35 +01003961 /*
3962 * Explicitly disable for rotated VMA since the display does not
3963 * need the fence and the VMA is not accessible to other users.
3964 */
3965 if (mappable && fenceable &&
3966 vma->ggtt_view.type != I915_GGTT_VIEW_ROTATED)
Chris Wilson05a20d02016-08-18 17:16:55 +01003967 vma->flags |= I915_VMA_CAN_FENCE;
3968 else
3969 vma->flags &= ~I915_VMA_CAN_FENCE;
Chris Wilsond0710ab2015-11-20 14:16:39 +00003970}
3971
Chris Wilson305bc232016-08-04 16:32:33 +01003972int __i915_vma_do_pin(struct i915_vma *vma,
3973 u64 size, u64 alignment, u64 flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003974{
Chris Wilson305bc232016-08-04 16:32:33 +01003975 unsigned int bound = vma->flags;
Eric Anholt673a3942008-07-30 12:06:12 -07003976 int ret;
3977
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003978 lockdep_assert_held(&vma->vm->dev->struct_mutex);
Chris Wilson59bfa122016-08-04 16:32:31 +01003979 GEM_BUG_ON((flags & (PIN_GLOBAL | PIN_USER)) == 0);
Chris Wilson3272db52016-08-04 16:32:32 +01003980 GEM_BUG_ON((flags & PIN_GLOBAL) && !i915_vma_is_ggtt(vma));
Ben Widawsky6e7186a2014-05-06 22:21:36 -07003981
Chris Wilson305bc232016-08-04 16:32:33 +01003982 if (WARN_ON(bound & I915_VMA_PIN_OVERFLOW)) {
3983 ret = -EBUSY;
3984 goto err;
3985 }
Chris Wilsonc826c442014-10-31 13:53:53 +00003986
Chris Wilsonde895082016-08-04 16:32:34 +01003987 if ((bound & I915_VMA_BIND_MASK) == 0) {
Chris Wilson59bfa122016-08-04 16:32:31 +01003988 ret = i915_vma_insert(vma, size, alignment, flags);
3989 if (ret)
3990 goto err;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003991 }
3992
Chris Wilson59bfa122016-08-04 16:32:31 +01003993 ret = i915_vma_bind(vma, vma->obj->cache_level, flags);
Chris Wilson3b165252016-08-04 16:32:25 +01003994 if (ret)
Chris Wilson59bfa122016-08-04 16:32:31 +01003995 goto err;
Chris Wilson3b165252016-08-04 16:32:25 +01003996
Chris Wilson3272db52016-08-04 16:32:32 +01003997 if ((bound ^ vma->flags) & I915_VMA_GLOBAL_BIND)
Chris Wilsond0710ab2015-11-20 14:16:39 +00003998 __i915_vma_set_map_and_fenceable(vma);
Chris Wilsonef79e172014-10-31 13:53:52 +00003999
Chris Wilson3b165252016-08-04 16:32:25 +01004000 GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
Eric Anholt673a3942008-07-30 12:06:12 -07004001 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004002
Chris Wilson59bfa122016-08-04 16:32:31 +01004003err:
4004 __i915_vma_unpin(vma);
4005 return ret;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004006}
4007
Chris Wilson058d88c2016-08-15 10:49:06 +01004008struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004009i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
4010 const struct i915_ggtt_view *view,
Chris Wilson91b2db62016-08-04 16:32:23 +01004011 u64 size,
Chris Wilson2ffffd02016-08-04 16:32:22 +01004012 u64 alignment,
4013 u64 flags)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004014{
Chris Wilsonad16d2e2016-10-13 09:55:04 +01004015 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
4016 struct i915_address_space *vm = &dev_priv->ggtt.base;
Chris Wilson59bfa122016-08-04 16:32:31 +01004017 struct i915_vma *vma;
4018 int ret;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004019
Chris Wilson4c7d62c2016-10-28 13:58:32 +01004020 lockdep_assert_held(&obj->base.dev->struct_mutex);
4021
Chris Wilson058d88c2016-08-15 10:49:06 +01004022 vma = i915_gem_obj_lookup_or_create_vma(obj, vm, view);
Chris Wilson59bfa122016-08-04 16:32:31 +01004023 if (IS_ERR(vma))
Chris Wilson058d88c2016-08-15 10:49:06 +01004024 return vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01004025
4026 if (i915_vma_misplaced(vma, size, alignment, flags)) {
4027 if (flags & PIN_NONBLOCK &&
4028 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma)))
Chris Wilson058d88c2016-08-15 10:49:06 +01004029 return ERR_PTR(-ENOSPC);
Chris Wilson59bfa122016-08-04 16:32:31 +01004030
Chris Wilsonad16d2e2016-10-13 09:55:04 +01004031 if (flags & PIN_MAPPABLE) {
4032 u32 fence_size;
4033
4034 fence_size = i915_gem_get_ggtt_size(dev_priv, vma->size,
4035 i915_gem_object_get_tiling(obj));
4036 /* If the required space is larger than the available
4037 * aperture, we will not able to find a slot for the
4038 * object and unbinding the object now will be in
4039 * vain. Worse, doing so may cause us to ping-pong
4040 * the object in and out of the Global GTT and
4041 * waste a lot of cycles under the mutex.
4042 */
4043 if (fence_size > dev_priv->ggtt.mappable_end)
4044 return ERR_PTR(-E2BIG);
4045
4046 /* If NONBLOCK is set the caller is optimistically
4047 * trying to cache the full object within the mappable
4048 * aperture, and *must* have a fallback in place for
4049 * situations where we cannot bind the object. We
4050 * can be a little more lax here and use the fallback
4051 * more often to avoid costly migrations of ourselves
4052 * and other objects within the aperture.
4053 *
4054 * Half-the-aperture is used as a simple heuristic.
4055 * More interesting would to do search for a free
4056 * block prior to making the commitment to unbind.
4057 * That caters for the self-harm case, and with a
4058 * little more heuristics (e.g. NOFAULT, NOEVICT)
4059 * we could try to minimise harm to others.
4060 */
4061 if (flags & PIN_NONBLOCK &&
4062 fence_size > dev_priv->ggtt.mappable_end / 2)
4063 return ERR_PTR(-ENOSPC);
4064 }
4065
Chris Wilson59bfa122016-08-04 16:32:31 +01004066 WARN(i915_vma_is_pinned(vma),
4067 "bo is already pinned in ggtt with incorrect alignment:"
Chris Wilson05a20d02016-08-18 17:16:55 +01004068 " offset=%08x, req.alignment=%llx,"
4069 " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n",
4070 i915_ggtt_offset(vma), alignment,
Chris Wilson59bfa122016-08-04 16:32:31 +01004071 !!(flags & PIN_MAPPABLE),
Chris Wilson05a20d02016-08-18 17:16:55 +01004072 i915_vma_is_map_and_fenceable(vma));
Chris Wilson59bfa122016-08-04 16:32:31 +01004073 ret = i915_vma_unbind(vma);
4074 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +01004075 return ERR_PTR(ret);
Chris Wilson59bfa122016-08-04 16:32:31 +01004076 }
4077
Chris Wilson058d88c2016-08-15 10:49:06 +01004078 ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL);
4079 if (ret)
4080 return ERR_PTR(ret);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004081
Chris Wilson058d88c2016-08-15 10:49:06 +01004082 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07004083}
4084
Chris Wilsonedf6b762016-08-09 09:23:33 +01004085static __always_inline unsigned int __busy_read_flag(unsigned int id)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004086{
4087 /* Note that we could alias engines in the execbuf API, but
4088 * that would be very unwise as it prevents userspace from
4089 * fine control over engine selection. Ahem.
4090 *
4091 * This should be something like EXEC_MAX_ENGINE instead of
4092 * I915_NUM_ENGINES.
4093 */
4094 BUILD_BUG_ON(I915_NUM_ENGINES > 16);
4095 return 0x10000 << id;
4096}
4097
4098static __always_inline unsigned int __busy_write_id(unsigned int id)
4099{
Chris Wilson70cb4722016-08-09 18:08:25 +01004100 /* The uABI guarantees an active writer is also amongst the read
4101 * engines. This would be true if we accessed the activity tracking
4102 * under the lock, but as we perform the lookup of the object and
4103 * its activity locklessly we can not guarantee that the last_write
4104 * being active implies that we have set the same engine flag from
4105 * last_read - hence we always set both read and write busy for
4106 * last_write.
4107 */
4108 return id | __busy_read_flag(id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004109}
4110
Chris Wilsonedf6b762016-08-09 09:23:33 +01004111static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004112__busy_set_if_active(const struct i915_gem_active *active,
4113 unsigned int (*flag)(unsigned int id))
4114{
Chris Wilson12555012016-08-16 09:50:40 +01004115 struct drm_i915_gem_request *request;
4116
4117 request = rcu_dereference(active->request);
4118 if (!request || i915_gem_request_completed(request))
4119 return 0;
4120
4121 /* This is racy. See __i915_gem_active_get_rcu() for an in detail
4122 * discussion of how to handle the race correctly, but for reporting
4123 * the busy state we err on the side of potentially reporting the
4124 * wrong engine as being busy (but we guarantee that the result
4125 * is at least self-consistent).
4126 *
4127 * As we use SLAB_DESTROY_BY_RCU, the request may be reallocated
4128 * whilst we are inspecting it, even under the RCU read lock as we are.
4129 * This means that there is a small window for the engine and/or the
4130 * seqno to have been overwritten. The seqno will always be in the
4131 * future compared to the intended, and so we know that if that
4132 * seqno is idle (on whatever engine) our request is idle and the
4133 * return 0 above is correct.
4134 *
4135 * The issue is that if the engine is switched, it is just as likely
4136 * to report that it is busy (but since the switch happened, we know
4137 * the request should be idle). So there is a small chance that a busy
4138 * result is actually the wrong engine.
4139 *
4140 * So why don't we care?
4141 *
4142 * For starters, the busy ioctl is a heuristic that is by definition
4143 * racy. Even with perfect serialisation in the driver, the hardware
4144 * state is constantly advancing - the state we report to the user
4145 * is stale.
4146 *
4147 * The critical information for the busy-ioctl is whether the object
4148 * is idle as userspace relies on that to detect whether its next
4149 * access will stall, or if it has missed submitting commands to
4150 * the hardware allowing the GPU to stall. We never generate a
4151 * false-positive for idleness, thus busy-ioctl is reliable at the
4152 * most fundamental level, and we maintain the guarantee that a
4153 * busy object left to itself will eventually become idle (and stay
4154 * idle!).
4155 *
4156 * We allow ourselves the leeway of potentially misreporting the busy
4157 * state because that is an optimisation heuristic that is constantly
4158 * in flux. Being quickly able to detect the busy/idle state is much
4159 * more important than accurate logging of exactly which engines were
4160 * busy.
4161 *
4162 * For accuracy in reporting the engine, we could use
4163 *
4164 * result = 0;
4165 * request = __i915_gem_active_get_rcu(active);
4166 * if (request) {
4167 * if (!i915_gem_request_completed(request))
4168 * result = flag(request->engine->exec_id);
4169 * i915_gem_request_put(request);
4170 * }
4171 *
4172 * but that still remains susceptible to both hardware and userspace
4173 * races. So we accept making the result of that race slightly worse,
4174 * given the rarity of the race and its low impact on the result.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004175 */
Chris Wilson12555012016-08-16 09:50:40 +01004176 return flag(READ_ONCE(request->engine->exec_id));
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004177}
4178
Chris Wilsonedf6b762016-08-09 09:23:33 +01004179static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004180busy_check_reader(const struct i915_gem_active *active)
4181{
4182 return __busy_set_if_active(active, __busy_read_flag);
4183}
4184
Chris Wilsonedf6b762016-08-09 09:23:33 +01004185static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004186busy_check_writer(const struct i915_gem_active *active)
4187{
4188 return __busy_set_if_active(active, __busy_write_id);
4189}
4190
Eric Anholt673a3942008-07-30 12:06:12 -07004191int
Eric Anholt673a3942008-07-30 12:06:12 -07004192i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004193 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004194{
4195 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004196 struct drm_i915_gem_object *obj;
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004197 unsigned long active;
Eric Anholt673a3942008-07-30 12:06:12 -07004198
Chris Wilson03ac0642016-07-20 13:31:51 +01004199 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004200 if (!obj)
4201 return -ENOENT;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004202
Chris Wilson426960b2016-01-15 16:51:46 +00004203 args->busy = 0;
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004204 active = __I915_BO_ACTIVE(obj);
4205 if (active) {
4206 int idx;
Chris Wilson426960b2016-01-15 16:51:46 +00004207
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004208 /* Yes, the lookups are intentionally racy.
4209 *
4210 * First, we cannot simply rely on __I915_BO_ACTIVE. We have
4211 * to regard the value as stale and as our ABI guarantees
4212 * forward progress, we confirm the status of each active
4213 * request with the hardware.
4214 *
4215 * Even though we guard the pointer lookup by RCU, that only
4216 * guarantees that the pointer and its contents remain
4217 * dereferencable and does *not* mean that the request we
4218 * have is the same as the one being tracked by the object.
4219 *
4220 * Consider that we lookup the request just as it is being
4221 * retired and freed. We take a local copy of the pointer,
4222 * but before we add its engine into the busy set, the other
4223 * thread reallocates it and assigns it to a task on another
Chris Wilson12555012016-08-16 09:50:40 +01004224 * engine with a fresh and incomplete seqno. Guarding against
4225 * that requires careful serialisation and reference counting,
4226 * i.e. using __i915_gem_active_get_request_rcu(). We don't,
4227 * instead we expect that if the result is busy, which engines
4228 * are busy is not completely reliable - we only guarantee
4229 * that the object was busy.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004230 */
4231 rcu_read_lock();
4232
4233 for_each_active(active, idx)
4234 args->busy |= busy_check_reader(&obj->last_read[idx]);
4235
4236 /* For ABI sanity, we only care that the write engine is in
Chris Wilson70cb4722016-08-09 18:08:25 +01004237 * the set of read engines. This should be ensured by the
4238 * ordering of setting last_read/last_write in
4239 * i915_vma_move_to_active(), and then in reverse in retire.
4240 * However, for good measure, we always report the last_write
4241 * request as a busy read as well as being a busy write.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004242 *
4243 * We don't care that the set of active read/write engines
4244 * may change during construction of the result, as it is
4245 * equally liable to change before userspace can inspect
4246 * the result.
4247 */
4248 args->busy |= busy_check_writer(&obj->last_write);
4249
4250 rcu_read_unlock();
Chris Wilson426960b2016-01-15 16:51:46 +00004251 }
Eric Anholt673a3942008-07-30 12:06:12 -07004252
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004253 i915_gem_object_put_unlocked(obj);
4254 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004255}
4256
4257int
4258i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4259 struct drm_file *file_priv)
4260{
Akshay Joshi0206e352011-08-16 15:34:10 -04004261 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004262}
4263
Chris Wilson3ef94da2009-09-14 16:50:29 +01004264int
4265i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4266 struct drm_file *file_priv)
4267{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004268 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson3ef94da2009-09-14 16:50:29 +01004269 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004270 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004271 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004272
4273 switch (args->madv) {
4274 case I915_MADV_DONTNEED:
4275 case I915_MADV_WILLNEED:
4276 break;
4277 default:
4278 return -EINVAL;
4279 }
4280
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004281 ret = i915_mutex_lock_interruptible(dev);
4282 if (ret)
4283 return ret;
4284
Chris Wilson03ac0642016-07-20 13:31:51 +01004285 obj = i915_gem_object_lookup(file_priv, args->handle);
4286 if (!obj) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004287 ret = -ENOENT;
4288 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004289 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004290
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004291 if (obj->mm.pages &&
Chris Wilson3e510a82016-08-05 10:14:23 +01004292 i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01004293 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004294 if (obj->mm.madv == I915_MADV_WILLNEED)
4295 __i915_gem_object_unpin_pages(obj);
Daniel Vetter656bfa32014-11-20 09:26:30 +01004296 if (args->madv == I915_MADV_WILLNEED)
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004297 __i915_gem_object_pin_pages(obj);
Daniel Vetter656bfa32014-11-20 09:26:30 +01004298 }
4299
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004300 if (obj->mm.madv != __I915_MADV_PURGED)
4301 obj->mm.madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004302
Chris Wilson6c085a72012-08-20 11:40:46 +02004303 /* if the object is no longer attached, discard its backing storage */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004304 if (obj->mm.madv == I915_MADV_DONTNEED && !obj->mm.pages)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004305 i915_gem_object_truncate(obj);
4306
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004307 args->retained = obj->mm.madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004308
Chris Wilsonf8c417c2016-07-20 13:31:53 +01004309 i915_gem_object_put(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004310unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004311 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004312 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004313}
4314
Chris Wilson37e680a2012-06-07 15:38:42 +01004315void i915_gem_object_init(struct drm_i915_gem_object *obj,
4316 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004317{
Chris Wilsonb4716182015-04-27 13:41:17 +01004318 int i;
4319
Ben Widawsky35c20a62013-05-31 11:28:48 -07004320 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004321 INIT_LIST_HEAD(&obj->userfault_link);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00004322 for (i = 0; i < I915_NUM_ENGINES; i++)
Chris Wilsonfa545cb2016-08-04 07:52:35 +01004323 init_request_active(&obj->last_read[i],
4324 i915_gem_object_retire__read);
4325 init_request_active(&obj->last_write,
4326 i915_gem_object_retire__write);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004327 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004328 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01004329 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004330
Chris Wilson37e680a2012-06-07 15:38:42 +01004331 obj->ops = ops;
4332
Chris Wilson50349242016-08-18 17:17:04 +01004333 obj->frontbuffer_ggtt_origin = ORIGIN_GTT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004334
4335 obj->mm.madv = I915_MADV_WILLNEED;
4336 INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN);
4337 mutex_init(&obj->mm.get_page.lock);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004338
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004339 i915_gem_info_add_obj(to_i915(obj->base.dev), obj->base.size);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004340}
4341
Chris Wilson37e680a2012-06-07 15:38:42 +01004342static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Chris Wilsonde472662016-01-22 18:32:31 +00004343 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE,
Chris Wilson37e680a2012-06-07 15:38:42 +01004344 .get_pages = i915_gem_object_get_pages_gtt,
4345 .put_pages = i915_gem_object_put_pages_gtt,
4346};
4347
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01004348/* Note we don't consider signbits :| */
4349#define overflows_type(x, T) \
4350 (sizeof(x) > sizeof(T) && (x) >> (sizeof(T) * BITS_PER_BYTE))
4351
4352struct drm_i915_gem_object *
4353i915_gem_object_create(struct drm_device *dev, u64 size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004354{
Daniel Vetterc397b902010-04-09 19:05:07 +00004355 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004356 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004357 gfp_t mask;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004358 int ret;
Daniel Vetterc397b902010-04-09 19:05:07 +00004359
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01004360 /* There is a prevalence of the assumption that we fit the object's
4361 * page count inside a 32bit _signed_ variable. Let's document this and
4362 * catch if we ever need to fix it. In the meantime, if you do spot
4363 * such a local variable, please consider fixing!
4364 */
4365 if (WARN_ON(size >> PAGE_SHIFT > INT_MAX))
4366 return ERR_PTR(-E2BIG);
4367
4368 if (overflows_type(size, obj->base.size))
4369 return ERR_PTR(-E2BIG);
4370
Chris Wilson42dcedd2012-11-15 11:32:30 +00004371 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004372 if (obj == NULL)
Chris Wilsonfe3db792016-04-25 13:32:13 +01004373 return ERR_PTR(-ENOMEM);
Daniel Vetterc397b902010-04-09 19:05:07 +00004374
Chris Wilsonfe3db792016-04-25 13:32:13 +01004375 ret = drm_gem_object_init(dev, &obj->base, size);
4376 if (ret)
4377 goto fail;
Daniel Vetterc397b902010-04-09 19:05:07 +00004378
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004379 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4380 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4381 /* 965gm cannot relocate objects above 4GiB. */
4382 mask &= ~__GFP_HIGHMEM;
4383 mask |= __GFP_DMA32;
4384 }
4385
Al Viro93c76a32015-12-04 23:45:44 -05004386 mapping = obj->base.filp->f_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004387 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004388
Chris Wilson37e680a2012-06-07 15:38:42 +01004389 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004390
Daniel Vetterc397b902010-04-09 19:05:07 +00004391 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4392 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4393
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004394 if (HAS_LLC(dev)) {
4395 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004396 * cache) for about a 10% performance improvement
4397 * compared to uncached. Graphics requests other than
4398 * display scanout are coherent with the CPU in
4399 * accessing this cache. This means in this mode we
4400 * don't need to clflush on the CPU side, and on the
4401 * GPU side we only need to flush internal caches to
4402 * get data visible to the CPU.
4403 *
4404 * However, we maintain the display planes as UC, and so
4405 * need to rebind when first used as such.
4406 */
4407 obj->cache_level = I915_CACHE_LLC;
4408 } else
4409 obj->cache_level = I915_CACHE_NONE;
4410
Daniel Vetterd861e332013-07-24 23:25:03 +02004411 trace_i915_gem_object_create(obj);
4412
Chris Wilson05394f32010-11-08 19:18:58 +00004413 return obj;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004414
4415fail:
4416 i915_gem_object_free(obj);
4417
4418 return ERR_PTR(ret);
Daniel Vetterac52bc52010-04-09 19:05:06 +00004419}
4420
Chris Wilson340fbd82014-05-22 09:16:52 +01004421static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4422{
4423 /* If we are the last user of the backing storage (be it shmemfs
4424 * pages or stolen etc), we know that the pages are going to be
4425 * immediately released. In this case, we can then skip copying
4426 * back the contents from the GPU.
4427 */
4428
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004429 if (obj->mm.madv != I915_MADV_WILLNEED)
Chris Wilson340fbd82014-05-22 09:16:52 +01004430 return false;
4431
4432 if (obj->base.filp == NULL)
4433 return true;
4434
4435 /* At first glance, this looks racy, but then again so would be
4436 * userspace racing mmap against close. However, the first external
4437 * reference to the filp can only be obtained through the
4438 * i915_gem_mmap_ioctl() which safeguards us against the user
4439 * acquiring such a reference whilst we are in the middle of
4440 * freeing the object.
4441 */
4442 return atomic_long_read(&obj->base.filp->f_count) == 1;
4443}
4444
Chris Wilson1488fc02012-04-24 15:47:31 +01004445void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004446{
Chris Wilson1488fc02012-04-24 15:47:31 +01004447 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004448 struct drm_device *dev = obj->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004449 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004450 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004451
Paulo Zanonif65c9162013-11-27 18:20:34 -02004452 intel_runtime_pm_get(dev_priv);
4453
Chris Wilson26e12f82011-03-20 11:20:19 +00004454 trace_i915_gem_object_destroy(obj);
4455
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004456 /* All file-owned VMA should have been released by this point through
4457 * i915_gem_close_object(), or earlier by i915_gem_context_close().
4458 * However, the object may also be bound into the global GTT (e.g.
4459 * older GPUs without per-process support, or for direct access through
4460 * the GTT either for the user or for scanout). Those VMA still need to
4461 * unbound now.
4462 */
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004463 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) {
Chris Wilson3272db52016-08-04 16:32:32 +01004464 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004465 GEM_BUG_ON(i915_vma_is_active(vma));
Chris Wilson3272db52016-08-04 16:32:32 +01004466 vma->flags &= ~I915_VMA_PIN_MASK;
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004467 i915_vma_close(vma);
Chris Wilson1488fc02012-04-24 15:47:31 +01004468 }
Chris Wilson15717de2016-08-04 07:52:26 +01004469 GEM_BUG_ON(obj->bind_count);
Chris Wilson1488fc02012-04-24 15:47:31 +01004470
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004471 WARN_ON(atomic_read(&obj->frontbuffer_bits));
Daniel Vettera071fa02014-06-18 23:28:09 +02004472
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004473 if (obj->mm.pages && obj->mm.madv == I915_MADV_WILLNEED &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01004474 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
Chris Wilson3e510a82016-08-05 10:14:23 +01004475 i915_gem_object_is_tiled(obj))
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004476 __i915_gem_object_unpin_pages(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004477
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004478 if (obj->ops->release)
4479 obj->ops->release(obj);
4480
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004481 if (WARN_ON(i915_gem_object_has_pinned_pages(obj)))
4482 obj->mm.pages_pin_count = 0;
4483 if (discard_backing_storage(obj))
4484 obj->mm.madv = I915_MADV_DONTNEED;
4485 __i915_gem_object_put_pages(obj);
4486
4487 GEM_BUG_ON(obj->mm.pages);
4488
4489 if (obj->base.import_attach)
4490 drm_prime_gem_destroy(&obj->base, NULL);
4491
Chris Wilson05394f32010-11-08 19:18:58 +00004492 drm_gem_object_release(&obj->base);
4493 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004494
Chris Wilson05394f32010-11-08 19:18:58 +00004495 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004496 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004497
4498 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004499}
4500
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01004501void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj)
4502{
4503 lockdep_assert_held(&obj->base.dev->struct_mutex);
4504
4505 GEM_BUG_ON(i915_gem_object_has_active_reference(obj));
4506 if (i915_gem_object_is_active(obj))
4507 i915_gem_object_set_active_reference(obj);
4508 else
4509 i915_gem_object_put(obj);
4510}
4511
Chris Wilsondcff85c2016-08-05 10:14:11 +01004512int i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004513{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004514 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsondcff85c2016-08-05 10:14:11 +01004515 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004516
Chris Wilson54b4f682016-07-21 21:16:19 +01004517 intel_suspend_gt_powersave(dev_priv);
4518
Chris Wilson45c5f202013-10-16 11:50:01 +01004519 mutex_lock(&dev->struct_mutex);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004520
4521 /* We have to flush all the executing contexts to main memory so
4522 * that they can saved in the hibernation image. To ensure the last
4523 * context image is coherent, we have to switch away from it. That
4524 * leaves the dev_priv->kernel_context still active when
4525 * we actually suspend, and its image in memory may not match the GPU
4526 * state. Fortunately, the kernel_context is disposable and we do
4527 * not rely on its state.
4528 */
4529 ret = i915_gem_switch_to_kernel_context(dev_priv);
4530 if (ret)
4531 goto err;
4532
Chris Wilson22dd3bb2016-09-09 14:11:50 +01004533 ret = i915_gem_wait_for_idle(dev_priv,
4534 I915_WAIT_INTERRUPTIBLE |
4535 I915_WAIT_LOCKED);
Chris Wilsonf7403342013-09-13 23:57:04 +01004536 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004537 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004538
Chris Wilsonc0336662016-05-06 15:40:21 +01004539 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004540
Chris Wilsonb2e862d2016-04-28 09:56:41 +01004541 i915_gem_context_lost(dev_priv);
Chris Wilson45c5f202013-10-16 11:50:01 +01004542 mutex_unlock(&dev->struct_mutex);
4543
Chris Wilson737b1502015-01-26 18:03:03 +02004544 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson67d97da2016-07-04 08:08:31 +01004545 cancel_delayed_work_sync(&dev_priv->gt.retire_work);
4546 flush_delayed_work(&dev_priv->gt.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004547
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004548 /* Assert that we sucessfully flushed all the work and
4549 * reset the GPU back to its idle, low power state.
4550 */
Chris Wilson67d97da2016-07-04 08:08:31 +01004551 WARN_ON(dev_priv->gt.awake);
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004552
Imre Deak1c777c52016-10-12 17:46:37 +03004553 /*
4554 * Neither the BIOS, ourselves or any other kernel
4555 * expects the system to be in execlists mode on startup,
4556 * so we need to reset the GPU back to legacy mode. And the only
4557 * known way to disable logical contexts is through a GPU reset.
4558 *
4559 * So in order to leave the system in a known default configuration,
4560 * always reset the GPU upon unload and suspend. Afterwards we then
4561 * clean up the GEM state tracking, flushing off the requests and
4562 * leaving the system in a known idle state.
4563 *
4564 * Note that is of the upmost importance that the GPU is idle and
4565 * all stray writes are flushed *before* we dismantle the backing
4566 * storage for the pinned objects.
4567 *
4568 * However, since we are uncertain that resetting the GPU on older
4569 * machines is a good idea, we don't - just in case it leaves the
4570 * machine in an unusable condition.
4571 */
4572 if (HAS_HW_CONTEXTS(dev)) {
4573 int reset = intel_gpu_reset(dev_priv, ALL_ENGINES);
4574 WARN_ON(reset && reset != -ENODEV);
4575 }
4576
Eric Anholt673a3942008-07-30 12:06:12 -07004577 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004578
4579err:
4580 mutex_unlock(&dev->struct_mutex);
4581 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004582}
4583
Chris Wilson5ab57c72016-07-15 14:56:20 +01004584void i915_gem_resume(struct drm_device *dev)
4585{
4586 struct drm_i915_private *dev_priv = to_i915(dev);
4587
4588 mutex_lock(&dev->struct_mutex);
4589 i915_gem_restore_gtt_mappings(dev);
4590
4591 /* As we didn't flush the kernel context before suspend, we cannot
4592 * guarantee that the context image is complete. So let's just reset
4593 * it and start again.
4594 */
Chris Wilson821ed7d2016-09-09 14:11:53 +01004595 dev_priv->gt.resume(dev_priv);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004596
4597 mutex_unlock(&dev->struct_mutex);
4598}
4599
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004600void i915_gem_init_swizzling(struct drm_device *dev)
4601{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004602 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004603
Daniel Vetter11782b02012-01-31 16:47:55 +01004604 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004605 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4606 return;
4607
4608 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4609 DISP_TILE_SURFACE_SWIZZLING);
4610
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004611 if (IS_GEN5(dev_priv))
Daniel Vetter11782b02012-01-31 16:47:55 +01004612 return;
4613
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004614 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004615 if (IS_GEN6(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004616 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004617 else if (IS_GEN7(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004618 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004619 else if (IS_GEN8(dev_priv))
Ben Widawsky31a53362013-11-02 21:07:04 -07004620 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004621 else
4622 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004623}
Daniel Vettere21af882012-02-09 20:53:27 +01004624
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004625static void init_unused_ring(struct drm_i915_private *dev_priv, u32 base)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004626{
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004627 I915_WRITE(RING_CTL(base), 0);
4628 I915_WRITE(RING_HEAD(base), 0);
4629 I915_WRITE(RING_TAIL(base), 0);
4630 I915_WRITE(RING_START(base), 0);
4631}
4632
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004633static void init_unused_rings(struct drm_i915_private *dev_priv)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004634{
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004635 if (IS_I830(dev_priv)) {
4636 init_unused_ring(dev_priv, PRB1_BASE);
4637 init_unused_ring(dev_priv, SRB0_BASE);
4638 init_unused_ring(dev_priv, SRB1_BASE);
4639 init_unused_ring(dev_priv, SRB2_BASE);
4640 init_unused_ring(dev_priv, SRB3_BASE);
4641 } else if (IS_GEN2(dev_priv)) {
4642 init_unused_ring(dev_priv, SRB0_BASE);
4643 init_unused_ring(dev_priv, SRB1_BASE);
4644 } else if (IS_GEN3(dev_priv)) {
4645 init_unused_ring(dev_priv, PRB1_BASE);
4646 init_unused_ring(dev_priv, PRB2_BASE);
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004647 }
4648}
4649
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004650int
4651i915_gem_init_hw(struct drm_device *dev)
4652{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004653 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004654 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304655 enum intel_engine_id id;
Chris Wilsond200cda2016-04-28 09:56:44 +01004656 int ret;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004657
Chris Wilsonde867c22016-10-25 13:16:02 +01004658 dev_priv->gt.last_init_time = ktime_get();
4659
Chris Wilson5e4f5182015-02-13 14:35:59 +00004660 /* Double layer security blanket, see i915_gem_init() */
4661 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4662
Mika Kuoppala3accaf72016-04-13 17:26:43 +03004663 if (HAS_EDRAM(dev) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004664 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004665
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01004666 if (IS_HASWELL(dev_priv))
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004667 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ?
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004668 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004669
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004670 if (HAS_PCH_NOP(dev_priv)) {
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004671 if (IS_IVYBRIDGE(dev_priv)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004672 u32 temp = I915_READ(GEN7_MSG_CTL);
4673 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4674 I915_WRITE(GEN7_MSG_CTL, temp);
4675 } else if (INTEL_INFO(dev)->gen >= 7) {
4676 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4677 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4678 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4679 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004680 }
4681
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004682 i915_gem_init_swizzling(dev);
4683
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004684 /*
4685 * At least 830 can leave some of the unused rings
4686 * "active" (ie. head != tail) after resume which
4687 * will prevent c3 entry. Makes sure all unused rings
4688 * are totally idle.
4689 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004690 init_unused_rings(dev_priv);
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004691
Dave Gordoned54c1a2016-01-19 19:02:54 +00004692 BUG_ON(!dev_priv->kernel_context);
John Harrison90638cc2015-05-29 17:43:37 +01004693
John Harrison4ad2fd82015-06-18 13:11:20 +01004694 ret = i915_ppgtt_init_hw(dev);
4695 if (ret) {
4696 DRM_ERROR("PPGTT enable HW failed %d\n", ret);
4697 goto out;
4698 }
4699
4700 /* Need to do basic initialisation of all rings first: */
Akash Goel3b3f1652016-10-13 22:44:48 +05304701 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004702 ret = engine->init_hw(engine);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004703 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004704 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004705 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004706
Peter Antoine0ccdacf2016-04-13 15:03:25 +01004707 intel_mocs_init_l3cc_table(dev);
4708
Alex Dai33a732f2015-08-12 15:43:36 +01004709 /* We can't enable contexts until all firmware is loaded */
Dave Gordone556f7c2016-06-07 09:14:49 +01004710 ret = intel_guc_setup(dev);
4711 if (ret)
4712 goto out;
Alex Dai33a732f2015-08-12 15:43:36 +01004713
Chris Wilson5e4f5182015-02-13 14:35:59 +00004714out:
4715 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004716 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004717}
4718
Chris Wilson39df9192016-07-20 13:31:57 +01004719bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value)
4720{
4721 if (INTEL_INFO(dev_priv)->gen < 6)
4722 return false;
4723
4724 /* TODO: make semaphores and Execlists play nicely together */
4725 if (i915.enable_execlists)
4726 return false;
4727
4728 if (value >= 0)
4729 return value;
4730
4731#ifdef CONFIG_INTEL_IOMMU
4732 /* Enable semaphores on SNB when IO remapping is off */
4733 if (INTEL_INFO(dev_priv)->gen == 6 && intel_iommu_gfx_mapped)
4734 return false;
4735#endif
4736
4737 return true;
4738}
4739
Chris Wilson1070a422012-04-24 15:47:41 +01004740int i915_gem_init(struct drm_device *dev)
4741{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004742 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson1070a422012-04-24 15:47:41 +01004743 int ret;
4744
Chris Wilson1070a422012-04-24 15:47:41 +01004745 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004746
Oscar Mateoa83014d2014-07-24 17:04:21 +01004747 if (!i915.enable_execlists) {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004748 dev_priv->gt.resume = intel_legacy_submission_resume;
Chris Wilson7e37f882016-08-02 22:50:21 +01004749 dev_priv->gt.cleanup_engine = intel_engine_cleanup;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004750 } else {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004751 dev_priv->gt.resume = intel_lr_context_resume;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004752 dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004753 }
4754
Chris Wilson5e4f5182015-02-13 14:35:59 +00004755 /* This is just a security blanket to placate dragons.
4756 * On some systems, we very sporadically observe that the first TLBs
4757 * used by the CS may be stale, despite us poking the TLB reset. If
4758 * we hold the forcewake during initialisation these problems
4759 * just magically go away.
4760 */
4761 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4762
Chris Wilson72778cb2016-05-19 16:17:16 +01004763 i915_gem_init_userptr(dev_priv);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01004764
4765 ret = i915_gem_init_ggtt(dev_priv);
4766 if (ret)
4767 goto out_unlock;
Jesse Barnesd62b4892013-03-08 10:45:53 -08004768
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004769 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004770 if (ret)
4771 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004772
Tvrtko Ursulin8b3e2d32016-07-13 16:03:37 +01004773 ret = intel_engines_init(dev);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004774 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004775 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004776
4777 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004778 if (ret == -EIO) {
Chris Wilson7e21d642016-07-27 09:07:29 +01004779 /* Allow engine initialisation to fail by marking the GPU as
Chris Wilson60990322014-04-09 09:19:42 +01004780 * wedged. But we only want to do this where the GPU is angry,
4781 * for all other failure, such as an allocation failure, bail.
4782 */
4783 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
Chris Wilson821ed7d2016-09-09 14:11:53 +01004784 i915_gem_set_wedged(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004785 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004786 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004787
4788out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00004789 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01004790 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004791
Chris Wilson60990322014-04-09 09:19:42 +01004792 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004793}
4794
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004795void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004796i915_gem_cleanup_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004797{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004798 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004799 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304800 enum intel_engine_id id;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004801
Akash Goel3b3f1652016-10-13 22:44:48 +05304802 for_each_engine(engine, dev_priv, id)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004803 dev_priv->gt.cleanup_engine(engine);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004804}
4805
Eric Anholt673a3942008-07-30 12:06:12 -07004806void
Imre Deak40ae4e12016-03-16 14:54:03 +02004807i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
4808{
Chris Wilson91c8a322016-07-05 10:40:23 +01004809 struct drm_device *dev = &dev_priv->drm;
Chris Wilson49ef5292016-08-18 17:17:00 +01004810 int i;
Imre Deak40ae4e12016-03-16 14:54:03 +02004811
4812 if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) &&
4813 !IS_CHERRYVIEW(dev_priv))
4814 dev_priv->num_fence_regs = 32;
4815 else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) ||
4816 IS_I945GM(dev_priv) || IS_G33(dev_priv))
4817 dev_priv->num_fence_regs = 16;
4818 else
4819 dev_priv->num_fence_regs = 8;
4820
Chris Wilsonc0336662016-05-06 15:40:21 +01004821 if (intel_vgpu_active(dev_priv))
Imre Deak40ae4e12016-03-16 14:54:03 +02004822 dev_priv->num_fence_regs =
4823 I915_READ(vgtif_reg(avail_rs.fence_num));
4824
4825 /* Initialize fence registers to zero */
Chris Wilson49ef5292016-08-18 17:17:00 +01004826 for (i = 0; i < dev_priv->num_fence_regs; i++) {
4827 struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i];
4828
4829 fence->i915 = dev_priv;
4830 fence->id = i;
4831 list_add_tail(&fence->link, &dev_priv->mm.fence_list);
4832 }
Imre Deak40ae4e12016-03-16 14:54:03 +02004833 i915_gem_restore_fences(dev);
4834
4835 i915_gem_detect_bit_6_swizzle(dev);
4836}
4837
4838void
Imre Deakd64aa092016-01-19 15:26:29 +02004839i915_gem_load_init(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004840{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004841 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004842
Chris Wilsonefab6d82015-04-07 16:20:57 +01004843 dev_priv->objects =
Chris Wilson42dcedd2012-11-15 11:32:30 +00004844 kmem_cache_create("i915_gem_object",
4845 sizeof(struct drm_i915_gem_object), 0,
4846 SLAB_HWCACHE_ALIGN,
4847 NULL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01004848 dev_priv->vmas =
4849 kmem_cache_create("i915_gem_vma",
4850 sizeof(struct i915_vma), 0,
4851 SLAB_HWCACHE_ALIGN,
4852 NULL);
Chris Wilsonefab6d82015-04-07 16:20:57 +01004853 dev_priv->requests =
4854 kmem_cache_create("i915_gem_request",
4855 sizeof(struct drm_i915_gem_request), 0,
Chris Wilson0eafec62016-08-04 16:32:41 +01004856 SLAB_HWCACHE_ALIGN |
4857 SLAB_RECLAIM_ACCOUNT |
4858 SLAB_DESTROY_BY_RCU,
Chris Wilsonefab6d82015-04-07 16:20:57 +01004859 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004860
Ben Widawskya33afea2013-09-17 21:12:45 -07004861 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004862 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4863 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004864 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004865 INIT_LIST_HEAD(&dev_priv->mm.userfault_list);
Chris Wilson67d97da2016-07-04 08:08:31 +01004866 INIT_DELAYED_WORK(&dev_priv->gt.retire_work,
Eric Anholt673a3942008-07-30 12:06:12 -07004867 i915_gem_retire_work_handler);
Chris Wilson67d97da2016-07-04 08:08:31 +01004868 INIT_DELAYED_WORK(&dev_priv->gt.idle_work,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004869 i915_gem_idle_work_handler);
Chris Wilson1f15b762016-07-01 17:23:14 +01004870 init_waitqueue_head(&dev_priv->gpu_error.wait_queue);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004871 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004872
Chris Wilson72bfa192010-12-19 11:42:05 +00004873 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4874
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004875 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004876
Chris Wilsonce453d82011-02-21 14:43:56 +00004877 dev_priv->mm.interruptible = true;
4878
Joonas Lahtinen6f633402016-09-01 14:58:21 +03004879 atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0);
4880
Chris Wilsonb5add952016-08-04 16:32:36 +01004881 spin_lock_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004882}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004883
Imre Deakd64aa092016-01-19 15:26:29 +02004884void i915_gem_load_cleanup(struct drm_device *dev)
4885{
4886 struct drm_i915_private *dev_priv = to_i915(dev);
4887
4888 kmem_cache_destroy(dev_priv->requests);
4889 kmem_cache_destroy(dev_priv->vmas);
4890 kmem_cache_destroy(dev_priv->objects);
Chris Wilson0eafec62016-08-04 16:32:41 +01004891
4892 /* And ensure that our DESTROY_BY_RCU slabs are truly destroyed */
4893 rcu_barrier();
Imre Deakd64aa092016-01-19 15:26:29 +02004894}
4895
Chris Wilson6a800ea2016-09-21 14:51:07 +01004896int i915_gem_freeze(struct drm_i915_private *dev_priv)
4897{
4898 intel_runtime_pm_get(dev_priv);
4899
4900 mutex_lock(&dev_priv->drm.struct_mutex);
4901 i915_gem_shrink_all(dev_priv);
4902 mutex_unlock(&dev_priv->drm.struct_mutex);
4903
4904 intel_runtime_pm_put(dev_priv);
4905
4906 return 0;
4907}
4908
Chris Wilson461fb992016-05-14 07:26:33 +01004909int i915_gem_freeze_late(struct drm_i915_private *dev_priv)
4910{
4911 struct drm_i915_gem_object *obj;
Chris Wilson7aab2d52016-09-09 20:02:18 +01004912 struct list_head *phases[] = {
4913 &dev_priv->mm.unbound_list,
4914 &dev_priv->mm.bound_list,
4915 NULL
4916 }, **p;
Chris Wilson461fb992016-05-14 07:26:33 +01004917
4918 /* Called just before we write the hibernation image.
4919 *
4920 * We need to update the domain tracking to reflect that the CPU
4921 * will be accessing all the pages to create and restore from the
4922 * hibernation, and so upon restoration those pages will be in the
4923 * CPU domain.
4924 *
4925 * To make sure the hibernation image contains the latest state,
4926 * we update that state just before writing out the image.
Chris Wilson7aab2d52016-09-09 20:02:18 +01004927 *
4928 * To try and reduce the hibernation image, we manually shrink
4929 * the objects as well.
Chris Wilson461fb992016-05-14 07:26:33 +01004930 */
4931
Chris Wilson6a800ea2016-09-21 14:51:07 +01004932 mutex_lock(&dev_priv->drm.struct_mutex);
4933 i915_gem_shrink(dev_priv, -1UL, I915_SHRINK_UNBOUND);
Chris Wilson461fb992016-05-14 07:26:33 +01004934
Chris Wilson7aab2d52016-09-09 20:02:18 +01004935 for (p = phases; *p; p++) {
4936 list_for_each_entry(obj, *p, global_list) {
4937 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4938 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4939 }
Chris Wilson461fb992016-05-14 07:26:33 +01004940 }
Chris Wilson6a800ea2016-09-21 14:51:07 +01004941 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson461fb992016-05-14 07:26:33 +01004942
4943 return 0;
4944}
4945
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004946void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004947{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004948 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004949 struct drm_i915_gem_request *request;
Eric Anholtb9624422009-06-03 07:27:35 +00004950
4951 /* Clean up our request list when the client is going away, so that
4952 * later retire_requests won't dereference our soon-to-be-gone
4953 * file_priv.
4954 */
Chris Wilson1c255952010-09-26 11:03:27 +01004955 spin_lock(&file_priv->mm.lock);
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004956 list_for_each_entry(request, &file_priv->mm.request_list, client_list)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004957 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01004958 spin_unlock(&file_priv->mm.lock);
Chris Wilson31169712009-09-14 16:50:28 +01004959
Chris Wilson2e1b8732015-04-27 13:41:22 +01004960 if (!list_empty(&file_priv->rps.link)) {
Chris Wilson8d3afd72015-05-21 21:01:47 +01004961 spin_lock(&to_i915(dev)->rps.client_lock);
Chris Wilson2e1b8732015-04-27 13:41:22 +01004962 list_del(&file_priv->rps.link);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004963 spin_unlock(&to_i915(dev)->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004964 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004965}
4966
4967int i915_gem_open(struct drm_device *dev, struct drm_file *file)
4968{
4969 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08004970 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004971
4972 DRM_DEBUG_DRIVER("\n");
4973
4974 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
4975 if (!file_priv)
4976 return -ENOMEM;
4977
4978 file->driver_priv = file_priv;
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004979 file_priv->dev_priv = to_i915(dev);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02004980 file_priv->file = file;
Chris Wilson2e1b8732015-04-27 13:41:22 +01004981 INIT_LIST_HEAD(&file_priv->rps.link);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004982
4983 spin_lock_init(&file_priv->mm.lock);
4984 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004985
Chris Wilsonc80ff162016-07-27 09:07:27 +01004986 file_priv->bsd_engine = -1;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00004987
Ben Widawskye422b882013-12-06 14:10:58 -08004988 ret = i915_gem_context_open(dev, file);
4989 if (ret)
4990 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004991
Ben Widawskye422b882013-12-06 14:10:58 -08004992 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004993}
4994
Daniel Vetterb680c372014-09-19 18:27:27 +02004995/**
4996 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07004997 * @old: current GEM buffer for the frontbuffer slots
4998 * @new: new GEM buffer for the frontbuffer slots
4999 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02005000 *
5001 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5002 * from @old and setting them in @new. Both @old and @new can be NULL.
5003 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005004void i915_gem_track_fb(struct drm_i915_gem_object *old,
5005 struct drm_i915_gem_object *new,
5006 unsigned frontbuffer_bits)
5007{
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005008 /* Control of individual bits within the mask are guarded by
5009 * the owning plane->mutex, i.e. we can never see concurrent
5010 * manipulation of individual bits. But since the bitfield as a whole
5011 * is updated using RMW, we need to use atomics in order to update
5012 * the bits.
5013 */
5014 BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES >
5015 sizeof(atomic_t) * BITS_PER_BYTE);
5016
Daniel Vettera071fa02014-06-18 23:28:09 +02005017 if (old) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005018 WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits));
5019 atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02005020 }
5021
5022 if (new) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005023 WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits);
5024 atomic_or(frontbuffer_bits, &new->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02005025 }
5026}
5027
Dave Gordonea702992015-07-09 19:29:02 +01005028/* Allocate a new GEM object and fill it with the supplied data */
5029struct drm_i915_gem_object *
5030i915_gem_object_create_from_data(struct drm_device *dev,
5031 const void *data, size_t size)
5032{
5033 struct drm_i915_gem_object *obj;
5034 struct sg_table *sg;
5035 size_t bytes;
5036 int ret;
5037
Dave Gordond37cd8a2016-04-22 19:14:32 +01005038 obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE));
Chris Wilsonfe3db792016-04-25 13:32:13 +01005039 if (IS_ERR(obj))
Dave Gordonea702992015-07-09 19:29:02 +01005040 return obj;
5041
5042 ret = i915_gem_object_set_to_cpu_domain(obj, true);
5043 if (ret)
5044 goto fail;
5045
Chris Wilsona4f5ea62016-10-28 13:58:35 +01005046 ret = i915_gem_object_pin_pages(obj);
Dave Gordonea702992015-07-09 19:29:02 +01005047 if (ret)
5048 goto fail;
5049
Chris Wilsona4f5ea62016-10-28 13:58:35 +01005050 sg = obj->mm.pages;
Dave Gordonea702992015-07-09 19:29:02 +01005051 bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01005052 obj->mm.dirty = true; /* Backing store is now out of date */
Dave Gordonea702992015-07-09 19:29:02 +01005053 i915_gem_object_unpin_pages(obj);
5054
5055 if (WARN_ON(bytes != size)) {
5056 DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size);
5057 ret = -EFAULT;
5058 goto fail;
5059 }
5060
5061 return obj;
5062
5063fail:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01005064 i915_gem_object_put(obj);
Dave Gordonea702992015-07-09 19:29:02 +01005065 return ERR_PTR(ret);
5066}
Chris Wilson96d77632016-10-28 13:58:33 +01005067
5068struct scatterlist *
5069i915_gem_object_get_sg(struct drm_i915_gem_object *obj,
5070 unsigned int n,
5071 unsigned int *offset)
5072{
Chris Wilsona4f5ea62016-10-28 13:58:35 +01005073 struct i915_gem_object_page_iter *iter = &obj->mm.get_page;
Chris Wilson96d77632016-10-28 13:58:33 +01005074 struct scatterlist *sg;
5075 unsigned int idx, count;
5076
5077 might_sleep();
5078 GEM_BUG_ON(n >= obj->base.size >> PAGE_SHIFT);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01005079 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
Chris Wilson96d77632016-10-28 13:58:33 +01005080
5081 /* As we iterate forward through the sg, we record each entry in a
5082 * radixtree for quick repeated (backwards) lookups. If we have seen
5083 * this index previously, we will have an entry for it.
5084 *
5085 * Initial lookup is O(N), but this is amortized to O(1) for
5086 * sequential page access (where each new request is consecutive
5087 * to the previous one). Repeated lookups are O(lg(obj->base.size)),
5088 * i.e. O(1) with a large constant!
5089 */
5090 if (n < READ_ONCE(iter->sg_idx))
5091 goto lookup;
5092
5093 mutex_lock(&iter->lock);
5094
5095 /* We prefer to reuse the last sg so that repeated lookup of this
5096 * (or the subsequent) sg are fast - comparing against the last
5097 * sg is faster than going through the radixtree.
5098 */
5099
5100 sg = iter->sg_pos;
5101 idx = iter->sg_idx;
5102 count = __sg_page_count(sg);
5103
5104 while (idx + count <= n) {
5105 unsigned long exception, i;
5106 int ret;
5107
5108 /* If we cannot allocate and insert this entry, or the
5109 * individual pages from this range, cancel updating the
5110 * sg_idx so that on this lookup we are forced to linearly
5111 * scan onwards, but on future lookups we will try the
5112 * insertion again (in which case we need to be careful of
5113 * the error return reporting that we have already inserted
5114 * this index).
5115 */
5116 ret = radix_tree_insert(&iter->radix, idx, sg);
5117 if (ret && ret != -EEXIST)
5118 goto scan;
5119
5120 exception =
5121 RADIX_TREE_EXCEPTIONAL_ENTRY |
5122 idx << RADIX_TREE_EXCEPTIONAL_SHIFT;
5123 for (i = 1; i < count; i++) {
5124 ret = radix_tree_insert(&iter->radix, idx + i,
5125 (void *)exception);
5126 if (ret && ret != -EEXIST)
5127 goto scan;
5128 }
5129
5130 idx += count;
5131 sg = ____sg_next(sg);
5132 count = __sg_page_count(sg);
5133 }
5134
5135scan:
5136 iter->sg_pos = sg;
5137 iter->sg_idx = idx;
5138
5139 mutex_unlock(&iter->lock);
5140
5141 if (unlikely(n < idx)) /* insertion completed by another thread */
5142 goto lookup;
5143
5144 /* In case we failed to insert the entry into the radixtree, we need
5145 * to look beyond the current sg.
5146 */
5147 while (idx + count <= n) {
5148 idx += count;
5149 sg = ____sg_next(sg);
5150 count = __sg_page_count(sg);
5151 }
5152
5153 *offset = n - idx;
5154 return sg;
5155
5156lookup:
5157 rcu_read_lock();
5158
5159 sg = radix_tree_lookup(&iter->radix, n);
5160 GEM_BUG_ON(!sg);
5161
5162 /* If this index is in the middle of multi-page sg entry,
5163 * the radixtree will contain an exceptional entry that points
5164 * to the start of that range. We will return the pointer to
5165 * the base page and the offset of this page within the
5166 * sg entry's range.
5167 */
5168 *offset = 0;
5169 if (unlikely(radix_tree_exception(sg))) {
5170 unsigned long base =
5171 (unsigned long)sg >> RADIX_TREE_EXCEPTIONAL_SHIFT;
5172
5173 sg = radix_tree_lookup(&iter->radix, base);
5174 GEM_BUG_ON(!sg);
5175
5176 *offset = n - base;
5177 }
5178
5179 rcu_read_unlock();
5180
5181 return sg;
5182}
5183
5184struct page *
5185i915_gem_object_get_page(struct drm_i915_gem_object *obj, unsigned int n)
5186{
5187 struct scatterlist *sg;
5188 unsigned int offset;
5189
5190 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
5191
5192 sg = i915_gem_object_get_sg(obj, n, &offset);
5193 return nth_page(sg_page(sg), offset);
5194}
5195
5196/* Like i915_gem_object_get_page(), but mark the returned page dirty */
5197struct page *
5198i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj,
5199 unsigned int n)
5200{
5201 struct page *page;
5202
5203 page = i915_gem_object_get_page(obj, n);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01005204 if (!obj->mm.dirty)
Chris Wilson96d77632016-10-28 13:58:33 +01005205 set_page_dirty(page);
5206
5207 return page;
5208}
5209
5210dma_addr_t
5211i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj,
5212 unsigned long n)
5213{
5214 struct scatterlist *sg;
5215 unsigned int offset;
5216
5217 sg = i915_gem_object_get_sg(obj, n, &offset);
5218 return sg_dma_address(sg) + (offset << PAGE_SHIFT);
5219}