blob: aa0de3aa256557306d40c56b86023cbb4153b9ce [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 Wilson6a2c4232014-11-04 04:51:40 -0800172static int
173i915_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)))
182 return -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))
190 return PTR_ERR(page);
191
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)
205 return -ENOMEM;
206
207 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
208 kfree(st);
209 return -ENOMEM;
210 }
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
219 obj->pages = st;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800220 return 0;
221}
222
223static void
224i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
225{
226 int ret;
227
228 BUG_ON(obj->madv == __I915_MADV_PURGED);
229
230 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +0100231 if (WARN_ON(ret)) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800232 /* In the event of a disaster, abandon all caches and
233 * hope for the best.
234 */
Chris Wilson6a2c4232014-11-04 04:51:40 -0800235 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
236 }
237
238 if (obj->madv == I915_MADV_DONTNEED)
239 obj->dirty = 0;
240
241 if (obj->dirty) {
Al Viro93c76a32015-12-04 23:45:44 -0500242 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800243 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100244 int i;
245
246 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800247 struct page *page;
248 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100249
Chris Wilson6a2c4232014-11-04 04:51:40 -0800250 page = shmem_read_mapping_page(mapping, i);
251 if (IS_ERR(page))
252 continue;
253
254 dst = kmap_atomic(page);
255 drm_clflush_virt_range(vaddr, PAGE_SIZE);
256 memcpy(dst, vaddr, PAGE_SIZE);
257 kunmap_atomic(dst);
258
259 set_page_dirty(page);
260 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100261 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300262 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100263 vaddr += PAGE_SIZE;
264 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800265 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100266 }
267
Chris Wilson6a2c4232014-11-04 04:51:40 -0800268 sg_free_table(obj->pages);
269 kfree(obj->pages);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800270}
271
272static void
273i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
274{
275 drm_pci_free(obj->base.dev, obj->phys_handle);
276}
277
278static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
279 .get_pages = i915_gem_object_get_pages_phys,
280 .put_pages = i915_gem_object_put_pages_phys,
281 .release = i915_gem_object_release_phys,
282};
283
Chris Wilson35a96112016-08-14 18:44:40 +0100284int i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Chris Wilsonaa653a62016-08-04 07:52:27 +0100285{
286 struct i915_vma *vma;
287 LIST_HEAD(still_in_list);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100288 int ret;
Chris Wilsonaa653a62016-08-04 07:52:27 +0100289
Chris Wilson02bef8f2016-08-14 18:44:41 +0100290 lockdep_assert_held(&obj->base.dev->struct_mutex);
291
292 /* Closed vma are removed from the obj->vma_list - but they may
293 * still have an active binding on the object. To remove those we
294 * must wait for all rendering to complete to the object (as unbinding
295 * must anyway), and retire the requests.
Chris Wilsonaa653a62016-08-04 07:52:27 +0100296 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100297 ret = i915_gem_object_wait(obj,
298 I915_WAIT_INTERRUPTIBLE |
299 I915_WAIT_LOCKED |
300 I915_WAIT_ALL,
301 MAX_SCHEDULE_TIMEOUT,
302 NULL);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100303 if (ret)
304 return ret;
305
306 i915_gem_retire_requests(to_i915(obj->base.dev));
307
Chris Wilsonaa653a62016-08-04 07:52:27 +0100308 while ((vma = list_first_entry_or_null(&obj->vma_list,
309 struct i915_vma,
310 obj_link))) {
311 list_move_tail(&vma->obj_link, &still_in_list);
312 ret = i915_vma_unbind(vma);
313 if (ret)
314 break;
315 }
316 list_splice(&still_in_list, &obj->vma_list);
317
318 return ret;
319}
320
Chris Wilsone95433c2016-10-28 13:58:27 +0100321static long
322i915_gem_object_wait_fence(struct dma_fence *fence,
323 unsigned int flags,
324 long timeout,
325 struct intel_rps_client *rps)
326{
327 struct drm_i915_gem_request *rq;
328
329 BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1);
330
331 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
332 return timeout;
333
334 if (!dma_fence_is_i915(fence))
335 return dma_fence_wait_timeout(fence,
336 flags & I915_WAIT_INTERRUPTIBLE,
337 timeout);
338
339 rq = to_request(fence);
340 if (i915_gem_request_completed(rq))
341 goto out;
342
343 /* This client is about to stall waiting for the GPU. In many cases
344 * this is undesirable and limits the throughput of the system, as
345 * many clients cannot continue processing user input/output whilst
346 * blocked. RPS autotuning may take tens of milliseconds to respond
347 * to the GPU load and thus incurs additional latency for the client.
348 * We can circumvent that by promoting the GPU frequency to maximum
349 * before we wait. This makes the GPU throttle up much more quickly
350 * (good for benchmarks and user experience, e.g. window animations),
351 * but at a cost of spending more power processing the workload
352 * (bad for battery). Not all clients even want their results
353 * immediately and for them we should just let the GPU select its own
354 * frequency to maximise efficiency. To prevent a single client from
355 * forcing the clocks too high for the whole system, we only allow
356 * each client to waitboost once in a busy period.
357 */
358 if (rps) {
359 if (INTEL_GEN(rq->i915) >= 6)
360 gen6_rps_boost(rq->i915, rps, rq->emitted_jiffies);
361 else
362 rps = NULL;
363 }
364
365 timeout = i915_wait_request(rq, flags, timeout);
366
367out:
368 if (flags & I915_WAIT_LOCKED && i915_gem_request_completed(rq))
369 i915_gem_request_retire_upto(rq);
370
371 if (rps && rq->fence.seqno == rq->engine->last_submitted_seqno) {
372 /* The GPU is now idle and this client has stalled.
373 * Since no other client has submitted a request in the
374 * meantime, assume that this client is the only one
375 * supplying work to the GPU but is unable to keep that
376 * work supplied because it is waiting. Since the GPU is
377 * then never kept fully busy, RPS autoclocking will
378 * keep the clocks relatively low, causing further delays.
379 * Compensate by giving the synchronous client credit for
380 * a waitboost next time.
381 */
382 spin_lock(&rq->i915->rps.client_lock);
383 list_del_init(&rps->link);
384 spin_unlock(&rq->i915->rps.client_lock);
385 }
386
387 return timeout;
388}
389
390static long
391i915_gem_object_wait_reservation(struct reservation_object *resv,
392 unsigned int flags,
393 long timeout,
394 struct intel_rps_client *rps)
395{
396 struct dma_fence *excl;
397
398 if (flags & I915_WAIT_ALL) {
399 struct dma_fence **shared;
400 unsigned int count, i;
401 int ret;
402
403 ret = reservation_object_get_fences_rcu(resv,
404 &excl, &count, &shared);
405 if (ret)
406 return ret;
407
408 for (i = 0; i < count; i++) {
409 timeout = i915_gem_object_wait_fence(shared[i],
410 flags, timeout,
411 rps);
412 if (timeout <= 0)
413 break;
414
415 dma_fence_put(shared[i]);
416 }
417
418 for (; i < count; i++)
419 dma_fence_put(shared[i]);
420 kfree(shared);
421 } else {
422 excl = reservation_object_get_excl_rcu(resv);
423 }
424
425 if (excl && timeout > 0)
426 timeout = i915_gem_object_wait_fence(excl, flags, timeout, rps);
427
428 dma_fence_put(excl);
429
430 return timeout;
431}
432
Chris Wilson00e60f22016-08-04 16:32:40 +0100433/**
Chris Wilsone95433c2016-10-28 13:58:27 +0100434 * Waits for rendering to the object to be completed
Chris Wilson00e60f22016-08-04 16:32:40 +0100435 * @obj: i915 gem object
Chris Wilsone95433c2016-10-28 13:58:27 +0100436 * @flags: how to wait (under a lock, for all rendering or just for writes etc)
437 * @timeout: how long to wait
438 * @rps: client (user process) to charge for any waitboosting
Chris Wilson00e60f22016-08-04 16:32:40 +0100439 */
440int
Chris Wilsone95433c2016-10-28 13:58:27 +0100441i915_gem_object_wait(struct drm_i915_gem_object *obj,
442 unsigned int flags,
443 long timeout,
444 struct intel_rps_client *rps)
Chris Wilson00e60f22016-08-04 16:32:40 +0100445{
446 struct reservation_object *resv;
447 struct i915_gem_active *active;
448 unsigned long active_mask;
449 int idx;
450
Chris Wilsone95433c2016-10-28 13:58:27 +0100451 might_sleep();
452#if IS_ENABLED(CONFIG_LOCKDEP)
453 GEM_BUG_ON(debug_locks &&
454 !!lockdep_is_held(&obj->base.dev->struct_mutex) !=
455 !!(flags & I915_WAIT_LOCKED));
456#endif
457 GEM_BUG_ON(timeout < 0);
Chris Wilson00e60f22016-08-04 16:32:40 +0100458
Chris Wilsone95433c2016-10-28 13:58:27 +0100459 if (flags & I915_WAIT_ALL) {
Chris Wilson00e60f22016-08-04 16:32:40 +0100460 active = obj->last_read;
461 active_mask = i915_gem_object_get_active(obj);
462 } else {
463 active_mask = 1;
464 active = &obj->last_write;
465 }
466
467 for_each_active(active_mask, idx) {
Chris Wilsone95433c2016-10-28 13:58:27 +0100468 struct drm_i915_gem_request *request;
Chris Wilson00e60f22016-08-04 16:32:40 +0100469
Chris Wilsone95433c2016-10-28 13:58:27 +0100470 request = i915_gem_active_get_unlocked(&active[idx]);
471 if (request) {
472 timeout = i915_gem_object_wait_fence(&request->fence,
473 flags, timeout,
474 rps);
475 i915_gem_request_put(request);
476 }
477 if (timeout < 0)
478 return timeout;
Chris Wilson00e60f22016-08-04 16:32:40 +0100479 }
480
481 resv = i915_gem_object_get_dmabuf_resv(obj);
Chris Wilsone95433c2016-10-28 13:58:27 +0100482 if (resv)
483 timeout = i915_gem_object_wait_reservation(resv,
484 flags, timeout,
485 rps);
486 return timeout < 0 ? timeout : 0;
Chris Wilson00e60f22016-08-04 16:32:40 +0100487}
488
489static struct intel_rps_client *to_rps_client(struct drm_file *file)
490{
491 struct drm_i915_file_private *fpriv = file->driver_priv;
492
493 return &fpriv->rps;
494}
495
Chris Wilson00731152014-05-21 12:42:56 +0100496int
497i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
498 int align)
499{
500 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800501 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100502
503 if (obj->phys_handle) {
504 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
505 return -EBUSY;
506
507 return 0;
508 }
509
510 if (obj->madv != I915_MADV_WILLNEED)
511 return -EFAULT;
512
513 if (obj->base.filp == NULL)
514 return -EINVAL;
515
Chris Wilson4717ca92016-08-04 07:52:28 +0100516 ret = i915_gem_object_unbind(obj);
517 if (ret)
518 return ret;
519
520 ret = i915_gem_object_put_pages(obj);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800521 if (ret)
522 return ret;
523
Chris Wilson00731152014-05-21 12:42:56 +0100524 /* create a new object */
525 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
526 if (!phys)
527 return -ENOMEM;
528
Chris Wilson00731152014-05-21 12:42:56 +0100529 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800530 obj->ops = &i915_gem_phys_ops;
531
532 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100533}
534
535static int
536i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
537 struct drm_i915_gem_pwrite *args,
538 struct drm_file *file_priv)
539{
540 struct drm_device *dev = obj->base.dev;
541 void *vaddr = obj->phys_handle->vaddr + args->offset;
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300542 char __user *user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilsone95433c2016-10-28 13:58:27 +0100543 int ret;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800544
545 /* We manually control the domain here and pretend that it
546 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
547 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100548 lockdep_assert_held(&obj->base.dev->struct_mutex);
549 ret = i915_gem_object_wait(obj,
550 I915_WAIT_INTERRUPTIBLE |
551 I915_WAIT_LOCKED |
552 I915_WAIT_ALL,
553 MAX_SCHEDULE_TIMEOUT,
554 to_rps_client(file_priv));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800555 if (ret)
556 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100557
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700558 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100559 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
560 unsigned long unwritten;
561
562 /* The physical object once assigned is fixed for the lifetime
563 * of the obj, so we can safely drop the lock and continue
564 * to access vaddr.
565 */
566 mutex_unlock(&dev->struct_mutex);
567 unwritten = copy_from_user(vaddr, user_data, args->size);
568 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200569 if (unwritten) {
570 ret = -EFAULT;
571 goto out;
572 }
Chris Wilson00731152014-05-21 12:42:56 +0100573 }
574
Chris Wilson6a2c4232014-11-04 04:51:40 -0800575 drm_clflush_virt_range(vaddr, args->size);
Chris Wilsonc0336662016-05-06 15:40:21 +0100576 i915_gem_chipset_flush(to_i915(dev));
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200577
578out:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700579 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200580 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100581}
582
Chris Wilson42dcedd2012-11-15 11:32:30 +0000583void *i915_gem_object_alloc(struct drm_device *dev)
584{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100585 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100586 return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000587}
588
589void i915_gem_object_free(struct drm_i915_gem_object *obj)
590{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100591 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100592 kmem_cache_free(dev_priv->objects, obj);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000593}
594
Dave Airlieff72145b2011-02-07 12:16:14 +1000595static int
596i915_gem_create(struct drm_file *file,
597 struct drm_device *dev,
598 uint64_t size,
599 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700600{
Chris Wilson05394f32010-11-08 19:18:58 +0000601 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300602 int ret;
603 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700604
Dave Airlieff72145b2011-02-07 12:16:14 +1000605 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200606 if (size == 0)
607 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700608
609 /* Allocate the new object */
Dave Gordond37cd8a2016-04-22 19:14:32 +0100610 obj = i915_gem_object_create(dev, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100611 if (IS_ERR(obj))
612 return PTR_ERR(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700613
Chris Wilson05394f32010-11-08 19:18:58 +0000614 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100615 /* drop reference from allocate - handle holds it now */
Chris Wilson34911fd2016-07-20 13:31:54 +0100616 i915_gem_object_put_unlocked(obj);
Daniel Vetterd861e332013-07-24 23:25:03 +0200617 if (ret)
618 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100619
Dave Airlieff72145b2011-02-07 12:16:14 +1000620 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700621 return 0;
622}
623
Dave Airlieff72145b2011-02-07 12:16:14 +1000624int
625i915_gem_dumb_create(struct drm_file *file,
626 struct drm_device *dev,
627 struct drm_mode_create_dumb *args)
628{
629 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300630 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000631 args->size = args->pitch * args->height;
632 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000633 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000634}
635
Dave Airlieff72145b2011-02-07 12:16:14 +1000636/**
637 * Creates a new mm object and returns a handle to it.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100638 * @dev: drm device pointer
639 * @data: ioctl data blob
640 * @file: drm file pointer
Dave Airlieff72145b2011-02-07 12:16:14 +1000641 */
642int
643i915_gem_create_ioctl(struct drm_device *dev, void *data,
644 struct drm_file *file)
645{
646 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200647
Dave Airlieff72145b2011-02-07 12:16:14 +1000648 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000649 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000650}
651
Daniel Vetter8c599672011-12-14 13:57:31 +0100652static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100653__copy_to_user_swizzled(char __user *cpu_vaddr,
654 const char *gpu_vaddr, int gpu_offset,
655 int length)
656{
657 int ret, cpu_offset = 0;
658
659 while (length > 0) {
660 int cacheline_end = ALIGN(gpu_offset + 1, 64);
661 int this_length = min(cacheline_end - gpu_offset, length);
662 int swizzled_gpu_offset = gpu_offset ^ 64;
663
664 ret = __copy_to_user(cpu_vaddr + cpu_offset,
665 gpu_vaddr + swizzled_gpu_offset,
666 this_length);
667 if (ret)
668 return ret + length;
669
670 cpu_offset += this_length;
671 gpu_offset += this_length;
672 length -= this_length;
673 }
674
675 return 0;
676}
677
678static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700679__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
680 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100681 int length)
682{
683 int ret, cpu_offset = 0;
684
685 while (length > 0) {
686 int cacheline_end = ALIGN(gpu_offset + 1, 64);
687 int this_length = min(cacheline_end - gpu_offset, length);
688 int swizzled_gpu_offset = gpu_offset ^ 64;
689
690 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
691 cpu_vaddr + cpu_offset,
692 this_length);
693 if (ret)
694 return ret + length;
695
696 cpu_offset += this_length;
697 gpu_offset += this_length;
698 length -= this_length;
699 }
700
701 return 0;
702}
703
Brad Volkin4c914c02014-02-18 10:15:45 -0800704/*
705 * Pins the specified object's pages and synchronizes the object with
706 * GPU accesses. Sets needs_clflush to non-zero if the caller should
707 * flush the object from the CPU cache.
708 */
709int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
Chris Wilson43394c72016-08-18 17:16:47 +0100710 unsigned int *needs_clflush)
Brad Volkin4c914c02014-02-18 10:15:45 -0800711{
712 int ret;
713
Chris Wilsone95433c2016-10-28 13:58:27 +0100714 lockdep_assert_held(&obj->base.dev->struct_mutex);
Brad Volkin4c914c02014-02-18 10:15:45 -0800715
Chris Wilsone95433c2016-10-28 13:58:27 +0100716 *needs_clflush = 0;
Chris Wilson43394c72016-08-18 17:16:47 +0100717 if (!i915_gem_object_has_struct_page(obj))
718 return -ENODEV;
Brad Volkin4c914c02014-02-18 10:15:45 -0800719
Chris Wilsone95433c2016-10-28 13:58:27 +0100720 ret = i915_gem_object_wait(obj,
721 I915_WAIT_INTERRUPTIBLE |
722 I915_WAIT_LOCKED,
723 MAX_SCHEDULE_TIMEOUT,
724 NULL);
Chris Wilsonc13d87e2016-07-20 09:21:15 +0100725 if (ret)
726 return ret;
727
Chris Wilson97649512016-08-18 17:16:50 +0100728 ret = i915_gem_object_get_pages(obj);
729 if (ret)
730 return ret;
731
732 i915_gem_object_pin_pages(obj);
733
Chris Wilsona314d5c2016-08-18 17:16:48 +0100734 i915_gem_object_flush_gtt_write_domain(obj);
735
Chris Wilson43394c72016-08-18 17:16:47 +0100736 /* If we're not in the cpu read domain, set ourself into the gtt
737 * read domain and manually flush cachelines (if required). This
738 * optimizes for the case when the gpu will dirty the data
739 * anyway again before the next pread happens.
740 */
741 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
Brad Volkin4c914c02014-02-18 10:15:45 -0800742 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
743 obj->cache_level);
Brad Volkin4c914c02014-02-18 10:15:45 -0800744
Chris Wilson43394c72016-08-18 17:16:47 +0100745 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
746 ret = i915_gem_object_set_to_cpu_domain(obj, false);
Chris Wilson97649512016-08-18 17:16:50 +0100747 if (ret)
748 goto err_unpin;
749
Chris Wilson43394c72016-08-18 17:16:47 +0100750 *needs_clflush = 0;
751 }
752
Chris Wilson97649512016-08-18 17:16:50 +0100753 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100754 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100755
756err_unpin:
757 i915_gem_object_unpin_pages(obj);
758 return ret;
Chris Wilson43394c72016-08-18 17:16:47 +0100759}
760
761int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj,
762 unsigned int *needs_clflush)
763{
764 int ret;
765
Chris Wilsone95433c2016-10-28 13:58:27 +0100766 lockdep_assert_held(&obj->base.dev->struct_mutex);
767
Chris Wilson43394c72016-08-18 17:16:47 +0100768 *needs_clflush = 0;
769 if (!i915_gem_object_has_struct_page(obj))
770 return -ENODEV;
771
Chris Wilsone95433c2016-10-28 13:58:27 +0100772 ret = i915_gem_object_wait(obj,
773 I915_WAIT_INTERRUPTIBLE |
774 I915_WAIT_LOCKED |
775 I915_WAIT_ALL,
776 MAX_SCHEDULE_TIMEOUT,
777 NULL);
Chris Wilson43394c72016-08-18 17:16:47 +0100778 if (ret)
779 return ret;
780
Chris Wilson97649512016-08-18 17:16:50 +0100781 ret = i915_gem_object_get_pages(obj);
782 if (ret)
783 return ret;
784
785 i915_gem_object_pin_pages(obj);
786
Chris Wilsona314d5c2016-08-18 17:16:48 +0100787 i915_gem_object_flush_gtt_write_domain(obj);
788
Chris Wilson43394c72016-08-18 17:16:47 +0100789 /* If we're not in the cpu write domain, set ourself into the
790 * gtt write domain and manually flush cachelines (as required).
791 * This optimizes for the case when the gpu will use the data
792 * right away and we therefore have to clflush anyway.
793 */
794 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
795 *needs_clflush |= cpu_write_needs_clflush(obj) << 1;
796
797 /* Same trick applies to invalidate partially written cachelines read
798 * before writing.
799 */
800 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
801 *needs_clflush |= !cpu_cache_is_coherent(obj->base.dev,
802 obj->cache_level);
803
Chris Wilson43394c72016-08-18 17:16:47 +0100804 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
805 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilson97649512016-08-18 17:16:50 +0100806 if (ret)
807 goto err_unpin;
808
Chris Wilson43394c72016-08-18 17:16:47 +0100809 *needs_clflush = 0;
810 }
811
812 if ((*needs_clflush & CLFLUSH_AFTER) == 0)
813 obj->cache_dirty = true;
814
815 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
816 obj->dirty = 1;
Chris Wilson97649512016-08-18 17:16:50 +0100817 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100818 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100819
820err_unpin:
821 i915_gem_object_unpin_pages(obj);
822 return ret;
Brad Volkin4c914c02014-02-18 10:15:45 -0800823}
824
Daniel Vetterd174bd62012-03-25 19:47:40 +0200825/* Per-page copy function for the shmem pread fastpath.
826 * Flushes invalid cachelines before reading the target if
827 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700828static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200829shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
830 char __user *user_data,
831 bool page_do_bit17_swizzling, bool needs_clflush)
832{
833 char *vaddr;
834 int ret;
835
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200836 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200837 return -EINVAL;
838
839 vaddr = kmap_atomic(page);
840 if (needs_clflush)
841 drm_clflush_virt_range(vaddr + shmem_page_offset,
842 page_length);
843 ret = __copy_to_user_inatomic(user_data,
844 vaddr + shmem_page_offset,
845 page_length);
846 kunmap_atomic(vaddr);
847
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100848 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200849}
850
Daniel Vetter23c18c72012-03-25 19:47:42 +0200851static void
852shmem_clflush_swizzled_range(char *addr, unsigned long length,
853 bool swizzled)
854{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200855 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200856 unsigned long start = (unsigned long) addr;
857 unsigned long end = (unsigned long) addr + length;
858
859 /* For swizzling simply ensure that we always flush both
860 * channels. Lame, but simple and it works. Swizzled
861 * pwrite/pread is far from a hotpath - current userspace
862 * doesn't use it at all. */
863 start = round_down(start, 128);
864 end = round_up(end, 128);
865
866 drm_clflush_virt_range((void *)start, end - start);
867 } else {
868 drm_clflush_virt_range(addr, length);
869 }
870
871}
872
Daniel Vetterd174bd62012-03-25 19:47:40 +0200873/* Only difference to the fast-path function is that this can handle bit17
874 * and uses non-atomic copy and kmap functions. */
875static int
876shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
877 char __user *user_data,
878 bool page_do_bit17_swizzling, bool needs_clflush)
879{
880 char *vaddr;
881 int ret;
882
883 vaddr = kmap(page);
884 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200885 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
886 page_length,
887 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200888
889 if (page_do_bit17_swizzling)
890 ret = __copy_to_user_swizzled(user_data,
891 vaddr, shmem_page_offset,
892 page_length);
893 else
894 ret = __copy_to_user(user_data,
895 vaddr + shmem_page_offset,
896 page_length);
897 kunmap(page);
898
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100899 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200900}
901
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530902static inline unsigned long
903slow_user_access(struct io_mapping *mapping,
904 uint64_t page_base, int page_offset,
905 char __user *user_data,
906 unsigned long length, bool pwrite)
907{
908 void __iomem *ioaddr;
909 void *vaddr;
910 uint64_t unwritten;
911
912 ioaddr = io_mapping_map_wc(mapping, page_base, PAGE_SIZE);
913 /* We can use the cpu mem copy function because this is X86. */
914 vaddr = (void __force *)ioaddr + page_offset;
915 if (pwrite)
916 unwritten = __copy_from_user(vaddr, user_data, length);
917 else
918 unwritten = __copy_to_user(user_data, vaddr, length);
919
920 io_mapping_unmap(ioaddr);
921 return unwritten;
922}
923
924static int
925i915_gem_gtt_pread(struct drm_device *dev,
926 struct drm_i915_gem_object *obj, uint64_t size,
927 uint64_t data_offset, uint64_t data_ptr)
928{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100929 struct drm_i915_private *dev_priv = to_i915(dev);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530930 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson058d88c2016-08-15 10:49:06 +0100931 struct i915_vma *vma;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530932 struct drm_mm_node node;
933 char __user *user_data;
934 uint64_t remain;
935 uint64_t offset;
936 int ret;
937
Chris Wilson9c870d02016-10-24 13:42:15 +0100938 intel_runtime_pm_get(to_i915(dev));
Chris Wilson058d88c2016-08-15 10:49:06 +0100939 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, PIN_MAPPABLE);
Chris Wilson18034582016-08-18 17:16:45 +0100940 if (!IS_ERR(vma)) {
941 node.start = i915_ggtt_offset(vma);
942 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +0100943 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +0100944 if (ret) {
945 i915_vma_unpin(vma);
946 vma = ERR_PTR(ret);
947 }
948 }
Chris Wilson058d88c2016-08-15 10:49:06 +0100949 if (IS_ERR(vma)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530950 ret = insert_mappable_node(dev_priv, &node, PAGE_SIZE);
951 if (ret)
952 goto out;
953
954 ret = i915_gem_object_get_pages(obj);
955 if (ret) {
956 remove_mappable_node(&node);
957 goto out;
958 }
959
960 i915_gem_object_pin_pages(obj);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530961 }
962
963 ret = i915_gem_object_set_to_gtt_domain(obj, false);
964 if (ret)
965 goto out_unpin;
966
967 user_data = u64_to_user_ptr(data_ptr);
968 remain = size;
969 offset = data_offset;
970
971 mutex_unlock(&dev->struct_mutex);
972 if (likely(!i915.prefault_disable)) {
Al Viro4bce9f62016-09-17 18:02:44 -0400973 ret = fault_in_pages_writeable(user_data, remain);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530974 if (ret) {
975 mutex_lock(&dev->struct_mutex);
976 goto out_unpin;
977 }
978 }
979
980 while (remain > 0) {
981 /* Operation in this page
982 *
983 * page_base = page offset within aperture
984 * page_offset = offset within page
985 * page_length = bytes to copy for this page
986 */
987 u32 page_base = node.start;
988 unsigned page_offset = offset_in_page(offset);
989 unsigned page_length = PAGE_SIZE - page_offset;
990 page_length = remain < page_length ? remain : page_length;
991 if (node.allocated) {
992 wmb();
993 ggtt->base.insert_page(&ggtt->base,
994 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
995 node.start,
996 I915_CACHE_NONE, 0);
997 wmb();
998 } else {
999 page_base += offset & PAGE_MASK;
1000 }
1001 /* This is a slow read/write as it tries to read from
1002 * and write to user memory which may result into page
1003 * faults, and so we cannot perform this under struct_mutex.
1004 */
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001005 if (slow_user_access(&ggtt->mappable, page_base,
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301006 page_offset, user_data,
1007 page_length, false)) {
1008 ret = -EFAULT;
1009 break;
1010 }
1011
1012 remain -= page_length;
1013 user_data += page_length;
1014 offset += page_length;
1015 }
1016
1017 mutex_lock(&dev->struct_mutex);
1018 if (ret == 0 && (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) {
1019 /* The user has modified the object whilst we tried
1020 * reading from it, and we now have no idea what domain
1021 * the pages should be in. As we have just been touching
1022 * them directly, flush everything back to the GTT
1023 * domain.
1024 */
1025 ret = i915_gem_object_set_to_gtt_domain(obj, false);
1026 }
1027
1028out_unpin:
1029 if (node.allocated) {
1030 wmb();
1031 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001032 node.start, node.size);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301033 i915_gem_object_unpin_pages(obj);
1034 remove_mappable_node(&node);
1035 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001036 i915_vma_unpin(vma);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301037 }
1038out:
Chris Wilson9c870d02016-10-24 13:42:15 +01001039 intel_runtime_pm_put(to_i915(dev));
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301040 return ret;
1041}
1042
Eric Anholteb014592009-03-10 11:44:52 -07001043static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001044i915_gem_shmem_pread(struct drm_device *dev,
1045 struct drm_i915_gem_object *obj,
1046 struct drm_i915_gem_pread *args,
1047 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -07001048{
Daniel Vetter8461d222011-12-14 13:57:32 +01001049 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -07001050 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +01001051 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +01001052 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +01001053 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +02001054 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +02001055 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +02001056 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -07001057
Brad Volkin4c914c02014-02-18 10:15:45 -08001058 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001059 if (ret)
1060 return ret;
1061
Chris Wilson43394c72016-08-18 17:16:47 +01001062 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
1063 user_data = u64_to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -07001064 offset = args->offset;
Chris Wilson43394c72016-08-18 17:16:47 +01001065 remain = args->size;
Daniel Vetter8461d222011-12-14 13:57:32 +01001066
Imre Deak67d5a502013-02-18 19:28:02 +02001067 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
1068 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +02001069 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001070
1071 if (remain <= 0)
1072 break;
1073
Eric Anholteb014592009-03-10 11:44:52 -07001074 /* Operation in this page
1075 *
Eric Anholteb014592009-03-10 11:44:52 -07001076 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -07001077 * page_length = bytes to copy for this page
1078 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +01001079 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -07001080 page_length = remain;
1081 if ((shmem_page_offset + page_length) > PAGE_SIZE)
1082 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -07001083
Daniel Vetter8461d222011-12-14 13:57:32 +01001084 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
1085 (page_to_phys(page) & (1 << 17)) != 0;
1086
Daniel Vetterd174bd62012-03-25 19:47:40 +02001087 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
1088 user_data, page_do_bit17_swizzling,
1089 needs_clflush);
1090 if (ret == 0)
1091 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -07001092
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001093 mutex_unlock(&dev->struct_mutex);
1094
Jani Nikulad330a952014-01-21 11:24:25 +02001095 if (likely(!i915.prefault_disable) && !prefaulted) {
Al Viro4bce9f62016-09-17 18:02:44 -04001096 ret = fault_in_pages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +02001097 /* Userspace is tricking us, but we've already clobbered
1098 * its pages with the prefault and promised to write the
1099 * data up to the first fault. Hence ignore any errors
1100 * and just continue. */
1101 (void)ret;
1102 prefaulted = 1;
1103 }
1104
Daniel Vetterd174bd62012-03-25 19:47:40 +02001105 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
1106 user_data, page_do_bit17_swizzling,
1107 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -07001108
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001109 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001110
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001111 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +01001112 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +01001113
Chris Wilson17793c92014-03-07 08:30:36 +00001114next_page:
Eric Anholteb014592009-03-10 11:44:52 -07001115 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +01001116 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -07001117 offset += page_length;
1118 }
1119
Chris Wilson4f27b752010-10-14 15:26:45 +01001120out:
Chris Wilson43394c72016-08-18 17:16:47 +01001121 i915_gem_obj_finish_shmem_access(obj);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001122
Eric Anholteb014592009-03-10 11:44:52 -07001123 return ret;
1124}
1125
Eric Anholt673a3942008-07-30 12:06:12 -07001126/**
1127 * Reads data from the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001128 * @dev: drm device pointer
1129 * @data: ioctl data blob
1130 * @file: drm file pointer
Eric Anholt673a3942008-07-30 12:06:12 -07001131 *
1132 * On error, the contents of *data are undefined.
1133 */
1134int
1135i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001136 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001137{
1138 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001139 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +01001140 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001141
Chris Wilson51311d02010-11-17 09:10:42 +00001142 if (args->size == 0)
1143 return 0;
1144
1145 if (!access_ok(VERIFY_WRITE,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001146 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001147 args->size))
1148 return -EFAULT;
1149
Chris Wilson03ac0642016-07-20 13:31:51 +01001150 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001151 if (!obj)
1152 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001153
Chris Wilson7dcd2492010-09-26 20:21:44 +01001154 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +00001155 if (args->offset > obj->base.size ||
1156 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001157 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001158 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001159 }
1160
Chris Wilsondb53a302011-02-03 11:57:46 +00001161 trace_i915_gem_object_pread(obj, args->offset, args->size);
1162
Chris Wilsone95433c2016-10-28 13:58:27 +01001163 ret = i915_gem_object_wait(obj,
1164 I915_WAIT_INTERRUPTIBLE,
1165 MAX_SCHEDULE_TIMEOUT,
1166 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001167 if (ret)
1168 goto err;
1169
1170 ret = i915_mutex_lock_interruptible(dev);
1171 if (ret)
1172 goto err;
1173
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001174 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -07001175
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301176 /* pread for non shmem backed objects */
Chris Wilson9c870d02016-10-24 13:42:15 +01001177 if (ret == -EFAULT || ret == -ENODEV)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301178 ret = i915_gem_gtt_pread(dev, obj, args->size,
1179 args->offset, args->data_ptr);
1180
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001181 i915_gem_object_put(obj);
Chris Wilson4f27b752010-10-14 15:26:45 +01001182 mutex_unlock(&dev->struct_mutex);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001183
1184 return ret;
1185
1186err:
1187 i915_gem_object_put_unlocked(obj);
Eric Anholteb014592009-03-10 11:44:52 -07001188 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001189}
1190
Keith Packard0839ccb2008-10-30 19:38:48 -07001191/* This is the fast write path which cannot handle
1192 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001193 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001194
Keith Packard0839ccb2008-10-30 19:38:48 -07001195static inline int
1196fast_user_write(struct io_mapping *mapping,
1197 loff_t page_base, int page_offset,
1198 char __user *user_data,
1199 int length)
1200{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001201 void __iomem *vaddr_atomic;
1202 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -07001203 unsigned long unwritten;
1204
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07001205 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001206 /* We can use the cpu mem copy function because this is X86. */
1207 vaddr = (void __force*)vaddr_atomic + page_offset;
1208 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -07001209 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07001210 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001211 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -07001212}
1213
Eric Anholt3de09aa2009-03-09 09:42:23 -07001214/**
1215 * This is the fast pwrite path, where we copy the data directly from the
1216 * user into the GTT, uncached.
Daniel Vetter62f90b32016-07-15 21:48:07 +02001217 * @i915: i915 device private data
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001218 * @obj: i915 gem object
1219 * @args: pwrite arguments structure
1220 * @file: drm file pointer
Eric Anholt3de09aa2009-03-09 09:42:23 -07001221 */
Eric Anholt673a3942008-07-30 12:06:12 -07001222static int
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301223i915_gem_gtt_pwrite_fast(struct drm_i915_private *i915,
Chris Wilson05394f32010-11-08 19:18:58 +00001224 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -07001225 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +00001226 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001227{
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301228 struct i915_ggtt *ggtt = &i915->ggtt;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301229 struct drm_device *dev = obj->base.dev;
Chris Wilson058d88c2016-08-15 10:49:06 +01001230 struct i915_vma *vma;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301231 struct drm_mm_node node;
1232 uint64_t remain, offset;
Eric Anholt673a3942008-07-30 12:06:12 -07001233 char __user *user_data;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301234 int ret;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301235 bool hit_slow_path = false;
1236
Chris Wilson3e510a82016-08-05 10:14:23 +01001237 if (i915_gem_object_is_tiled(obj))
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301238 return -EFAULT;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001239
Chris Wilson9c870d02016-10-24 13:42:15 +01001240 intel_runtime_pm_get(i915);
Chris Wilson058d88c2016-08-15 10:49:06 +01001241 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilsonde895082016-08-04 16:32:34 +01001242 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +01001243 if (!IS_ERR(vma)) {
1244 node.start = i915_ggtt_offset(vma);
1245 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +01001246 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +01001247 if (ret) {
1248 i915_vma_unpin(vma);
1249 vma = ERR_PTR(ret);
1250 }
1251 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001252 if (IS_ERR(vma)) {
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301253 ret = insert_mappable_node(i915, &node, PAGE_SIZE);
1254 if (ret)
1255 goto out;
1256
1257 ret = i915_gem_object_get_pages(obj);
1258 if (ret) {
1259 remove_mappable_node(&node);
1260 goto out;
1261 }
1262
1263 i915_gem_object_pin_pages(obj);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301264 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001265
1266 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1267 if (ret)
1268 goto out_unpin;
1269
Chris Wilsonb19482d2016-08-18 17:16:43 +01001270 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301271 obj->dirty = true;
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001272
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301273 user_data = u64_to_user_ptr(args->data_ptr);
1274 offset = args->offset;
1275 remain = args->size;
1276 while (remain) {
Eric Anholt673a3942008-07-30 12:06:12 -07001277 /* Operation in this page
1278 *
Keith Packard0839ccb2008-10-30 19:38:48 -07001279 * page_base = page offset within aperture
1280 * page_offset = offset within page
1281 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -07001282 */
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301283 u32 page_base = node.start;
1284 unsigned page_offset = offset_in_page(offset);
1285 unsigned page_length = PAGE_SIZE - page_offset;
1286 page_length = remain < page_length ? remain : page_length;
1287 if (node.allocated) {
1288 wmb(); /* flush the write before we modify the GGTT */
1289 ggtt->base.insert_page(&ggtt->base,
1290 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
1291 node.start, I915_CACHE_NONE, 0);
1292 wmb(); /* flush modifications to the GGTT (insert_page) */
1293 } else {
1294 page_base += offset & PAGE_MASK;
1295 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001296 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -07001297 * source page isn't available. Return the error and we'll
1298 * retry in the slow path.
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301299 * If the object is non-shmem backed, we retry again with the
1300 * path that handles page fault.
Keith Packard0839ccb2008-10-30 19:38:48 -07001301 */
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001302 if (fast_user_write(&ggtt->mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +02001303 page_offset, user_data, page_length)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301304 hit_slow_path = true;
1305 mutex_unlock(&dev->struct_mutex);
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001306 if (slow_user_access(&ggtt->mappable,
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301307 page_base,
1308 page_offset, user_data,
1309 page_length, true)) {
1310 ret = -EFAULT;
1311 mutex_lock(&dev->struct_mutex);
1312 goto out_flush;
1313 }
1314
1315 mutex_lock(&dev->struct_mutex);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001316 }
Eric Anholt673a3942008-07-30 12:06:12 -07001317
Keith Packard0839ccb2008-10-30 19:38:48 -07001318 remain -= page_length;
1319 user_data += page_length;
1320 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -07001321 }
Eric Anholt673a3942008-07-30 12:06:12 -07001322
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001323out_flush:
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301324 if (hit_slow_path) {
1325 if (ret == 0 &&
1326 (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) {
1327 /* The user has modified the object whilst we tried
1328 * reading from it, and we now have no idea what domain
1329 * the pages should be in. As we have just been touching
1330 * them directly, flush everything back to the GTT
1331 * domain.
1332 */
1333 ret = i915_gem_object_set_to_gtt_domain(obj, false);
1334 }
1335 }
1336
Chris Wilsonb19482d2016-08-18 17:16:43 +01001337 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001338out_unpin:
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301339 if (node.allocated) {
1340 wmb();
1341 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001342 node.start, node.size);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301343 i915_gem_object_unpin_pages(obj);
1344 remove_mappable_node(&node);
1345 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001346 i915_vma_unpin(vma);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301347 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001348out:
Chris Wilson9c870d02016-10-24 13:42:15 +01001349 intel_runtime_pm_put(i915);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001350 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001351}
1352
Daniel Vetterd174bd62012-03-25 19:47:40 +02001353/* Per-page copy function for the shmem pwrite fastpath.
1354 * Flushes invalid cachelines before writing to the target if
1355 * needs_clflush_before is set and flushes out any written cachelines after
1356 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -07001357static int
Daniel Vetterd174bd62012-03-25 19:47:40 +02001358shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
1359 char __user *user_data,
1360 bool page_do_bit17_swizzling,
1361 bool needs_clflush_before,
1362 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001363{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001364 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001365 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001366
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001367 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +02001368 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001369
Daniel Vetterd174bd62012-03-25 19:47:40 +02001370 vaddr = kmap_atomic(page);
1371 if (needs_clflush_before)
1372 drm_clflush_virt_range(vaddr + shmem_page_offset,
1373 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +00001374 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
1375 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001376 if (needs_clflush_after)
1377 drm_clflush_virt_range(vaddr + shmem_page_offset,
1378 page_length);
1379 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001380
Chris Wilson755d2212012-09-04 21:02:55 +01001381 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001382}
1383
Daniel Vetterd174bd62012-03-25 19:47:40 +02001384/* Only difference to the fast-path function is that this can handle bit17
1385 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -07001386static int
Daniel Vetterd174bd62012-03-25 19:47:40 +02001387shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
1388 char __user *user_data,
1389 bool page_do_bit17_swizzling,
1390 bool needs_clflush_before,
1391 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001392{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001393 char *vaddr;
1394 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001395
Daniel Vetterd174bd62012-03-25 19:47:40 +02001396 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001397 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +02001398 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
1399 page_length,
1400 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001401 if (page_do_bit17_swizzling)
1402 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001403 user_data,
1404 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001405 else
1406 ret = __copy_from_user(vaddr + shmem_page_offset,
1407 user_data,
1408 page_length);
1409 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +02001410 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
1411 page_length,
1412 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001413 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001414
Chris Wilson755d2212012-09-04 21:02:55 +01001415 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001416}
1417
Eric Anholt40123c12009-03-09 13:42:30 -07001418static int
Daniel Vettere244a442012-03-25 19:47:28 +02001419i915_gem_shmem_pwrite(struct drm_device *dev,
1420 struct drm_i915_gem_object *obj,
1421 struct drm_i915_gem_pwrite *args,
1422 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -07001423{
Eric Anholt40123c12009-03-09 13:42:30 -07001424 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +01001425 loff_t offset;
1426 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +01001427 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +01001428 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +02001429 int hit_slowpath = 0;
Chris Wilson43394c72016-08-18 17:16:47 +01001430 unsigned int needs_clflush;
Imre Deak67d5a502013-02-18 19:28:02 +02001431 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -07001432
Chris Wilson43394c72016-08-18 17:16:47 +01001433 ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush);
1434 if (ret)
1435 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001436
Daniel Vetter8c599672011-12-14 13:57:31 +01001437 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Chris Wilson43394c72016-08-18 17:16:47 +01001438 user_data = u64_to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -07001439 offset = args->offset;
Chris Wilson43394c72016-08-18 17:16:47 +01001440 remain = args->size;
Eric Anholt40123c12009-03-09 13:42:30 -07001441
Imre Deak67d5a502013-02-18 19:28:02 +02001442 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
1443 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +02001444 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +02001445 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001446
Chris Wilson9da3da62012-06-01 15:20:22 +01001447 if (remain <= 0)
1448 break;
1449
Eric Anholt40123c12009-03-09 13:42:30 -07001450 /* Operation in this page
1451 *
Eric Anholt40123c12009-03-09 13:42:30 -07001452 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -07001453 * page_length = bytes to copy for this page
1454 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +01001455 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -07001456
1457 page_length = remain;
1458 if ((shmem_page_offset + page_length) > PAGE_SIZE)
1459 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -07001460
Daniel Vetter58642882012-03-25 19:47:37 +02001461 /* If we don't overwrite a cacheline completely we need to be
1462 * careful to have up-to-date data by first clflushing. Don't
1463 * overcomplicate things and flush the entire patch. */
Chris Wilson43394c72016-08-18 17:16:47 +01001464 partial_cacheline_write = needs_clflush & CLFLUSH_BEFORE &&
Daniel Vetter58642882012-03-25 19:47:37 +02001465 ((shmem_page_offset | page_length)
1466 & (boot_cpu_data.x86_clflush_size - 1));
1467
Daniel Vetter8c599672011-12-14 13:57:31 +01001468 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
1469 (page_to_phys(page) & (1 << 17)) != 0;
1470
Daniel Vetterd174bd62012-03-25 19:47:40 +02001471 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
1472 user_data, page_do_bit17_swizzling,
1473 partial_cacheline_write,
Chris Wilson43394c72016-08-18 17:16:47 +01001474 needs_clflush & CLFLUSH_AFTER);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001475 if (ret == 0)
1476 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001477
Daniel Vettere244a442012-03-25 19:47:28 +02001478 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001479 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001480 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1481 user_data, page_do_bit17_swizzling,
1482 partial_cacheline_write,
Chris Wilson43394c72016-08-18 17:16:47 +01001483 needs_clflush & CLFLUSH_AFTER);
Eric Anholt40123c12009-03-09 13:42:30 -07001484
Daniel Vettere244a442012-03-25 19:47:28 +02001485 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001486
Chris Wilson755d2212012-09-04 21:02:55 +01001487 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001488 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001489
Chris Wilson17793c92014-03-07 08:30:36 +00001490next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001491 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001492 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001493 offset += page_length;
1494 }
1495
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001496out:
Chris Wilson43394c72016-08-18 17:16:47 +01001497 i915_gem_obj_finish_shmem_access(obj);
Chris Wilson755d2212012-09-04 21:02:55 +01001498
Daniel Vettere244a442012-03-25 19:47:28 +02001499 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001500 /*
1501 * Fixup: Flush cpu caches in case we didn't flush the dirty
1502 * cachelines in-line while writing and the object moved
1503 * out of the cpu write domain while we've dropped the lock.
1504 */
Chris Wilson43394c72016-08-18 17:16:47 +01001505 if (!(needs_clflush & CLFLUSH_AFTER) &&
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001506 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001507 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson43394c72016-08-18 17:16:47 +01001508 needs_clflush |= CLFLUSH_AFTER;
Daniel Vettere244a442012-03-25 19:47:28 +02001509 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001510 }
Eric Anholt40123c12009-03-09 13:42:30 -07001511
Chris Wilson43394c72016-08-18 17:16:47 +01001512 if (needs_clflush & CLFLUSH_AFTER)
Chris Wilsonc0336662016-05-06 15:40:21 +01001513 i915_gem_chipset_flush(to_i915(dev));
Daniel Vetter58642882012-03-25 19:47:37 +02001514
Rodrigo Vivide152b62015-07-07 16:28:51 -07001515 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Eric Anholt40123c12009-03-09 13:42:30 -07001516 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001517}
1518
1519/**
1520 * Writes data to the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001521 * @dev: drm device
1522 * @data: ioctl data blob
1523 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001524 *
1525 * On error, the contents of the buffer that were to be modified are undefined.
1526 */
1527int
1528i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001529 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001530{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001531 struct drm_i915_private *dev_priv = to_i915(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001532 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001533 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001534 int ret;
1535
1536 if (args->size == 0)
1537 return 0;
1538
1539 if (!access_ok(VERIFY_READ,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001540 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001541 args->size))
1542 return -EFAULT;
1543
Jani Nikulad330a952014-01-21 11:24:25 +02001544 if (likely(!i915.prefault_disable)) {
Al Viro4bce9f62016-09-17 18:02:44 -04001545 ret = fault_in_pages_readable(u64_to_user_ptr(args->data_ptr),
Xiong Zhang0b74b502013-07-19 13:51:24 +08001546 args->size);
1547 if (ret)
1548 return -EFAULT;
1549 }
Eric Anholt673a3942008-07-30 12:06:12 -07001550
Chris Wilson03ac0642016-07-20 13:31:51 +01001551 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001552 if (!obj)
1553 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001554
Chris Wilson7dcd2492010-09-26 20:21:44 +01001555 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001556 if (args->offset > obj->base.size ||
1557 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001558 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001559 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001560 }
1561
Chris Wilsondb53a302011-02-03 11:57:46 +00001562 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1563
Chris Wilsone95433c2016-10-28 13:58:27 +01001564 ret = i915_gem_object_wait(obj,
1565 I915_WAIT_INTERRUPTIBLE |
1566 I915_WAIT_ALL,
1567 MAX_SCHEDULE_TIMEOUT,
1568 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001569 if (ret)
1570 goto err;
1571
1572 intel_runtime_pm_get(dev_priv);
1573
1574 ret = i915_mutex_lock_interruptible(dev);
1575 if (ret)
1576 goto err_rpm;
1577
Daniel Vetter935aaa62012-03-25 19:47:35 +02001578 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001579 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1580 * it would end up going through the fenced access, and we'll get
1581 * different detiling behavior between reading and writing.
1582 * pread/pwrite currently are reading and writing from the CPU
1583 * perspective, requiring manual detiling by the client.
1584 */
Chris Wilson6eae0052016-06-20 15:05:52 +01001585 if (!i915_gem_object_has_struct_page(obj) ||
Chris Wilson9c870d02016-10-24 13:42:15 +01001586 cpu_write_needs_clflush(obj))
Daniel Vetter935aaa62012-03-25 19:47:35 +02001587 /* Note that the gtt paths might fail with non-page-backed user
1588 * pointers (e.g. gtt mappings when moving data between
Chris Wilson9c870d02016-10-24 13:42:15 +01001589 * textures). Fallback to the shmem path in that case.
1590 */
1591 ret = i915_gem_gtt_pwrite_fast(dev_priv, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -07001592
Chris Wilsond1054ee2016-07-16 18:42:36 +01001593 if (ret == -EFAULT || ret == -ENOSPC) {
Chris Wilson6a2c4232014-11-04 04:51:40 -08001594 if (obj->phys_handle)
1595 ret = i915_gem_phys_pwrite(obj, args, file);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301596 else
Chris Wilson43394c72016-08-18 17:16:47 +01001597 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Chris Wilson6a2c4232014-11-04 04:51:40 -08001598 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001599
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001600 i915_gem_object_put(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001601 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001602 intel_runtime_pm_put(dev_priv);
1603
Eric Anholt673a3942008-07-30 12:06:12 -07001604 return ret;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001605
1606err_rpm:
1607 intel_runtime_pm_put(dev_priv);
1608err:
1609 i915_gem_object_put_unlocked(obj);
1610 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001611}
1612
Chris Wilsond243ad82016-08-18 17:16:44 +01001613static inline enum fb_op_origin
Chris Wilsonaeecc962016-06-17 14:46:39 -03001614write_origin(struct drm_i915_gem_object *obj, unsigned domain)
1615{
Chris Wilson50349242016-08-18 17:17:04 +01001616 return (domain == I915_GEM_DOMAIN_GTT ?
1617 obj->frontbuffer_ggtt_origin : ORIGIN_CPU);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001618}
1619
Eric Anholt673a3942008-07-30 12:06:12 -07001620/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001621 * Called when user space prepares to use an object with the CPU, either
1622 * through the mmap ioctl's mapping or a GTT mapping.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001623 * @dev: drm device
1624 * @data: ioctl data blob
1625 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001626 */
1627int
1628i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001629 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001630{
1631 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001632 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001633 uint32_t read_domains = args->read_domains;
1634 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001635 int ret;
1636
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001637 /* Only handle setting domains to types used by the CPU. */
Chris Wilsonb8f90962016-08-05 10:14:07 +01001638 if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001639 return -EINVAL;
1640
1641 /* Having something in the write domain implies it's in the read
1642 * domain, and only that read domain. Enforce that in the request.
1643 */
1644 if (write_domain != 0 && read_domains != write_domain)
1645 return -EINVAL;
1646
Chris Wilson03ac0642016-07-20 13:31:51 +01001647 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001648 if (!obj)
1649 return -ENOENT;
Jesse Barnes652c3932009-08-17 13:31:43 -07001650
Chris Wilson3236f572012-08-24 09:35:09 +01001651 /* Try to flush the object off the GPU without holding the lock.
1652 * We will repeat the flush holding the lock in the normal manner
1653 * to catch cases where we are gazumped.
1654 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001655 ret = i915_gem_object_wait(obj,
1656 I915_WAIT_INTERRUPTIBLE |
1657 (write_domain ? I915_WAIT_ALL : 0),
1658 MAX_SCHEDULE_TIMEOUT,
1659 to_rps_client(file));
Chris Wilson3236f572012-08-24 09:35:09 +01001660 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001661 goto err;
1662
1663 ret = i915_mutex_lock_interruptible(dev);
1664 if (ret)
1665 goto err;
Chris Wilson3236f572012-08-24 09:35:09 +01001666
Chris Wilson43566de2015-01-02 16:29:29 +05301667 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001668 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301669 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001670 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001671
Daniel Vetter031b6982015-06-26 19:35:16 +02001672 if (write_domain != 0)
Chris Wilsonaeecc962016-06-17 14:46:39 -03001673 intel_fb_obj_invalidate(obj, write_origin(obj, write_domain));
Daniel Vetter031b6982015-06-26 19:35:16 +02001674
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001675 i915_gem_object_put(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001676 mutex_unlock(&dev->struct_mutex);
1677 return ret;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001678
1679err:
1680 i915_gem_object_put_unlocked(obj);
1681 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001682}
1683
1684/**
1685 * Called when user space has done writes to this buffer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001686 * @dev: drm device
1687 * @data: ioctl data blob
1688 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001689 */
1690int
1691i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001692 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001693{
1694 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001695 struct drm_i915_gem_object *obj;
Chris Wilsonc21724c2016-08-05 10:14:19 +01001696 int err = 0;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001697
Chris Wilson03ac0642016-07-20 13:31:51 +01001698 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001699 if (!obj)
1700 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001701
Eric Anholt673a3942008-07-30 12:06:12 -07001702 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilsonc21724c2016-08-05 10:14:19 +01001703 if (READ_ONCE(obj->pin_display)) {
1704 err = i915_mutex_lock_interruptible(dev);
1705 if (!err) {
1706 i915_gem_object_flush_cpu_write_domain(obj);
1707 mutex_unlock(&dev->struct_mutex);
1708 }
1709 }
Eric Anholte47c68e2008-11-14 13:35:19 -08001710
Chris Wilsonc21724c2016-08-05 10:14:19 +01001711 i915_gem_object_put_unlocked(obj);
1712 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001713}
1714
1715/**
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001716 * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address
1717 * it is mapped to.
1718 * @dev: drm device
1719 * @data: ioctl data blob
1720 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001721 *
1722 * While the mapping holds a reference on the contents of the object, it doesn't
1723 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001724 *
1725 * IMPORTANT:
1726 *
1727 * DRM driver writers who look a this function as an example for how to do GEM
1728 * mmap support, please don't implement mmap support like here. The modern way
1729 * to implement DRM mmap support is with an mmap offset ioctl (like
1730 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1731 * That way debug tooling like valgrind will understand what's going on, hiding
1732 * the mmap call in a driver private ioctl will break that. The i915 driver only
1733 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001734 */
1735int
1736i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001737 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001738{
1739 struct drm_i915_gem_mmap *args = data;
Chris Wilson03ac0642016-07-20 13:31:51 +01001740 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001741 unsigned long addr;
1742
Akash Goel1816f922015-01-02 16:29:30 +05301743 if (args->flags & ~(I915_MMAP_WC))
1744 return -EINVAL;
1745
Borislav Petkov568a58e2016-03-29 17:42:01 +02001746 if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT))
Akash Goel1816f922015-01-02 16:29:30 +05301747 return -ENODEV;
1748
Chris Wilson03ac0642016-07-20 13:31:51 +01001749 obj = i915_gem_object_lookup(file, args->handle);
1750 if (!obj)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001751 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001752
Daniel Vetter1286ff72012-05-10 15:25:09 +02001753 /* prime objects have no backing filp to GEM mmap
1754 * pages from.
1755 */
Chris Wilson03ac0642016-07-20 13:31:51 +01001756 if (!obj->base.filp) {
Chris Wilson34911fd2016-07-20 13:31:54 +01001757 i915_gem_object_put_unlocked(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001758 return -EINVAL;
1759 }
1760
Chris Wilson03ac0642016-07-20 13:31:51 +01001761 addr = vm_mmap(obj->base.filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001762 PROT_READ | PROT_WRITE, MAP_SHARED,
1763 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301764 if (args->flags & I915_MMAP_WC) {
1765 struct mm_struct *mm = current->mm;
1766 struct vm_area_struct *vma;
1767
Michal Hocko80a89a52016-05-23 16:26:11 -07001768 if (down_write_killable(&mm->mmap_sem)) {
Chris Wilson34911fd2016-07-20 13:31:54 +01001769 i915_gem_object_put_unlocked(obj);
Michal Hocko80a89a52016-05-23 16:26:11 -07001770 return -EINTR;
1771 }
Akash Goel1816f922015-01-02 16:29:30 +05301772 vma = find_vma(mm, addr);
1773 if (vma)
1774 vma->vm_page_prot =
1775 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1776 else
1777 addr = -ENOMEM;
1778 up_write(&mm->mmap_sem);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001779
1780 /* This may race, but that's ok, it only gets set */
Chris Wilson50349242016-08-18 17:17:04 +01001781 WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU);
Akash Goel1816f922015-01-02 16:29:30 +05301782 }
Chris Wilson34911fd2016-07-20 13:31:54 +01001783 i915_gem_object_put_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001784 if (IS_ERR((void *)addr))
1785 return addr;
1786
1787 args->addr_ptr = (uint64_t) addr;
1788
1789 return 0;
1790}
1791
Chris Wilson03af84f2016-08-18 17:17:01 +01001792static unsigned int tile_row_pages(struct drm_i915_gem_object *obj)
1793{
1794 u64 size;
1795
1796 size = i915_gem_object_get_stride(obj);
1797 size *= i915_gem_object_get_tiling(obj) == I915_TILING_Y ? 32 : 8;
1798
1799 return size >> PAGE_SHIFT;
1800}
1801
Jesse Barnesde151cf2008-11-12 10:03:55 -08001802/**
Chris Wilson4cc69072016-08-25 19:05:19 +01001803 * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps
1804 *
1805 * A history of the GTT mmap interface:
1806 *
1807 * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to
1808 * aligned and suitable for fencing, and still fit into the available
1809 * mappable space left by the pinned display objects. A classic problem
1810 * we called the page-fault-of-doom where we would ping-pong between
1811 * two objects that could not fit inside the GTT and so the memcpy
1812 * would page one object in at the expense of the other between every
1813 * single byte.
1814 *
1815 * 1 - Objects can be any size, and have any compatible fencing (X Y, or none
1816 * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the
1817 * object is too large for the available space (or simply too large
1818 * for the mappable aperture!), a view is created instead and faulted
1819 * into userspace. (This view is aligned and sized appropriately for
1820 * fenced access.)
1821 *
1822 * Restrictions:
1823 *
1824 * * snoopable objects cannot be accessed via the GTT. It can cause machine
1825 * hangs on some architectures, corruption on others. An attempt to service
1826 * a GTT page fault from a snoopable object will generate a SIGBUS.
1827 *
1828 * * the object must be able to fit into RAM (physical memory, though no
1829 * limited to the mappable aperture).
1830 *
1831 *
1832 * Caveats:
1833 *
1834 * * a new GTT page fault will synchronize rendering from the GPU and flush
1835 * all data to system memory. Subsequent access will not be synchronized.
1836 *
1837 * * all mappings are revoked on runtime device suspend.
1838 *
1839 * * there are only 8, 16 or 32 fence registers to share between all users
1840 * (older machines require fence register for display and blitter access
1841 * as well). Contention of the fence registers will cause the previous users
1842 * to be unmapped and any new access will generate new page faults.
1843 *
1844 * * running out of memory while servicing a fault may generate a SIGBUS,
1845 * rather than the expected SIGSEGV.
1846 */
1847int i915_gem_mmap_gtt_version(void)
1848{
1849 return 1;
1850}
1851
1852/**
Jesse Barnesde151cf2008-11-12 10:03:55 -08001853 * i915_gem_fault - fault a page into the GTT
Chris Wilson058d88c2016-08-15 10:49:06 +01001854 * @area: CPU VMA in question
Geliang Tangd9072a32015-09-15 05:58:44 -07001855 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001856 *
1857 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1858 * from userspace. The fault handler takes care of binding the object to
1859 * the GTT (if needed), allocating and programming a fence register (again,
1860 * only if needed based on whether the old reg is still valid or the object
1861 * is tiled) and inserting a new PTE into the faulting process.
1862 *
1863 * Note that the faulting process may involve evicting existing objects
1864 * from the GTT and/or fence registers to make room. So performance may
1865 * suffer if the GTT working set is large or there are few fence registers
1866 * left.
Chris Wilson4cc69072016-08-25 19:05:19 +01001867 *
1868 * The current feature set supported by i915_gem_fault() and thus GTT mmaps
1869 * is exposed via I915_PARAM_MMAP_GTT_VERSION (see i915_gem_mmap_gtt_version).
Jesse Barnesde151cf2008-11-12 10:03:55 -08001870 */
Chris Wilson058d88c2016-08-15 10:49:06 +01001871int i915_gem_fault(struct vm_area_struct *area, struct vm_fault *vmf)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001872{
Chris Wilson03af84f2016-08-18 17:17:01 +01001873#define MIN_CHUNK_PAGES ((1 << 20) >> PAGE_SHIFT) /* 1 MiB */
Chris Wilson058d88c2016-08-15 10:49:06 +01001874 struct drm_i915_gem_object *obj = to_intel_bo(area->vm_private_data);
Chris Wilson05394f32010-11-08 19:18:58 +00001875 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001876 struct drm_i915_private *dev_priv = to_i915(dev);
1877 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001878 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001879 struct i915_vma *vma;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001880 pgoff_t page_offset;
Chris Wilson82118872016-08-18 17:17:05 +01001881 unsigned int flags;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001882 int ret;
Paulo Zanonif65c9162013-11-27 18:20:34 -02001883
Jesse Barnesde151cf2008-11-12 10:03:55 -08001884 /* We don't use vmf->pgoff since that has the fake offset */
Chris Wilson058d88c2016-08-15 10:49:06 +01001885 page_offset = ((unsigned long)vmf->virtual_address - area->vm_start) >>
Jesse Barnesde151cf2008-11-12 10:03:55 -08001886 PAGE_SHIFT;
1887
Chris Wilsondb53a302011-02-03 11:57:46 +00001888 trace_i915_gem_object_fault(obj, page_offset, true, write);
1889
Chris Wilson6e4930f2014-02-07 18:37:06 -02001890 /* Try to flush the object off the GPU first without holding the lock.
Chris Wilsonb8f90962016-08-05 10:14:07 +01001891 * Upon acquiring the lock, we will perform our sanity checks and then
Chris Wilson6e4930f2014-02-07 18:37:06 -02001892 * repeat the flush holding the lock in the normal manner to catch cases
1893 * where we are gazumped.
1894 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001895 ret = i915_gem_object_wait(obj,
1896 I915_WAIT_INTERRUPTIBLE,
1897 MAX_SCHEDULE_TIMEOUT,
1898 NULL);
Chris Wilson6e4930f2014-02-07 18:37:06 -02001899 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001900 goto err;
1901
1902 intel_runtime_pm_get(dev_priv);
1903
1904 ret = i915_mutex_lock_interruptible(dev);
1905 if (ret)
1906 goto err_rpm;
Chris Wilson6e4930f2014-02-07 18:37:06 -02001907
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001908 /* Access to snoopable pages through the GTT is incoherent. */
1909 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001910 ret = -EFAULT;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001911 goto err_unlock;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001912 }
1913
Chris Wilson82118872016-08-18 17:17:05 +01001914 /* If the object is smaller than a couple of partial vma, it is
1915 * not worth only creating a single partial vma - we may as well
1916 * clear enough space for the full object.
1917 */
1918 flags = PIN_MAPPABLE;
1919 if (obj->base.size > 2 * MIN_CHUNK_PAGES << PAGE_SHIFT)
1920 flags |= PIN_NONBLOCK | PIN_NONFAULT;
1921
Chris Wilsona61007a2016-08-18 17:17:02 +01001922 /* Now pin it into the GTT as needed */
Chris Wilson82118872016-08-18 17:17:05 +01001923 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, flags);
Chris Wilsona61007a2016-08-18 17:17:02 +01001924 if (IS_ERR(vma)) {
1925 struct i915_ggtt_view view;
Chris Wilson03af84f2016-08-18 17:17:01 +01001926 unsigned int chunk_size;
1927
Chris Wilsona61007a2016-08-18 17:17:02 +01001928 /* Use a partial view if it is bigger than available space */
Chris Wilson03af84f2016-08-18 17:17:01 +01001929 chunk_size = MIN_CHUNK_PAGES;
1930 if (i915_gem_object_is_tiled(obj))
1931 chunk_size = max(chunk_size, tile_row_pages(obj));
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001932
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001933 memset(&view, 0, sizeof(view));
1934 view.type = I915_GGTT_VIEW_PARTIAL;
1935 view.params.partial.offset = rounddown(page_offset, chunk_size);
1936 view.params.partial.size =
Chris Wilsona61007a2016-08-18 17:17:02 +01001937 min_t(unsigned int, chunk_size,
Chris Wilson908b1232016-10-11 10:06:56 +01001938 vma_pages(area) - view.params.partial.offset);
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001939
Chris Wilsonaa136d92016-08-18 17:17:03 +01001940 /* If the partial covers the entire object, just create a
1941 * normal VMA.
1942 */
1943 if (chunk_size >= obj->base.size >> PAGE_SHIFT)
1944 view.type = I915_GGTT_VIEW_NORMAL;
1945
Chris Wilson50349242016-08-18 17:17:04 +01001946 /* Userspace is now writing through an untracked VMA, abandon
1947 * all hope that the hardware is able to track future writes.
1948 */
1949 obj->frontbuffer_ggtt_origin = ORIGIN_CPU;
1950
Chris Wilsona61007a2016-08-18 17:17:02 +01001951 vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, PIN_MAPPABLE);
1952 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001953 if (IS_ERR(vma)) {
1954 ret = PTR_ERR(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001955 goto err_unlock;
Chris Wilson058d88c2016-08-15 10:49:06 +01001956 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001957
Chris Wilsonc9839302012-11-20 10:45:17 +00001958 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1959 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001960 goto err_unpin;
Chris Wilsonc9839302012-11-20 10:45:17 +00001961
Chris Wilson49ef5292016-08-18 17:17:00 +01001962 ret = i915_vma_get_fence(vma);
Chris Wilsonc9839302012-11-20 10:45:17 +00001963 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001964 goto err_unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001965
Chris Wilson275f0392016-10-24 13:42:14 +01001966 /* Mark as being mmapped into userspace for later revocation */
Chris Wilson9c870d02016-10-24 13:42:15 +01001967 assert_rpm_wakelock_held(dev_priv);
Chris Wilson275f0392016-10-24 13:42:14 +01001968 if (list_empty(&obj->userfault_link))
1969 list_add(&obj->userfault_link, &dev_priv->mm.userfault_list);
Chris Wilson275f0392016-10-24 13:42:14 +01001970
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001971 /* Finally, remap it using the new GTT offset */
Chris Wilsonc58305a2016-08-19 16:54:28 +01001972 ret = remap_io_mapping(area,
1973 area->vm_start + (vma->ggtt_view.params.partial.offset << PAGE_SHIFT),
1974 (ggtt->mappable_base + vma->node.start) >> PAGE_SHIFT,
1975 min_t(u64, vma->size, area->vm_end - area->vm_start),
1976 &ggtt->mappable);
Chris Wilsona61007a2016-08-18 17:17:02 +01001977
Chris Wilsonb8f90962016-08-05 10:14:07 +01001978err_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +01001979 __i915_vma_unpin(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001980err_unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001981 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001982err_rpm:
1983 intel_runtime_pm_put(dev_priv);
1984err:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001985 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001986 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001987 /*
1988 * We eat errors when the gpu is terminally wedged to avoid
1989 * userspace unduly crashing (gl has no provisions for mmaps to
1990 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1991 * and so needs to be reported.
1992 */
1993 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001994 ret = VM_FAULT_SIGBUS;
1995 break;
1996 }
Chris Wilson045e7692010-11-07 09:18:22 +00001997 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001998 /*
1999 * EAGAIN means the gpu is hung and we'll wait for the error
2000 * handler to reset everything when re-faulting in
2001 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00002002 */
Chris Wilsonc7150892009-09-23 00:43:56 +01002003 case 0:
2004 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00002005 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03002006 case -EBUSY:
2007 /*
2008 * EBUSY is ok: this just means that another thread
2009 * already did the job.
2010 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02002011 ret = VM_FAULT_NOPAGE;
2012 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002013 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02002014 ret = VM_FAULT_OOM;
2015 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02002016 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00002017 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02002018 ret = VM_FAULT_SIGBUS;
2019 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002020 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02002021 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02002022 ret = VM_FAULT_SIGBUS;
2023 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002024 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02002025 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002026}
2027
2028/**
Chris Wilson901782b2009-07-10 08:18:50 +01002029 * i915_gem_release_mmap - remove physical page mappings
2030 * @obj: obj in question
2031 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002032 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01002033 * relinquish ownership of the pages back to the system.
2034 *
2035 * It is vital that we remove the page mapping if we have mapped a tiled
2036 * object through the GTT and then lose the fence register due to
2037 * resource pressure. Similarly if the object has been moved out of the
2038 * aperture, than pages mapped into userspace must be revoked. Removing the
2039 * mapping will then trigger a page fault on the next user access, allowing
2040 * fixup by i915_gem_fault().
2041 */
Eric Anholtd05ca302009-07-10 13:02:26 -07002042void
Chris Wilson05394f32010-11-08 19:18:58 +00002043i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01002044{
Chris Wilson275f0392016-10-24 13:42:14 +01002045 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson275f0392016-10-24 13:42:14 +01002046
Chris Wilson349f2cc2016-04-13 17:35:12 +01002047 /* Serialisation between user GTT access and our code depends upon
2048 * revoking the CPU's PTE whilst the mutex is held. The next user
2049 * pagefault then has to wait until we release the mutex.
Chris Wilson9c870d02016-10-24 13:42:15 +01002050 *
2051 * Note that RPM complicates somewhat by adding an additional
2052 * requirement that operations to the GGTT be made holding the RPM
2053 * wakeref.
Chris Wilson349f2cc2016-04-13 17:35:12 +01002054 */
Chris Wilson275f0392016-10-24 13:42:14 +01002055 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson9c870d02016-10-24 13:42:15 +01002056 intel_runtime_pm_get(i915);
Chris Wilson349f2cc2016-04-13 17:35:12 +01002057
Chris Wilson3594a3e2016-10-24 13:42:16 +01002058 if (list_empty(&obj->userfault_link))
Chris Wilson9c870d02016-10-24 13:42:15 +01002059 goto out;
Chris Wilson901782b2009-07-10 08:18:50 +01002060
Chris Wilson3594a3e2016-10-24 13:42:16 +01002061 list_del_init(&obj->userfault_link);
David Herrmann6796cb12014-01-03 14:24:19 +01002062 drm_vma_node_unmap(&obj->base.vma_node,
2063 obj->base.dev->anon_inode->i_mapping);
Chris Wilson349f2cc2016-04-13 17:35:12 +01002064
2065 /* Ensure that the CPU's PTE are revoked and there are not outstanding
2066 * memory transactions from userspace before we return. The TLB
2067 * flushing implied above by changing the PTE above *should* be
2068 * sufficient, an extra barrier here just provides us with a bit
2069 * of paranoid documentation about our requirement to serialise
2070 * memory writes before touching registers / GSM.
2071 */
2072 wmb();
Chris Wilson9c870d02016-10-24 13:42:15 +01002073
2074out:
2075 intel_runtime_pm_put(i915);
Chris Wilson901782b2009-07-10 08:18:50 +01002076}
2077
Chris Wilson7c108fd2016-10-24 13:42:18 +01002078void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv)
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002079{
Chris Wilson3594a3e2016-10-24 13:42:16 +01002080 struct drm_i915_gem_object *obj, *on;
Chris Wilson7c108fd2016-10-24 13:42:18 +01002081 int i;
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002082
Chris Wilson3594a3e2016-10-24 13:42:16 +01002083 /*
2084 * Only called during RPM suspend. All users of the userfault_list
2085 * must be holding an RPM wakeref to ensure that this can not
2086 * run concurrently with themselves (and use the struct_mutex for
2087 * protection between themselves).
2088 */
2089
2090 list_for_each_entry_safe(obj, on,
2091 &dev_priv->mm.userfault_list, userfault_link) {
Chris Wilson275f0392016-10-24 13:42:14 +01002092 list_del_init(&obj->userfault_link);
Chris Wilson275f0392016-10-24 13:42:14 +01002093 drm_vma_node_unmap(&obj->base.vma_node,
2094 obj->base.dev->anon_inode->i_mapping);
Chris Wilson275f0392016-10-24 13:42:14 +01002095 }
Chris Wilson7c108fd2016-10-24 13:42:18 +01002096
2097 /* The fence will be lost when the device powers down. If any were
2098 * in use by hardware (i.e. they are pinned), we should not be powering
2099 * down! All other fences will be reacquired by the user upon waking.
2100 */
2101 for (i = 0; i < dev_priv->num_fence_regs; i++) {
2102 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
2103
2104 if (WARN_ON(reg->pin_count))
2105 continue;
2106
2107 if (!reg->vma)
2108 continue;
2109
2110 GEM_BUG_ON(!list_empty(&reg->vma->obj->userfault_link));
2111 reg->dirty = true;
2112 }
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002113}
2114
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002115/**
2116 * i915_gem_get_ggtt_size - return required global GTT size for an object
Chris Wilsona9f14812016-08-04 16:32:28 +01002117 * @dev_priv: i915 device
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002118 * @size: object size
2119 * @tiling_mode: tiling mode
2120 *
2121 * Return the required global GTT size for an object, taking into account
2122 * potential fence register mapping.
2123 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002124u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv,
2125 u64 size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00002126{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002127 u64 ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002128
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002129 GEM_BUG_ON(size == 0);
2130
Chris Wilsona9f14812016-08-04 16:32:28 +01002131 if (INTEL_GEN(dev_priv) >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002132 tiling_mode == I915_TILING_NONE)
2133 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002134
2135 /* Previous chips need a power-of-two fence region when tiling */
Chris Wilsona9f14812016-08-04 16:32:28 +01002136 if (IS_GEN3(dev_priv))
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002137 ggtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002138 else
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002139 ggtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002140
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002141 while (ggtt_size < size)
2142 ggtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002143
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002144 return ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002145}
2146
Jesse Barnesde151cf2008-11-12 10:03:55 -08002147/**
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002148 * i915_gem_get_ggtt_alignment - return required global GTT alignment
Chris Wilsona9f14812016-08-04 16:32:28 +01002149 * @dev_priv: i915 device
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002150 * @size: object size
2151 * @tiling_mode: tiling mode
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002152 * @fenced: is fenced alignment required or not
Jesse Barnesde151cf2008-11-12 10:03:55 -08002153 *
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002154 * Return the required global GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01002155 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002156 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002157u64 i915_gem_get_ggtt_alignment(struct drm_i915_private *dev_priv, u64 size,
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002158 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002159{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002160 GEM_BUG_ON(size == 0);
2161
Jesse Barnesde151cf2008-11-12 10:03:55 -08002162 /*
2163 * Minimum alignment is 4k (GTT page size), but might be greater
2164 * if a fence register is needed for the object.
2165 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002166 if (INTEL_GEN(dev_priv) >= 4 || (!fenced && IS_G33(dev_priv)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002167 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002168 return 4096;
2169
2170 /*
2171 * Previous chips need to be aligned to the size of the smallest
2172 * fence register that can contain the object.
2173 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002174 return i915_gem_get_ggtt_size(dev_priv, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002175}
2176
Chris Wilsond8cb5082012-08-11 15:41:03 +01002177static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2178{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002179 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002180 int err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002181
Chris Wilsonf3f61842016-08-05 10:14:14 +01002182 err = drm_gem_create_mmap_offset(&obj->base);
2183 if (!err)
2184 return 0;
Daniel Vetterda494d72012-12-20 15:11:16 +01002185
Chris Wilsonf3f61842016-08-05 10:14:14 +01002186 /* We can idle the GPU locklessly to flush stale objects, but in order
2187 * to claim that space for ourselves, we need to take the big
2188 * struct_mutex to free the requests+objects and allocate our slot.
Chris Wilsond8cb5082012-08-11 15:41:03 +01002189 */
Chris Wilsonea746f32016-09-09 14:11:49 +01002190 err = i915_gem_wait_for_idle(dev_priv, I915_WAIT_INTERRUPTIBLE);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002191 if (err)
2192 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002193
Chris Wilsonf3f61842016-08-05 10:14:14 +01002194 err = i915_mutex_lock_interruptible(&dev_priv->drm);
2195 if (!err) {
2196 i915_gem_retire_requests(dev_priv);
2197 err = drm_gem_create_mmap_offset(&obj->base);
2198 mutex_unlock(&dev_priv->drm.struct_mutex);
2199 }
Daniel Vetterda494d72012-12-20 15:11:16 +01002200
Chris Wilsonf3f61842016-08-05 10:14:14 +01002201 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002202}
2203
2204static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2205{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002206 drm_gem_free_mmap_offset(&obj->base);
2207}
2208
Dave Airlieda6b51d2014-12-24 13:11:17 +10002209int
Dave Airlieff72145b2011-02-07 12:16:14 +10002210i915_gem_mmap_gtt(struct drm_file *file,
2211 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002212 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10002213 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002214{
Chris Wilson05394f32010-11-08 19:18:58 +00002215 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002216 int ret;
2217
Chris Wilson03ac0642016-07-20 13:31:51 +01002218 obj = i915_gem_object_lookup(file, handle);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002219 if (!obj)
2220 return -ENOENT;
Chris Wilsonab182822009-09-22 18:46:17 +01002221
Chris Wilsond8cb5082012-08-11 15:41:03 +01002222 ret = i915_gem_object_create_mmap_offset(obj);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002223 if (ret == 0)
2224 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002225
Chris Wilsonf3f61842016-08-05 10:14:14 +01002226 i915_gem_object_put_unlocked(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002227 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002228}
2229
Dave Airlieff72145b2011-02-07 12:16:14 +10002230/**
2231 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2232 * @dev: DRM device
2233 * @data: GTT mapping ioctl data
2234 * @file: GEM object info
2235 *
2236 * Simply returns the fake offset to userspace so it can mmap it.
2237 * The mmap call will end up in drm_gem_mmap(), which will set things
2238 * up so we can get faults in the handler above.
2239 *
2240 * The fault handler will take care of binding the object into the GTT
2241 * (since it may have been evicted to make room for something), allocating
2242 * a fence register, and mapping the appropriate aperture address into
2243 * userspace.
2244 */
2245int
2246i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2247 struct drm_file *file)
2248{
2249 struct drm_i915_gem_mmap_gtt *args = data;
2250
Dave Airlieda6b51d2014-12-24 13:11:17 +10002251 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002252}
2253
Daniel Vetter225067e2012-08-20 10:23:20 +02002254/* Immediately discard the backing storage */
2255static void
2256i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002257{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002258 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002259
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002260 if (obj->base.filp == NULL)
2261 return;
2262
Daniel Vetter225067e2012-08-20 10:23:20 +02002263 /* Our goal here is to return as much of the memory as
2264 * is possible back to the system as we are called from OOM.
2265 * To do this we must instruct the shmfs to drop all of its
2266 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002267 */
Chris Wilson55372522014-03-25 13:23:06 +00002268 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02002269 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01002270}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002271
Chris Wilson55372522014-03-25 13:23:06 +00002272/* Try to discard unwanted pages */
2273static void
2274i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02002275{
Chris Wilson55372522014-03-25 13:23:06 +00002276 struct address_space *mapping;
2277
2278 switch (obj->madv) {
2279 case I915_MADV_DONTNEED:
2280 i915_gem_object_truncate(obj);
2281 case __I915_MADV_PURGED:
2282 return;
2283 }
2284
2285 if (obj->base.filp == NULL)
2286 return;
2287
Al Viro93c76a32015-12-04 23:45:44 -05002288 mapping = obj->base.filp->f_mapping,
Chris Wilson55372522014-03-25 13:23:06 +00002289 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002290}
2291
Chris Wilson5cdf5882010-09-27 15:51:07 +01002292static void
Chris Wilson05394f32010-11-08 19:18:58 +00002293i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002294{
Dave Gordon85d12252016-05-20 11:54:06 +01002295 struct sgt_iter sgt_iter;
2296 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002297 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002298
Chris Wilson05394f32010-11-08 19:18:58 +00002299 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07002300
Chris Wilson6c085a72012-08-20 11:40:46 +02002301 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +01002302 if (WARN_ON(ret)) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002303 /* In the event of a disaster, abandon all caches and
2304 * hope for the best.
2305 */
Chris Wilson2c225692013-08-09 12:26:45 +01002306 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02002307 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2308 }
2309
Imre Deake2273302015-07-09 12:59:05 +03002310 i915_gem_gtt_finish_object(obj);
2311
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002312 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07002313 i915_gem_object_save_bit_17_swizzle(obj);
2314
Chris Wilson05394f32010-11-08 19:18:58 +00002315 if (obj->madv == I915_MADV_DONTNEED)
2316 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01002317
Dave Gordon85d12252016-05-20 11:54:06 +01002318 for_each_sgt_page(page, sgt_iter, obj->pages) {
Chris Wilson05394f32010-11-08 19:18:58 +00002319 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002320 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002321
Chris Wilson05394f32010-11-08 19:18:58 +00002322 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002323 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002324
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002325 put_page(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002326 }
Chris Wilson05394f32010-11-08 19:18:58 +00002327 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002328
Chris Wilson9da3da62012-06-01 15:20:22 +01002329 sg_free_table(obj->pages);
2330 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002331}
2332
Chris Wilson96d77632016-10-28 13:58:33 +01002333static void __i915_gem_object_reset_page_iter(struct drm_i915_gem_object *obj)
2334{
2335 struct radix_tree_iter iter;
2336 void **slot;
2337
2338 radix_tree_for_each_slot(slot, &obj->get_page.radix, &iter, 0)
2339 radix_tree_delete(&obj->get_page.radix, iter.index);
2340}
2341
Chris Wilsondd624af2013-01-15 12:39:35 +00002342int
Chris Wilson37e680a2012-06-07 15:38:42 +01002343i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2344{
2345 const struct drm_i915_gem_object_ops *ops = obj->ops;
2346
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002347 lockdep_assert_held(&obj->base.dev->struct_mutex);
2348
Chris Wilson2f745ad2012-09-04 21:02:58 +01002349 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002350 return 0;
2351
Chris Wilsona5570172012-09-04 21:02:54 +01002352 if (obj->pages_pin_count)
2353 return -EBUSY;
2354
Chris Wilson15717de2016-08-04 07:52:26 +01002355 GEM_BUG_ON(obj->bind_count);
Ben Widawsky3e123022013-07-31 17:00:04 -07002356
Chris Wilsona2165e32012-12-03 11:49:00 +00002357 /* ->put_pages might need to allocate memory for the bit17 swizzle
2358 * array, hence protect them from being reaped by removing them from gtt
2359 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002360 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002361
Chris Wilson0a798eb2016-04-08 12:11:11 +01002362 if (obj->mapping) {
Chris Wilson4b30cb22016-08-18 17:16:42 +01002363 void *ptr;
2364
2365 ptr = ptr_mask_bits(obj->mapping);
2366 if (is_vmalloc_addr(ptr))
2367 vunmap(ptr);
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002368 else
Chris Wilson4b30cb22016-08-18 17:16:42 +01002369 kunmap(kmap_to_page(ptr));
2370
Chris Wilson0a798eb2016-04-08 12:11:11 +01002371 obj->mapping = NULL;
2372 }
2373
Chris Wilson96d77632016-10-28 13:58:33 +01002374 __i915_gem_object_reset_page_iter(obj);
2375
Chris Wilson37e680a2012-06-07 15:38:42 +01002376 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002377 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002378
Chris Wilson55372522014-03-25 13:23:06 +00002379 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002380
2381 return 0;
2382}
2383
Chris Wilson4ff340f02016-10-18 13:02:50 +01002384static unsigned int swiotlb_max_size(void)
Chris Wilson871dfbd2016-10-11 09:20:21 +01002385{
2386#if IS_ENABLED(CONFIG_SWIOTLB)
2387 return rounddown(swiotlb_nr_tbl() << IO_TLB_SHIFT, PAGE_SIZE);
2388#else
2389 return 0;
2390#endif
2391}
2392
Chris Wilson37e680a2012-06-07 15:38:42 +01002393static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002394i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002395{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002396 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002397 int page_count, i;
2398 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002399 struct sg_table *st;
2400 struct scatterlist *sg;
Dave Gordon85d12252016-05-20 11:54:06 +01002401 struct sgt_iter sgt_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002402 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002403 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson4ff340f02016-10-18 13:02:50 +01002404 unsigned int max_segment;
Imre Deake2273302015-07-09 12:59:05 +03002405 int ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002406 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002407
Chris Wilson6c085a72012-08-20 11:40:46 +02002408 /* Assert that the object is not currently in any GPU domain. As it
2409 * wasn't in the GTT, there shouldn't be any way it could have been in
2410 * a GPU cache
2411 */
2412 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2413 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2414
Chris Wilson871dfbd2016-10-11 09:20:21 +01002415 max_segment = swiotlb_max_size();
2416 if (!max_segment)
Chris Wilson4ff340f02016-10-18 13:02:50 +01002417 max_segment = rounddown(UINT_MAX, PAGE_SIZE);
Chris Wilson871dfbd2016-10-11 09:20:21 +01002418
Chris Wilson9da3da62012-06-01 15:20:22 +01002419 st = kmalloc(sizeof(*st), GFP_KERNEL);
2420 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002421 return -ENOMEM;
2422
Chris Wilson9da3da62012-06-01 15:20:22 +01002423 page_count = obj->base.size / PAGE_SIZE;
2424 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002425 kfree(st);
2426 return -ENOMEM;
2427 }
2428
2429 /* Get the list of pages out of our struct file. They'll be pinned
2430 * at this point until we release them.
2431 *
2432 * Fail silently without starting the shrinker
2433 */
Al Viro93c76a32015-12-04 23:45:44 -05002434 mapping = obj->base.filp->f_mapping;
Michal Hockoc62d2552015-11-06 16:28:49 -08002435 gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM));
Mel Gormand0164ad2015-11-06 16:28:21 -08002436 gfp |= __GFP_NORETRY | __GFP_NOWARN;
Imre Deak90797e62013-02-18 19:28:03 +02002437 sg = st->sgl;
2438 st->nents = 0;
2439 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002440 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2441 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002442 i915_gem_shrink(dev_priv,
2443 page_count,
2444 I915_SHRINK_BOUND |
2445 I915_SHRINK_UNBOUND |
2446 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002447 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2448 }
2449 if (IS_ERR(page)) {
2450 /* We've tried hard to allocate the memory by reaping
2451 * our own buffer, now let the real VM do its job and
2452 * go down in flames if truly OOM.
2453 */
David Herrmannf461d1b2014-05-25 14:34:10 +02002454 page = shmem_read_mapping_page(mapping, i);
Imre Deake2273302015-07-09 12:59:05 +03002455 if (IS_ERR(page)) {
2456 ret = PTR_ERR(page);
Chris Wilson6c085a72012-08-20 11:40:46 +02002457 goto err_pages;
Imre Deake2273302015-07-09 12:59:05 +03002458 }
Chris Wilson6c085a72012-08-20 11:40:46 +02002459 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002460 if (!i ||
2461 sg->length >= max_segment ||
2462 page_to_pfn(page) != last_pfn + 1) {
Imre Deak90797e62013-02-18 19:28:03 +02002463 if (i)
2464 sg = sg_next(sg);
2465 st->nents++;
2466 sg_set_page(sg, page, PAGE_SIZE, 0);
2467 } else {
2468 sg->length += PAGE_SIZE;
2469 }
2470 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002471
2472 /* Check that the i965g/gm workaround works. */
2473 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002474 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002475 if (sg) /* loop terminated early; short sg table */
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002476 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002477 obj->pages = st;
2478
Imre Deake2273302015-07-09 12:59:05 +03002479 ret = i915_gem_gtt_prepare_object(obj);
2480 if (ret)
2481 goto err_pages;
2482
Eric Anholt673a3942008-07-30 12:06:12 -07002483 if (i915_gem_object_needs_bit17_swizzle(obj))
2484 i915_gem_object_do_bit_17_swizzle(obj);
2485
Chris Wilson3e510a82016-08-05 10:14:23 +01002486 if (i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01002487 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2488 i915_gem_object_pin_pages(obj);
2489
Eric Anholt673a3942008-07-30 12:06:12 -07002490 return 0;
2491
2492err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002493 sg_mark_end(sg);
Dave Gordon85d12252016-05-20 11:54:06 +01002494 for_each_sgt_page(page, sgt_iter, st)
2495 put_page(page);
Chris Wilson9da3da62012-06-01 15:20:22 +01002496 sg_free_table(st);
2497 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002498
2499 /* shmemfs first checks if there is enough memory to allocate the page
2500 * and reports ENOSPC should there be insufficient, along with the usual
2501 * ENOMEM for a genuine allocation failure.
2502 *
2503 * We use ENOSPC in our driver to mean that we have run out of aperture
2504 * space and so want to translate the error from shmemfs back to our
2505 * usual understanding of ENOMEM.
2506 */
Imre Deake2273302015-07-09 12:59:05 +03002507 if (ret == -ENOSPC)
2508 ret = -ENOMEM;
2509
2510 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002511}
2512
Chris Wilson37e680a2012-06-07 15:38:42 +01002513/* Ensure that the associated pages are gathered from the backing storage
2514 * and pinned into our object. i915_gem_object_get_pages() may be called
2515 * multiple times before they are released by a single call to
2516 * i915_gem_object_put_pages() - once the pages are no longer referenced
2517 * either as a result of memory pressure (reaping pages under the shrinker)
2518 * or as the object is itself released.
2519 */
2520int
2521i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2522{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002523 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson37e680a2012-06-07 15:38:42 +01002524 const struct drm_i915_gem_object_ops *ops = obj->ops;
2525 int ret;
2526
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002527 lockdep_assert_held(&obj->base.dev->struct_mutex);
2528
Chris Wilson2f745ad2012-09-04 21:02:58 +01002529 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002530 return 0;
2531
Chris Wilson43e28f02013-01-08 10:53:09 +00002532 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002533 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002534 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002535 }
2536
Chris Wilsona5570172012-09-04 21:02:54 +01002537 BUG_ON(obj->pages_pin_count);
2538
Chris Wilson37e680a2012-06-07 15:38:42 +01002539 ret = ops->get_pages(obj);
2540 if (ret)
2541 return ret;
2542
Ben Widawsky35c20a62013-05-31 11:28:48 -07002543 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilsonee286372015-04-07 16:20:25 +01002544
Chris Wilson96d77632016-10-28 13:58:33 +01002545 obj->get_page.sg_pos = obj->pages->sgl;
2546 obj->get_page.sg_idx = 0;
Chris Wilsonee286372015-04-07 16:20:25 +01002547
Chris Wilson37e680a2012-06-07 15:38:42 +01002548 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002549}
2550
Dave Gordondd6034c2016-05-20 11:54:04 +01002551/* The 'mapping' part of i915_gem_object_pin_map() below */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002552static void *i915_gem_object_map(const struct drm_i915_gem_object *obj,
2553 enum i915_map_type type)
Dave Gordondd6034c2016-05-20 11:54:04 +01002554{
2555 unsigned long n_pages = obj->base.size >> PAGE_SHIFT;
2556 struct sg_table *sgt = obj->pages;
Dave Gordon85d12252016-05-20 11:54:06 +01002557 struct sgt_iter sgt_iter;
2558 struct page *page;
Dave Gordonb338fa42016-05-20 11:54:05 +01002559 struct page *stack_pages[32];
2560 struct page **pages = stack_pages;
Dave Gordondd6034c2016-05-20 11:54:04 +01002561 unsigned long i = 0;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002562 pgprot_t pgprot;
Dave Gordondd6034c2016-05-20 11:54:04 +01002563 void *addr;
2564
2565 /* A single page can always be kmapped */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002566 if (n_pages == 1 && type == I915_MAP_WB)
Dave Gordondd6034c2016-05-20 11:54:04 +01002567 return kmap(sg_page(sgt->sgl));
2568
Dave Gordonb338fa42016-05-20 11:54:05 +01002569 if (n_pages > ARRAY_SIZE(stack_pages)) {
2570 /* Too big for stack -- allocate temporary array instead */
2571 pages = drm_malloc_gfp(n_pages, sizeof(*pages), GFP_TEMPORARY);
2572 if (!pages)
2573 return NULL;
2574 }
Dave Gordondd6034c2016-05-20 11:54:04 +01002575
Dave Gordon85d12252016-05-20 11:54:06 +01002576 for_each_sgt_page(page, sgt_iter, sgt)
2577 pages[i++] = page;
Dave Gordondd6034c2016-05-20 11:54:04 +01002578
2579 /* Check that we have the expected number of pages */
2580 GEM_BUG_ON(i != n_pages);
2581
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002582 switch (type) {
2583 case I915_MAP_WB:
2584 pgprot = PAGE_KERNEL;
2585 break;
2586 case I915_MAP_WC:
2587 pgprot = pgprot_writecombine(PAGE_KERNEL_IO);
2588 break;
2589 }
2590 addr = vmap(pages, n_pages, 0, pgprot);
Dave Gordondd6034c2016-05-20 11:54:04 +01002591
Dave Gordonb338fa42016-05-20 11:54:05 +01002592 if (pages != stack_pages)
2593 drm_free_large(pages);
Dave Gordondd6034c2016-05-20 11:54:04 +01002594
2595 return addr;
2596}
2597
2598/* get, pin, and map the pages of the object into kernel space */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002599void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj,
2600 enum i915_map_type type)
Chris Wilson0a798eb2016-04-08 12:11:11 +01002601{
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002602 enum i915_map_type has_type;
2603 bool pinned;
2604 void *ptr;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002605 int ret;
2606
2607 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002608 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002609
2610 ret = i915_gem_object_get_pages(obj);
2611 if (ret)
2612 return ERR_PTR(ret);
2613
2614 i915_gem_object_pin_pages(obj);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002615 pinned = obj->pages_pin_count > 1;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002616
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002617 ptr = ptr_unpack_bits(obj->mapping, has_type);
2618 if (ptr && has_type != type) {
2619 if (pinned) {
2620 ret = -EBUSY;
2621 goto err;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002622 }
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002623
2624 if (is_vmalloc_addr(ptr))
2625 vunmap(ptr);
2626 else
2627 kunmap(kmap_to_page(ptr));
2628
2629 ptr = obj->mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002630 }
2631
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002632 if (!ptr) {
2633 ptr = i915_gem_object_map(obj, type);
2634 if (!ptr) {
2635 ret = -ENOMEM;
2636 goto err;
2637 }
2638
2639 obj->mapping = ptr_pack_bits(ptr, type);
2640 }
2641
2642 return ptr;
2643
2644err:
2645 i915_gem_object_unpin_pages(obj);
2646 return ERR_PTR(ret);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002647}
2648
Chris Wilsoncaea7472010-11-12 13:53:37 +00002649static void
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002650i915_gem_object_retire__write(struct i915_gem_active *active,
2651 struct drm_i915_gem_request *request)
Chris Wilsonb4716182015-04-27 13:41:17 +01002652{
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002653 struct drm_i915_gem_object *obj =
2654 container_of(active, struct drm_i915_gem_object, last_write);
Chris Wilsonb4716182015-04-27 13:41:17 +01002655
Rodrigo Vivide152b62015-07-07 16:28:51 -07002656 intel_fb_obj_flush(obj, true, ORIGIN_CS);
Chris Wilsonb4716182015-04-27 13:41:17 +01002657}
2658
2659static void
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002660i915_gem_object_retire__read(struct i915_gem_active *active,
2661 struct drm_i915_gem_request *request)
Chris Wilsoncaea7472010-11-12 13:53:37 +00002662{
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002663 int idx = request->engine->id;
2664 struct drm_i915_gem_object *obj =
2665 container_of(active, struct drm_i915_gem_object, last_read[idx]);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002666
Chris Wilson573adb32016-08-04 16:32:39 +01002667 GEM_BUG_ON(!i915_gem_object_has_active_engine(obj, idx));
Chris Wilsonb4716182015-04-27 13:41:17 +01002668
Chris Wilson573adb32016-08-04 16:32:39 +01002669 i915_gem_object_clear_active(obj, idx);
2670 if (i915_gem_object_is_active(obj))
Chris Wilsonb4716182015-04-27 13:41:17 +01002671 return;
Chris Wilson65ce3022012-07-20 12:41:02 +01002672
Chris Wilson6c246952015-07-27 10:26:26 +01002673 /* Bump our place on the bound list to keep it roughly in LRU order
2674 * so that we don't steal from recently used but inactive objects
2675 * (unless we are forced to ofc!)
2676 */
Chris Wilsonb0decaf2016-08-04 07:52:44 +01002677 if (obj->bind_count)
2678 list_move_tail(&obj->global_list,
2679 &request->i915->mm.bound_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002680
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002681 if (i915_gem_object_has_active_reference(obj)) {
2682 i915_gem_object_clear_active_reference(obj);
2683 i915_gem_object_put(obj);
2684 }
Chris Wilsonc8725f32014-03-17 12:21:55 +00002685}
2686
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002687static bool i915_context_is_banned(const struct i915_gem_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002688{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002689 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002690
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002691 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002692 return true;
2693
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002694 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
Chris Wilson676fa572014-12-24 08:13:39 -08002695 if (ctx->hang_stats.ban_period_seconds &&
2696 elapsed <= ctx->hang_stats.ban_period_seconds) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002697 DRM_DEBUG("context hanging too fast, banning!\n");
2698 return true;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002699 }
2700
2701 return false;
2702}
2703
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002704static void i915_set_reset_status(struct i915_gem_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002705 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002706{
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002707 struct i915_ctx_hang_stats *hs = &ctx->hang_stats;
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002708
2709 if (guilty) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002710 hs->banned = i915_context_is_banned(ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002711 hs->batch_active++;
2712 hs->guilty_ts = get_seconds();
2713 } else {
2714 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002715 }
2716}
2717
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002718struct drm_i915_gem_request *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002719i915_gem_find_active_request(struct intel_engine_cs *engine)
Chris Wilson9375e442010-09-19 12:21:28 +01002720{
Chris Wilson4db080f2013-12-04 11:37:09 +00002721 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002722
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002723 /* We are called by the error capture and reset at a random
2724 * point in time. In particular, note that neither is crucially
2725 * ordered with an interrupt. After a hang, the GPU is dead and we
2726 * assume that no more writes can happen (we waited long enough for
2727 * all writes that were in transaction to be flushed) - adding an
2728 * extra delay for a recent interrupt is pointless. Hence, we do
2729 * not need an engine->irq_seqno_barrier() before the seqno reads.
2730 */
Chris Wilsonefdf7c02016-08-04 07:52:33 +01002731 list_for_each_entry(request, &engine->request_list, link) {
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002732 if (i915_gem_request_completed(request))
Chris Wilson4db080f2013-12-04 11:37:09 +00002733 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002734
Chris Wilson5590af32016-09-09 14:11:54 +01002735 if (!i915_sw_fence_done(&request->submit))
2736 break;
2737
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002738 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002739 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002740
2741 return NULL;
2742}
2743
Chris Wilson821ed7d2016-09-09 14:11:53 +01002744static void reset_request(struct drm_i915_gem_request *request)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002745{
Chris Wilson821ed7d2016-09-09 14:11:53 +01002746 void *vaddr = request->ring->vaddr;
2747 u32 head;
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002748
Chris Wilson821ed7d2016-09-09 14:11:53 +01002749 /* As this request likely depends on state from the lost
2750 * context, clear out all the user operations leaving the
2751 * breadcrumb at the end (so we get the fence notifications).
2752 */
2753 head = request->head;
2754 if (request->postfix < head) {
2755 memset(vaddr + head, 0, request->ring->size - head);
2756 head = 0;
2757 }
2758 memset(vaddr + head, 0, request->postfix - head);
Chris Wilson4db080f2013-12-04 11:37:09 +00002759}
2760
Chris Wilson821ed7d2016-09-09 14:11:53 +01002761static void i915_gem_reset_engine(struct intel_engine_cs *engine)
Chris Wilson4db080f2013-12-04 11:37:09 +00002762{
Chris Wilsondcff85c2016-08-05 10:14:11 +01002763 struct drm_i915_gem_request *request;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002764 struct i915_gem_context *incomplete_ctx;
2765 bool ring_hung;
Chris Wilson608c1a52015-09-03 13:01:40 +01002766
Chris Wilson821ed7d2016-09-09 14:11:53 +01002767 if (engine->irq_seqno_barrier)
2768 engine->irq_seqno_barrier(engine);
2769
2770 request = i915_gem_find_active_request(engine);
2771 if (!request)
2772 return;
2773
2774 ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
Chris Wilson77c60702016-10-04 21:11:29 +01002775 if (engine->hangcheck.seqno != intel_engine_get_seqno(engine))
2776 ring_hung = false;
2777
Chris Wilson821ed7d2016-09-09 14:11:53 +01002778 i915_set_reset_status(request->ctx, ring_hung);
2779 if (!ring_hung)
2780 return;
2781
2782 DRM_DEBUG_DRIVER("resetting %s to restart from tail of request 0x%x\n",
2783 engine->name, request->fence.seqno);
2784
2785 /* Setup the CS to resume from the breadcrumb of the hung request */
2786 engine->reset_hw(engine, request);
2787
2788 /* Users of the default context do not rely on logical state
2789 * preserved between batches. They have to emit full state on
2790 * every batch and so it is safe to execute queued requests following
2791 * the hang.
2792 *
2793 * Other contexts preserve state, now corrupt. We want to skip all
2794 * queued requests that reference the corrupt context.
2795 */
2796 incomplete_ctx = request->ctx;
2797 if (i915_gem_context_is_default(incomplete_ctx))
2798 return;
2799
2800 list_for_each_entry_continue(request, &engine->request_list, link)
2801 if (request->ctx == incomplete_ctx)
2802 reset_request(request);
2803}
2804
2805void i915_gem_reset(struct drm_i915_private *dev_priv)
2806{
2807 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302808 enum intel_engine_id id;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002809
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002810 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2811
Chris Wilson821ed7d2016-09-09 14:11:53 +01002812 i915_gem_retire_requests(dev_priv);
2813
Akash Goel3b3f1652016-10-13 22:44:48 +05302814 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002815 i915_gem_reset_engine(engine);
2816
2817 i915_gem_restore_fences(&dev_priv->drm);
Chris Wilsonf2a91d12016-09-21 14:51:06 +01002818
2819 if (dev_priv->gt.awake) {
2820 intel_sanitize_gt_powersave(dev_priv);
2821 intel_enable_gt_powersave(dev_priv);
2822 if (INTEL_GEN(dev_priv) >= 6)
2823 gen6_rps_busy(dev_priv);
2824 }
Chris Wilson821ed7d2016-09-09 14:11:53 +01002825}
2826
2827static void nop_submit_request(struct drm_i915_gem_request *request)
2828{
2829}
2830
2831static void i915_gem_cleanup_engine(struct intel_engine_cs *engine)
2832{
2833 engine->submit_request = nop_submit_request;
Chris Wilson70c2a242016-09-09 14:11:46 +01002834
Chris Wilsonc4b09302016-07-20 09:21:10 +01002835 /* Mark all pending requests as complete so that any concurrent
2836 * (lockless) lookup doesn't try and wait upon the request as we
2837 * reset it.
2838 */
Chris Wilson87b723a2016-08-09 08:37:02 +01002839 intel_engine_init_seqno(engine, engine->last_submitted_seqno);
Chris Wilsonc4b09302016-07-20 09:21:10 +01002840
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002841 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002842 * Clear the execlists queue up before freeing the requests, as those
2843 * are the ones that keep the context and ringbuffer backing objects
2844 * pinned in place.
2845 */
Oscar Mateodcb4c122014-11-13 10:28:10 +00002846
Tomas Elf7de1691a2015-10-19 16:32:32 +01002847 if (i915.enable_execlists) {
Chris Wilson70c2a242016-09-09 14:11:46 +01002848 spin_lock(&engine->execlist_lock);
2849 INIT_LIST_HEAD(&engine->execlist_queue);
2850 i915_gem_request_put(engine->execlist_port[0].request);
2851 i915_gem_request_put(engine->execlist_port[1].request);
2852 memset(engine->execlist_port, 0, sizeof(engine->execlist_port));
2853 spin_unlock(&engine->execlist_lock);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002854 }
2855
Chris Wilsonb913b332016-07-13 09:10:31 +01002856 engine->i915->gt.active_engines &= ~intel_engine_flag(engine);
Eric Anholt673a3942008-07-30 12:06:12 -07002857}
2858
Chris Wilson821ed7d2016-09-09 14:11:53 +01002859void i915_gem_set_wedged(struct drm_i915_private *dev_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002860{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002861 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302862 enum intel_engine_id id;
Eric Anholt673a3942008-07-30 12:06:12 -07002863
Chris Wilson821ed7d2016-09-09 14:11:53 +01002864 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2865 set_bit(I915_WEDGED, &dev_priv->gpu_error.flags);
Chris Wilson4db080f2013-12-04 11:37:09 +00002866
Chris Wilson821ed7d2016-09-09 14:11:53 +01002867 i915_gem_context_lost(dev_priv);
Akash Goel3b3f1652016-10-13 22:44:48 +05302868 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002869 i915_gem_cleanup_engine(engine);
Chris Wilsonb913b332016-07-13 09:10:31 +01002870 mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0);
Chris Wilsondfaae392010-09-22 10:31:52 +01002871
Chris Wilson821ed7d2016-09-09 14:11:53 +01002872 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002873}
2874
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002875static void
Eric Anholt673a3942008-07-30 12:06:12 -07002876i915_gem_retire_work_handler(struct work_struct *work)
2877{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002878 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002879 container_of(work, typeof(*dev_priv), gt.retire_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002880 struct drm_device *dev = &dev_priv->drm;
Eric Anholt673a3942008-07-30 12:06:12 -07002881
Chris Wilson891b48c2010-09-29 12:26:37 +01002882 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002883 if (mutex_trylock(&dev->struct_mutex)) {
Chris Wilson67d97da2016-07-04 08:08:31 +01002884 i915_gem_retire_requests(dev_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002885 mutex_unlock(&dev->struct_mutex);
2886 }
Chris Wilson67d97da2016-07-04 08:08:31 +01002887
2888 /* Keep the retire handler running until we are finally idle.
2889 * We do not need to do this test under locking as in the worst-case
2890 * we queue the retire worker once too often.
2891 */
Chris Wilsonc9615612016-07-09 10:12:06 +01002892 if (READ_ONCE(dev_priv->gt.awake)) {
2893 i915_queue_hangcheck(dev_priv);
Chris Wilson67d97da2016-07-04 08:08:31 +01002894 queue_delayed_work(dev_priv->wq,
2895 &dev_priv->gt.retire_work,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002896 round_jiffies_up_relative(HZ));
Chris Wilsonc9615612016-07-09 10:12:06 +01002897 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002898}
Chris Wilson891b48c2010-09-29 12:26:37 +01002899
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002900static void
2901i915_gem_idle_work_handler(struct work_struct *work)
2902{
2903 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002904 container_of(work, typeof(*dev_priv), gt.idle_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002905 struct drm_device *dev = &dev_priv->drm;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002906 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302907 enum intel_engine_id id;
Chris Wilson67d97da2016-07-04 08:08:31 +01002908 bool rearm_hangcheck;
2909
2910 if (!READ_ONCE(dev_priv->gt.awake))
2911 return;
2912
2913 if (READ_ONCE(dev_priv->gt.active_engines))
2914 return;
2915
2916 rearm_hangcheck =
2917 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
2918
2919 if (!mutex_trylock(&dev->struct_mutex)) {
2920 /* Currently busy, come back later */
2921 mod_delayed_work(dev_priv->wq,
2922 &dev_priv->gt.idle_work,
2923 msecs_to_jiffies(50));
2924 goto out_rearm;
2925 }
2926
2927 if (dev_priv->gt.active_engines)
2928 goto out_unlock;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002929
Akash Goel3b3f1652016-10-13 22:44:48 +05302930 for_each_engine(engine, dev_priv, id)
Chris Wilson67d97da2016-07-04 08:08:31 +01002931 i915_gem_batch_pool_fini(&engine->batch_pool);
Zou Nan hai852835f2010-05-21 09:08:56 +08002932
Chris Wilson67d97da2016-07-04 08:08:31 +01002933 GEM_BUG_ON(!dev_priv->gt.awake);
2934 dev_priv->gt.awake = false;
2935 rearm_hangcheck = false;
Daniel Vetter30ecad72015-12-09 09:29:36 +01002936
Chris Wilson67d97da2016-07-04 08:08:31 +01002937 if (INTEL_GEN(dev_priv) >= 6)
2938 gen6_rps_idle(dev_priv);
2939 intel_runtime_pm_put(dev_priv);
2940out_unlock:
2941 mutex_unlock(&dev->struct_mutex);
Chris Wilson35c94182015-04-07 16:20:37 +01002942
Chris Wilson67d97da2016-07-04 08:08:31 +01002943out_rearm:
2944 if (rearm_hangcheck) {
2945 GEM_BUG_ON(!dev_priv->gt.awake);
2946 i915_queue_hangcheck(dev_priv);
Chris Wilson35c94182015-04-07 16:20:37 +01002947 }
Eric Anholt673a3942008-07-30 12:06:12 -07002948}
2949
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002950void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
2951{
2952 struct drm_i915_gem_object *obj = to_intel_bo(gem);
2953 struct drm_i915_file_private *fpriv = file->driver_priv;
2954 struct i915_vma *vma, *vn;
2955
2956 mutex_lock(&obj->base.dev->struct_mutex);
2957 list_for_each_entry_safe(vma, vn, &obj->vma_list, obj_link)
2958 if (vma->vm->file == fpriv)
2959 i915_vma_close(vma);
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002960
2961 if (i915_gem_object_is_active(obj) &&
2962 !i915_gem_object_has_active_reference(obj)) {
2963 i915_gem_object_set_active_reference(obj);
2964 i915_gem_object_get(obj);
2965 }
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002966 mutex_unlock(&obj->base.dev->struct_mutex);
2967}
2968
Chris Wilsone95433c2016-10-28 13:58:27 +01002969static unsigned long to_wait_timeout(s64 timeout_ns)
2970{
2971 if (timeout_ns < 0)
2972 return MAX_SCHEDULE_TIMEOUT;
2973
2974 if (timeout_ns == 0)
2975 return 0;
2976
2977 return nsecs_to_jiffies_timeout(timeout_ns);
2978}
2979
Ben Widawsky5816d642012-04-11 11:18:19 -07002980/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002981 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002982 * @dev: drm device pointer
2983 * @data: ioctl data blob
2984 * @file: drm file pointer
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002985 *
2986 * Returns 0 if successful, else an error is returned with the remaining time in
2987 * the timeout parameter.
2988 * -ETIME: object is still busy after timeout
2989 * -ERESTARTSYS: signal interrupted the wait
2990 * -ENONENT: object doesn't exist
2991 * Also possible, but rare:
2992 * -EAGAIN: GPU wedged
2993 * -ENOMEM: damn
2994 * -ENODEV: Internal IRQ fail
2995 * -E?: The add request failed
2996 *
2997 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2998 * non-zero timeout parameter the wait ioctl will wait for the given number of
2999 * nanoseconds on an object becoming unbusy. Since the wait itself does so
3000 * without holding struct_mutex the object may become re-busied before this
3001 * function completes. A similar but shorter * race condition exists in the busy
3002 * ioctl
3003 */
3004int
3005i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
3006{
3007 struct drm_i915_gem_wait *args = data;
3008 struct drm_i915_gem_object *obj;
Chris Wilsone95433c2016-10-28 13:58:27 +01003009 ktime_t start;
3010 long ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003011
Daniel Vetter11b5d512014-09-29 15:31:26 +02003012 if (args->flags != 0)
3013 return -EINVAL;
3014
Chris Wilson03ac0642016-07-20 13:31:51 +01003015 obj = i915_gem_object_lookup(file, args->bo_handle);
Chris Wilson033d5492016-08-05 10:14:17 +01003016 if (!obj)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003017 return -ENOENT;
Chris Wilson033d5492016-08-05 10:14:17 +01003018
Chris Wilsone95433c2016-10-28 13:58:27 +01003019 start = ktime_get();
3020
3021 ret = i915_gem_object_wait(obj,
3022 I915_WAIT_INTERRUPTIBLE | I915_WAIT_ALL,
3023 to_wait_timeout(args->timeout_ns),
3024 to_rps_client(file));
3025
3026 if (args->timeout_ns > 0) {
3027 args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start));
3028 if (args->timeout_ns < 0)
3029 args->timeout_ns = 0;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003030 }
3031
Chris Wilson033d5492016-08-05 10:14:17 +01003032 i915_gem_object_put_unlocked(obj);
John Harrisonff865882014-11-24 18:49:28 +00003033 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003034}
3035
Chris Wilson8ef85612016-04-28 09:56:39 +01003036static void __i915_vma_iounmap(struct i915_vma *vma)
3037{
Chris Wilson20dfbde2016-08-04 16:32:30 +01003038 GEM_BUG_ON(i915_vma_is_pinned(vma));
Chris Wilson8ef85612016-04-28 09:56:39 +01003039
3040 if (vma->iomap == NULL)
3041 return;
3042
3043 io_mapping_unmap(vma->iomap);
3044 vma->iomap = NULL;
3045}
3046
Chris Wilsondf0e9a22016-08-04 07:52:47 +01003047int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003048{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003049 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003050 unsigned long active;
Chris Wilson43e28f02013-01-08 10:53:09 +00003051 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003052
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003053 lockdep_assert_held(&obj->base.dev->struct_mutex);
3054
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003055 /* First wait upon any activity as retiring the request may
3056 * have side-effects such as unpinning or even unbinding this vma.
3057 */
3058 active = i915_vma_get_active(vma);
Chris Wilsondf0e9a22016-08-04 07:52:47 +01003059 if (active) {
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003060 int idx;
3061
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003062 /* When a closed VMA is retired, it is unbound - eek.
3063 * In order to prevent it from being recursively closed,
3064 * take a pin on the vma so that the second unbind is
3065 * aborted.
3066 */
Chris Wilson20dfbde2016-08-04 16:32:30 +01003067 __i915_vma_pin(vma);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003068
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003069 for_each_active(active, idx) {
3070 ret = i915_gem_active_retire(&vma->last_read[idx],
3071 &vma->vm->dev->struct_mutex);
3072 if (ret)
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003073 break;
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003074 }
3075
Chris Wilson20dfbde2016-08-04 16:32:30 +01003076 __i915_vma_unpin(vma);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003077 if (ret)
3078 return ret;
3079
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003080 GEM_BUG_ON(i915_vma_is_active(vma));
3081 }
3082
Chris Wilson20dfbde2016-08-04 16:32:30 +01003083 if (i915_vma_is_pinned(vma))
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003084 return -EBUSY;
3085
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003086 if (!drm_mm_node_allocated(&vma->node))
3087 goto destroy;
Ben Widawsky433544b2013-08-13 18:09:06 -07003088
Chris Wilson15717de2016-08-04 07:52:26 +01003089 GEM_BUG_ON(obj->bind_count == 0);
3090 GEM_BUG_ON(!obj->pages);
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003091
Chris Wilson05a20d02016-08-18 17:16:55 +01003092 if (i915_vma_is_map_and_fenceable(vma)) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003093 /* release the fence reg _after_ flushing */
Chris Wilson49ef5292016-08-18 17:17:00 +01003094 ret = i915_vma_put_fence(vma);
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003095 if (ret)
3096 return ret;
Chris Wilson8ef85612016-04-28 09:56:39 +01003097
Chris Wilsoncd3127d2016-08-18 17:17:09 +01003098 /* Force a pagefault for domain tracking on next user access */
3099 i915_gem_release_mmap(obj);
3100
Chris Wilson8ef85612016-04-28 09:56:39 +01003101 __i915_vma_iounmap(vma);
Chris Wilson05a20d02016-08-18 17:16:55 +01003102 vma->flags &= ~I915_VMA_CAN_FENCE;
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003103 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003104
Chris Wilson50e046b2016-08-04 07:52:46 +01003105 if (likely(!vma->vm->closed)) {
3106 trace_i915_vma_unbind(vma);
3107 vma->vm->unbind_vma(vma);
3108 }
Chris Wilson3272db52016-08-04 16:32:32 +01003109 vma->flags &= ~(I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003110
Chris Wilson50e046b2016-08-04 07:52:46 +01003111 drm_mm_remove_node(&vma->node);
3112 list_move_tail(&vma->vm_link, &vma->vm->unbound_list);
3113
Chris Wilson05a20d02016-08-18 17:16:55 +01003114 if (vma->pages != obj->pages) {
3115 GEM_BUG_ON(!vma->pages);
3116 sg_free_table(vma->pages);
3117 kfree(vma->pages);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003118 }
Chris Wilson247177d2016-08-15 10:48:47 +01003119 vma->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07003120
Ben Widawsky2f633152013-07-17 12:19:03 -07003121 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003122 * no more VMAs exist. */
Chris Wilson15717de2016-08-04 07:52:26 +01003123 if (--obj->bind_count == 0)
3124 list_move_tail(&obj->global_list,
3125 &to_i915(obj->base.dev)->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003126
Chris Wilson70903c32013-12-04 09:59:09 +00003127 /* And finally now the object is completely decoupled from this vma,
3128 * we can drop its hold on the backing storage and allow it to be
3129 * reaped by the shrinker.
3130 */
3131 i915_gem_object_unpin_pages(obj);
3132
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003133destroy:
Chris Wilson3272db52016-08-04 16:32:32 +01003134 if (unlikely(i915_vma_is_closed(vma)))
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003135 i915_vma_destroy(vma);
3136
Chris Wilson88241782011-01-07 17:09:48 +00003137 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003138}
3139
Chris Wilsondcff85c2016-08-05 10:14:11 +01003140int i915_gem_wait_for_idle(struct drm_i915_private *dev_priv,
Chris Wilsonea746f32016-09-09 14:11:49 +01003141 unsigned int flags)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003142{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003143 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05303144 enum intel_engine_id id;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003145 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003146
Akash Goel3b3f1652016-10-13 22:44:48 +05303147 for_each_engine(engine, dev_priv, id) {
Chris Wilson62e63002016-06-24 14:55:52 +01003148 if (engine->last_context == NULL)
3149 continue;
3150
Chris Wilsonea746f32016-09-09 14:11:49 +01003151 ret = intel_engine_idle(engine, flags);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003152 if (ret)
3153 return ret;
3154 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003155
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003156 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003157}
3158
Chris Wilson4144f9b2014-09-11 08:43:48 +01003159static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003160 unsigned long cache_level)
3161{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003162 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003163 struct drm_mm_node *other;
3164
Chris Wilson4144f9b2014-09-11 08:43:48 +01003165 /*
3166 * On some machines we have to be careful when putting differing types
3167 * of snoopable memory together to avoid the prefetcher crossing memory
3168 * domains and dying. During vm initialisation, we decide whether or not
3169 * these constraints apply and set the drm_mm.color_adjust
3170 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003171 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003172 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003173 return true;
3174
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003175 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003176 return true;
3177
3178 if (list_empty(&gtt_space->node_list))
3179 return true;
3180
3181 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3182 if (other->allocated && !other->hole_follows && other->color != cache_level)
3183 return false;
3184
3185 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3186 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3187 return false;
3188
3189 return true;
3190}
3191
Jesse Barnesde151cf2008-11-12 10:03:55 -08003192/**
Chris Wilson59bfa122016-08-04 16:32:31 +01003193 * i915_vma_insert - finds a slot for the vma in its address space
3194 * @vma: the vma
Chris Wilson91b2db62016-08-04 16:32:23 +01003195 * @size: requested size in bytes (can be larger than the VMA)
Chris Wilson59bfa122016-08-04 16:32:31 +01003196 * @alignment: required alignment
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003197 * @flags: mask of PIN_* flags to use
Chris Wilson59bfa122016-08-04 16:32:31 +01003198 *
3199 * First we try to allocate some free space that meets the requirements for
3200 * the VMA. Failiing that, if the flags permit, it will evict an old VMA,
3201 * preferrably the oldest idle entry to make room for the new VMA.
3202 *
3203 * Returns:
3204 * 0 on success, negative error code otherwise.
Eric Anholt673a3942008-07-30 12:06:12 -07003205 */
Chris Wilson59bfa122016-08-04 16:32:31 +01003206static int
3207i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003208{
Chris Wilson59bfa122016-08-04 16:32:31 +01003209 struct drm_i915_private *dev_priv = to_i915(vma->vm->dev);
3210 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsonde180032016-08-04 16:32:29 +01003211 u64 start, end;
Chris Wilson07f73f62009-09-14 16:50:30 +01003212 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003213
Chris Wilson3272db52016-08-04 16:32:32 +01003214 GEM_BUG_ON(vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
Chris Wilson59bfa122016-08-04 16:32:31 +01003215 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003216
Chris Wilsonde180032016-08-04 16:32:29 +01003217 size = max(size, vma->size);
3218 if (flags & PIN_MAPPABLE)
Chris Wilson3e510a82016-08-05 10:14:23 +01003219 size = i915_gem_get_ggtt_size(dev_priv, size,
3220 i915_gem_object_get_tiling(obj));
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003221
Chris Wilsond8923dc2016-08-18 17:17:07 +01003222 alignment = max(max(alignment, vma->display_alignment),
3223 i915_gem_get_ggtt_alignment(dev_priv, size,
3224 i915_gem_object_get_tiling(obj),
3225 flags & PIN_MAPPABLE));
Chris Wilsona00b10c2010-09-24 21:15:47 +01003226
Michel Thierry101b5062015-10-01 13:33:57 +01003227 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
Chris Wilsonde180032016-08-04 16:32:29 +01003228
3229 end = vma->vm->total;
Michel Thierry101b5062015-10-01 13:33:57 +01003230 if (flags & PIN_MAPPABLE)
Chris Wilson91b2db62016-08-04 16:32:23 +01003231 end = min_t(u64, end, dev_priv->ggtt.mappable_end);
Michel Thierry101b5062015-10-01 13:33:57 +01003232 if (flags & PIN_ZONE_4G)
Michel Thierry48ea1e32016-01-11 11:39:27 +00003233 end = min_t(u64, end, (1ULL << 32) - PAGE_SIZE);
Michel Thierry101b5062015-10-01 13:33:57 +01003234
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003235 /* If binding the object/GGTT view requires more space than the entire
3236 * aperture has, reject it early before evicting everything in a vain
3237 * attempt to find space.
Chris Wilson654fc602010-05-27 13:18:21 +01003238 */
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003239 if (size > end) {
Chris Wilsonde180032016-08-04 16:32:29 +01003240 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 +01003241 size, obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003242 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003243 end);
Chris Wilson59bfa122016-08-04 16:32:31 +01003244 return -E2BIG;
Chris Wilson654fc602010-05-27 13:18:21 +01003245 }
3246
Chris Wilson37e680a2012-06-07 15:38:42 +01003247 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003248 if (ret)
Chris Wilson59bfa122016-08-04 16:32:31 +01003249 return ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02003250
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003251 i915_gem_object_pin_pages(obj);
3252
Chris Wilson506a8e82015-12-08 11:55:07 +00003253 if (flags & PIN_OFFSET_FIXED) {
Chris Wilson59bfa122016-08-04 16:32:31 +01003254 u64 offset = flags & PIN_OFFSET_MASK;
Chris Wilsonde180032016-08-04 16:32:29 +01003255 if (offset & (alignment - 1) || offset > end - size) {
Chris Wilson506a8e82015-12-08 11:55:07 +00003256 ret = -EINVAL;
Chris Wilsonde180032016-08-04 16:32:29 +01003257 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003258 }
Chris Wilsonde180032016-08-04 16:32:29 +01003259
Chris Wilson506a8e82015-12-08 11:55:07 +00003260 vma->node.start = offset;
3261 vma->node.size = size;
3262 vma->node.color = obj->cache_level;
Chris Wilsonde180032016-08-04 16:32:29 +01003263 ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node);
Chris Wilson506a8e82015-12-08 11:55:07 +00003264 if (ret) {
3265 ret = i915_gem_evict_for_vma(vma);
3266 if (ret == 0)
Chris Wilsonde180032016-08-04 16:32:29 +01003267 ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node);
3268 if (ret)
3269 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003270 }
Michel Thierry101b5062015-10-01 13:33:57 +01003271 } else {
Chris Wilsonde180032016-08-04 16:32:29 +01003272 u32 search_flag, alloc_flag;
3273
Chris Wilson506a8e82015-12-08 11:55:07 +00003274 if (flags & PIN_HIGH) {
3275 search_flag = DRM_MM_SEARCH_BELOW;
3276 alloc_flag = DRM_MM_CREATE_TOP;
3277 } else {
3278 search_flag = DRM_MM_SEARCH_DEFAULT;
3279 alloc_flag = DRM_MM_CREATE_DEFAULT;
3280 }
Michel Thierry101b5062015-10-01 13:33:57 +01003281
Chris Wilson954c4692016-08-04 16:32:26 +01003282 /* We only allocate in PAGE_SIZE/GTT_PAGE_SIZE (4096) chunks,
3283 * so we know that we always have a minimum alignment of 4096.
3284 * The drm_mm range manager is optimised to return results
3285 * with zero alignment, so where possible use the optimal
3286 * path.
3287 */
3288 if (alignment <= 4096)
3289 alignment = 0;
3290
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003291search_free:
Chris Wilsonde180032016-08-04 16:32:29 +01003292 ret = drm_mm_insert_node_in_range_generic(&vma->vm->mm,
3293 &vma->node,
Chris Wilson506a8e82015-12-08 11:55:07 +00003294 size, alignment,
3295 obj->cache_level,
3296 start, end,
3297 search_flag,
3298 alloc_flag);
3299 if (ret) {
Chris Wilsonde180032016-08-04 16:32:29 +01003300 ret = i915_gem_evict_something(vma->vm, size, alignment,
Chris Wilson506a8e82015-12-08 11:55:07 +00003301 obj->cache_level,
3302 start, end,
3303 flags);
3304 if (ret == 0)
3305 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003306
Chris Wilsonde180032016-08-04 16:32:29 +01003307 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003308 }
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003309
3310 GEM_BUG_ON(vma->node.start < start);
3311 GEM_BUG_ON(vma->node.start + vma->node.size > end);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003312 }
Chris Wilson37508582016-08-04 16:32:24 +01003313 GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level));
Eric Anholt673a3942008-07-30 12:06:12 -07003314
Ben Widawsky35c20a62013-05-31 11:28:48 -07003315 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilsonde180032016-08-04 16:32:29 +01003316 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
Chris Wilson15717de2016-08-04 07:52:26 +01003317 obj->bind_count++;
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003318
Chris Wilson59bfa122016-08-04 16:32:31 +01003319 return 0;
Ben Widawsky2f633152013-07-17 12:19:03 -07003320
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003321err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003322 i915_gem_object_unpin_pages(obj);
Chris Wilson59bfa122016-08-04 16:32:31 +01003323 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003324}
3325
Chris Wilson000433b2013-08-08 14:41:09 +01003326bool
Chris Wilson2c225692013-08-09 12:26:45 +01003327i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3328 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003329{
Eric Anholt673a3942008-07-30 12:06:12 -07003330 /* If we don't have a page list set up, then we're not pinned
3331 * to GPU, and we can ignore the cache flush because it'll happen
3332 * again at bind time.
3333 */
Chris Wilson05394f32010-11-08 19:18:58 +00003334 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003335 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003336
Imre Deak769ce462013-02-13 21:56:05 +02003337 /*
3338 * Stolen memory is always coherent with the GPU as it is explicitly
3339 * marked as wc by the system, or the system is cache-coherent.
3340 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003341 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003342 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003343
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003344 /* If the GPU is snooping the contents of the CPU cache,
3345 * we do not need to manually clear the CPU cache lines. However,
3346 * the caches are only snooped when the render cache is
3347 * flushed/invalidated. As we always have to emit invalidations
3348 * and flushes when moving into and out of the RENDER domain, correct
3349 * snooping behaviour occurs naturally as the result of our domain
3350 * tracking.
3351 */
Chris Wilson0f719792015-01-13 13:32:52 +00003352 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3353 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003354 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003355 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003356
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003357 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003358 drm_clflush_sg(obj->pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003359 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003360
3361 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003362}
3363
3364/** Flushes the GTT write domain for the object if it's dirty. */
3365static void
Chris Wilson05394f32010-11-08 19:18:58 +00003366i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003367{
Chris Wilson3b5724d2016-08-18 17:16:49 +01003368 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003369
Chris Wilson05394f32010-11-08 19:18:58 +00003370 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003371 return;
3372
Chris Wilson63256ec2011-01-04 18:42:07 +00003373 /* No actual flushing is required for the GTT write domain. Writes
Chris Wilson3b5724d2016-08-18 17:16:49 +01003374 * to it "immediately" go to main memory as far as we know, so there's
Eric Anholte47c68e2008-11-14 13:35:19 -08003375 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003376 *
3377 * However, we do have to enforce the order so that all writes through
3378 * the GTT land before any writes to the device, such as updates to
3379 * the GATT itself.
Chris Wilson3b5724d2016-08-18 17:16:49 +01003380 *
3381 * We also have to wait a bit for the writes to land from the GTT.
3382 * An uncached read (i.e. mmio) seems to be ideal for the round-trip
3383 * timing. This issue has only been observed when switching quickly
3384 * between GTT writes and CPU reads from inside the kernel on recent hw,
3385 * and it appears to only affect discrete GTT blocks (i.e. on LLC
3386 * system agents we cannot reproduce this behaviour).
Eric Anholte47c68e2008-11-14 13:35:19 -08003387 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003388 wmb();
Chris Wilson3b5724d2016-08-18 17:16:49 +01003389 if (INTEL_GEN(dev_priv) >= 6 && !HAS_LLC(dev_priv))
Akash Goel3b3f1652016-10-13 22:44:48 +05303390 POSTING_READ(RING_ACTHD(dev_priv->engine[RCS]->mmio_base));
Chris Wilson63256ec2011-01-04 18:42:07 +00003391
Chris Wilsond243ad82016-08-18 17:16:44 +01003392 intel_fb_obj_flush(obj, false, write_origin(obj, I915_GEM_DOMAIN_GTT));
Daniel Vetterf99d7062014-06-19 16:01:59 +02003393
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003394 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003395 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003396 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003397 I915_GEM_DOMAIN_GTT);
Eric Anholte47c68e2008-11-14 13:35:19 -08003398}
3399
3400/** Flushes the CPU write domain for the object if it's dirty. */
3401static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003402i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003403{
Chris Wilson05394f32010-11-08 19:18:58 +00003404 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003405 return;
3406
Daniel Vettere62b59e2015-01-21 14:53:48 +01003407 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilsonc0336662016-05-06 15:40:21 +01003408 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilson000433b2013-08-08 14:41:09 +01003409
Rodrigo Vivide152b62015-07-07 16:28:51 -07003410 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003411
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003412 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003413 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003414 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003415 I915_GEM_DOMAIN_CPU);
Eric Anholte47c68e2008-11-14 13:35:19 -08003416}
3417
Chris Wilson383d5822016-08-18 17:17:08 +01003418static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj)
3419{
3420 struct i915_vma *vma;
3421
3422 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3423 if (!i915_vma_is_ggtt(vma))
3424 continue;
3425
3426 if (i915_vma_is_active(vma))
3427 continue;
3428
3429 if (!drm_mm_node_allocated(&vma->node))
3430 continue;
3431
3432 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3433 }
3434}
3435
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003436/**
3437 * Moves a single object to the GTT read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003438 * @obj: object to act on
3439 * @write: ask for write access or read only
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003440 *
3441 * This function returns when the move is complete, including waiting on
3442 * flushes to occur.
3443 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003444int
Chris Wilson20217462010-11-23 15:26:33 +00003445i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003446{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003447 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003448 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003449
Chris Wilsone95433c2016-10-28 13:58:27 +01003450 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003451
Chris Wilsone95433c2016-10-28 13:58:27 +01003452 ret = i915_gem_object_wait(obj,
3453 I915_WAIT_INTERRUPTIBLE |
3454 I915_WAIT_LOCKED |
3455 (write ? I915_WAIT_ALL : 0),
3456 MAX_SCHEDULE_TIMEOUT,
3457 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003458 if (ret)
3459 return ret;
3460
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003461 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3462 return 0;
3463
Chris Wilson43566de2015-01-02 16:29:29 +05303464 /* Flush and acquire obj->pages so that we are coherent through
3465 * direct access in memory with previous cached writes through
3466 * shmemfs and that our cache domain tracking remains valid.
3467 * For example, if the obj->filp was moved to swap without us
3468 * being notified and releasing the pages, we would mistakenly
3469 * continue to assume that the obj remained out of the CPU cached
3470 * domain.
3471 */
3472 ret = i915_gem_object_get_pages(obj);
3473 if (ret)
3474 return ret;
3475
Daniel Vettere62b59e2015-01-21 14:53:48 +01003476 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003477
Chris Wilsond0a57782012-10-09 19:24:37 +01003478 /* Serialise direct access to this object with the barriers for
3479 * coherent writes from the GPU, by effectively invalidating the
3480 * GTT domain upon first access.
3481 */
3482 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3483 mb();
3484
Chris Wilson05394f32010-11-08 19:18:58 +00003485 old_write_domain = obj->base.write_domain;
3486 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003487
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003488 /* It should now be out of any other write domains, and we can update
3489 * the domain values for our changes.
3490 */
Chris Wilson05394f32010-11-08 19:18:58 +00003491 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3492 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003493 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003494 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3495 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3496 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003497 }
3498
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003499 trace_i915_gem_object_change_domain(obj,
3500 old_read_domains,
3501 old_write_domain);
3502
Chris Wilson8325a092012-04-24 15:52:35 +01003503 /* And bump the LRU for this access */
Chris Wilson383d5822016-08-18 17:17:08 +01003504 i915_gem_object_bump_inactive_ggtt(obj);
Chris Wilson8325a092012-04-24 15:52:35 +01003505
Eric Anholte47c68e2008-11-14 13:35:19 -08003506 return 0;
3507}
3508
Chris Wilsonef55f922015-10-09 14:11:27 +01003509/**
3510 * Changes the cache-level of an object across all VMA.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003511 * @obj: object to act on
3512 * @cache_level: new cache level to set for the object
Chris Wilsonef55f922015-10-09 14:11:27 +01003513 *
3514 * After this function returns, the object will be in the new cache-level
3515 * across all GTT and the contents of the backing storage will be coherent,
3516 * with respect to the new cache-level. In order to keep the backing storage
3517 * coherent for all users, we only allow a single cache level to be set
3518 * globally on the object and prevent it from being changed whilst the
3519 * hardware is reading from the object. That is if the object is currently
3520 * on the scanout it will be set to uncached (or equivalent display
3521 * cache coherency) and all non-MOCS GPU access will also be uncached so
3522 * that all direct access to the scanout remains coherent.
3523 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003524int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3525 enum i915_cache_level cache_level)
3526{
Chris Wilsonaa653a62016-08-04 07:52:27 +01003527 struct i915_vma *vma;
Ville Syrjäläed75a552015-08-11 19:47:10 +03003528 int ret = 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003529
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003530 lockdep_assert_held(&obj->base.dev->struct_mutex);
3531
Chris Wilsone4ffd172011-04-04 09:44:39 +01003532 if (obj->cache_level == cache_level)
Ville Syrjäläed75a552015-08-11 19:47:10 +03003533 goto out;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003534
Chris Wilsonef55f922015-10-09 14:11:27 +01003535 /* Inspect the list of currently bound VMA and unbind any that would
3536 * be invalid given the new cache-level. This is principally to
3537 * catch the issue of the CS prefetch crossing page boundaries and
3538 * reading an invalid PTE on older architectures.
3539 */
Chris Wilsonaa653a62016-08-04 07:52:27 +01003540restart:
3541 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003542 if (!drm_mm_node_allocated(&vma->node))
3543 continue;
3544
Chris Wilson20dfbde2016-08-04 16:32:30 +01003545 if (i915_vma_is_pinned(vma)) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003546 DRM_DEBUG("can not change the cache level of pinned objects\n");
3547 return -EBUSY;
3548 }
3549
Chris Wilsonaa653a62016-08-04 07:52:27 +01003550 if (i915_gem_valid_gtt_space(vma, cache_level))
3551 continue;
3552
3553 ret = i915_vma_unbind(vma);
3554 if (ret)
3555 return ret;
3556
3557 /* As unbinding may affect other elements in the
3558 * obj->vma_list (due to side-effects from retiring
3559 * an active vma), play safe and restart the iterator.
3560 */
3561 goto restart;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003562 }
3563
Chris Wilsonef55f922015-10-09 14:11:27 +01003564 /* We can reuse the existing drm_mm nodes but need to change the
3565 * cache-level on the PTE. We could simply unbind them all and
3566 * rebind with the correct cache-level on next use. However since
3567 * we already have a valid slot, dma mapping, pages etc, we may as
3568 * rewrite the PTE in the belief that doing so tramples upon less
3569 * state and so involves less work.
3570 */
Chris Wilson15717de2016-08-04 07:52:26 +01003571 if (obj->bind_count) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003572 /* Before we change the PTE, the GPU must not be accessing it.
3573 * If we wait upon the object, we know that all the bound
3574 * VMA are no longer active.
3575 */
Chris Wilsone95433c2016-10-28 13:58:27 +01003576 ret = i915_gem_object_wait(obj,
3577 I915_WAIT_INTERRUPTIBLE |
3578 I915_WAIT_LOCKED |
3579 I915_WAIT_ALL,
3580 MAX_SCHEDULE_TIMEOUT,
3581 NULL);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003582 if (ret)
3583 return ret;
3584
Chris Wilsonaa653a62016-08-04 07:52:27 +01003585 if (!HAS_LLC(obj->base.dev) && cache_level != I915_CACHE_NONE) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003586 /* Access to snoopable pages through the GTT is
3587 * incoherent and on some machines causes a hard
3588 * lockup. Relinquish the CPU mmaping to force
3589 * userspace to refault in the pages and we can
3590 * then double check if the GTT mapping is still
3591 * valid for that pointer access.
3592 */
3593 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003594
Chris Wilsonef55f922015-10-09 14:11:27 +01003595 /* As we no longer need a fence for GTT access,
3596 * we can relinquish it now (and so prevent having
3597 * to steal a fence from someone else on the next
3598 * fence request). Note GPU activity would have
3599 * dropped the fence as all snoopable access is
3600 * supposed to be linear.
3601 */
Chris Wilson49ef5292016-08-18 17:17:00 +01003602 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3603 ret = i915_vma_put_fence(vma);
3604 if (ret)
3605 return ret;
3606 }
Chris Wilsonef55f922015-10-09 14:11:27 +01003607 } else {
3608 /* We either have incoherent backing store and
3609 * so no GTT access or the architecture is fully
3610 * coherent. In such cases, existing GTT mmaps
3611 * ignore the cache bit in the PTE and we can
3612 * rewrite it without confusing the GPU or having
3613 * to force userspace to fault back in its mmaps.
3614 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003615 }
3616
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003617 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003618 if (!drm_mm_node_allocated(&vma->node))
3619 continue;
3620
3621 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3622 if (ret)
3623 return ret;
3624 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003625 }
3626
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003627 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003628 vma->node.color = cache_level;
3629 obj->cache_level = cache_level;
3630
Ville Syrjäläed75a552015-08-11 19:47:10 +03003631out:
Chris Wilsonef55f922015-10-09 14:11:27 +01003632 /* Flush the dirty CPU caches to the backing storage so that the
3633 * object is now coherent at its new cache level (with respect
3634 * to the access domain).
3635 */
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05303636 if (obj->cache_dirty && cpu_write_needs_clflush(obj)) {
Chris Wilson0f719792015-01-13 13:32:52 +00003637 if (i915_gem_clflush_object(obj, true))
Chris Wilsonc0336662016-05-06 15:40:21 +01003638 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilsone4ffd172011-04-04 09:44:39 +01003639 }
3640
Chris Wilsone4ffd172011-04-04 09:44:39 +01003641 return 0;
3642}
3643
Ben Widawsky199adf42012-09-21 17:01:20 -07003644int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3645 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003646{
Ben Widawsky199adf42012-09-21 17:01:20 -07003647 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003648 struct drm_i915_gem_object *obj;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003649
Chris Wilson03ac0642016-07-20 13:31:51 +01003650 obj = i915_gem_object_lookup(file, args->handle);
3651 if (!obj)
Chris Wilson432be692015-05-07 12:14:55 +01003652 return -ENOENT;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003653
Chris Wilson651d7942013-08-08 14:41:10 +01003654 switch (obj->cache_level) {
3655 case I915_CACHE_LLC:
3656 case I915_CACHE_L3_LLC:
3657 args->caching = I915_CACHING_CACHED;
3658 break;
3659
Chris Wilson4257d3b2013-08-08 14:41:11 +01003660 case I915_CACHE_WT:
3661 args->caching = I915_CACHING_DISPLAY;
3662 break;
3663
Chris Wilson651d7942013-08-08 14:41:10 +01003664 default:
3665 args->caching = I915_CACHING_NONE;
3666 break;
3667 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003668
Chris Wilson34911fd2016-07-20 13:31:54 +01003669 i915_gem_object_put_unlocked(obj);
Chris Wilson432be692015-05-07 12:14:55 +01003670 return 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003671}
3672
Ben Widawsky199adf42012-09-21 17:01:20 -07003673int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3674 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003675{
Chris Wilson9c870d02016-10-24 13:42:15 +01003676 struct drm_i915_private *i915 = to_i915(dev);
Ben Widawsky199adf42012-09-21 17:01:20 -07003677 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003678 struct drm_i915_gem_object *obj;
3679 enum i915_cache_level level;
3680 int ret;
3681
Ben Widawsky199adf42012-09-21 17:01:20 -07003682 switch (args->caching) {
3683 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003684 level = I915_CACHE_NONE;
3685 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003686 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003687 /*
3688 * Due to a HW issue on BXT A stepping, GPU stores via a
3689 * snooped mapping may leave stale data in a corresponding CPU
3690 * cacheline, whereas normally such cachelines would get
3691 * invalidated.
3692 */
Chris Wilson9c870d02016-10-24 13:42:15 +01003693 if (!HAS_LLC(i915) && !HAS_SNOOP(i915))
Imre Deake5756c12015-08-14 18:43:30 +03003694 return -ENODEV;
3695
Chris Wilsone6994ae2012-07-10 10:27:08 +01003696 level = I915_CACHE_LLC;
3697 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003698 case I915_CACHING_DISPLAY:
Chris Wilson9c870d02016-10-24 13:42:15 +01003699 level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003700 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003701 default:
3702 return -EINVAL;
3703 }
3704
Ben Widawsky3bc29132012-09-26 16:15:20 -07003705 ret = i915_mutex_lock_interruptible(dev);
3706 if (ret)
Chris Wilson9c870d02016-10-24 13:42:15 +01003707 return ret;
Ben Widawsky3bc29132012-09-26 16:15:20 -07003708
Chris Wilson03ac0642016-07-20 13:31:51 +01003709 obj = i915_gem_object_lookup(file, args->handle);
3710 if (!obj) {
Chris Wilsone6994ae2012-07-10 10:27:08 +01003711 ret = -ENOENT;
3712 goto unlock;
3713 }
3714
3715 ret = i915_gem_object_set_cache_level(obj, level);
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003716 i915_gem_object_put(obj);
Chris Wilsone6994ae2012-07-10 10:27:08 +01003717unlock:
3718 mutex_unlock(&dev->struct_mutex);
3719 return ret;
3720}
3721
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003722/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003723 * Prepare buffer for display plane (scanout, cursors, etc).
3724 * Can be called from an uninterruptible phase (modesetting) and allows
3725 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003726 */
Chris Wilson058d88c2016-08-15 10:49:06 +01003727struct i915_vma *
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003728i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3729 u32 alignment,
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003730 const struct i915_ggtt_view *view)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003731{
Chris Wilson058d88c2016-08-15 10:49:06 +01003732 struct i915_vma *vma;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003733 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003734 int ret;
3735
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003736 lockdep_assert_held(&obj->base.dev->struct_mutex);
3737
Chris Wilsoncc98b412013-08-09 12:25:09 +01003738 /* Mark the pin_display early so that we account for the
3739 * display coherency whilst setting up the cache domains.
3740 */
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003741 obj->pin_display++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003742
Eric Anholta7ef0642011-03-29 16:59:54 -07003743 /* The display engine is not coherent with the LLC cache on gen6. As
3744 * a result, we make sure that the pinning that is about to occur is
3745 * done with uncached PTEs. This is lowest common denominator for all
3746 * chipsets.
3747 *
3748 * However for gen6+, we could do better by using the GFDT bit instead
3749 * of uncaching, which would allow us to flush all the LLC-cached data
3750 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3751 */
Chris Wilson651d7942013-08-08 14:41:10 +01003752 ret = i915_gem_object_set_cache_level(obj,
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003753 HAS_WT(to_i915(obj->base.dev)) ?
3754 I915_CACHE_WT : I915_CACHE_NONE);
Chris Wilson058d88c2016-08-15 10:49:06 +01003755 if (ret) {
3756 vma = ERR_PTR(ret);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003757 goto err_unpin_display;
Chris Wilson058d88c2016-08-15 10:49:06 +01003758 }
Eric Anholta7ef0642011-03-29 16:59:54 -07003759
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003760 /* As the user may map the buffer once pinned in the display plane
3761 * (e.g. libkms for the bootup splash), we have to ensure that we
Chris Wilson2efb8132016-08-18 17:17:06 +01003762 * always use map_and_fenceable for all scanout buffers. However,
3763 * it may simply be too big to fit into mappable, in which case
3764 * put it anyway and hope that userspace can cope (but always first
3765 * try to preserve the existing ABI).
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003766 */
Chris Wilson2efb8132016-08-18 17:17:06 +01003767 vma = ERR_PTR(-ENOSPC);
3768 if (view->type == I915_GGTT_VIEW_NORMAL)
3769 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment,
3770 PIN_MAPPABLE | PIN_NONBLOCK);
3771 if (IS_ERR(vma))
3772 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, 0);
Chris Wilson058d88c2016-08-15 10:49:06 +01003773 if (IS_ERR(vma))
Chris Wilsoncc98b412013-08-09 12:25:09 +01003774 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003775
Chris Wilsond8923dc2016-08-18 17:17:07 +01003776 vma->display_alignment = max_t(u64, vma->display_alignment, alignment);
3777
Daniel Vettere62b59e2015-01-21 14:53:48 +01003778 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003779
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003780 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003781 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003782
3783 /* It should now be out of any other write domains, and we can update
3784 * the domain values for our changes.
3785 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003786 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003787 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003788
3789 trace_i915_gem_object_change_domain(obj,
3790 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003791 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003792
Chris Wilson058d88c2016-08-15 10:49:06 +01003793 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003794
3795err_unpin_display:
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003796 obj->pin_display--;
Chris Wilson058d88c2016-08-15 10:49:06 +01003797 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003798}
3799
3800void
Chris Wilson058d88c2016-08-15 10:49:06 +01003801i915_gem_object_unpin_from_display_plane(struct i915_vma *vma)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003802{
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003803 lockdep_assert_held(&vma->vm->dev->struct_mutex);
3804
Chris Wilson058d88c2016-08-15 10:49:06 +01003805 if (WARN_ON(vma->obj->pin_display == 0))
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003806 return;
3807
Chris Wilsond8923dc2016-08-18 17:17:07 +01003808 if (--vma->obj->pin_display == 0)
3809 vma->display_alignment = 0;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003810
Chris Wilson383d5822016-08-18 17:17:08 +01003811 /* Bump the LRU to try and avoid premature eviction whilst flipping */
3812 if (!i915_vma_is_active(vma))
3813 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3814
Chris Wilson058d88c2016-08-15 10:49:06 +01003815 i915_vma_unpin(vma);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003816}
3817
Eric Anholte47c68e2008-11-14 13:35:19 -08003818/**
3819 * Moves a single object to the CPU read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003820 * @obj: object to act on
3821 * @write: requesting write or read-only access
Eric Anholte47c68e2008-11-14 13:35:19 -08003822 *
3823 * This function returns when the move is complete, including waiting on
3824 * flushes to occur.
3825 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003826int
Chris Wilson919926a2010-11-12 13:42:53 +00003827i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003828{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003829 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003830 int ret;
3831
Chris Wilsone95433c2016-10-28 13:58:27 +01003832 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003833
Chris Wilsone95433c2016-10-28 13:58:27 +01003834 ret = i915_gem_object_wait(obj,
3835 I915_WAIT_INTERRUPTIBLE |
3836 I915_WAIT_LOCKED |
3837 (write ? I915_WAIT_ALL : 0),
3838 MAX_SCHEDULE_TIMEOUT,
3839 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003840 if (ret)
3841 return ret;
3842
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003843 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3844 return 0;
3845
Eric Anholte47c68e2008-11-14 13:35:19 -08003846 i915_gem_object_flush_gtt_write_domain(obj);
3847
Chris Wilson05394f32010-11-08 19:18:58 +00003848 old_write_domain = obj->base.write_domain;
3849 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003850
Eric Anholte47c68e2008-11-14 13:35:19 -08003851 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003852 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003853 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003854
Chris Wilson05394f32010-11-08 19:18:58 +00003855 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003856 }
3857
3858 /* It should now be out of any other write domains, and we can update
3859 * the domain values for our changes.
3860 */
Chris Wilson05394f32010-11-08 19:18:58 +00003861 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003862
3863 /* If we're writing through the CPU, then the GPU read domains will
3864 * need to be invalidated at next use.
3865 */
3866 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003867 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3868 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003869 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003870
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003871 trace_i915_gem_object_change_domain(obj,
3872 old_read_domains,
3873 old_write_domain);
3874
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003875 return 0;
3876}
3877
Eric Anholt673a3942008-07-30 12:06:12 -07003878/* Throttle our rendering by waiting until the ring has completed our requests
3879 * emitted over 20 msec ago.
3880 *
Eric Anholtb9624422009-06-03 07:27:35 +00003881 * Note that if we were to use the current jiffies each time around the loop,
3882 * we wouldn't escape the function with any frames outstanding if the time to
3883 * render a frame was over 20ms.
3884 *
Eric Anholt673a3942008-07-30 12:06:12 -07003885 * This should get us reasonable parallelism between CPU and GPU but also
3886 * relatively low latency when blocking on a particular request to finish.
3887 */
3888static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003889i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003890{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003891 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003892 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01003893 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
John Harrison54fb2412014-11-24 18:49:27 +00003894 struct drm_i915_gem_request *request, *target = NULL;
Chris Wilsone95433c2016-10-28 13:58:27 +01003895 long ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003896
Chris Wilsonf4457ae2016-04-13 17:35:08 +01003897 /* ABI: return -EIO if already wedged */
3898 if (i915_terminally_wedged(&dev_priv->gpu_error))
3899 return -EIO;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003900
Chris Wilson1c255952010-09-26 11:03:27 +01003901 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003902 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003903 if (time_after_eq(request->emitted_jiffies, recent_enough))
3904 break;
3905
John Harrisonfcfa423c2015-05-29 17:44:12 +01003906 /*
3907 * Note that the request might not have been submitted yet.
3908 * In which case emitted_jiffies will be zero.
3909 */
3910 if (!request->emitted_jiffies)
3911 continue;
3912
John Harrison54fb2412014-11-24 18:49:27 +00003913 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00003914 }
John Harrisonff865882014-11-24 18:49:28 +00003915 if (target)
Chris Wilsone8a261e2016-07-20 13:31:49 +01003916 i915_gem_request_get(target);
Chris Wilson1c255952010-09-26 11:03:27 +01003917 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003918
John Harrison54fb2412014-11-24 18:49:27 +00003919 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003920 return 0;
3921
Chris Wilsone95433c2016-10-28 13:58:27 +01003922 ret = i915_wait_request(target,
3923 I915_WAIT_INTERRUPTIBLE,
3924 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone8a261e2016-07-20 13:31:49 +01003925 i915_gem_request_put(target);
John Harrisonff865882014-11-24 18:49:28 +00003926
Chris Wilsone95433c2016-10-28 13:58:27 +01003927 return ret < 0 ? ret : 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003928}
3929
Chris Wilsond23db882014-05-23 08:48:08 +02003930static bool
Chris Wilson91b2db62016-08-04 16:32:23 +01003931i915_vma_misplaced(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
Chris Wilsond23db882014-05-23 08:48:08 +02003932{
Chris Wilson59bfa122016-08-04 16:32:31 +01003933 if (!drm_mm_node_allocated(&vma->node))
3934 return false;
3935
Chris Wilson91b2db62016-08-04 16:32:23 +01003936 if (vma->node.size < size)
3937 return true;
3938
3939 if (alignment && vma->node.start & (alignment - 1))
Chris Wilsond23db882014-05-23 08:48:08 +02003940 return true;
3941
Chris Wilson05a20d02016-08-18 17:16:55 +01003942 if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma))
Chris Wilsond23db882014-05-23 08:48:08 +02003943 return true;
3944
3945 if (flags & PIN_OFFSET_BIAS &&
3946 vma->node.start < (flags & PIN_OFFSET_MASK))
3947 return true;
3948
Chris Wilson506a8e82015-12-08 11:55:07 +00003949 if (flags & PIN_OFFSET_FIXED &&
3950 vma->node.start != (flags & PIN_OFFSET_MASK))
3951 return true;
3952
Chris Wilsond23db882014-05-23 08:48:08 +02003953 return false;
3954}
3955
Chris Wilsond0710ab2015-11-20 14:16:39 +00003956void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
3957{
3958 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsona9f14812016-08-04 16:32:28 +01003959 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003960 bool mappable, fenceable;
3961 u32 fence_size, fence_alignment;
3962
Chris Wilsona9f14812016-08-04 16:32:28 +01003963 fence_size = i915_gem_get_ggtt_size(dev_priv,
Chris Wilson05a20d02016-08-18 17:16:55 +01003964 vma->size,
Chris Wilson3e510a82016-08-05 10:14:23 +01003965 i915_gem_object_get_tiling(obj));
Chris Wilsona9f14812016-08-04 16:32:28 +01003966 fence_alignment = i915_gem_get_ggtt_alignment(dev_priv,
Chris Wilson05a20d02016-08-18 17:16:55 +01003967 vma->size,
Chris Wilson3e510a82016-08-05 10:14:23 +01003968 i915_gem_object_get_tiling(obj),
Chris Wilsonad1a7d22016-08-04 16:32:27 +01003969 true);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003970
3971 fenceable = (vma->node.size == fence_size &&
3972 (vma->node.start & (fence_alignment - 1)) == 0);
3973
3974 mappable = (vma->node.start + fence_size <=
Chris Wilsona9f14812016-08-04 16:32:28 +01003975 dev_priv->ggtt.mappable_end);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003976
Tvrtko Ursulin07ee2bc2016-10-25 17:40:35 +01003977 /*
3978 * Explicitly disable for rotated VMA since the display does not
3979 * need the fence and the VMA is not accessible to other users.
3980 */
3981 if (mappable && fenceable &&
3982 vma->ggtt_view.type != I915_GGTT_VIEW_ROTATED)
Chris Wilson05a20d02016-08-18 17:16:55 +01003983 vma->flags |= I915_VMA_CAN_FENCE;
3984 else
3985 vma->flags &= ~I915_VMA_CAN_FENCE;
Chris Wilsond0710ab2015-11-20 14:16:39 +00003986}
3987
Chris Wilson305bc232016-08-04 16:32:33 +01003988int __i915_vma_do_pin(struct i915_vma *vma,
3989 u64 size, u64 alignment, u64 flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003990{
Chris Wilson305bc232016-08-04 16:32:33 +01003991 unsigned int bound = vma->flags;
Eric Anholt673a3942008-07-30 12:06:12 -07003992 int ret;
3993
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003994 lockdep_assert_held(&vma->vm->dev->struct_mutex);
Chris Wilson59bfa122016-08-04 16:32:31 +01003995 GEM_BUG_ON((flags & (PIN_GLOBAL | PIN_USER)) == 0);
Chris Wilson3272db52016-08-04 16:32:32 +01003996 GEM_BUG_ON((flags & PIN_GLOBAL) && !i915_vma_is_ggtt(vma));
Ben Widawsky6e7186a2014-05-06 22:21:36 -07003997
Chris Wilson305bc232016-08-04 16:32:33 +01003998 if (WARN_ON(bound & I915_VMA_PIN_OVERFLOW)) {
3999 ret = -EBUSY;
4000 goto err;
4001 }
Chris Wilsonc826c442014-10-31 13:53:53 +00004002
Chris Wilsonde895082016-08-04 16:32:34 +01004003 if ((bound & I915_VMA_BIND_MASK) == 0) {
Chris Wilson59bfa122016-08-04 16:32:31 +01004004 ret = i915_vma_insert(vma, size, alignment, flags);
4005 if (ret)
4006 goto err;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004007 }
4008
Chris Wilson59bfa122016-08-04 16:32:31 +01004009 ret = i915_vma_bind(vma, vma->obj->cache_level, flags);
Chris Wilson3b165252016-08-04 16:32:25 +01004010 if (ret)
Chris Wilson59bfa122016-08-04 16:32:31 +01004011 goto err;
Chris Wilson3b165252016-08-04 16:32:25 +01004012
Chris Wilson3272db52016-08-04 16:32:32 +01004013 if ((bound ^ vma->flags) & I915_VMA_GLOBAL_BIND)
Chris Wilsond0710ab2015-11-20 14:16:39 +00004014 __i915_vma_set_map_and_fenceable(vma);
Chris Wilsonef79e172014-10-31 13:53:52 +00004015
Chris Wilson3b165252016-08-04 16:32:25 +01004016 GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
Eric Anholt673a3942008-07-30 12:06:12 -07004017 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004018
Chris Wilson59bfa122016-08-04 16:32:31 +01004019err:
4020 __i915_vma_unpin(vma);
4021 return ret;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004022}
4023
Chris Wilson058d88c2016-08-15 10:49:06 +01004024struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004025i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
4026 const struct i915_ggtt_view *view,
Chris Wilson91b2db62016-08-04 16:32:23 +01004027 u64 size,
Chris Wilson2ffffd02016-08-04 16:32:22 +01004028 u64 alignment,
4029 u64 flags)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004030{
Chris Wilsonad16d2e2016-10-13 09:55:04 +01004031 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
4032 struct i915_address_space *vm = &dev_priv->ggtt.base;
Chris Wilson59bfa122016-08-04 16:32:31 +01004033 struct i915_vma *vma;
4034 int ret;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004035
Chris Wilson4c7d62c2016-10-28 13:58:32 +01004036 lockdep_assert_held(&obj->base.dev->struct_mutex);
4037
Chris Wilson058d88c2016-08-15 10:49:06 +01004038 vma = i915_gem_obj_lookup_or_create_vma(obj, vm, view);
Chris Wilson59bfa122016-08-04 16:32:31 +01004039 if (IS_ERR(vma))
Chris Wilson058d88c2016-08-15 10:49:06 +01004040 return vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01004041
4042 if (i915_vma_misplaced(vma, size, alignment, flags)) {
4043 if (flags & PIN_NONBLOCK &&
4044 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma)))
Chris Wilson058d88c2016-08-15 10:49:06 +01004045 return ERR_PTR(-ENOSPC);
Chris Wilson59bfa122016-08-04 16:32:31 +01004046
Chris Wilsonad16d2e2016-10-13 09:55:04 +01004047 if (flags & PIN_MAPPABLE) {
4048 u32 fence_size;
4049
4050 fence_size = i915_gem_get_ggtt_size(dev_priv, vma->size,
4051 i915_gem_object_get_tiling(obj));
4052 /* If the required space is larger than the available
4053 * aperture, we will not able to find a slot for the
4054 * object and unbinding the object now will be in
4055 * vain. Worse, doing so may cause us to ping-pong
4056 * the object in and out of the Global GTT and
4057 * waste a lot of cycles under the mutex.
4058 */
4059 if (fence_size > dev_priv->ggtt.mappable_end)
4060 return ERR_PTR(-E2BIG);
4061
4062 /* If NONBLOCK is set the caller is optimistically
4063 * trying to cache the full object within the mappable
4064 * aperture, and *must* have a fallback in place for
4065 * situations where we cannot bind the object. We
4066 * can be a little more lax here and use the fallback
4067 * more often to avoid costly migrations of ourselves
4068 * and other objects within the aperture.
4069 *
4070 * Half-the-aperture is used as a simple heuristic.
4071 * More interesting would to do search for a free
4072 * block prior to making the commitment to unbind.
4073 * That caters for the self-harm case, and with a
4074 * little more heuristics (e.g. NOFAULT, NOEVICT)
4075 * we could try to minimise harm to others.
4076 */
4077 if (flags & PIN_NONBLOCK &&
4078 fence_size > dev_priv->ggtt.mappable_end / 2)
4079 return ERR_PTR(-ENOSPC);
4080 }
4081
Chris Wilson59bfa122016-08-04 16:32:31 +01004082 WARN(i915_vma_is_pinned(vma),
4083 "bo is already pinned in ggtt with incorrect alignment:"
Chris Wilson05a20d02016-08-18 17:16:55 +01004084 " offset=%08x, req.alignment=%llx,"
4085 " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n",
4086 i915_ggtt_offset(vma), alignment,
Chris Wilson59bfa122016-08-04 16:32:31 +01004087 !!(flags & PIN_MAPPABLE),
Chris Wilson05a20d02016-08-18 17:16:55 +01004088 i915_vma_is_map_and_fenceable(vma));
Chris Wilson59bfa122016-08-04 16:32:31 +01004089 ret = i915_vma_unbind(vma);
4090 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +01004091 return ERR_PTR(ret);
Chris Wilson59bfa122016-08-04 16:32:31 +01004092 }
4093
Chris Wilson058d88c2016-08-15 10:49:06 +01004094 ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL);
4095 if (ret)
4096 return ERR_PTR(ret);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004097
Chris Wilson058d88c2016-08-15 10:49:06 +01004098 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07004099}
4100
Chris Wilsonedf6b762016-08-09 09:23:33 +01004101static __always_inline unsigned int __busy_read_flag(unsigned int id)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004102{
4103 /* Note that we could alias engines in the execbuf API, but
4104 * that would be very unwise as it prevents userspace from
4105 * fine control over engine selection. Ahem.
4106 *
4107 * This should be something like EXEC_MAX_ENGINE instead of
4108 * I915_NUM_ENGINES.
4109 */
4110 BUILD_BUG_ON(I915_NUM_ENGINES > 16);
4111 return 0x10000 << id;
4112}
4113
4114static __always_inline unsigned int __busy_write_id(unsigned int id)
4115{
Chris Wilson70cb4722016-08-09 18:08:25 +01004116 /* The uABI guarantees an active writer is also amongst the read
4117 * engines. This would be true if we accessed the activity tracking
4118 * under the lock, but as we perform the lookup of the object and
4119 * its activity locklessly we can not guarantee that the last_write
4120 * being active implies that we have set the same engine flag from
4121 * last_read - hence we always set both read and write busy for
4122 * last_write.
4123 */
4124 return id | __busy_read_flag(id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004125}
4126
Chris Wilsonedf6b762016-08-09 09:23:33 +01004127static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004128__busy_set_if_active(const struct i915_gem_active *active,
4129 unsigned int (*flag)(unsigned int id))
4130{
Chris Wilson12555012016-08-16 09:50:40 +01004131 struct drm_i915_gem_request *request;
4132
4133 request = rcu_dereference(active->request);
4134 if (!request || i915_gem_request_completed(request))
4135 return 0;
4136
4137 /* This is racy. See __i915_gem_active_get_rcu() for an in detail
4138 * discussion of how to handle the race correctly, but for reporting
4139 * the busy state we err on the side of potentially reporting the
4140 * wrong engine as being busy (but we guarantee that the result
4141 * is at least self-consistent).
4142 *
4143 * As we use SLAB_DESTROY_BY_RCU, the request may be reallocated
4144 * whilst we are inspecting it, even under the RCU read lock as we are.
4145 * This means that there is a small window for the engine and/or the
4146 * seqno to have been overwritten. The seqno will always be in the
4147 * future compared to the intended, and so we know that if that
4148 * seqno is idle (on whatever engine) our request is idle and the
4149 * return 0 above is correct.
4150 *
4151 * The issue is that if the engine is switched, it is just as likely
4152 * to report that it is busy (but since the switch happened, we know
4153 * the request should be idle). So there is a small chance that a busy
4154 * result is actually the wrong engine.
4155 *
4156 * So why don't we care?
4157 *
4158 * For starters, the busy ioctl is a heuristic that is by definition
4159 * racy. Even with perfect serialisation in the driver, the hardware
4160 * state is constantly advancing - the state we report to the user
4161 * is stale.
4162 *
4163 * The critical information for the busy-ioctl is whether the object
4164 * is idle as userspace relies on that to detect whether its next
4165 * access will stall, or if it has missed submitting commands to
4166 * the hardware allowing the GPU to stall. We never generate a
4167 * false-positive for idleness, thus busy-ioctl is reliable at the
4168 * most fundamental level, and we maintain the guarantee that a
4169 * busy object left to itself will eventually become idle (and stay
4170 * idle!).
4171 *
4172 * We allow ourselves the leeway of potentially misreporting the busy
4173 * state because that is an optimisation heuristic that is constantly
4174 * in flux. Being quickly able to detect the busy/idle state is much
4175 * more important than accurate logging of exactly which engines were
4176 * busy.
4177 *
4178 * For accuracy in reporting the engine, we could use
4179 *
4180 * result = 0;
4181 * request = __i915_gem_active_get_rcu(active);
4182 * if (request) {
4183 * if (!i915_gem_request_completed(request))
4184 * result = flag(request->engine->exec_id);
4185 * i915_gem_request_put(request);
4186 * }
4187 *
4188 * but that still remains susceptible to both hardware and userspace
4189 * races. So we accept making the result of that race slightly worse,
4190 * given the rarity of the race and its low impact on the result.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004191 */
Chris Wilson12555012016-08-16 09:50:40 +01004192 return flag(READ_ONCE(request->engine->exec_id));
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004193}
4194
Chris Wilsonedf6b762016-08-09 09:23:33 +01004195static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004196busy_check_reader(const struct i915_gem_active *active)
4197{
4198 return __busy_set_if_active(active, __busy_read_flag);
4199}
4200
Chris Wilsonedf6b762016-08-09 09:23:33 +01004201static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004202busy_check_writer(const struct i915_gem_active *active)
4203{
4204 return __busy_set_if_active(active, __busy_write_id);
4205}
4206
Eric Anholt673a3942008-07-30 12:06:12 -07004207int
Eric Anholt673a3942008-07-30 12:06:12 -07004208i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004209 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004210{
4211 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004212 struct drm_i915_gem_object *obj;
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004213 unsigned long active;
Eric Anholt673a3942008-07-30 12:06:12 -07004214
Chris Wilson03ac0642016-07-20 13:31:51 +01004215 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004216 if (!obj)
4217 return -ENOENT;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004218
Chris Wilson426960b2016-01-15 16:51:46 +00004219 args->busy = 0;
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004220 active = __I915_BO_ACTIVE(obj);
4221 if (active) {
4222 int idx;
Chris Wilson426960b2016-01-15 16:51:46 +00004223
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004224 /* Yes, the lookups are intentionally racy.
4225 *
4226 * First, we cannot simply rely on __I915_BO_ACTIVE. We have
4227 * to regard the value as stale and as our ABI guarantees
4228 * forward progress, we confirm the status of each active
4229 * request with the hardware.
4230 *
4231 * Even though we guard the pointer lookup by RCU, that only
4232 * guarantees that the pointer and its contents remain
4233 * dereferencable and does *not* mean that the request we
4234 * have is the same as the one being tracked by the object.
4235 *
4236 * Consider that we lookup the request just as it is being
4237 * retired and freed. We take a local copy of the pointer,
4238 * but before we add its engine into the busy set, the other
4239 * thread reallocates it and assigns it to a task on another
Chris Wilson12555012016-08-16 09:50:40 +01004240 * engine with a fresh and incomplete seqno. Guarding against
4241 * that requires careful serialisation and reference counting,
4242 * i.e. using __i915_gem_active_get_request_rcu(). We don't,
4243 * instead we expect that if the result is busy, which engines
4244 * are busy is not completely reliable - we only guarantee
4245 * that the object was busy.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004246 */
4247 rcu_read_lock();
4248
4249 for_each_active(active, idx)
4250 args->busy |= busy_check_reader(&obj->last_read[idx]);
4251
4252 /* For ABI sanity, we only care that the write engine is in
Chris Wilson70cb4722016-08-09 18:08:25 +01004253 * the set of read engines. This should be ensured by the
4254 * ordering of setting last_read/last_write in
4255 * i915_vma_move_to_active(), and then in reverse in retire.
4256 * However, for good measure, we always report the last_write
4257 * request as a busy read as well as being a busy write.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004258 *
4259 * We don't care that the set of active read/write engines
4260 * may change during construction of the result, as it is
4261 * equally liable to change before userspace can inspect
4262 * the result.
4263 */
4264 args->busy |= busy_check_writer(&obj->last_write);
4265
4266 rcu_read_unlock();
Chris Wilson426960b2016-01-15 16:51:46 +00004267 }
Eric Anholt673a3942008-07-30 12:06:12 -07004268
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004269 i915_gem_object_put_unlocked(obj);
4270 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004271}
4272
4273int
4274i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4275 struct drm_file *file_priv)
4276{
Akshay Joshi0206e352011-08-16 15:34:10 -04004277 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004278}
4279
Chris Wilson3ef94da2009-09-14 16:50:29 +01004280int
4281i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4282 struct drm_file *file_priv)
4283{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004284 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson3ef94da2009-09-14 16:50:29 +01004285 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004286 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004287 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004288
4289 switch (args->madv) {
4290 case I915_MADV_DONTNEED:
4291 case I915_MADV_WILLNEED:
4292 break;
4293 default:
4294 return -EINVAL;
4295 }
4296
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004297 ret = i915_mutex_lock_interruptible(dev);
4298 if (ret)
4299 return ret;
4300
Chris Wilson03ac0642016-07-20 13:31:51 +01004301 obj = i915_gem_object_lookup(file_priv, args->handle);
4302 if (!obj) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004303 ret = -ENOENT;
4304 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004305 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004306
Daniel Vetter656bfa32014-11-20 09:26:30 +01004307 if (obj->pages &&
Chris Wilson3e510a82016-08-05 10:14:23 +01004308 i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01004309 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4310 if (obj->madv == I915_MADV_WILLNEED)
4311 i915_gem_object_unpin_pages(obj);
4312 if (args->madv == I915_MADV_WILLNEED)
4313 i915_gem_object_pin_pages(obj);
4314 }
4315
Chris Wilson05394f32010-11-08 19:18:58 +00004316 if (obj->madv != __I915_MADV_PURGED)
4317 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004318
Chris Wilson6c085a72012-08-20 11:40:46 +02004319 /* if the object is no longer attached, discard its backing storage */
Daniel Vetterbe6a0372015-03-18 10:46:04 +01004320 if (obj->madv == I915_MADV_DONTNEED && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004321 i915_gem_object_truncate(obj);
4322
Chris Wilson05394f32010-11-08 19:18:58 +00004323 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004324
Chris Wilsonf8c417c2016-07-20 13:31:53 +01004325 i915_gem_object_put(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004326unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004327 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004328 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004329}
4330
Chris Wilson37e680a2012-06-07 15:38:42 +01004331void i915_gem_object_init(struct drm_i915_gem_object *obj,
4332 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004333{
Chris Wilsonb4716182015-04-27 13:41:17 +01004334 int i;
4335
Ben Widawsky35c20a62013-05-31 11:28:48 -07004336 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004337 INIT_LIST_HEAD(&obj->userfault_link);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00004338 for (i = 0; i < I915_NUM_ENGINES; i++)
Chris Wilsonfa545cb2016-08-04 07:52:35 +01004339 init_request_active(&obj->last_read[i],
4340 i915_gem_object_retire__read);
4341 init_request_active(&obj->last_write,
4342 i915_gem_object_retire__write);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004343 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004344 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01004345 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004346
Chris Wilson37e680a2012-06-07 15:38:42 +01004347 obj->ops = ops;
4348
Chris Wilson50349242016-08-18 17:17:04 +01004349 obj->frontbuffer_ggtt_origin = ORIGIN_GTT;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004350 obj->madv = I915_MADV_WILLNEED;
Chris Wilson96d77632016-10-28 13:58:33 +01004351 INIT_RADIX_TREE(&obj->get_page.radix, GFP_KERNEL | __GFP_NOWARN);
4352 mutex_init(&obj->get_page.lock);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004353
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004354 i915_gem_info_add_obj(to_i915(obj->base.dev), obj->base.size);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004355}
4356
Chris Wilson37e680a2012-06-07 15:38:42 +01004357static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Chris Wilsonde472662016-01-22 18:32:31 +00004358 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE,
Chris Wilson37e680a2012-06-07 15:38:42 +01004359 .get_pages = i915_gem_object_get_pages_gtt,
4360 .put_pages = i915_gem_object_put_pages_gtt,
4361};
4362
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01004363/* Note we don't consider signbits :| */
4364#define overflows_type(x, T) \
4365 (sizeof(x) > sizeof(T) && (x) >> (sizeof(T) * BITS_PER_BYTE))
4366
4367struct drm_i915_gem_object *
4368i915_gem_object_create(struct drm_device *dev, u64 size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004369{
Daniel Vetterc397b902010-04-09 19:05:07 +00004370 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004371 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004372 gfp_t mask;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004373 int ret;
Daniel Vetterc397b902010-04-09 19:05:07 +00004374
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01004375 /* There is a prevalence of the assumption that we fit the object's
4376 * page count inside a 32bit _signed_ variable. Let's document this and
4377 * catch if we ever need to fix it. In the meantime, if you do spot
4378 * such a local variable, please consider fixing!
4379 */
4380 if (WARN_ON(size >> PAGE_SHIFT > INT_MAX))
4381 return ERR_PTR(-E2BIG);
4382
4383 if (overflows_type(size, obj->base.size))
4384 return ERR_PTR(-E2BIG);
4385
Chris Wilson42dcedd2012-11-15 11:32:30 +00004386 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004387 if (obj == NULL)
Chris Wilsonfe3db792016-04-25 13:32:13 +01004388 return ERR_PTR(-ENOMEM);
Daniel Vetterc397b902010-04-09 19:05:07 +00004389
Chris Wilsonfe3db792016-04-25 13:32:13 +01004390 ret = drm_gem_object_init(dev, &obj->base, size);
4391 if (ret)
4392 goto fail;
Daniel Vetterc397b902010-04-09 19:05:07 +00004393
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004394 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4395 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4396 /* 965gm cannot relocate objects above 4GiB. */
4397 mask &= ~__GFP_HIGHMEM;
4398 mask |= __GFP_DMA32;
4399 }
4400
Al Viro93c76a32015-12-04 23:45:44 -05004401 mapping = obj->base.filp->f_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004402 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004403
Chris Wilson37e680a2012-06-07 15:38:42 +01004404 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004405
Daniel Vetterc397b902010-04-09 19:05:07 +00004406 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4407 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4408
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004409 if (HAS_LLC(dev)) {
4410 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004411 * cache) for about a 10% performance improvement
4412 * compared to uncached. Graphics requests other than
4413 * display scanout are coherent with the CPU in
4414 * accessing this cache. This means in this mode we
4415 * don't need to clflush on the CPU side, and on the
4416 * GPU side we only need to flush internal caches to
4417 * get data visible to the CPU.
4418 *
4419 * However, we maintain the display planes as UC, and so
4420 * need to rebind when first used as such.
4421 */
4422 obj->cache_level = I915_CACHE_LLC;
4423 } else
4424 obj->cache_level = I915_CACHE_NONE;
4425
Daniel Vetterd861e332013-07-24 23:25:03 +02004426 trace_i915_gem_object_create(obj);
4427
Chris Wilson05394f32010-11-08 19:18:58 +00004428 return obj;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004429
4430fail:
4431 i915_gem_object_free(obj);
4432
4433 return ERR_PTR(ret);
Daniel Vetterac52bc52010-04-09 19:05:06 +00004434}
4435
Chris Wilson340fbd82014-05-22 09:16:52 +01004436static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4437{
4438 /* If we are the last user of the backing storage (be it shmemfs
4439 * pages or stolen etc), we know that the pages are going to be
4440 * immediately released. In this case, we can then skip copying
4441 * back the contents from the GPU.
4442 */
4443
4444 if (obj->madv != I915_MADV_WILLNEED)
4445 return false;
4446
4447 if (obj->base.filp == NULL)
4448 return true;
4449
4450 /* At first glance, this looks racy, but then again so would be
4451 * userspace racing mmap against close. However, the first external
4452 * reference to the filp can only be obtained through the
4453 * i915_gem_mmap_ioctl() which safeguards us against the user
4454 * acquiring such a reference whilst we are in the middle of
4455 * freeing the object.
4456 */
4457 return atomic_long_read(&obj->base.filp->f_count) == 1;
4458}
4459
Chris Wilson1488fc02012-04-24 15:47:31 +01004460void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004461{
Chris Wilson1488fc02012-04-24 15:47:31 +01004462 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004463 struct drm_device *dev = obj->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004464 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004465 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004466
Paulo Zanonif65c9162013-11-27 18:20:34 -02004467 intel_runtime_pm_get(dev_priv);
4468
Chris Wilson26e12f82011-03-20 11:20:19 +00004469 trace_i915_gem_object_destroy(obj);
4470
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004471 /* All file-owned VMA should have been released by this point through
4472 * i915_gem_close_object(), or earlier by i915_gem_context_close().
4473 * However, the object may also be bound into the global GTT (e.g.
4474 * older GPUs without per-process support, or for direct access through
4475 * the GTT either for the user or for scanout). Those VMA still need to
4476 * unbound now.
4477 */
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004478 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) {
Chris Wilson3272db52016-08-04 16:32:32 +01004479 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004480 GEM_BUG_ON(i915_vma_is_active(vma));
Chris Wilson3272db52016-08-04 16:32:32 +01004481 vma->flags &= ~I915_VMA_PIN_MASK;
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004482 i915_vma_close(vma);
Chris Wilson1488fc02012-04-24 15:47:31 +01004483 }
Chris Wilson15717de2016-08-04 07:52:26 +01004484 GEM_BUG_ON(obj->bind_count);
Chris Wilson1488fc02012-04-24 15:47:31 +01004485
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004486 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4487 * before progressing. */
4488 if (obj->stolen)
4489 i915_gem_object_unpin_pages(obj);
4490
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004491 WARN_ON(atomic_read(&obj->frontbuffer_bits));
Daniel Vettera071fa02014-06-18 23:28:09 +02004492
Daniel Vetter656bfa32014-11-20 09:26:30 +01004493 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4494 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
Chris Wilson3e510a82016-08-05 10:14:23 +01004495 i915_gem_object_is_tiled(obj))
Daniel Vetter656bfa32014-11-20 09:26:30 +01004496 i915_gem_object_unpin_pages(obj);
4497
Ben Widawsky401c29f2013-05-31 11:28:47 -07004498 if (WARN_ON(obj->pages_pin_count))
4499 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004500 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004501 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004502 i915_gem_object_put_pages(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004503
Chris Wilson9da3da62012-06-01 15:20:22 +01004504 BUG_ON(obj->pages);
4505
Chris Wilson2f745ad2012-09-04 21:02:58 +01004506 if (obj->base.import_attach)
4507 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004508
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004509 if (obj->ops->release)
4510 obj->ops->release(obj);
4511
Chris Wilson05394f32010-11-08 19:18:58 +00004512 drm_gem_object_release(&obj->base);
4513 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004514
Chris Wilson05394f32010-11-08 19:18:58 +00004515 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004516 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004517
4518 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004519}
4520
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01004521void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj)
4522{
4523 lockdep_assert_held(&obj->base.dev->struct_mutex);
4524
4525 GEM_BUG_ON(i915_gem_object_has_active_reference(obj));
4526 if (i915_gem_object_is_active(obj))
4527 i915_gem_object_set_active_reference(obj);
4528 else
4529 i915_gem_object_put(obj);
4530}
4531
Chris Wilsondcff85c2016-08-05 10:14:11 +01004532int i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004533{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004534 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsondcff85c2016-08-05 10:14:11 +01004535 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004536
Chris Wilson54b4f682016-07-21 21:16:19 +01004537 intel_suspend_gt_powersave(dev_priv);
4538
Chris Wilson45c5f202013-10-16 11:50:01 +01004539 mutex_lock(&dev->struct_mutex);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004540
4541 /* We have to flush all the executing contexts to main memory so
4542 * that they can saved in the hibernation image. To ensure the last
4543 * context image is coherent, we have to switch away from it. That
4544 * leaves the dev_priv->kernel_context still active when
4545 * we actually suspend, and its image in memory may not match the GPU
4546 * state. Fortunately, the kernel_context is disposable and we do
4547 * not rely on its state.
4548 */
4549 ret = i915_gem_switch_to_kernel_context(dev_priv);
4550 if (ret)
4551 goto err;
4552
Chris Wilson22dd3bb2016-09-09 14:11:50 +01004553 ret = i915_gem_wait_for_idle(dev_priv,
4554 I915_WAIT_INTERRUPTIBLE |
4555 I915_WAIT_LOCKED);
Chris Wilsonf7403342013-09-13 23:57:04 +01004556 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004557 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004558
Chris Wilsonc0336662016-05-06 15:40:21 +01004559 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004560
Chris Wilsonb2e862d2016-04-28 09:56:41 +01004561 i915_gem_context_lost(dev_priv);
Chris Wilson45c5f202013-10-16 11:50:01 +01004562 mutex_unlock(&dev->struct_mutex);
4563
Chris Wilson737b1502015-01-26 18:03:03 +02004564 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson67d97da2016-07-04 08:08:31 +01004565 cancel_delayed_work_sync(&dev_priv->gt.retire_work);
4566 flush_delayed_work(&dev_priv->gt.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004567
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004568 /* Assert that we sucessfully flushed all the work and
4569 * reset the GPU back to its idle, low power state.
4570 */
Chris Wilson67d97da2016-07-04 08:08:31 +01004571 WARN_ON(dev_priv->gt.awake);
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004572
Imre Deak1c777c52016-10-12 17:46:37 +03004573 /*
4574 * Neither the BIOS, ourselves or any other kernel
4575 * expects the system to be in execlists mode on startup,
4576 * so we need to reset the GPU back to legacy mode. And the only
4577 * known way to disable logical contexts is through a GPU reset.
4578 *
4579 * So in order to leave the system in a known default configuration,
4580 * always reset the GPU upon unload and suspend. Afterwards we then
4581 * clean up the GEM state tracking, flushing off the requests and
4582 * leaving the system in a known idle state.
4583 *
4584 * Note that is of the upmost importance that the GPU is idle and
4585 * all stray writes are flushed *before* we dismantle the backing
4586 * storage for the pinned objects.
4587 *
4588 * However, since we are uncertain that resetting the GPU on older
4589 * machines is a good idea, we don't - just in case it leaves the
4590 * machine in an unusable condition.
4591 */
4592 if (HAS_HW_CONTEXTS(dev)) {
4593 int reset = intel_gpu_reset(dev_priv, ALL_ENGINES);
4594 WARN_ON(reset && reset != -ENODEV);
4595 }
4596
Eric Anholt673a3942008-07-30 12:06:12 -07004597 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004598
4599err:
4600 mutex_unlock(&dev->struct_mutex);
4601 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004602}
4603
Chris Wilson5ab57c72016-07-15 14:56:20 +01004604void i915_gem_resume(struct drm_device *dev)
4605{
4606 struct drm_i915_private *dev_priv = to_i915(dev);
4607
4608 mutex_lock(&dev->struct_mutex);
4609 i915_gem_restore_gtt_mappings(dev);
4610
4611 /* As we didn't flush the kernel context before suspend, we cannot
4612 * guarantee that the context image is complete. So let's just reset
4613 * it and start again.
4614 */
Chris Wilson821ed7d2016-09-09 14:11:53 +01004615 dev_priv->gt.resume(dev_priv);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004616
4617 mutex_unlock(&dev->struct_mutex);
4618}
4619
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004620void i915_gem_init_swizzling(struct drm_device *dev)
4621{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004622 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004623
Daniel Vetter11782b02012-01-31 16:47:55 +01004624 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004625 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4626 return;
4627
4628 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4629 DISP_TILE_SURFACE_SWIZZLING);
4630
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004631 if (IS_GEN5(dev_priv))
Daniel Vetter11782b02012-01-31 16:47:55 +01004632 return;
4633
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004634 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004635 if (IS_GEN6(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004636 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004637 else if (IS_GEN7(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004638 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004639 else if (IS_GEN8(dev_priv))
Ben Widawsky31a53362013-11-02 21:07:04 -07004640 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004641 else
4642 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004643}
Daniel Vettere21af882012-02-09 20:53:27 +01004644
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004645static void init_unused_ring(struct drm_i915_private *dev_priv, u32 base)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004646{
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004647 I915_WRITE(RING_CTL(base), 0);
4648 I915_WRITE(RING_HEAD(base), 0);
4649 I915_WRITE(RING_TAIL(base), 0);
4650 I915_WRITE(RING_START(base), 0);
4651}
4652
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004653static void init_unused_rings(struct drm_i915_private *dev_priv)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004654{
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004655 if (IS_I830(dev_priv)) {
4656 init_unused_ring(dev_priv, PRB1_BASE);
4657 init_unused_ring(dev_priv, SRB0_BASE);
4658 init_unused_ring(dev_priv, SRB1_BASE);
4659 init_unused_ring(dev_priv, SRB2_BASE);
4660 init_unused_ring(dev_priv, SRB3_BASE);
4661 } else if (IS_GEN2(dev_priv)) {
4662 init_unused_ring(dev_priv, SRB0_BASE);
4663 init_unused_ring(dev_priv, SRB1_BASE);
4664 } else if (IS_GEN3(dev_priv)) {
4665 init_unused_ring(dev_priv, PRB1_BASE);
4666 init_unused_ring(dev_priv, PRB2_BASE);
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004667 }
4668}
4669
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004670int
4671i915_gem_init_hw(struct drm_device *dev)
4672{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004673 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004674 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304675 enum intel_engine_id id;
Chris Wilsond200cda2016-04-28 09:56:44 +01004676 int ret;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004677
Chris Wilsonde867c22016-10-25 13:16:02 +01004678 dev_priv->gt.last_init_time = ktime_get();
4679
Chris Wilson5e4f5182015-02-13 14:35:59 +00004680 /* Double layer security blanket, see i915_gem_init() */
4681 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4682
Mika Kuoppala3accaf72016-04-13 17:26:43 +03004683 if (HAS_EDRAM(dev) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004684 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004685
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01004686 if (IS_HASWELL(dev_priv))
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004687 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ?
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004688 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004689
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004690 if (HAS_PCH_NOP(dev_priv)) {
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004691 if (IS_IVYBRIDGE(dev_priv)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004692 u32 temp = I915_READ(GEN7_MSG_CTL);
4693 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4694 I915_WRITE(GEN7_MSG_CTL, temp);
4695 } else if (INTEL_INFO(dev)->gen >= 7) {
4696 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4697 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4698 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4699 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004700 }
4701
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004702 i915_gem_init_swizzling(dev);
4703
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004704 /*
4705 * At least 830 can leave some of the unused rings
4706 * "active" (ie. head != tail) after resume which
4707 * will prevent c3 entry. Makes sure all unused rings
4708 * are totally idle.
4709 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004710 init_unused_rings(dev_priv);
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004711
Dave Gordoned54c1a2016-01-19 19:02:54 +00004712 BUG_ON(!dev_priv->kernel_context);
John Harrison90638cc2015-05-29 17:43:37 +01004713
John Harrison4ad2fd82015-06-18 13:11:20 +01004714 ret = i915_ppgtt_init_hw(dev);
4715 if (ret) {
4716 DRM_ERROR("PPGTT enable HW failed %d\n", ret);
4717 goto out;
4718 }
4719
4720 /* Need to do basic initialisation of all rings first: */
Akash Goel3b3f1652016-10-13 22:44:48 +05304721 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004722 ret = engine->init_hw(engine);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004723 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004724 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004725 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004726
Peter Antoine0ccdacf2016-04-13 15:03:25 +01004727 intel_mocs_init_l3cc_table(dev);
4728
Alex Dai33a732f2015-08-12 15:43:36 +01004729 /* We can't enable contexts until all firmware is loaded */
Dave Gordone556f7c2016-06-07 09:14:49 +01004730 ret = intel_guc_setup(dev);
4731 if (ret)
4732 goto out;
Alex Dai33a732f2015-08-12 15:43:36 +01004733
Chris Wilson5e4f5182015-02-13 14:35:59 +00004734out:
4735 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004736 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004737}
4738
Chris Wilson39df9192016-07-20 13:31:57 +01004739bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value)
4740{
4741 if (INTEL_INFO(dev_priv)->gen < 6)
4742 return false;
4743
4744 /* TODO: make semaphores and Execlists play nicely together */
4745 if (i915.enable_execlists)
4746 return false;
4747
4748 if (value >= 0)
4749 return value;
4750
4751#ifdef CONFIG_INTEL_IOMMU
4752 /* Enable semaphores on SNB when IO remapping is off */
4753 if (INTEL_INFO(dev_priv)->gen == 6 && intel_iommu_gfx_mapped)
4754 return false;
4755#endif
4756
4757 return true;
4758}
4759
Chris Wilson1070a422012-04-24 15:47:41 +01004760int i915_gem_init(struct drm_device *dev)
4761{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004762 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson1070a422012-04-24 15:47:41 +01004763 int ret;
4764
Chris Wilson1070a422012-04-24 15:47:41 +01004765 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004766
Oscar Mateoa83014d2014-07-24 17:04:21 +01004767 if (!i915.enable_execlists) {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004768 dev_priv->gt.resume = intel_legacy_submission_resume;
Chris Wilson7e37f882016-08-02 22:50:21 +01004769 dev_priv->gt.cleanup_engine = intel_engine_cleanup;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004770 } else {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004771 dev_priv->gt.resume = intel_lr_context_resume;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004772 dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004773 }
4774
Chris Wilson5e4f5182015-02-13 14:35:59 +00004775 /* This is just a security blanket to placate dragons.
4776 * On some systems, we very sporadically observe that the first TLBs
4777 * used by the CS may be stale, despite us poking the TLB reset. If
4778 * we hold the forcewake during initialisation these problems
4779 * just magically go away.
4780 */
4781 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4782
Chris Wilson72778cb2016-05-19 16:17:16 +01004783 i915_gem_init_userptr(dev_priv);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01004784
4785 ret = i915_gem_init_ggtt(dev_priv);
4786 if (ret)
4787 goto out_unlock;
Jesse Barnesd62b4892013-03-08 10:45:53 -08004788
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004789 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004790 if (ret)
4791 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004792
Tvrtko Ursulin8b3e2d32016-07-13 16:03:37 +01004793 ret = intel_engines_init(dev);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004794 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004795 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004796
4797 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004798 if (ret == -EIO) {
Chris Wilson7e21d642016-07-27 09:07:29 +01004799 /* Allow engine initialisation to fail by marking the GPU as
Chris Wilson60990322014-04-09 09:19:42 +01004800 * wedged. But we only want to do this where the GPU is angry,
4801 * for all other failure, such as an allocation failure, bail.
4802 */
4803 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
Chris Wilson821ed7d2016-09-09 14:11:53 +01004804 i915_gem_set_wedged(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004805 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004806 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004807
4808out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00004809 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01004810 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004811
Chris Wilson60990322014-04-09 09:19:42 +01004812 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004813}
4814
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004815void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004816i915_gem_cleanup_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004817{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004818 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004819 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304820 enum intel_engine_id id;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004821
Akash Goel3b3f1652016-10-13 22:44:48 +05304822 for_each_engine(engine, dev_priv, id)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004823 dev_priv->gt.cleanup_engine(engine);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004824}
4825
Eric Anholt673a3942008-07-30 12:06:12 -07004826void
Imre Deak40ae4e12016-03-16 14:54:03 +02004827i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
4828{
Chris Wilson91c8a322016-07-05 10:40:23 +01004829 struct drm_device *dev = &dev_priv->drm;
Chris Wilson49ef5292016-08-18 17:17:00 +01004830 int i;
Imre Deak40ae4e12016-03-16 14:54:03 +02004831
4832 if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) &&
4833 !IS_CHERRYVIEW(dev_priv))
4834 dev_priv->num_fence_regs = 32;
4835 else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) ||
4836 IS_I945GM(dev_priv) || IS_G33(dev_priv))
4837 dev_priv->num_fence_regs = 16;
4838 else
4839 dev_priv->num_fence_regs = 8;
4840
Chris Wilsonc0336662016-05-06 15:40:21 +01004841 if (intel_vgpu_active(dev_priv))
Imre Deak40ae4e12016-03-16 14:54:03 +02004842 dev_priv->num_fence_regs =
4843 I915_READ(vgtif_reg(avail_rs.fence_num));
4844
4845 /* Initialize fence registers to zero */
Chris Wilson49ef5292016-08-18 17:17:00 +01004846 for (i = 0; i < dev_priv->num_fence_regs; i++) {
4847 struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i];
4848
4849 fence->i915 = dev_priv;
4850 fence->id = i;
4851 list_add_tail(&fence->link, &dev_priv->mm.fence_list);
4852 }
Imre Deak40ae4e12016-03-16 14:54:03 +02004853 i915_gem_restore_fences(dev);
4854
4855 i915_gem_detect_bit_6_swizzle(dev);
4856}
4857
4858void
Imre Deakd64aa092016-01-19 15:26:29 +02004859i915_gem_load_init(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004860{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004861 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004862
Chris Wilsonefab6d82015-04-07 16:20:57 +01004863 dev_priv->objects =
Chris Wilson42dcedd2012-11-15 11:32:30 +00004864 kmem_cache_create("i915_gem_object",
4865 sizeof(struct drm_i915_gem_object), 0,
4866 SLAB_HWCACHE_ALIGN,
4867 NULL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01004868 dev_priv->vmas =
4869 kmem_cache_create("i915_gem_vma",
4870 sizeof(struct i915_vma), 0,
4871 SLAB_HWCACHE_ALIGN,
4872 NULL);
Chris Wilsonefab6d82015-04-07 16:20:57 +01004873 dev_priv->requests =
4874 kmem_cache_create("i915_gem_request",
4875 sizeof(struct drm_i915_gem_request), 0,
Chris Wilson0eafec62016-08-04 16:32:41 +01004876 SLAB_HWCACHE_ALIGN |
4877 SLAB_RECLAIM_ACCOUNT |
4878 SLAB_DESTROY_BY_RCU,
Chris Wilsonefab6d82015-04-07 16:20:57 +01004879 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004880
Ben Widawskya33afea2013-09-17 21:12:45 -07004881 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004882 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4883 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004884 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004885 INIT_LIST_HEAD(&dev_priv->mm.userfault_list);
Chris Wilson67d97da2016-07-04 08:08:31 +01004886 INIT_DELAYED_WORK(&dev_priv->gt.retire_work,
Eric Anholt673a3942008-07-30 12:06:12 -07004887 i915_gem_retire_work_handler);
Chris Wilson67d97da2016-07-04 08:08:31 +01004888 INIT_DELAYED_WORK(&dev_priv->gt.idle_work,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004889 i915_gem_idle_work_handler);
Chris Wilson1f15b762016-07-01 17:23:14 +01004890 init_waitqueue_head(&dev_priv->gpu_error.wait_queue);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004891 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004892
Chris Wilson72bfa192010-12-19 11:42:05 +00004893 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4894
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004895 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004896
Chris Wilsonce453d82011-02-21 14:43:56 +00004897 dev_priv->mm.interruptible = true;
4898
Joonas Lahtinen6f633402016-09-01 14:58:21 +03004899 atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0);
4900
Chris Wilsonb5add952016-08-04 16:32:36 +01004901 spin_lock_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004902}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004903
Imre Deakd64aa092016-01-19 15:26:29 +02004904void i915_gem_load_cleanup(struct drm_device *dev)
4905{
4906 struct drm_i915_private *dev_priv = to_i915(dev);
4907
4908 kmem_cache_destroy(dev_priv->requests);
4909 kmem_cache_destroy(dev_priv->vmas);
4910 kmem_cache_destroy(dev_priv->objects);
Chris Wilson0eafec62016-08-04 16:32:41 +01004911
4912 /* And ensure that our DESTROY_BY_RCU slabs are truly destroyed */
4913 rcu_barrier();
Imre Deakd64aa092016-01-19 15:26:29 +02004914}
4915
Chris Wilson6a800ea2016-09-21 14:51:07 +01004916int i915_gem_freeze(struct drm_i915_private *dev_priv)
4917{
4918 intel_runtime_pm_get(dev_priv);
4919
4920 mutex_lock(&dev_priv->drm.struct_mutex);
4921 i915_gem_shrink_all(dev_priv);
4922 mutex_unlock(&dev_priv->drm.struct_mutex);
4923
4924 intel_runtime_pm_put(dev_priv);
4925
4926 return 0;
4927}
4928
Chris Wilson461fb992016-05-14 07:26:33 +01004929int i915_gem_freeze_late(struct drm_i915_private *dev_priv)
4930{
4931 struct drm_i915_gem_object *obj;
Chris Wilson7aab2d52016-09-09 20:02:18 +01004932 struct list_head *phases[] = {
4933 &dev_priv->mm.unbound_list,
4934 &dev_priv->mm.bound_list,
4935 NULL
4936 }, **p;
Chris Wilson461fb992016-05-14 07:26:33 +01004937
4938 /* Called just before we write the hibernation image.
4939 *
4940 * We need to update the domain tracking to reflect that the CPU
4941 * will be accessing all the pages to create and restore from the
4942 * hibernation, and so upon restoration those pages will be in the
4943 * CPU domain.
4944 *
4945 * To make sure the hibernation image contains the latest state,
4946 * we update that state just before writing out the image.
Chris Wilson7aab2d52016-09-09 20:02:18 +01004947 *
4948 * To try and reduce the hibernation image, we manually shrink
4949 * the objects as well.
Chris Wilson461fb992016-05-14 07:26:33 +01004950 */
4951
Chris Wilson6a800ea2016-09-21 14:51:07 +01004952 mutex_lock(&dev_priv->drm.struct_mutex);
4953 i915_gem_shrink(dev_priv, -1UL, I915_SHRINK_UNBOUND);
Chris Wilson461fb992016-05-14 07:26:33 +01004954
Chris Wilson7aab2d52016-09-09 20:02:18 +01004955 for (p = phases; *p; p++) {
4956 list_for_each_entry(obj, *p, global_list) {
4957 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4958 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4959 }
Chris Wilson461fb992016-05-14 07:26:33 +01004960 }
Chris Wilson6a800ea2016-09-21 14:51:07 +01004961 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson461fb992016-05-14 07:26:33 +01004962
4963 return 0;
4964}
4965
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004966void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004967{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004968 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004969 struct drm_i915_gem_request *request;
Eric Anholtb9624422009-06-03 07:27:35 +00004970
4971 /* Clean up our request list when the client is going away, so that
4972 * later retire_requests won't dereference our soon-to-be-gone
4973 * file_priv.
4974 */
Chris Wilson1c255952010-09-26 11:03:27 +01004975 spin_lock(&file_priv->mm.lock);
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004976 list_for_each_entry(request, &file_priv->mm.request_list, client_list)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004977 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01004978 spin_unlock(&file_priv->mm.lock);
Chris Wilson31169712009-09-14 16:50:28 +01004979
Chris Wilson2e1b8732015-04-27 13:41:22 +01004980 if (!list_empty(&file_priv->rps.link)) {
Chris Wilson8d3afd72015-05-21 21:01:47 +01004981 spin_lock(&to_i915(dev)->rps.client_lock);
Chris Wilson2e1b8732015-04-27 13:41:22 +01004982 list_del(&file_priv->rps.link);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004983 spin_unlock(&to_i915(dev)->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004984 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004985}
4986
4987int i915_gem_open(struct drm_device *dev, struct drm_file *file)
4988{
4989 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08004990 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004991
4992 DRM_DEBUG_DRIVER("\n");
4993
4994 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
4995 if (!file_priv)
4996 return -ENOMEM;
4997
4998 file->driver_priv = file_priv;
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004999 file_priv->dev_priv = to_i915(dev);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005000 file_priv->file = file;
Chris Wilson2e1b8732015-04-27 13:41:22 +01005001 INIT_LIST_HEAD(&file_priv->rps.link);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005002
5003 spin_lock_init(&file_priv->mm.lock);
5004 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005005
Chris Wilsonc80ff162016-07-27 09:07:27 +01005006 file_priv->bsd_engine = -1;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00005007
Ben Widawskye422b882013-12-06 14:10:58 -08005008 ret = i915_gem_context_open(dev, file);
5009 if (ret)
5010 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005011
Ben Widawskye422b882013-12-06 14:10:58 -08005012 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005013}
5014
Daniel Vetterb680c372014-09-19 18:27:27 +02005015/**
5016 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07005017 * @old: current GEM buffer for the frontbuffer slots
5018 * @new: new GEM buffer for the frontbuffer slots
5019 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02005020 *
5021 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5022 * from @old and setting them in @new. Both @old and @new can be NULL.
5023 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005024void i915_gem_track_fb(struct drm_i915_gem_object *old,
5025 struct drm_i915_gem_object *new,
5026 unsigned frontbuffer_bits)
5027{
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005028 /* Control of individual bits within the mask are guarded by
5029 * the owning plane->mutex, i.e. we can never see concurrent
5030 * manipulation of individual bits. But since the bitfield as a whole
5031 * is updated using RMW, we need to use atomics in order to update
5032 * the bits.
5033 */
5034 BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES >
5035 sizeof(atomic_t) * BITS_PER_BYTE);
5036
Daniel Vettera071fa02014-06-18 23:28:09 +02005037 if (old) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005038 WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits));
5039 atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02005040 }
5041
5042 if (new) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005043 WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits);
5044 atomic_or(frontbuffer_bits, &new->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02005045 }
5046}
5047
Dave Gordonea702992015-07-09 19:29:02 +01005048/* Allocate a new GEM object and fill it with the supplied data */
5049struct drm_i915_gem_object *
5050i915_gem_object_create_from_data(struct drm_device *dev,
5051 const void *data, size_t size)
5052{
5053 struct drm_i915_gem_object *obj;
5054 struct sg_table *sg;
5055 size_t bytes;
5056 int ret;
5057
Dave Gordond37cd8a2016-04-22 19:14:32 +01005058 obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE));
Chris Wilsonfe3db792016-04-25 13:32:13 +01005059 if (IS_ERR(obj))
Dave Gordonea702992015-07-09 19:29:02 +01005060 return obj;
5061
5062 ret = i915_gem_object_set_to_cpu_domain(obj, true);
5063 if (ret)
5064 goto fail;
5065
5066 ret = i915_gem_object_get_pages(obj);
5067 if (ret)
5068 goto fail;
5069
5070 i915_gem_object_pin_pages(obj);
5071 sg = obj->pages;
5072 bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size);
Dave Gordon9e7d18c2015-12-10 18:51:24 +00005073 obj->dirty = 1; /* Backing store is now out of date */
Dave Gordonea702992015-07-09 19:29:02 +01005074 i915_gem_object_unpin_pages(obj);
5075
5076 if (WARN_ON(bytes != size)) {
5077 DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size);
5078 ret = -EFAULT;
5079 goto fail;
5080 }
5081
5082 return obj;
5083
5084fail:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01005085 i915_gem_object_put(obj);
Dave Gordonea702992015-07-09 19:29:02 +01005086 return ERR_PTR(ret);
5087}
Chris Wilson96d77632016-10-28 13:58:33 +01005088
5089struct scatterlist *
5090i915_gem_object_get_sg(struct drm_i915_gem_object *obj,
5091 unsigned int n,
5092 unsigned int *offset)
5093{
5094 struct i915_gem_object_page_iter *iter = &obj->get_page;
5095 struct scatterlist *sg;
5096 unsigned int idx, count;
5097
5098 might_sleep();
5099 GEM_BUG_ON(n >= obj->base.size >> PAGE_SHIFT);
5100 GEM_BUG_ON(obj->pages_pin_count == 0);
5101
5102 /* As we iterate forward through the sg, we record each entry in a
5103 * radixtree for quick repeated (backwards) lookups. If we have seen
5104 * this index previously, we will have an entry for it.
5105 *
5106 * Initial lookup is O(N), but this is amortized to O(1) for
5107 * sequential page access (where each new request is consecutive
5108 * to the previous one). Repeated lookups are O(lg(obj->base.size)),
5109 * i.e. O(1) with a large constant!
5110 */
5111 if (n < READ_ONCE(iter->sg_idx))
5112 goto lookup;
5113
5114 mutex_lock(&iter->lock);
5115
5116 /* We prefer to reuse the last sg so that repeated lookup of this
5117 * (or the subsequent) sg are fast - comparing against the last
5118 * sg is faster than going through the radixtree.
5119 */
5120
5121 sg = iter->sg_pos;
5122 idx = iter->sg_idx;
5123 count = __sg_page_count(sg);
5124
5125 while (idx + count <= n) {
5126 unsigned long exception, i;
5127 int ret;
5128
5129 /* If we cannot allocate and insert this entry, or the
5130 * individual pages from this range, cancel updating the
5131 * sg_idx so that on this lookup we are forced to linearly
5132 * scan onwards, but on future lookups we will try the
5133 * insertion again (in which case we need to be careful of
5134 * the error return reporting that we have already inserted
5135 * this index).
5136 */
5137 ret = radix_tree_insert(&iter->radix, idx, sg);
5138 if (ret && ret != -EEXIST)
5139 goto scan;
5140
5141 exception =
5142 RADIX_TREE_EXCEPTIONAL_ENTRY |
5143 idx << RADIX_TREE_EXCEPTIONAL_SHIFT;
5144 for (i = 1; i < count; i++) {
5145 ret = radix_tree_insert(&iter->radix, idx + i,
5146 (void *)exception);
5147 if (ret && ret != -EEXIST)
5148 goto scan;
5149 }
5150
5151 idx += count;
5152 sg = ____sg_next(sg);
5153 count = __sg_page_count(sg);
5154 }
5155
5156scan:
5157 iter->sg_pos = sg;
5158 iter->sg_idx = idx;
5159
5160 mutex_unlock(&iter->lock);
5161
5162 if (unlikely(n < idx)) /* insertion completed by another thread */
5163 goto lookup;
5164
5165 /* In case we failed to insert the entry into the radixtree, we need
5166 * to look beyond the current sg.
5167 */
5168 while (idx + count <= n) {
5169 idx += count;
5170 sg = ____sg_next(sg);
5171 count = __sg_page_count(sg);
5172 }
5173
5174 *offset = n - idx;
5175 return sg;
5176
5177lookup:
5178 rcu_read_lock();
5179
5180 sg = radix_tree_lookup(&iter->radix, n);
5181 GEM_BUG_ON(!sg);
5182
5183 /* If this index is in the middle of multi-page sg entry,
5184 * the radixtree will contain an exceptional entry that points
5185 * to the start of that range. We will return the pointer to
5186 * the base page and the offset of this page within the
5187 * sg entry's range.
5188 */
5189 *offset = 0;
5190 if (unlikely(radix_tree_exception(sg))) {
5191 unsigned long base =
5192 (unsigned long)sg >> RADIX_TREE_EXCEPTIONAL_SHIFT;
5193
5194 sg = radix_tree_lookup(&iter->radix, base);
5195 GEM_BUG_ON(!sg);
5196
5197 *offset = n - base;
5198 }
5199
5200 rcu_read_unlock();
5201
5202 return sg;
5203}
5204
5205struct page *
5206i915_gem_object_get_page(struct drm_i915_gem_object *obj, unsigned int n)
5207{
5208 struct scatterlist *sg;
5209 unsigned int offset;
5210
5211 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
5212
5213 sg = i915_gem_object_get_sg(obj, n, &offset);
5214 return nth_page(sg_page(sg), offset);
5215}
5216
5217/* Like i915_gem_object_get_page(), but mark the returned page dirty */
5218struct page *
5219i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj,
5220 unsigned int n)
5221{
5222 struct page *page;
5223
5224 page = i915_gem_object_get_page(obj, n);
5225 if (!obj->dirty)
5226 set_page_dirty(page);
5227
5228 return page;
5229}
5230
5231dma_addr_t
5232i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj,
5233 unsigned long n)
5234{
5235 struct scatterlist *sg;
5236 unsigned int offset;
5237
5238 sg = i915_gem_object_get_sg(obj, n, &offset);
5239 return sg_dma_address(sg) + (offset << PAGE_SHIFT);
5240}