blob: ed4465d22ddea9f294f1733727eaceb2cf683aaa [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"
Yu Zhangeb822892015-02-10 19:05:49 +080032#include "i915_vgpu.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010033#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070034#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010035#include "intel_frontbuffer.h"
Peter Antoine0ccdacf2016-04-13 15:03:25 +010036#include "intel_mocs.h"
Chris Wilsonc13d87e2016-07-20 09:21:15 +010037#include <linux/reservation.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070038#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080041#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020042#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070043
Chris Wilsonfbbd37b2016-10-28 13:58:42 +010044static void i915_gem_flush_free_objects(struct drm_i915_private *i915);
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{
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +000051 return HAS_LLC(to_i915(dev)) || level != I915_CACHE_NONE;
Chris Wilsonc76ce032013-08-08 14:41:03 +010052}
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
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +010066insert_mappable_node(struct i915_ggtt *ggtt,
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053067 struct drm_mm_node *node, u32 size)
68{
69 memset(node, 0, sizeof(*node));
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +010070 return drm_mm_insert_node_in_range_generic(&ggtt->base.mm, node,
71 size, 0, -1,
72 0, ggtt->mappable_end,
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053073 DRM_MM_SEARCH_DEFAULT,
74 DRM_MM_CREATE_DEFAULT);
75}
76
77static void
78remove_mappable_node(struct drm_mm_node *node)
79{
80 drm_mm_remove_node(node);
81}
82
Chris Wilson73aa8082010-09-30 11:46:12 +010083/* some bookkeeping */
84static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +010085 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +010086{
Daniel Vetterc20e8352013-07-24 22:40:23 +020087 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010088 dev_priv->mm.object_count++;
89 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020090 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010091}
92
93static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +010094 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +010095{
Daniel Vetterc20e8352013-07-24 22:40:23 +020096 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010097 dev_priv->mm.object_count--;
98 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020099 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100100}
101
Chris Wilson21dd3732011-01-26 15:55:56 +0000102static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100103i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100104{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100105 int ret;
106
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100107 might_sleep();
108
Chris Wilsond98c52c2016-04-13 17:35:05 +0100109 if (!i915_reset_in_progress(error))
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100110 return 0;
111
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200112 /*
113 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
114 * userspace. If it takes that long something really bad is going on and
115 * we should simply try to bail out and fail as gracefully as possible.
116 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 ret = wait_event_interruptible_timeout(error->reset_queue,
Chris Wilsond98c52c2016-04-13 17:35:05 +0100118 !i915_reset_in_progress(error),
Chris Wilsonb52992c2016-10-28 13:58:24 +0100119 I915_RESET_TIMEOUT);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 if (ret == 0) {
121 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
122 return -EIO;
123 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100124 return ret;
Chris Wilsond98c52c2016-04-13 17:35:05 +0100125 } else {
126 return 0;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200127 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100128}
129
Chris Wilson54cf91d2010-11-25 18:00:26 +0000130int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100131{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100132 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100133 int ret;
134
Daniel Vetter33196de2012-11-14 17:14:05 +0100135 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100136 if (ret)
137 return ret;
138
139 ret = mutex_lock_interruptible(&dev->struct_mutex);
140 if (ret)
141 return ret;
142
Chris Wilson76c1dec2010-09-25 11:22:51 +0100143 return 0;
144}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100145
Eric Anholt673a3942008-07-30 12:06:12 -0700146int
Eric Anholt5a125c32008-10-22 21:40:13 -0700147i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000148 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700149{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300150 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen62106b42016-03-18 10:42:57 +0200151 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300152 struct drm_i915_gem_get_aperture *args = data;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100153 struct i915_vma *vma;
Chris Wilson6299f992010-11-24 12:23:44 +0000154 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700155
Chris Wilson6299f992010-11-24 12:23:44 +0000156 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100157 mutex_lock(&dev->struct_mutex);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000158 list_for_each_entry(vma, &ggtt->base.active_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100159 if (i915_vma_is_pinned(vma))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100160 pinned += vma->node.size;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000161 list_for_each_entry(vma, &ggtt->base.inactive_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100162 if (i915_vma_is_pinned(vma))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100163 pinned += vma->node.size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100164 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700165
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300166 args->aper_size = ggtt->base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400167 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000168
Eric Anholt5a125c32008-10-22 21:40:13 -0700169 return 0;
170}
171
Chris Wilson03ac84f2016-10-28 13:58:36 +0100172static struct sg_table *
Chris Wilson6a2c4232014-11-04 04:51:40 -0800173i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100174{
Al Viro93c76a32015-12-04 23:45:44 -0500175 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800176 char *vaddr = obj->phys_handle->vaddr;
177 struct sg_table *st;
178 struct scatterlist *sg;
179 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100180
Chris Wilson6a2c4232014-11-04 04:51:40 -0800181 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
Chris Wilson03ac84f2016-10-28 13:58:36 +0100182 return ERR_PTR(-EINVAL);
Chris Wilson00731152014-05-21 12:42:56 +0100183
Chris Wilson6a2c4232014-11-04 04:51:40 -0800184 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
185 struct page *page;
186 char *src;
187
188 page = shmem_read_mapping_page(mapping, i);
189 if (IS_ERR(page))
Chris Wilson03ac84f2016-10-28 13:58:36 +0100190 return ERR_CAST(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800191
192 src = kmap_atomic(page);
193 memcpy(vaddr, src, PAGE_SIZE);
194 drm_clflush_virt_range(vaddr, PAGE_SIZE);
195 kunmap_atomic(src);
196
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300197 put_page(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800198 vaddr += PAGE_SIZE;
199 }
200
Chris Wilsonc0336662016-05-06 15:40:21 +0100201 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800202
203 st = kmalloc(sizeof(*st), GFP_KERNEL);
204 if (st == NULL)
Chris Wilson03ac84f2016-10-28 13:58:36 +0100205 return ERR_PTR(-ENOMEM);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800206
207 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
208 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100209 return ERR_PTR(-ENOMEM);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800210 }
211
212 sg = st->sgl;
213 sg->offset = 0;
214 sg->length = obj->base.size;
215
216 sg_dma_address(sg) = obj->phys_handle->busaddr;
217 sg_dma_len(sg) = obj->base.size;
218
Chris Wilson03ac84f2016-10-28 13:58:36 +0100219 return st;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800220}
221
222static void
Chris Wilson2b3c8312016-11-11 14:58:09 +0000223__i915_gem_object_release_shmem(struct drm_i915_gem_object *obj,
224 struct sg_table *pages)
Chris Wilson6a2c4232014-11-04 04:51:40 -0800225{
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100226 GEM_BUG_ON(obj->mm.madv == __I915_MADV_PURGED);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800227
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100228 if (obj->mm.madv == I915_MADV_DONTNEED)
229 obj->mm.dirty = false;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800230
Chris Wilson03ac84f2016-10-28 13:58:36 +0100231 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
Chris Wilson2b3c8312016-11-11 14:58:09 +0000232 drm_clflush_sg(pages);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100233
234 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
235 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
236}
237
238static void
239i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj,
240 struct sg_table *pages)
241{
Chris Wilson2b3c8312016-11-11 14:58:09 +0000242 __i915_gem_object_release_shmem(obj, pages);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100243
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100244 if (obj->mm.dirty) {
Al Viro93c76a32015-12-04 23:45:44 -0500245 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800246 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100247 int i;
248
249 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800250 struct page *page;
251 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100252
Chris Wilson6a2c4232014-11-04 04:51:40 -0800253 page = shmem_read_mapping_page(mapping, i);
254 if (IS_ERR(page))
255 continue;
256
257 dst = kmap_atomic(page);
258 drm_clflush_virt_range(vaddr, PAGE_SIZE);
259 memcpy(dst, vaddr, PAGE_SIZE);
260 kunmap_atomic(dst);
261
262 set_page_dirty(page);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100263 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100264 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300265 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100266 vaddr += PAGE_SIZE;
267 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100268 obj->mm.dirty = false;
Chris Wilson00731152014-05-21 12:42:56 +0100269 }
270
Chris Wilson03ac84f2016-10-28 13:58:36 +0100271 sg_free_table(pages);
272 kfree(pages);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800273}
274
275static void
276i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
277{
278 drm_pci_free(obj->base.dev, obj->phys_handle);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100279 i915_gem_object_unpin_pages(obj);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800280}
281
282static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
283 .get_pages = i915_gem_object_get_pages_phys,
284 .put_pages = i915_gem_object_put_pages_phys,
285 .release = i915_gem_object_release_phys,
286};
287
Chris Wilson35a96112016-08-14 18:44:40 +0100288int i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Chris Wilsonaa653a62016-08-04 07:52:27 +0100289{
290 struct i915_vma *vma;
291 LIST_HEAD(still_in_list);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100292 int ret;
Chris Wilsonaa653a62016-08-04 07:52:27 +0100293
Chris Wilson02bef8f2016-08-14 18:44:41 +0100294 lockdep_assert_held(&obj->base.dev->struct_mutex);
295
296 /* Closed vma are removed from the obj->vma_list - but they may
297 * still have an active binding on the object. To remove those we
298 * must wait for all rendering to complete to the object (as unbinding
299 * must anyway), and retire the requests.
Chris Wilsonaa653a62016-08-04 07:52:27 +0100300 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100301 ret = i915_gem_object_wait(obj,
302 I915_WAIT_INTERRUPTIBLE |
303 I915_WAIT_LOCKED |
304 I915_WAIT_ALL,
305 MAX_SCHEDULE_TIMEOUT,
306 NULL);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100307 if (ret)
308 return ret;
309
310 i915_gem_retire_requests(to_i915(obj->base.dev));
311
Chris Wilsonaa653a62016-08-04 07:52:27 +0100312 while ((vma = list_first_entry_or_null(&obj->vma_list,
313 struct i915_vma,
314 obj_link))) {
315 list_move_tail(&vma->obj_link, &still_in_list);
316 ret = i915_vma_unbind(vma);
317 if (ret)
318 break;
319 }
320 list_splice(&still_in_list, &obj->vma_list);
321
322 return ret;
323}
324
Chris Wilsone95433c2016-10-28 13:58:27 +0100325static long
326i915_gem_object_wait_fence(struct dma_fence *fence,
327 unsigned int flags,
328 long timeout,
329 struct intel_rps_client *rps)
330{
331 struct drm_i915_gem_request *rq;
332
333 BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1);
334
335 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
336 return timeout;
337
338 if (!dma_fence_is_i915(fence))
339 return dma_fence_wait_timeout(fence,
340 flags & I915_WAIT_INTERRUPTIBLE,
341 timeout);
342
343 rq = to_request(fence);
344 if (i915_gem_request_completed(rq))
345 goto out;
346
347 /* This client is about to stall waiting for the GPU. In many cases
348 * this is undesirable and limits the throughput of the system, as
349 * many clients cannot continue processing user input/output whilst
350 * blocked. RPS autotuning may take tens of milliseconds to respond
351 * to the GPU load and thus incurs additional latency for the client.
352 * We can circumvent that by promoting the GPU frequency to maximum
353 * before we wait. This makes the GPU throttle up much more quickly
354 * (good for benchmarks and user experience, e.g. window animations),
355 * but at a cost of spending more power processing the workload
356 * (bad for battery). Not all clients even want their results
357 * immediately and for them we should just let the GPU select its own
358 * frequency to maximise efficiency. To prevent a single client from
359 * forcing the clocks too high for the whole system, we only allow
360 * each client to waitboost once in a busy period.
361 */
362 if (rps) {
363 if (INTEL_GEN(rq->i915) >= 6)
364 gen6_rps_boost(rq->i915, rps, rq->emitted_jiffies);
365 else
366 rps = NULL;
367 }
368
369 timeout = i915_wait_request(rq, flags, timeout);
370
371out:
372 if (flags & I915_WAIT_LOCKED && i915_gem_request_completed(rq))
373 i915_gem_request_retire_upto(rq);
374
Chris Wilsoncb399ea2016-11-01 10:03:16 +0000375 if (rps && rq->global_seqno == intel_engine_last_submit(rq->engine)) {
Chris Wilsone95433c2016-10-28 13:58:27 +0100376 /* The GPU is now idle and this client has stalled.
377 * Since no other client has submitted a request in the
378 * meantime, assume that this client is the only one
379 * supplying work to the GPU but is unable to keep that
380 * work supplied because it is waiting. Since the GPU is
381 * then never kept fully busy, RPS autoclocking will
382 * keep the clocks relatively low, causing further delays.
383 * Compensate by giving the synchronous client credit for
384 * a waitboost next time.
385 */
386 spin_lock(&rq->i915->rps.client_lock);
387 list_del_init(&rps->link);
388 spin_unlock(&rq->i915->rps.client_lock);
389 }
390
391 return timeout;
392}
393
394static long
395i915_gem_object_wait_reservation(struct reservation_object *resv,
396 unsigned int flags,
397 long timeout,
398 struct intel_rps_client *rps)
399{
400 struct dma_fence *excl;
401
402 if (flags & I915_WAIT_ALL) {
403 struct dma_fence **shared;
404 unsigned int count, i;
405 int ret;
406
407 ret = reservation_object_get_fences_rcu(resv,
408 &excl, &count, &shared);
409 if (ret)
410 return ret;
411
412 for (i = 0; i < count; i++) {
413 timeout = i915_gem_object_wait_fence(shared[i],
414 flags, timeout,
415 rps);
416 if (timeout <= 0)
417 break;
418
419 dma_fence_put(shared[i]);
420 }
421
422 for (; i < count; i++)
423 dma_fence_put(shared[i]);
424 kfree(shared);
425 } else {
426 excl = reservation_object_get_excl_rcu(resv);
427 }
428
429 if (excl && timeout > 0)
430 timeout = i915_gem_object_wait_fence(excl, flags, timeout, rps);
431
432 dma_fence_put(excl);
433
434 return timeout;
435}
436
Chris Wilson00e60f22016-08-04 16:32:40 +0100437/**
Chris Wilsone95433c2016-10-28 13:58:27 +0100438 * Waits for rendering to the object to be completed
Chris Wilson00e60f22016-08-04 16:32:40 +0100439 * @obj: i915 gem object
Chris Wilsone95433c2016-10-28 13:58:27 +0100440 * @flags: how to wait (under a lock, for all rendering or just for writes etc)
441 * @timeout: how long to wait
442 * @rps: client (user process) to charge for any waitboosting
Chris Wilson00e60f22016-08-04 16:32:40 +0100443 */
444int
Chris Wilsone95433c2016-10-28 13:58:27 +0100445i915_gem_object_wait(struct drm_i915_gem_object *obj,
446 unsigned int flags,
447 long timeout,
448 struct intel_rps_client *rps)
Chris Wilson00e60f22016-08-04 16:32:40 +0100449{
Chris Wilsone95433c2016-10-28 13:58:27 +0100450 might_sleep();
451#if IS_ENABLED(CONFIG_LOCKDEP)
452 GEM_BUG_ON(debug_locks &&
453 !!lockdep_is_held(&obj->base.dev->struct_mutex) !=
454 !!(flags & I915_WAIT_LOCKED));
455#endif
456 GEM_BUG_ON(timeout < 0);
Chris Wilson00e60f22016-08-04 16:32:40 +0100457
Chris Wilsond07f0e52016-10-28 13:58:44 +0100458 timeout = i915_gem_object_wait_reservation(obj->resv,
459 flags, timeout,
460 rps);
Chris Wilsone95433c2016-10-28 13:58:27 +0100461 return timeout < 0 ? timeout : 0;
Chris Wilson00e60f22016-08-04 16:32:40 +0100462}
463
464static struct intel_rps_client *to_rps_client(struct drm_file *file)
465{
466 struct drm_i915_file_private *fpriv = file->driver_priv;
467
468 return &fpriv->rps;
469}
470
Chris Wilson00731152014-05-21 12:42:56 +0100471int
472i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
473 int align)
474{
475 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800476 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100477
478 if (obj->phys_handle) {
479 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
480 return -EBUSY;
481
482 return 0;
483 }
484
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100485 if (obj->mm.madv != I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100486 return -EFAULT;
487
488 if (obj->base.filp == NULL)
489 return -EINVAL;
490
Chris Wilson4717ca92016-08-04 07:52:28 +0100491 ret = i915_gem_object_unbind(obj);
492 if (ret)
493 return ret;
494
Chris Wilson548625e2016-11-01 12:11:34 +0000495 __i915_gem_object_put_pages(obj, I915_MM_NORMAL);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100496 if (obj->mm.pages)
497 return -EBUSY;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800498
Chris Wilson00731152014-05-21 12:42:56 +0100499 /* create a new object */
500 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
501 if (!phys)
502 return -ENOMEM;
503
Chris Wilson00731152014-05-21 12:42:56 +0100504 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800505 obj->ops = &i915_gem_phys_ops;
506
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100507 return i915_gem_object_pin_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100508}
509
510static int
511i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
512 struct drm_i915_gem_pwrite *args,
Chris Wilson03ac84f2016-10-28 13:58:36 +0100513 struct drm_file *file)
Chris Wilson00731152014-05-21 12:42:56 +0100514{
515 struct drm_device *dev = obj->base.dev;
516 void *vaddr = obj->phys_handle->vaddr + args->offset;
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300517 char __user *user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilsone95433c2016-10-28 13:58:27 +0100518 int ret;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800519
520 /* We manually control the domain here and pretend that it
521 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
522 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100523 lockdep_assert_held(&obj->base.dev->struct_mutex);
524 ret = i915_gem_object_wait(obj,
525 I915_WAIT_INTERRUPTIBLE |
526 I915_WAIT_LOCKED |
527 I915_WAIT_ALL,
528 MAX_SCHEDULE_TIMEOUT,
Chris Wilson03ac84f2016-10-28 13:58:36 +0100529 to_rps_client(file));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800530 if (ret)
531 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100532
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700533 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100534 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
535 unsigned long unwritten;
536
537 /* The physical object once assigned is fixed for the lifetime
538 * of the obj, so we can safely drop the lock and continue
539 * to access vaddr.
540 */
541 mutex_unlock(&dev->struct_mutex);
542 unwritten = copy_from_user(vaddr, user_data, args->size);
543 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200544 if (unwritten) {
545 ret = -EFAULT;
546 goto out;
547 }
Chris Wilson00731152014-05-21 12:42:56 +0100548 }
549
Chris Wilson6a2c4232014-11-04 04:51:40 -0800550 drm_clflush_virt_range(vaddr, args->size);
Chris Wilsonc0336662016-05-06 15:40:21 +0100551 i915_gem_chipset_flush(to_i915(dev));
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200552
553out:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700554 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200555 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100556}
557
Chris Wilson42dcedd2012-11-15 11:32:30 +0000558void *i915_gem_object_alloc(struct drm_device *dev)
559{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100560 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100561 return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000562}
563
564void i915_gem_object_free(struct drm_i915_gem_object *obj)
565{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100566 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100567 kmem_cache_free(dev_priv->objects, obj);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000568}
569
Dave Airlieff72145b2011-02-07 12:16:14 +1000570static int
571i915_gem_create(struct drm_file *file,
572 struct drm_device *dev,
573 uint64_t size,
574 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700575{
Chris Wilson05394f32010-11-08 19:18:58 +0000576 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300577 int ret;
578 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700579
Dave Airlieff72145b2011-02-07 12:16:14 +1000580 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200581 if (size == 0)
582 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700583
584 /* Allocate the new object */
Dave Gordond37cd8a2016-04-22 19:14:32 +0100585 obj = i915_gem_object_create(dev, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100586 if (IS_ERR(obj))
587 return PTR_ERR(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700588
Chris Wilson05394f32010-11-08 19:18:58 +0000589 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100590 /* drop reference from allocate - handle holds it now */
Chris Wilsonf0cd5182016-10-28 13:58:43 +0100591 i915_gem_object_put(obj);
Daniel Vetterd861e332013-07-24 23:25:03 +0200592 if (ret)
593 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100594
Dave Airlieff72145b2011-02-07 12:16:14 +1000595 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700596 return 0;
597}
598
Dave Airlieff72145b2011-02-07 12:16:14 +1000599int
600i915_gem_dumb_create(struct drm_file *file,
601 struct drm_device *dev,
602 struct drm_mode_create_dumb *args)
603{
604 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300605 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000606 args->size = args->pitch * args->height;
607 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000608 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000609}
610
Dave Airlieff72145b2011-02-07 12:16:14 +1000611/**
612 * Creates a new mm object and returns a handle to it.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100613 * @dev: drm device pointer
614 * @data: ioctl data blob
615 * @file: drm file pointer
Dave Airlieff72145b2011-02-07 12:16:14 +1000616 */
617int
618i915_gem_create_ioctl(struct drm_device *dev, void *data,
619 struct drm_file *file)
620{
621 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200622
Chris Wilsonfbbd37b2016-10-28 13:58:42 +0100623 i915_gem_flush_free_objects(to_i915(dev));
624
Dave Airlieff72145b2011-02-07 12:16:14 +1000625 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000626 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000627}
628
Daniel Vetter8c599672011-12-14 13:57:31 +0100629static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100630__copy_to_user_swizzled(char __user *cpu_vaddr,
631 const char *gpu_vaddr, int gpu_offset,
632 int length)
633{
634 int ret, cpu_offset = 0;
635
636 while (length > 0) {
637 int cacheline_end = ALIGN(gpu_offset + 1, 64);
638 int this_length = min(cacheline_end - gpu_offset, length);
639 int swizzled_gpu_offset = gpu_offset ^ 64;
640
641 ret = __copy_to_user(cpu_vaddr + cpu_offset,
642 gpu_vaddr + swizzled_gpu_offset,
643 this_length);
644 if (ret)
645 return ret + length;
646
647 cpu_offset += this_length;
648 gpu_offset += this_length;
649 length -= this_length;
650 }
651
652 return 0;
653}
654
655static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700656__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
657 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100658 int length)
659{
660 int ret, cpu_offset = 0;
661
662 while (length > 0) {
663 int cacheline_end = ALIGN(gpu_offset + 1, 64);
664 int this_length = min(cacheline_end - gpu_offset, length);
665 int swizzled_gpu_offset = gpu_offset ^ 64;
666
667 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
668 cpu_vaddr + cpu_offset,
669 this_length);
670 if (ret)
671 return ret + length;
672
673 cpu_offset += this_length;
674 gpu_offset += this_length;
675 length -= this_length;
676 }
677
678 return 0;
679}
680
Brad Volkin4c914c02014-02-18 10:15:45 -0800681/*
682 * Pins the specified object's pages and synchronizes the object with
683 * GPU accesses. Sets needs_clflush to non-zero if the caller should
684 * flush the object from the CPU cache.
685 */
686int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
Chris Wilson43394c72016-08-18 17:16:47 +0100687 unsigned int *needs_clflush)
Brad Volkin4c914c02014-02-18 10:15:45 -0800688{
689 int ret;
690
Chris Wilsone95433c2016-10-28 13:58:27 +0100691 lockdep_assert_held(&obj->base.dev->struct_mutex);
Brad Volkin4c914c02014-02-18 10:15:45 -0800692
Chris Wilsone95433c2016-10-28 13:58:27 +0100693 *needs_clflush = 0;
Chris Wilson43394c72016-08-18 17:16:47 +0100694 if (!i915_gem_object_has_struct_page(obj))
695 return -ENODEV;
Brad Volkin4c914c02014-02-18 10:15:45 -0800696
Chris Wilsone95433c2016-10-28 13:58:27 +0100697 ret = i915_gem_object_wait(obj,
698 I915_WAIT_INTERRUPTIBLE |
699 I915_WAIT_LOCKED,
700 MAX_SCHEDULE_TIMEOUT,
701 NULL);
Chris Wilsonc13d87e2016-07-20 09:21:15 +0100702 if (ret)
703 return ret;
704
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100705 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100706 if (ret)
707 return ret;
708
Chris Wilsona314d5c2016-08-18 17:16:48 +0100709 i915_gem_object_flush_gtt_write_domain(obj);
710
Chris Wilson43394c72016-08-18 17:16:47 +0100711 /* If we're not in the cpu read domain, set ourself into the gtt
712 * read domain and manually flush cachelines (if required). This
713 * optimizes for the case when the gpu will dirty the data
714 * anyway again before the next pread happens.
715 */
716 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
Brad Volkin4c914c02014-02-18 10:15:45 -0800717 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
718 obj->cache_level);
Brad Volkin4c914c02014-02-18 10:15:45 -0800719
Chris Wilson43394c72016-08-18 17:16:47 +0100720 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
721 ret = i915_gem_object_set_to_cpu_domain(obj, false);
Chris Wilson97649512016-08-18 17:16:50 +0100722 if (ret)
723 goto err_unpin;
724
Chris Wilson43394c72016-08-18 17:16:47 +0100725 *needs_clflush = 0;
726 }
727
Chris Wilson97649512016-08-18 17:16:50 +0100728 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100729 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100730
731err_unpin:
732 i915_gem_object_unpin_pages(obj);
733 return ret;
Chris Wilson43394c72016-08-18 17:16:47 +0100734}
735
736int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj,
737 unsigned int *needs_clflush)
738{
739 int ret;
740
Chris Wilsone95433c2016-10-28 13:58:27 +0100741 lockdep_assert_held(&obj->base.dev->struct_mutex);
742
Chris Wilson43394c72016-08-18 17:16:47 +0100743 *needs_clflush = 0;
744 if (!i915_gem_object_has_struct_page(obj))
745 return -ENODEV;
746
Chris Wilsone95433c2016-10-28 13:58:27 +0100747 ret = i915_gem_object_wait(obj,
748 I915_WAIT_INTERRUPTIBLE |
749 I915_WAIT_LOCKED |
750 I915_WAIT_ALL,
751 MAX_SCHEDULE_TIMEOUT,
752 NULL);
Chris Wilson43394c72016-08-18 17:16:47 +0100753 if (ret)
754 return ret;
755
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100756 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100757 if (ret)
758 return ret;
759
Chris Wilsona314d5c2016-08-18 17:16:48 +0100760 i915_gem_object_flush_gtt_write_domain(obj);
761
Chris Wilson43394c72016-08-18 17:16:47 +0100762 /* If we're not in the cpu write domain, set ourself into the
763 * gtt write domain and manually flush cachelines (as required).
764 * This optimizes for the case when the gpu will use the data
765 * right away and we therefore have to clflush anyway.
766 */
767 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
768 *needs_clflush |= cpu_write_needs_clflush(obj) << 1;
769
770 /* Same trick applies to invalidate partially written cachelines read
771 * before writing.
772 */
773 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
774 *needs_clflush |= !cpu_cache_is_coherent(obj->base.dev,
775 obj->cache_level);
776
Chris Wilson43394c72016-08-18 17:16:47 +0100777 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
778 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilson97649512016-08-18 17:16:50 +0100779 if (ret)
780 goto err_unpin;
781
Chris Wilson43394c72016-08-18 17:16:47 +0100782 *needs_clflush = 0;
783 }
784
785 if ((*needs_clflush & CLFLUSH_AFTER) == 0)
786 obj->cache_dirty = true;
787
788 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100789 obj->mm.dirty = true;
Chris Wilson97649512016-08-18 17:16:50 +0100790 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100791 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100792
793err_unpin:
794 i915_gem_object_unpin_pages(obj);
795 return ret;
Brad Volkin4c914c02014-02-18 10:15:45 -0800796}
797
Daniel Vetter23c18c72012-03-25 19:47:42 +0200798static void
799shmem_clflush_swizzled_range(char *addr, unsigned long length,
800 bool swizzled)
801{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200802 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200803 unsigned long start = (unsigned long) addr;
804 unsigned long end = (unsigned long) addr + length;
805
806 /* For swizzling simply ensure that we always flush both
807 * channels. Lame, but simple and it works. Swizzled
808 * pwrite/pread is far from a hotpath - current userspace
809 * doesn't use it at all. */
810 start = round_down(start, 128);
811 end = round_up(end, 128);
812
813 drm_clflush_virt_range((void *)start, end - start);
814 } else {
815 drm_clflush_virt_range(addr, length);
816 }
817
818}
819
Daniel Vetterd174bd62012-03-25 19:47:40 +0200820/* Only difference to the fast-path function is that this can handle bit17
821 * and uses non-atomic copy and kmap functions. */
822static int
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100823shmem_pread_slow(struct page *page, int offset, int length,
Daniel Vetterd174bd62012-03-25 19:47:40 +0200824 char __user *user_data,
825 bool page_do_bit17_swizzling, bool needs_clflush)
826{
827 char *vaddr;
828 int ret;
829
830 vaddr = kmap(page);
831 if (needs_clflush)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100832 shmem_clflush_swizzled_range(vaddr + offset, length,
Daniel Vetter23c18c72012-03-25 19:47:42 +0200833 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200834
835 if (page_do_bit17_swizzling)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100836 ret = __copy_to_user_swizzled(user_data, vaddr, offset, length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200837 else
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100838 ret = __copy_to_user(user_data, vaddr + offset, length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200839 kunmap(page);
840
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100841 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200842}
843
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100844static int
845shmem_pread(struct page *page, int offset, int length, char __user *user_data,
846 bool page_do_bit17_swizzling, bool needs_clflush)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530847{
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100848 int ret;
849
850 ret = -ENODEV;
851 if (!page_do_bit17_swizzling) {
852 char *vaddr = kmap_atomic(page);
853
854 if (needs_clflush)
855 drm_clflush_virt_range(vaddr + offset, length);
856 ret = __copy_to_user_inatomic(user_data, vaddr + offset, length);
857 kunmap_atomic(vaddr);
858 }
859 if (ret == 0)
860 return 0;
861
862 return shmem_pread_slow(page, offset, length, user_data,
863 page_do_bit17_swizzling, needs_clflush);
864}
865
866static int
867i915_gem_shmem_pread(struct drm_i915_gem_object *obj,
868 struct drm_i915_gem_pread *args)
869{
870 char __user *user_data;
871 u64 remain;
872 unsigned int obj_do_bit17_swizzling;
873 unsigned int needs_clflush;
874 unsigned int idx, offset;
875 int ret;
876
877 obj_do_bit17_swizzling = 0;
878 if (i915_gem_object_needs_bit17_swizzle(obj))
879 obj_do_bit17_swizzling = BIT(17);
880
881 ret = mutex_lock_interruptible(&obj->base.dev->struct_mutex);
882 if (ret)
883 return ret;
884
885 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
886 mutex_unlock(&obj->base.dev->struct_mutex);
887 if (ret)
888 return ret;
889
890 remain = args->size;
891 user_data = u64_to_user_ptr(args->data_ptr);
892 offset = offset_in_page(args->offset);
893 for (idx = args->offset >> PAGE_SHIFT; remain; idx++) {
894 struct page *page = i915_gem_object_get_page(obj, idx);
895 int length;
896
897 length = remain;
898 if (offset + length > PAGE_SIZE)
899 length = PAGE_SIZE - offset;
900
901 ret = shmem_pread(page, offset, length, user_data,
902 page_to_phys(page) & obj_do_bit17_swizzling,
903 needs_clflush);
904 if (ret)
905 break;
906
907 remain -= length;
908 user_data += length;
909 offset = 0;
910 }
911
912 i915_gem_obj_finish_shmem_access(obj);
913 return ret;
914}
915
916static inline bool
917gtt_user_read(struct io_mapping *mapping,
918 loff_t base, int offset,
919 char __user *user_data, int length)
920{
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530921 void *vaddr;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100922 unsigned long unwritten;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530923
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530924 /* We can use the cpu mem copy function because this is X86. */
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100925 vaddr = (void __force *)io_mapping_map_atomic_wc(mapping, base);
926 unwritten = __copy_to_user_inatomic(user_data, vaddr + offset, length);
927 io_mapping_unmap_atomic(vaddr);
928 if (unwritten) {
929 vaddr = (void __force *)
930 io_mapping_map_wc(mapping, base, PAGE_SIZE);
931 unwritten = copy_to_user(user_data, vaddr + offset, length);
932 io_mapping_unmap(vaddr);
933 }
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530934 return unwritten;
935}
936
937static int
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100938i915_gem_gtt_pread(struct drm_i915_gem_object *obj,
939 const struct drm_i915_gem_pread *args)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530940{
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100941 struct drm_i915_private *i915 = to_i915(obj->base.dev);
942 struct i915_ggtt *ggtt = &i915->ggtt;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530943 struct drm_mm_node node;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100944 struct i915_vma *vma;
945 void __user *user_data;
946 u64 remain, offset;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530947 int ret;
948
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100949 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
950 if (ret)
951 return ret;
952
953 intel_runtime_pm_get(i915);
954 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
955 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +0100956 if (!IS_ERR(vma)) {
957 node.start = i915_ggtt_offset(vma);
958 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +0100959 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +0100960 if (ret) {
961 i915_vma_unpin(vma);
962 vma = ERR_PTR(ret);
963 }
964 }
Chris Wilson058d88c2016-08-15 10:49:06 +0100965 if (IS_ERR(vma)) {
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100966 ret = insert_mappable_node(ggtt, &node, PAGE_SIZE);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530967 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100968 goto out_unlock;
969 GEM_BUG_ON(!node.allocated);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530970 }
971
972 ret = i915_gem_object_set_to_gtt_domain(obj, false);
973 if (ret)
974 goto out_unpin;
975
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100976 mutex_unlock(&i915->drm.struct_mutex);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530977
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100978 user_data = u64_to_user_ptr(args->data_ptr);
979 remain = args->size;
980 offset = args->offset;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530981
982 while (remain > 0) {
983 /* Operation in this page
984 *
985 * page_base = page offset within aperture
986 * page_offset = offset within page
987 * page_length = bytes to copy for this page
988 */
989 u32 page_base = node.start;
990 unsigned page_offset = offset_in_page(offset);
991 unsigned page_length = PAGE_SIZE - page_offset;
992 page_length = remain < page_length ? remain : page_length;
993 if (node.allocated) {
994 wmb();
995 ggtt->base.insert_page(&ggtt->base,
996 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100997 node.start, I915_CACHE_NONE, 0);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530998 wmb();
999 } else {
1000 page_base += offset & PAGE_MASK;
1001 }
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001002
1003 if (gtt_user_read(&ggtt->mappable, page_base, page_offset,
1004 user_data, page_length)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301005 ret = -EFAULT;
1006 break;
1007 }
1008
1009 remain -= page_length;
1010 user_data += page_length;
1011 offset += page_length;
1012 }
1013
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001014 mutex_lock(&i915->drm.struct_mutex);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301015out_unpin:
1016 if (node.allocated) {
1017 wmb();
1018 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001019 node.start, node.size);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301020 remove_mappable_node(&node);
1021 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001022 i915_vma_unpin(vma);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301023 }
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001024out_unlock:
1025 intel_runtime_pm_put(i915);
1026 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001027
Eric Anholteb014592009-03-10 11:44:52 -07001028 return ret;
1029}
1030
Eric Anholt673a3942008-07-30 12:06:12 -07001031/**
1032 * Reads data from the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001033 * @dev: drm device pointer
1034 * @data: ioctl data blob
1035 * @file: drm file pointer
Eric Anholt673a3942008-07-30 12:06:12 -07001036 *
1037 * On error, the contents of *data are undefined.
1038 */
1039int
1040i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001041 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001042{
1043 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001044 struct drm_i915_gem_object *obj;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001045 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001046
Chris Wilson51311d02010-11-17 09:10:42 +00001047 if (args->size == 0)
1048 return 0;
1049
1050 if (!access_ok(VERIFY_WRITE,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001051 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001052 args->size))
1053 return -EFAULT;
1054
Chris Wilson03ac0642016-07-20 13:31:51 +01001055 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001056 if (!obj)
1057 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001058
Chris Wilson7dcd2492010-09-26 20:21:44 +01001059 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +00001060 if (args->offset > obj->base.size ||
1061 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001062 ret = -EINVAL;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001063 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001064 }
1065
Chris Wilsondb53a302011-02-03 11:57:46 +00001066 trace_i915_gem_object_pread(obj, args->offset, args->size);
1067
Chris Wilsone95433c2016-10-28 13:58:27 +01001068 ret = i915_gem_object_wait(obj,
1069 I915_WAIT_INTERRUPTIBLE,
1070 MAX_SCHEDULE_TIMEOUT,
1071 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001072 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001073 goto out;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001074
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001075 ret = i915_gem_object_pin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001076 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001077 goto out;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001078
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001079 ret = i915_gem_shmem_pread(obj, args);
Chris Wilson9c870d02016-10-24 13:42:15 +01001080 if (ret == -EFAULT || ret == -ENODEV)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001081 ret = i915_gem_gtt_pread(obj, args);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301082
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001083 i915_gem_object_unpin_pages(obj);
1084out:
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001085 i915_gem_object_put(obj);
Eric Anholteb014592009-03-10 11:44:52 -07001086 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001087}
1088
Keith Packard0839ccb2008-10-30 19:38:48 -07001089/* This is the fast write path which cannot handle
1090 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001091 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001092
Chris Wilsonfe115622016-10-28 13:58:40 +01001093static inline bool
1094ggtt_write(struct io_mapping *mapping,
1095 loff_t base, int offset,
1096 char __user *user_data, int length)
Keith Packard0839ccb2008-10-30 19:38:48 -07001097{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001098 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -07001099 unsigned long unwritten;
1100
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001101 /* We can use the cpu mem copy function because this is X86. */
Chris Wilsonfe115622016-10-28 13:58:40 +01001102 vaddr = (void __force *)io_mapping_map_atomic_wc(mapping, base);
1103 unwritten = __copy_from_user_inatomic_nocache(vaddr + offset,
Keith Packard0839ccb2008-10-30 19:38:48 -07001104 user_data, length);
Chris Wilsonfe115622016-10-28 13:58:40 +01001105 io_mapping_unmap_atomic(vaddr);
1106 if (unwritten) {
1107 vaddr = (void __force *)
1108 io_mapping_map_wc(mapping, base, PAGE_SIZE);
1109 unwritten = copy_from_user(vaddr + offset, user_data, length);
1110 io_mapping_unmap(vaddr);
1111 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001112
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001113 return unwritten;
1114}
1115
Eric Anholt3de09aa2009-03-09 09:42:23 -07001116/**
1117 * This is the fast pwrite path, where we copy the data directly from the
1118 * user into the GTT, uncached.
Chris Wilsonfe115622016-10-28 13:58:40 +01001119 * @obj: i915 GEM object
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001120 * @args: pwrite arguments structure
Eric Anholt3de09aa2009-03-09 09:42:23 -07001121 */
Eric Anholt673a3942008-07-30 12:06:12 -07001122static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001123i915_gem_gtt_pwrite_fast(struct drm_i915_gem_object *obj,
1124 const struct drm_i915_gem_pwrite *args)
Eric Anholt673a3942008-07-30 12:06:12 -07001125{
Chris Wilsonfe115622016-10-28 13:58:40 +01001126 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301127 struct i915_ggtt *ggtt = &i915->ggtt;
1128 struct drm_mm_node node;
Chris Wilsonfe115622016-10-28 13:58:40 +01001129 struct i915_vma *vma;
1130 u64 remain, offset;
1131 void __user *user_data;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301132 int ret;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301133
Chris Wilsonfe115622016-10-28 13:58:40 +01001134 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
1135 if (ret)
1136 return ret;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001137
Chris Wilson9c870d02016-10-24 13:42:15 +01001138 intel_runtime_pm_get(i915);
Chris Wilson058d88c2016-08-15 10:49:06 +01001139 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilsonde895082016-08-04 16:32:34 +01001140 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +01001141 if (!IS_ERR(vma)) {
1142 node.start = i915_ggtt_offset(vma);
1143 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +01001144 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +01001145 if (ret) {
1146 i915_vma_unpin(vma);
1147 vma = ERR_PTR(ret);
1148 }
1149 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001150 if (IS_ERR(vma)) {
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001151 ret = insert_mappable_node(ggtt, &node, PAGE_SIZE);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301152 if (ret)
Chris Wilsonfe115622016-10-28 13:58:40 +01001153 goto out_unlock;
1154 GEM_BUG_ON(!node.allocated);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301155 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001156
1157 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1158 if (ret)
1159 goto out_unpin;
1160
Chris Wilsonfe115622016-10-28 13:58:40 +01001161 mutex_unlock(&i915->drm.struct_mutex);
1162
Chris Wilsonb19482d2016-08-18 17:16:43 +01001163 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001164
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301165 user_data = u64_to_user_ptr(args->data_ptr);
1166 offset = args->offset;
1167 remain = args->size;
1168 while (remain) {
Eric Anholt673a3942008-07-30 12:06:12 -07001169 /* Operation in this page
1170 *
Keith Packard0839ccb2008-10-30 19:38:48 -07001171 * page_base = page offset within aperture
1172 * page_offset = offset within page
1173 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -07001174 */
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301175 u32 page_base = node.start;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001176 unsigned int page_offset = offset_in_page(offset);
1177 unsigned int page_length = PAGE_SIZE - page_offset;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301178 page_length = remain < page_length ? remain : page_length;
1179 if (node.allocated) {
1180 wmb(); /* flush the write before we modify the GGTT */
1181 ggtt->base.insert_page(&ggtt->base,
1182 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
1183 node.start, I915_CACHE_NONE, 0);
1184 wmb(); /* flush modifications to the GGTT (insert_page) */
1185 } else {
1186 page_base += offset & PAGE_MASK;
1187 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001188 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -07001189 * source page isn't available. Return the error and we'll
1190 * retry in the slow path.
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301191 * If the object is non-shmem backed, we retry again with the
1192 * path that handles page fault.
Keith Packard0839ccb2008-10-30 19:38:48 -07001193 */
Chris Wilsonfe115622016-10-28 13:58:40 +01001194 if (ggtt_write(&ggtt->mappable, page_base, page_offset,
1195 user_data, page_length)) {
1196 ret = -EFAULT;
1197 break;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001198 }
Eric Anholt673a3942008-07-30 12:06:12 -07001199
Keith Packard0839ccb2008-10-30 19:38:48 -07001200 remain -= page_length;
1201 user_data += page_length;
1202 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -07001203 }
Chris Wilsonb19482d2016-08-18 17:16:43 +01001204 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Chris Wilsonfe115622016-10-28 13:58:40 +01001205
1206 mutex_lock(&i915->drm.struct_mutex);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001207out_unpin:
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301208 if (node.allocated) {
1209 wmb();
1210 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001211 node.start, node.size);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301212 remove_mappable_node(&node);
1213 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001214 i915_vma_unpin(vma);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301215 }
Chris Wilsonfe115622016-10-28 13:58:40 +01001216out_unlock:
Chris Wilson9c870d02016-10-24 13:42:15 +01001217 intel_runtime_pm_put(i915);
Chris Wilsonfe115622016-10-28 13:58:40 +01001218 mutex_unlock(&i915->drm.struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001219 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001220}
1221
Eric Anholt673a3942008-07-30 12:06:12 -07001222static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001223shmem_pwrite_slow(struct page *page, int offset, int length,
Daniel Vetterd174bd62012-03-25 19:47:40 +02001224 char __user *user_data,
1225 bool page_do_bit17_swizzling,
1226 bool needs_clflush_before,
1227 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001228{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001229 char *vaddr;
1230 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001231
Daniel Vetterd174bd62012-03-25 19:47:40 +02001232 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001233 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Chris Wilsonfe115622016-10-28 13:58:40 +01001234 shmem_clflush_swizzled_range(vaddr + offset, length,
Daniel Vetter23c18c72012-03-25 19:47:42 +02001235 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001236 if (page_do_bit17_swizzling)
Chris Wilsonfe115622016-10-28 13:58:40 +01001237 ret = __copy_from_user_swizzled(vaddr, offset, user_data,
1238 length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001239 else
Chris Wilsonfe115622016-10-28 13:58:40 +01001240 ret = __copy_from_user(vaddr + offset, user_data, length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001241 if (needs_clflush_after)
Chris Wilsonfe115622016-10-28 13:58:40 +01001242 shmem_clflush_swizzled_range(vaddr + offset, length,
Daniel Vetter23c18c72012-03-25 19:47:42 +02001243 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001244 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001245
Chris Wilson755d2212012-09-04 21:02:55 +01001246 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001247}
1248
Chris Wilsonfe115622016-10-28 13:58:40 +01001249/* Per-page copy function for the shmem pwrite fastpath.
1250 * Flushes invalid cachelines before writing to the target if
1251 * needs_clflush_before is set and flushes out any written cachelines after
1252 * writing if needs_clflush is set.
1253 */
Eric Anholt40123c12009-03-09 13:42:30 -07001254static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001255shmem_pwrite(struct page *page, int offset, int len, char __user *user_data,
1256 bool page_do_bit17_swizzling,
1257 bool needs_clflush_before,
1258 bool needs_clflush_after)
Eric Anholt40123c12009-03-09 13:42:30 -07001259{
Chris Wilsonfe115622016-10-28 13:58:40 +01001260 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001261
Chris Wilsonfe115622016-10-28 13:58:40 +01001262 ret = -ENODEV;
1263 if (!page_do_bit17_swizzling) {
1264 char *vaddr = kmap_atomic(page);
1265
1266 if (needs_clflush_before)
1267 drm_clflush_virt_range(vaddr + offset, len);
1268 ret = __copy_from_user_inatomic(vaddr + offset, user_data, len);
1269 if (needs_clflush_after)
1270 drm_clflush_virt_range(vaddr + offset, len);
1271
1272 kunmap_atomic(vaddr);
1273 }
1274 if (ret == 0)
1275 return ret;
1276
1277 return shmem_pwrite_slow(page, offset, len, user_data,
1278 page_do_bit17_swizzling,
1279 needs_clflush_before,
1280 needs_clflush_after);
1281}
1282
1283static int
1284i915_gem_shmem_pwrite(struct drm_i915_gem_object *obj,
1285 const struct drm_i915_gem_pwrite *args)
1286{
1287 struct drm_i915_private *i915 = to_i915(obj->base.dev);
1288 void __user *user_data;
1289 u64 remain;
1290 unsigned int obj_do_bit17_swizzling;
1291 unsigned int partial_cacheline_write;
1292 unsigned int needs_clflush;
1293 unsigned int offset, idx;
1294 int ret;
1295
1296 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
Chris Wilson43394c72016-08-18 17:16:47 +01001297 if (ret)
1298 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001299
Chris Wilsonfe115622016-10-28 13:58:40 +01001300 ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush);
1301 mutex_unlock(&i915->drm.struct_mutex);
1302 if (ret)
1303 return ret;
1304
1305 obj_do_bit17_swizzling = 0;
1306 if (i915_gem_object_needs_bit17_swizzle(obj))
1307 obj_do_bit17_swizzling = BIT(17);
1308
1309 /* If we don't overwrite a cacheline completely we need to be
1310 * careful to have up-to-date data by first clflushing. Don't
1311 * overcomplicate things and flush the entire patch.
1312 */
1313 partial_cacheline_write = 0;
1314 if (needs_clflush & CLFLUSH_BEFORE)
1315 partial_cacheline_write = boot_cpu_data.x86_clflush_size - 1;
1316
Chris Wilson43394c72016-08-18 17:16:47 +01001317 user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilson43394c72016-08-18 17:16:47 +01001318 remain = args->size;
Chris Wilsonfe115622016-10-28 13:58:40 +01001319 offset = offset_in_page(args->offset);
1320 for (idx = args->offset >> PAGE_SHIFT; remain; idx++) {
1321 struct page *page = i915_gem_object_get_page(obj, idx);
1322 int length;
Eric Anholt40123c12009-03-09 13:42:30 -07001323
Chris Wilsonfe115622016-10-28 13:58:40 +01001324 length = remain;
1325 if (offset + length > PAGE_SIZE)
1326 length = PAGE_SIZE - offset;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001327
Chris Wilsonfe115622016-10-28 13:58:40 +01001328 ret = shmem_pwrite(page, offset, length, user_data,
1329 page_to_phys(page) & obj_do_bit17_swizzling,
1330 (offset | length) & partial_cacheline_write,
1331 needs_clflush & CLFLUSH_AFTER);
1332 if (ret)
Chris Wilson9da3da62012-06-01 15:20:22 +01001333 break;
1334
Chris Wilsonfe115622016-10-28 13:58:40 +01001335 remain -= length;
1336 user_data += length;
1337 offset = 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001338 }
1339
Rodrigo Vivide152b62015-07-07 16:28:51 -07001340 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Chris Wilsonfe115622016-10-28 13:58:40 +01001341 i915_gem_obj_finish_shmem_access(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001342 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001343}
1344
1345/**
1346 * Writes data to the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001347 * @dev: drm device
1348 * @data: ioctl data blob
1349 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001350 *
1351 * On error, the contents of the buffer that were to be modified are undefined.
1352 */
1353int
1354i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001355 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001356{
1357 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001358 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001359 int ret;
1360
1361 if (args->size == 0)
1362 return 0;
1363
1364 if (!access_ok(VERIFY_READ,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001365 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001366 args->size))
1367 return -EFAULT;
1368
Chris Wilson03ac0642016-07-20 13:31:51 +01001369 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001370 if (!obj)
1371 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001372
Chris Wilson7dcd2492010-09-26 20:21:44 +01001373 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001374 if (args->offset > obj->base.size ||
1375 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001376 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001377 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001378 }
1379
Chris Wilsondb53a302011-02-03 11:57:46 +00001380 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1381
Chris Wilsone95433c2016-10-28 13:58:27 +01001382 ret = i915_gem_object_wait(obj,
1383 I915_WAIT_INTERRUPTIBLE |
1384 I915_WAIT_ALL,
1385 MAX_SCHEDULE_TIMEOUT,
1386 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001387 if (ret)
1388 goto err;
1389
Chris Wilsonfe115622016-10-28 13:58:40 +01001390 ret = i915_gem_object_pin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001391 if (ret)
Chris Wilsonfe115622016-10-28 13:58:40 +01001392 goto err;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001393
Daniel Vetter935aaa62012-03-25 19:47:35 +02001394 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001395 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1396 * it would end up going through the fenced access, and we'll get
1397 * different detiling behavior between reading and writing.
1398 * pread/pwrite currently are reading and writing from the CPU
1399 * perspective, requiring manual detiling by the client.
1400 */
Chris Wilson6eae0052016-06-20 15:05:52 +01001401 if (!i915_gem_object_has_struct_page(obj) ||
Chris Wilson9c870d02016-10-24 13:42:15 +01001402 cpu_write_needs_clflush(obj))
Daniel Vetter935aaa62012-03-25 19:47:35 +02001403 /* Note that the gtt paths might fail with non-page-backed user
1404 * pointers (e.g. gtt mappings when moving data between
Chris Wilson9c870d02016-10-24 13:42:15 +01001405 * textures). Fallback to the shmem path in that case.
1406 */
Chris Wilsonfe115622016-10-28 13:58:40 +01001407 ret = i915_gem_gtt_pwrite_fast(obj, args);
Eric Anholt673a3942008-07-30 12:06:12 -07001408
Chris Wilsond1054ee2016-07-16 18:42:36 +01001409 if (ret == -EFAULT || ret == -ENOSPC) {
Chris Wilson6a2c4232014-11-04 04:51:40 -08001410 if (obj->phys_handle)
1411 ret = i915_gem_phys_pwrite(obj, args, file);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301412 else
Chris Wilsonfe115622016-10-28 13:58:40 +01001413 ret = i915_gem_shmem_pwrite(obj, args);
Chris Wilson6a2c4232014-11-04 04:51:40 -08001414 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001415
Chris Wilsonfe115622016-10-28 13:58:40 +01001416 i915_gem_object_unpin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001417err:
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001418 i915_gem_object_put(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001419 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001420}
1421
Chris Wilsond243ad82016-08-18 17:16:44 +01001422static inline enum fb_op_origin
Chris Wilsonaeecc962016-06-17 14:46:39 -03001423write_origin(struct drm_i915_gem_object *obj, unsigned domain)
1424{
Chris Wilson50349242016-08-18 17:17:04 +01001425 return (domain == I915_GEM_DOMAIN_GTT ?
1426 obj->frontbuffer_ggtt_origin : ORIGIN_CPU);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001427}
1428
Chris Wilson40e62d52016-10-28 13:58:41 +01001429static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj)
1430{
1431 struct drm_i915_private *i915;
1432 struct list_head *list;
1433 struct i915_vma *vma;
1434
1435 list_for_each_entry(vma, &obj->vma_list, obj_link) {
1436 if (!i915_vma_is_ggtt(vma))
1437 continue;
1438
1439 if (i915_vma_is_active(vma))
1440 continue;
1441
1442 if (!drm_mm_node_allocated(&vma->node))
1443 continue;
1444
1445 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
1446 }
1447
1448 i915 = to_i915(obj->base.dev);
1449 list = obj->bind_count ? &i915->mm.bound_list : &i915->mm.unbound_list;
Joonas Lahtinen56cea322016-11-02 12:16:04 +02001450 list_move_tail(&obj->global_link, list);
Chris Wilson40e62d52016-10-28 13:58:41 +01001451}
1452
Eric Anholt673a3942008-07-30 12:06:12 -07001453/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001454 * Called when user space prepares to use an object with the CPU, either
1455 * through the mmap ioctl's mapping or a GTT mapping.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001456 * @dev: drm device
1457 * @data: ioctl data blob
1458 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001459 */
1460int
1461i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001462 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001463{
1464 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001465 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001466 uint32_t read_domains = args->read_domains;
1467 uint32_t write_domain = args->write_domain;
Chris Wilson40e62d52016-10-28 13:58:41 +01001468 int err;
Eric Anholt673a3942008-07-30 12:06:12 -07001469
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001470 /* Only handle setting domains to types used by the CPU. */
Chris Wilsonb8f90962016-08-05 10:14:07 +01001471 if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001472 return -EINVAL;
1473
1474 /* Having something in the write domain implies it's in the read
1475 * domain, and only that read domain. Enforce that in the request.
1476 */
1477 if (write_domain != 0 && read_domains != write_domain)
1478 return -EINVAL;
1479
Chris Wilson03ac0642016-07-20 13:31:51 +01001480 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001481 if (!obj)
1482 return -ENOENT;
Jesse Barnes652c3932009-08-17 13:31:43 -07001483
Chris Wilson3236f572012-08-24 09:35:09 +01001484 /* Try to flush the object off the GPU without holding the lock.
1485 * We will repeat the flush holding the lock in the normal manner
1486 * to catch cases where we are gazumped.
1487 */
Chris Wilson40e62d52016-10-28 13:58:41 +01001488 err = i915_gem_object_wait(obj,
Chris Wilsone95433c2016-10-28 13:58:27 +01001489 I915_WAIT_INTERRUPTIBLE |
1490 (write_domain ? I915_WAIT_ALL : 0),
1491 MAX_SCHEDULE_TIMEOUT,
1492 to_rps_client(file));
Chris Wilson40e62d52016-10-28 13:58:41 +01001493 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001494 goto out;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001495
Chris Wilson40e62d52016-10-28 13:58:41 +01001496 /* Flush and acquire obj->pages so that we are coherent through
1497 * direct access in memory with previous cached writes through
1498 * shmemfs and that our cache domain tracking remains valid.
1499 * For example, if the obj->filp was moved to swap without us
1500 * being notified and releasing the pages, we would mistakenly
1501 * continue to assume that the obj remained out of the CPU cached
1502 * domain.
1503 */
1504 err = i915_gem_object_pin_pages(obj);
1505 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001506 goto out;
Chris Wilson40e62d52016-10-28 13:58:41 +01001507
1508 err = i915_mutex_lock_interruptible(dev);
1509 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001510 goto out_unpin;
Chris Wilson3236f572012-08-24 09:35:09 +01001511
Chris Wilson43566de2015-01-02 16:29:29 +05301512 if (read_domains & I915_GEM_DOMAIN_GTT)
Chris Wilson40e62d52016-10-28 13:58:41 +01001513 err = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301514 else
Chris Wilson40e62d52016-10-28 13:58:41 +01001515 err = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
1516
1517 /* And bump the LRU for this access */
1518 i915_gem_object_bump_inactive_ggtt(obj);
1519
1520 mutex_unlock(&dev->struct_mutex);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001521
Daniel Vetter031b6982015-06-26 19:35:16 +02001522 if (write_domain != 0)
Chris Wilsonaeecc962016-06-17 14:46:39 -03001523 intel_fb_obj_invalidate(obj, write_origin(obj, write_domain));
Daniel Vetter031b6982015-06-26 19:35:16 +02001524
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001525out_unpin:
Chris Wilson40e62d52016-10-28 13:58:41 +01001526 i915_gem_object_unpin_pages(obj);
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001527out:
1528 i915_gem_object_put(obj);
Chris Wilson40e62d52016-10-28 13:58:41 +01001529 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001530}
1531
1532/**
1533 * Called when user space has done writes to this buffer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001534 * @dev: drm device
1535 * @data: ioctl data blob
1536 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001537 */
1538int
1539i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001540 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001541{
1542 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001543 struct drm_i915_gem_object *obj;
Chris Wilsonc21724c2016-08-05 10:14:19 +01001544 int err = 0;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001545
Chris Wilson03ac0642016-07-20 13:31:51 +01001546 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001547 if (!obj)
1548 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001549
Eric Anholt673a3942008-07-30 12:06:12 -07001550 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilsonc21724c2016-08-05 10:14:19 +01001551 if (READ_ONCE(obj->pin_display)) {
1552 err = i915_mutex_lock_interruptible(dev);
1553 if (!err) {
1554 i915_gem_object_flush_cpu_write_domain(obj);
1555 mutex_unlock(&dev->struct_mutex);
1556 }
1557 }
Eric Anholte47c68e2008-11-14 13:35:19 -08001558
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001559 i915_gem_object_put(obj);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001560 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001561}
1562
1563/**
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001564 * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address
1565 * it is mapped to.
1566 * @dev: drm device
1567 * @data: ioctl data blob
1568 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001569 *
1570 * While the mapping holds a reference on the contents of the object, it doesn't
1571 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001572 *
1573 * IMPORTANT:
1574 *
1575 * DRM driver writers who look a this function as an example for how to do GEM
1576 * mmap support, please don't implement mmap support like here. The modern way
1577 * to implement DRM mmap support is with an mmap offset ioctl (like
1578 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1579 * That way debug tooling like valgrind will understand what's going on, hiding
1580 * the mmap call in a driver private ioctl will break that. The i915 driver only
1581 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001582 */
1583int
1584i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001585 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001586{
1587 struct drm_i915_gem_mmap *args = data;
Chris Wilson03ac0642016-07-20 13:31:51 +01001588 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001589 unsigned long addr;
1590
Akash Goel1816f922015-01-02 16:29:30 +05301591 if (args->flags & ~(I915_MMAP_WC))
1592 return -EINVAL;
1593
Borislav Petkov568a58e2016-03-29 17:42:01 +02001594 if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT))
Akash Goel1816f922015-01-02 16:29:30 +05301595 return -ENODEV;
1596
Chris Wilson03ac0642016-07-20 13:31:51 +01001597 obj = i915_gem_object_lookup(file, args->handle);
1598 if (!obj)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001599 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001600
Daniel Vetter1286ff72012-05-10 15:25:09 +02001601 /* prime objects have no backing filp to GEM mmap
1602 * pages from.
1603 */
Chris Wilson03ac0642016-07-20 13:31:51 +01001604 if (!obj->base.filp) {
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001605 i915_gem_object_put(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001606 return -EINVAL;
1607 }
1608
Chris Wilson03ac0642016-07-20 13:31:51 +01001609 addr = vm_mmap(obj->base.filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001610 PROT_READ | PROT_WRITE, MAP_SHARED,
1611 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301612 if (args->flags & I915_MMAP_WC) {
1613 struct mm_struct *mm = current->mm;
1614 struct vm_area_struct *vma;
1615
Michal Hocko80a89a52016-05-23 16:26:11 -07001616 if (down_write_killable(&mm->mmap_sem)) {
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001617 i915_gem_object_put(obj);
Michal Hocko80a89a52016-05-23 16:26:11 -07001618 return -EINTR;
1619 }
Akash Goel1816f922015-01-02 16:29:30 +05301620 vma = find_vma(mm, addr);
1621 if (vma)
1622 vma->vm_page_prot =
1623 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1624 else
1625 addr = -ENOMEM;
1626 up_write(&mm->mmap_sem);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001627
1628 /* This may race, but that's ok, it only gets set */
Chris Wilson50349242016-08-18 17:17:04 +01001629 WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU);
Akash Goel1816f922015-01-02 16:29:30 +05301630 }
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001631 i915_gem_object_put(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001632 if (IS_ERR((void *)addr))
1633 return addr;
1634
1635 args->addr_ptr = (uint64_t) addr;
1636
1637 return 0;
1638}
1639
Chris Wilson03af84f2016-08-18 17:17:01 +01001640static unsigned int tile_row_pages(struct drm_i915_gem_object *obj)
1641{
1642 u64 size;
1643
1644 size = i915_gem_object_get_stride(obj);
1645 size *= i915_gem_object_get_tiling(obj) == I915_TILING_Y ? 32 : 8;
1646
1647 return size >> PAGE_SHIFT;
1648}
1649
Jesse Barnesde151cf2008-11-12 10:03:55 -08001650/**
Chris Wilson4cc69072016-08-25 19:05:19 +01001651 * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps
1652 *
1653 * A history of the GTT mmap interface:
1654 *
1655 * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to
1656 * aligned and suitable for fencing, and still fit into the available
1657 * mappable space left by the pinned display objects. A classic problem
1658 * we called the page-fault-of-doom where we would ping-pong between
1659 * two objects that could not fit inside the GTT and so the memcpy
1660 * would page one object in at the expense of the other between every
1661 * single byte.
1662 *
1663 * 1 - Objects can be any size, and have any compatible fencing (X Y, or none
1664 * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the
1665 * object is too large for the available space (or simply too large
1666 * for the mappable aperture!), a view is created instead and faulted
1667 * into userspace. (This view is aligned and sized appropriately for
1668 * fenced access.)
1669 *
1670 * Restrictions:
1671 *
1672 * * snoopable objects cannot be accessed via the GTT. It can cause machine
1673 * hangs on some architectures, corruption on others. An attempt to service
1674 * a GTT page fault from a snoopable object will generate a SIGBUS.
1675 *
1676 * * the object must be able to fit into RAM (physical memory, though no
1677 * limited to the mappable aperture).
1678 *
1679 *
1680 * Caveats:
1681 *
1682 * * a new GTT page fault will synchronize rendering from the GPU and flush
1683 * all data to system memory. Subsequent access will not be synchronized.
1684 *
1685 * * all mappings are revoked on runtime device suspend.
1686 *
1687 * * there are only 8, 16 or 32 fence registers to share between all users
1688 * (older machines require fence register for display and blitter access
1689 * as well). Contention of the fence registers will cause the previous users
1690 * to be unmapped and any new access will generate new page faults.
1691 *
1692 * * running out of memory while servicing a fault may generate a SIGBUS,
1693 * rather than the expected SIGSEGV.
1694 */
1695int i915_gem_mmap_gtt_version(void)
1696{
1697 return 1;
1698}
1699
1700/**
Jesse Barnesde151cf2008-11-12 10:03:55 -08001701 * i915_gem_fault - fault a page into the GTT
Chris Wilson058d88c2016-08-15 10:49:06 +01001702 * @area: CPU VMA in question
Geliang Tangd9072a32015-09-15 05:58:44 -07001703 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001704 *
1705 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1706 * from userspace. The fault handler takes care of binding the object to
1707 * the GTT (if needed), allocating and programming a fence register (again,
1708 * only if needed based on whether the old reg is still valid or the object
1709 * is tiled) and inserting a new PTE into the faulting process.
1710 *
1711 * Note that the faulting process may involve evicting existing objects
1712 * from the GTT and/or fence registers to make room. So performance may
1713 * suffer if the GTT working set is large or there are few fence registers
1714 * left.
Chris Wilson4cc69072016-08-25 19:05:19 +01001715 *
1716 * The current feature set supported by i915_gem_fault() and thus GTT mmaps
1717 * is exposed via I915_PARAM_MMAP_GTT_VERSION (see i915_gem_mmap_gtt_version).
Jesse Barnesde151cf2008-11-12 10:03:55 -08001718 */
Chris Wilson058d88c2016-08-15 10:49:06 +01001719int i915_gem_fault(struct vm_area_struct *area, struct vm_fault *vmf)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001720{
Chris Wilson03af84f2016-08-18 17:17:01 +01001721#define MIN_CHUNK_PAGES ((1 << 20) >> PAGE_SHIFT) /* 1 MiB */
Chris Wilson058d88c2016-08-15 10:49:06 +01001722 struct drm_i915_gem_object *obj = to_intel_bo(area->vm_private_data);
Chris Wilson05394f32010-11-08 19:18:58 +00001723 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001724 struct drm_i915_private *dev_priv = to_i915(dev);
1725 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001726 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001727 struct i915_vma *vma;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001728 pgoff_t page_offset;
Chris Wilson82118872016-08-18 17:17:05 +01001729 unsigned int flags;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001730 int ret;
Paulo Zanonif65c9162013-11-27 18:20:34 -02001731
Jesse Barnesde151cf2008-11-12 10:03:55 -08001732 /* We don't use vmf->pgoff since that has the fake offset */
Chris Wilson058d88c2016-08-15 10:49:06 +01001733 page_offset = ((unsigned long)vmf->virtual_address - area->vm_start) >>
Jesse Barnesde151cf2008-11-12 10:03:55 -08001734 PAGE_SHIFT;
1735
Chris Wilsondb53a302011-02-03 11:57:46 +00001736 trace_i915_gem_object_fault(obj, page_offset, true, write);
1737
Chris Wilson6e4930f2014-02-07 18:37:06 -02001738 /* Try to flush the object off the GPU first without holding the lock.
Chris Wilsonb8f90962016-08-05 10:14:07 +01001739 * Upon acquiring the lock, we will perform our sanity checks and then
Chris Wilson6e4930f2014-02-07 18:37:06 -02001740 * repeat the flush holding the lock in the normal manner to catch cases
1741 * where we are gazumped.
1742 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001743 ret = i915_gem_object_wait(obj,
1744 I915_WAIT_INTERRUPTIBLE,
1745 MAX_SCHEDULE_TIMEOUT,
1746 NULL);
Chris Wilson6e4930f2014-02-07 18:37:06 -02001747 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001748 goto err;
1749
Chris Wilson40e62d52016-10-28 13:58:41 +01001750 ret = i915_gem_object_pin_pages(obj);
1751 if (ret)
1752 goto err;
1753
Chris Wilsonb8f90962016-08-05 10:14:07 +01001754 intel_runtime_pm_get(dev_priv);
1755
1756 ret = i915_mutex_lock_interruptible(dev);
1757 if (ret)
1758 goto err_rpm;
Chris Wilson6e4930f2014-02-07 18:37:06 -02001759
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001760 /* Access to snoopable pages through the GTT is incoherent. */
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00001761 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev_priv)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001762 ret = -EFAULT;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001763 goto err_unlock;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001764 }
1765
Chris Wilson82118872016-08-18 17:17:05 +01001766 /* If the object is smaller than a couple of partial vma, it is
1767 * not worth only creating a single partial vma - we may as well
1768 * clear enough space for the full object.
1769 */
1770 flags = PIN_MAPPABLE;
1771 if (obj->base.size > 2 * MIN_CHUNK_PAGES << PAGE_SHIFT)
1772 flags |= PIN_NONBLOCK | PIN_NONFAULT;
1773
Chris Wilsona61007a2016-08-18 17:17:02 +01001774 /* Now pin it into the GTT as needed */
Chris Wilson82118872016-08-18 17:17:05 +01001775 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, flags);
Chris Wilsona61007a2016-08-18 17:17:02 +01001776 if (IS_ERR(vma)) {
1777 struct i915_ggtt_view view;
Chris Wilson03af84f2016-08-18 17:17:01 +01001778 unsigned int chunk_size;
1779
Chris Wilsona61007a2016-08-18 17:17:02 +01001780 /* Use a partial view if it is bigger than available space */
Chris Wilson03af84f2016-08-18 17:17:01 +01001781 chunk_size = MIN_CHUNK_PAGES;
1782 if (i915_gem_object_is_tiled(obj))
Chris Wilson0ef723c2016-11-07 10:54:43 +00001783 chunk_size = roundup(chunk_size, tile_row_pages(obj));
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001784
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001785 memset(&view, 0, sizeof(view));
1786 view.type = I915_GGTT_VIEW_PARTIAL;
1787 view.params.partial.offset = rounddown(page_offset, chunk_size);
1788 view.params.partial.size =
Chris Wilsona61007a2016-08-18 17:17:02 +01001789 min_t(unsigned int, chunk_size,
Chris Wilson908b1232016-10-11 10:06:56 +01001790 vma_pages(area) - view.params.partial.offset);
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001791
Chris Wilsonaa136d92016-08-18 17:17:03 +01001792 /* If the partial covers the entire object, just create a
1793 * normal VMA.
1794 */
1795 if (chunk_size >= obj->base.size >> PAGE_SHIFT)
1796 view.type = I915_GGTT_VIEW_NORMAL;
1797
Chris Wilson50349242016-08-18 17:17:04 +01001798 /* Userspace is now writing through an untracked VMA, abandon
1799 * all hope that the hardware is able to track future writes.
1800 */
1801 obj->frontbuffer_ggtt_origin = ORIGIN_CPU;
1802
Chris Wilsona61007a2016-08-18 17:17:02 +01001803 vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, PIN_MAPPABLE);
1804 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001805 if (IS_ERR(vma)) {
1806 ret = PTR_ERR(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001807 goto err_unlock;
Chris Wilson058d88c2016-08-15 10:49:06 +01001808 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001809
Chris Wilsonc9839302012-11-20 10:45:17 +00001810 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1811 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001812 goto err_unpin;
Chris Wilsonc9839302012-11-20 10:45:17 +00001813
Chris Wilson49ef5292016-08-18 17:17:00 +01001814 ret = i915_vma_get_fence(vma);
Chris Wilsonc9839302012-11-20 10:45:17 +00001815 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001816 goto err_unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001817
Chris Wilson275f0392016-10-24 13:42:14 +01001818 /* Mark as being mmapped into userspace for later revocation */
Chris Wilson9c870d02016-10-24 13:42:15 +01001819 assert_rpm_wakelock_held(dev_priv);
Chris Wilson275f0392016-10-24 13:42:14 +01001820 if (list_empty(&obj->userfault_link))
1821 list_add(&obj->userfault_link, &dev_priv->mm.userfault_list);
Chris Wilson275f0392016-10-24 13:42:14 +01001822
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001823 /* Finally, remap it using the new GTT offset */
Chris Wilsonc58305a2016-08-19 16:54:28 +01001824 ret = remap_io_mapping(area,
1825 area->vm_start + (vma->ggtt_view.params.partial.offset << PAGE_SHIFT),
1826 (ggtt->mappable_base + vma->node.start) >> PAGE_SHIFT,
1827 min_t(u64, vma->size, area->vm_end - area->vm_start),
1828 &ggtt->mappable);
Chris Wilsona61007a2016-08-18 17:17:02 +01001829
Chris Wilsonb8f90962016-08-05 10:14:07 +01001830err_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +01001831 __i915_vma_unpin(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001832err_unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001833 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001834err_rpm:
1835 intel_runtime_pm_put(dev_priv);
Chris Wilson40e62d52016-10-28 13:58:41 +01001836 i915_gem_object_unpin_pages(obj);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001837err:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001838 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001839 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001840 /*
1841 * We eat errors when the gpu is terminally wedged to avoid
1842 * userspace unduly crashing (gl has no provisions for mmaps to
1843 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1844 * and so needs to be reported.
1845 */
1846 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001847 ret = VM_FAULT_SIGBUS;
1848 break;
1849 }
Chris Wilson045e7692010-11-07 09:18:22 +00001850 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001851 /*
1852 * EAGAIN means the gpu is hung and we'll wait for the error
1853 * handler to reset everything when re-faulting in
1854 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001855 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001856 case 0:
1857 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001858 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001859 case -EBUSY:
1860 /*
1861 * EBUSY is ok: this just means that another thread
1862 * already did the job.
1863 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001864 ret = VM_FAULT_NOPAGE;
1865 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001866 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001867 ret = VM_FAULT_OOM;
1868 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001869 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001870 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001871 ret = VM_FAULT_SIGBUS;
1872 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001873 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001874 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001875 ret = VM_FAULT_SIGBUS;
1876 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001877 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001878 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001879}
1880
1881/**
Chris Wilson901782b2009-07-10 08:18:50 +01001882 * i915_gem_release_mmap - remove physical page mappings
1883 * @obj: obj in question
1884 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001885 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001886 * relinquish ownership of the pages back to the system.
1887 *
1888 * It is vital that we remove the page mapping if we have mapped a tiled
1889 * object through the GTT and then lose the fence register due to
1890 * resource pressure. Similarly if the object has been moved out of the
1891 * aperture, than pages mapped into userspace must be revoked. Removing the
1892 * mapping will then trigger a page fault on the next user access, allowing
1893 * fixup by i915_gem_fault().
1894 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001895void
Chris Wilson05394f32010-11-08 19:18:58 +00001896i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001897{
Chris Wilson275f0392016-10-24 13:42:14 +01001898 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson275f0392016-10-24 13:42:14 +01001899
Chris Wilson349f2cc2016-04-13 17:35:12 +01001900 /* Serialisation between user GTT access and our code depends upon
1901 * revoking the CPU's PTE whilst the mutex is held. The next user
1902 * pagefault then has to wait until we release the mutex.
Chris Wilson9c870d02016-10-24 13:42:15 +01001903 *
1904 * Note that RPM complicates somewhat by adding an additional
1905 * requirement that operations to the GGTT be made holding the RPM
1906 * wakeref.
Chris Wilson349f2cc2016-04-13 17:35:12 +01001907 */
Chris Wilson275f0392016-10-24 13:42:14 +01001908 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson9c870d02016-10-24 13:42:15 +01001909 intel_runtime_pm_get(i915);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001910
Chris Wilson3594a3e2016-10-24 13:42:16 +01001911 if (list_empty(&obj->userfault_link))
Chris Wilson9c870d02016-10-24 13:42:15 +01001912 goto out;
Chris Wilson901782b2009-07-10 08:18:50 +01001913
Chris Wilson3594a3e2016-10-24 13:42:16 +01001914 list_del_init(&obj->userfault_link);
David Herrmann6796cb12014-01-03 14:24:19 +01001915 drm_vma_node_unmap(&obj->base.vma_node,
1916 obj->base.dev->anon_inode->i_mapping);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001917
1918 /* Ensure that the CPU's PTE are revoked and there are not outstanding
1919 * memory transactions from userspace before we return. The TLB
1920 * flushing implied above by changing the PTE above *should* be
1921 * sufficient, an extra barrier here just provides us with a bit
1922 * of paranoid documentation about our requirement to serialise
1923 * memory writes before touching registers / GSM.
1924 */
1925 wmb();
Chris Wilson9c870d02016-10-24 13:42:15 +01001926
1927out:
1928 intel_runtime_pm_put(i915);
Chris Wilson901782b2009-07-10 08:18:50 +01001929}
1930
Chris Wilson7c108fd2016-10-24 13:42:18 +01001931void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv)
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001932{
Chris Wilson3594a3e2016-10-24 13:42:16 +01001933 struct drm_i915_gem_object *obj, *on;
Chris Wilson7c108fd2016-10-24 13:42:18 +01001934 int i;
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001935
Chris Wilson3594a3e2016-10-24 13:42:16 +01001936 /*
1937 * Only called during RPM suspend. All users of the userfault_list
1938 * must be holding an RPM wakeref to ensure that this can not
1939 * run concurrently with themselves (and use the struct_mutex for
1940 * protection between themselves).
1941 */
1942
1943 list_for_each_entry_safe(obj, on,
1944 &dev_priv->mm.userfault_list, userfault_link) {
Chris Wilson275f0392016-10-24 13:42:14 +01001945 list_del_init(&obj->userfault_link);
Chris Wilson275f0392016-10-24 13:42:14 +01001946 drm_vma_node_unmap(&obj->base.vma_node,
1947 obj->base.dev->anon_inode->i_mapping);
Chris Wilson275f0392016-10-24 13:42:14 +01001948 }
Chris Wilson7c108fd2016-10-24 13:42:18 +01001949
1950 /* The fence will be lost when the device powers down. If any were
1951 * in use by hardware (i.e. they are pinned), we should not be powering
1952 * down! All other fences will be reacquired by the user upon waking.
1953 */
1954 for (i = 0; i < dev_priv->num_fence_regs; i++) {
1955 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
1956
1957 if (WARN_ON(reg->pin_count))
1958 continue;
1959
1960 if (!reg->vma)
1961 continue;
1962
1963 GEM_BUG_ON(!list_empty(&reg->vma->obj->userfault_link));
1964 reg->dirty = true;
1965 }
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001966}
1967
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001968/**
1969 * i915_gem_get_ggtt_size - return required global GTT size for an object
Chris Wilsona9f14812016-08-04 16:32:28 +01001970 * @dev_priv: i915 device
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001971 * @size: object size
1972 * @tiling_mode: tiling mode
1973 *
1974 * Return the required global GTT size for an object, taking into account
1975 * potential fence register mapping.
1976 */
Chris Wilsona9f14812016-08-04 16:32:28 +01001977u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv,
1978 u64 size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001979{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001980 u64 ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001981
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001982 GEM_BUG_ON(size == 0);
1983
Chris Wilsona9f14812016-08-04 16:32:28 +01001984 if (INTEL_GEN(dev_priv) >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001985 tiling_mode == I915_TILING_NONE)
1986 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001987
1988 /* Previous chips need a power-of-two fence region when tiling */
Chris Wilsona9f14812016-08-04 16:32:28 +01001989 if (IS_GEN3(dev_priv))
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001990 ggtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001991 else
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001992 ggtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001993
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001994 while (ggtt_size < size)
1995 ggtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001996
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001997 return ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001998}
1999
Jesse Barnesde151cf2008-11-12 10:03:55 -08002000/**
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002001 * i915_gem_get_ggtt_alignment - return required global GTT alignment
Chris Wilsona9f14812016-08-04 16:32:28 +01002002 * @dev_priv: i915 device
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002003 * @size: object size
2004 * @tiling_mode: tiling mode
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002005 * @fenced: is fenced alignment required or not
Jesse Barnesde151cf2008-11-12 10:03:55 -08002006 *
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002007 * Return the required global GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01002008 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002009 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002010u64 i915_gem_get_ggtt_alignment(struct drm_i915_private *dev_priv, u64 size,
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002011 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002012{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002013 GEM_BUG_ON(size == 0);
2014
Jesse Barnesde151cf2008-11-12 10:03:55 -08002015 /*
2016 * Minimum alignment is 4k (GTT page size), but might be greater
2017 * if a fence register is needed for the object.
2018 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002019 if (INTEL_GEN(dev_priv) >= 4 || (!fenced && IS_G33(dev_priv)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002020 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002021 return 4096;
2022
2023 /*
2024 * Previous chips need to be aligned to the size of the smallest
2025 * fence register that can contain the object.
2026 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002027 return i915_gem_get_ggtt_size(dev_priv, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002028}
2029
Chris Wilsond8cb5082012-08-11 15:41:03 +01002030static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2031{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002032 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002033 int err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002034
Chris Wilsonf3f61842016-08-05 10:14:14 +01002035 err = drm_gem_create_mmap_offset(&obj->base);
2036 if (!err)
2037 return 0;
Daniel Vetterda494d72012-12-20 15:11:16 +01002038
Chris Wilsonf3f61842016-08-05 10:14:14 +01002039 /* We can idle the GPU locklessly to flush stale objects, but in order
2040 * to claim that space for ourselves, we need to take the big
2041 * struct_mutex to free the requests+objects and allocate our slot.
Chris Wilsond8cb5082012-08-11 15:41:03 +01002042 */
Chris Wilsonea746f32016-09-09 14:11:49 +01002043 err = i915_gem_wait_for_idle(dev_priv, I915_WAIT_INTERRUPTIBLE);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002044 if (err)
2045 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002046
Chris Wilsonf3f61842016-08-05 10:14:14 +01002047 err = i915_mutex_lock_interruptible(&dev_priv->drm);
2048 if (!err) {
2049 i915_gem_retire_requests(dev_priv);
2050 err = drm_gem_create_mmap_offset(&obj->base);
2051 mutex_unlock(&dev_priv->drm.struct_mutex);
2052 }
Daniel Vetterda494d72012-12-20 15:11:16 +01002053
Chris Wilsonf3f61842016-08-05 10:14:14 +01002054 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002055}
2056
2057static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2058{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002059 drm_gem_free_mmap_offset(&obj->base);
2060}
2061
Dave Airlieda6b51d2014-12-24 13:11:17 +10002062int
Dave Airlieff72145b2011-02-07 12:16:14 +10002063i915_gem_mmap_gtt(struct drm_file *file,
2064 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002065 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10002066 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002067{
Chris Wilson05394f32010-11-08 19:18:58 +00002068 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002069 int ret;
2070
Chris Wilson03ac0642016-07-20 13:31:51 +01002071 obj = i915_gem_object_lookup(file, handle);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002072 if (!obj)
2073 return -ENOENT;
Chris Wilsonab182822009-09-22 18:46:17 +01002074
Chris Wilsond8cb5082012-08-11 15:41:03 +01002075 ret = i915_gem_object_create_mmap_offset(obj);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002076 if (ret == 0)
2077 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002078
Chris Wilsonf0cd5182016-10-28 13:58:43 +01002079 i915_gem_object_put(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002080 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002081}
2082
Dave Airlieff72145b2011-02-07 12:16:14 +10002083/**
2084 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2085 * @dev: DRM device
2086 * @data: GTT mapping ioctl data
2087 * @file: GEM object info
2088 *
2089 * Simply returns the fake offset to userspace so it can mmap it.
2090 * The mmap call will end up in drm_gem_mmap(), which will set things
2091 * up so we can get faults in the handler above.
2092 *
2093 * The fault handler will take care of binding the object into the GTT
2094 * (since it may have been evicted to make room for something), allocating
2095 * a fence register, and mapping the appropriate aperture address into
2096 * userspace.
2097 */
2098int
2099i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2100 struct drm_file *file)
2101{
2102 struct drm_i915_gem_mmap_gtt *args = data;
2103
Dave Airlieda6b51d2014-12-24 13:11:17 +10002104 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002105}
2106
Daniel Vetter225067e2012-08-20 10:23:20 +02002107/* Immediately discard the backing storage */
2108static void
2109i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002110{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002111 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002112
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002113 if (obj->base.filp == NULL)
2114 return;
2115
Daniel Vetter225067e2012-08-20 10:23:20 +02002116 /* Our goal here is to return as much of the memory as
2117 * is possible back to the system as we are called from OOM.
2118 * To do this we must instruct the shmfs to drop all of its
2119 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002120 */
Chris Wilson55372522014-03-25 13:23:06 +00002121 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002122 obj->mm.madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01002123}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002124
Chris Wilson55372522014-03-25 13:23:06 +00002125/* Try to discard unwanted pages */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002126void __i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02002127{
Chris Wilson55372522014-03-25 13:23:06 +00002128 struct address_space *mapping;
2129
Chris Wilson1233e2d2016-10-28 13:58:37 +01002130 lockdep_assert_held(&obj->mm.lock);
2131 GEM_BUG_ON(obj->mm.pages);
2132
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002133 switch (obj->mm.madv) {
Chris Wilson55372522014-03-25 13:23:06 +00002134 case I915_MADV_DONTNEED:
2135 i915_gem_object_truncate(obj);
2136 case __I915_MADV_PURGED:
2137 return;
2138 }
2139
2140 if (obj->base.filp == NULL)
2141 return;
2142
Al Viro93c76a32015-12-04 23:45:44 -05002143 mapping = obj->base.filp->f_mapping,
Chris Wilson55372522014-03-25 13:23:06 +00002144 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002145}
2146
Chris Wilson5cdf5882010-09-27 15:51:07 +01002147static void
Chris Wilson03ac84f2016-10-28 13:58:36 +01002148i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj,
2149 struct sg_table *pages)
Eric Anholt673a3942008-07-30 12:06:12 -07002150{
Dave Gordon85d12252016-05-20 11:54:06 +01002151 struct sgt_iter sgt_iter;
2152 struct page *page;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002153
Chris Wilson2b3c8312016-11-11 14:58:09 +00002154 __i915_gem_object_release_shmem(obj, pages);
Eric Anholt856fa192009-03-19 14:10:50 -07002155
Chris Wilson03ac84f2016-10-28 13:58:36 +01002156 i915_gem_gtt_finish_pages(obj, pages);
Imre Deake2273302015-07-09 12:59:05 +03002157
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002158 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002159 i915_gem_object_save_bit_17_swizzle(obj, pages);
Eric Anholt280b7132009-03-12 16:56:27 -07002160
Chris Wilson03ac84f2016-10-28 13:58:36 +01002161 for_each_sgt_page(page, sgt_iter, pages) {
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002162 if (obj->mm.dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002163 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002164
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002165 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002166 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002167
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002168 put_page(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002169 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002170 obj->mm.dirty = false;
Eric Anholt673a3942008-07-30 12:06:12 -07002171
Chris Wilson03ac84f2016-10-28 13:58:36 +01002172 sg_free_table(pages);
2173 kfree(pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002174}
2175
Chris Wilson96d77632016-10-28 13:58:33 +01002176static void __i915_gem_object_reset_page_iter(struct drm_i915_gem_object *obj)
2177{
2178 struct radix_tree_iter iter;
2179 void **slot;
2180
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002181 radix_tree_for_each_slot(slot, &obj->mm.get_page.radix, &iter, 0)
2182 radix_tree_delete(&obj->mm.get_page.radix, iter.index);
Chris Wilson96d77632016-10-28 13:58:33 +01002183}
2184
Chris Wilson548625e2016-11-01 12:11:34 +00002185void __i915_gem_object_put_pages(struct drm_i915_gem_object *obj,
2186 enum i915_mm_subclass subclass)
Chris Wilson37e680a2012-06-07 15:38:42 +01002187{
Chris Wilson03ac84f2016-10-28 13:58:36 +01002188 struct sg_table *pages;
Chris Wilson37e680a2012-06-07 15:38:42 +01002189
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002190 if (i915_gem_object_has_pinned_pages(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002191 return;
Chris Wilsona5570172012-09-04 21:02:54 +01002192
Chris Wilson15717de2016-08-04 07:52:26 +01002193 GEM_BUG_ON(obj->bind_count);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002194 if (!READ_ONCE(obj->mm.pages))
2195 return;
2196
2197 /* May be called by shrinker from within get_pages() (on another bo) */
Chris Wilson548625e2016-11-01 12:11:34 +00002198 mutex_lock_nested(&obj->mm.lock, subclass);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002199 if (unlikely(atomic_read(&obj->mm.pages_pin_count)))
2200 goto unlock;
Ben Widawsky3e123022013-07-31 17:00:04 -07002201
Chris Wilsona2165e32012-12-03 11:49:00 +00002202 /* ->put_pages might need to allocate memory for the bit17 swizzle
2203 * array, hence protect them from being reaped by removing them from gtt
2204 * lists early. */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002205 pages = fetch_and_zero(&obj->mm.pages);
2206 GEM_BUG_ON(!pages);
Chris Wilsona2165e32012-12-03 11:49:00 +00002207
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002208 if (obj->mm.mapping) {
Chris Wilson4b30cb22016-08-18 17:16:42 +01002209 void *ptr;
2210
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002211 ptr = ptr_mask_bits(obj->mm.mapping);
Chris Wilson4b30cb22016-08-18 17:16:42 +01002212 if (is_vmalloc_addr(ptr))
2213 vunmap(ptr);
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002214 else
Chris Wilson4b30cb22016-08-18 17:16:42 +01002215 kunmap(kmap_to_page(ptr));
2216
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002217 obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002218 }
2219
Chris Wilson96d77632016-10-28 13:58:33 +01002220 __i915_gem_object_reset_page_iter(obj);
2221
Chris Wilson03ac84f2016-10-28 13:58:36 +01002222 obj->ops->put_pages(obj, pages);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002223unlock:
2224 mutex_unlock(&obj->mm.lock);
Chris Wilson6c085a72012-08-20 11:40:46 +02002225}
2226
Chris Wilson4ff340f02016-10-18 13:02:50 +01002227static unsigned int swiotlb_max_size(void)
Chris Wilson871dfbd2016-10-11 09:20:21 +01002228{
2229#if IS_ENABLED(CONFIG_SWIOTLB)
2230 return rounddown(swiotlb_nr_tbl() << IO_TLB_SHIFT, PAGE_SIZE);
2231#else
2232 return 0;
2233#endif
2234}
2235
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002236static void i915_sg_trim(struct sg_table *orig_st)
2237{
2238 struct sg_table new_st;
2239 struct scatterlist *sg, *new_sg;
2240 unsigned int i;
2241
2242 if (orig_st->nents == orig_st->orig_nents)
2243 return;
2244
2245 if (sg_alloc_table(&new_st, orig_st->nents, GFP_KERNEL))
2246 return;
2247
2248 new_sg = new_st.sgl;
2249 for_each_sg(orig_st->sgl, sg, orig_st->nents, i) {
2250 sg_set_page(new_sg, sg_page(sg), sg->length, 0);
2251 /* called before being DMA mapped, no need to copy sg->dma_* */
2252 new_sg = sg_next(new_sg);
2253 }
2254
2255 sg_free_table(orig_st);
2256
2257 *orig_st = new_st;
2258}
2259
Chris Wilson03ac84f2016-10-28 13:58:36 +01002260static struct sg_table *
Chris Wilson6c085a72012-08-20 11:40:46 +02002261i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002262{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002263 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002264 int page_count, i;
2265 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002266 struct sg_table *st;
2267 struct scatterlist *sg;
Dave Gordon85d12252016-05-20 11:54:06 +01002268 struct sgt_iter sgt_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002269 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002270 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson4ff340f02016-10-18 13:02:50 +01002271 unsigned int max_segment;
Imre Deake2273302015-07-09 12:59:05 +03002272 int ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002273 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002274
Chris Wilson6c085a72012-08-20 11:40:46 +02002275 /* Assert that the object is not currently in any GPU domain. As it
2276 * wasn't in the GTT, there shouldn't be any way it could have been in
2277 * a GPU cache
2278 */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002279 GEM_BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2280 GEM_BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Chris Wilson6c085a72012-08-20 11:40:46 +02002281
Chris Wilson871dfbd2016-10-11 09:20:21 +01002282 max_segment = swiotlb_max_size();
2283 if (!max_segment)
Chris Wilson4ff340f02016-10-18 13:02:50 +01002284 max_segment = rounddown(UINT_MAX, PAGE_SIZE);
Chris Wilson871dfbd2016-10-11 09:20:21 +01002285
Chris Wilson9da3da62012-06-01 15:20:22 +01002286 st = kmalloc(sizeof(*st), GFP_KERNEL);
2287 if (st == NULL)
Chris Wilson03ac84f2016-10-28 13:58:36 +01002288 return ERR_PTR(-ENOMEM);
Eric Anholt673a3942008-07-30 12:06:12 -07002289
Chris Wilson9da3da62012-06-01 15:20:22 +01002290 page_count = obj->base.size / PAGE_SIZE;
2291 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002292 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002293 return ERR_PTR(-ENOMEM);
Chris Wilson9da3da62012-06-01 15:20:22 +01002294 }
2295
2296 /* Get the list of pages out of our struct file. They'll be pinned
2297 * at this point until we release them.
2298 *
2299 * Fail silently without starting the shrinker
2300 */
Al Viro93c76a32015-12-04 23:45:44 -05002301 mapping = obj->base.filp->f_mapping;
Michal Hockoc62d2552015-11-06 16:28:49 -08002302 gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM));
Mel Gormand0164ad2015-11-06 16:28:21 -08002303 gfp |= __GFP_NORETRY | __GFP_NOWARN;
Imre Deak90797e62013-02-18 19:28:03 +02002304 sg = st->sgl;
2305 st->nents = 0;
2306 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002307 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2308 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002309 i915_gem_shrink(dev_priv,
2310 page_count,
2311 I915_SHRINK_BOUND |
2312 I915_SHRINK_UNBOUND |
2313 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002314 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2315 }
2316 if (IS_ERR(page)) {
2317 /* We've tried hard to allocate the memory by reaping
2318 * our own buffer, now let the real VM do its job and
2319 * go down in flames if truly OOM.
2320 */
David Herrmannf461d1be22014-05-25 14:34:10 +02002321 page = shmem_read_mapping_page(mapping, i);
Imre Deake2273302015-07-09 12:59:05 +03002322 if (IS_ERR(page)) {
2323 ret = PTR_ERR(page);
Chris Wilson6c085a72012-08-20 11:40:46 +02002324 goto err_pages;
Imre Deake2273302015-07-09 12:59:05 +03002325 }
Chris Wilson6c085a72012-08-20 11:40:46 +02002326 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002327 if (!i ||
2328 sg->length >= max_segment ||
2329 page_to_pfn(page) != last_pfn + 1) {
Imre Deak90797e62013-02-18 19:28:03 +02002330 if (i)
2331 sg = sg_next(sg);
2332 st->nents++;
2333 sg_set_page(sg, page, PAGE_SIZE, 0);
2334 } else {
2335 sg->length += PAGE_SIZE;
2336 }
2337 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002338
2339 /* Check that the i965g/gm workaround works. */
2340 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002341 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002342 if (sg) /* loop terminated early; short sg table */
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002343 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002344
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002345 /* Trim unused sg entries to avoid wasting memory. */
2346 i915_sg_trim(st);
2347
Chris Wilson03ac84f2016-10-28 13:58:36 +01002348 ret = i915_gem_gtt_prepare_pages(obj, st);
Imre Deake2273302015-07-09 12:59:05 +03002349 if (ret)
2350 goto err_pages;
2351
Eric Anholt673a3942008-07-30 12:06:12 -07002352 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002353 i915_gem_object_do_bit_17_swizzle(obj, st);
Eric Anholt673a3942008-07-30 12:06:12 -07002354
Chris Wilson03ac84f2016-10-28 13:58:36 +01002355 return st;
Eric Anholt673a3942008-07-30 12:06:12 -07002356
2357err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002358 sg_mark_end(sg);
Dave Gordon85d12252016-05-20 11:54:06 +01002359 for_each_sgt_page(page, sgt_iter, st)
2360 put_page(page);
Chris Wilson9da3da62012-06-01 15:20:22 +01002361 sg_free_table(st);
2362 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002363
2364 /* shmemfs first checks if there is enough memory to allocate the page
2365 * and reports ENOSPC should there be insufficient, along with the usual
2366 * ENOMEM for a genuine allocation failure.
2367 *
2368 * We use ENOSPC in our driver to mean that we have run out of aperture
2369 * space and so want to translate the error from shmemfs back to our
2370 * usual understanding of ENOMEM.
2371 */
Imre Deake2273302015-07-09 12:59:05 +03002372 if (ret == -ENOSPC)
2373 ret = -ENOMEM;
2374
Chris Wilson03ac84f2016-10-28 13:58:36 +01002375 return ERR_PTR(ret);
2376}
2377
2378void __i915_gem_object_set_pages(struct drm_i915_gem_object *obj,
2379 struct sg_table *pages)
2380{
Chris Wilson1233e2d2016-10-28 13:58:37 +01002381 lockdep_assert_held(&obj->mm.lock);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002382
2383 obj->mm.get_page.sg_pos = pages->sgl;
2384 obj->mm.get_page.sg_idx = 0;
2385
2386 obj->mm.pages = pages;
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002387
2388 if (i915_gem_object_is_tiled(obj) &&
2389 to_i915(obj->base.dev)->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
2390 GEM_BUG_ON(obj->mm.quirked);
2391 __i915_gem_object_pin_pages(obj);
2392 obj->mm.quirked = true;
2393 }
Chris Wilson03ac84f2016-10-28 13:58:36 +01002394}
2395
2396static int ____i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2397{
2398 struct sg_table *pages;
2399
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002400 GEM_BUG_ON(i915_gem_object_has_pinned_pages(obj));
2401
Chris Wilson03ac84f2016-10-28 13:58:36 +01002402 if (unlikely(obj->mm.madv != I915_MADV_WILLNEED)) {
2403 DRM_DEBUG("Attempting to obtain a purgeable object\n");
2404 return -EFAULT;
2405 }
2406
2407 pages = obj->ops->get_pages(obj);
2408 if (unlikely(IS_ERR(pages)))
2409 return PTR_ERR(pages);
2410
2411 __i915_gem_object_set_pages(obj, pages);
2412 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002413}
2414
Chris Wilson37e680a2012-06-07 15:38:42 +01002415/* Ensure that the associated pages are gathered from the backing storage
Chris Wilson1233e2d2016-10-28 13:58:37 +01002416 * and pinned into our object. i915_gem_object_pin_pages() may be called
Chris Wilson37e680a2012-06-07 15:38:42 +01002417 * multiple times before they are released by a single call to
Chris Wilson1233e2d2016-10-28 13:58:37 +01002418 * i915_gem_object_unpin_pages() - once the pages are no longer referenced
Chris Wilson37e680a2012-06-07 15:38:42 +01002419 * either as a result of memory pressure (reaping pages under the shrinker)
2420 * or as the object is itself released.
2421 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002422int __i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
Chris Wilson37e680a2012-06-07 15:38:42 +01002423{
Chris Wilson03ac84f2016-10-28 13:58:36 +01002424 int err;
Chris Wilson37e680a2012-06-07 15:38:42 +01002425
Chris Wilson1233e2d2016-10-28 13:58:37 +01002426 err = mutex_lock_interruptible(&obj->mm.lock);
2427 if (err)
2428 return err;
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002429
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002430 if (unlikely(!obj->mm.pages)) {
2431 err = ____i915_gem_object_get_pages(obj);
2432 if (err)
2433 goto unlock;
2434
2435 smp_mb__before_atomic();
Chris Wilson1233e2d2016-10-28 13:58:37 +01002436 }
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002437 atomic_inc(&obj->mm.pages_pin_count);
Chris Wilson43e28f02013-01-08 10:53:09 +00002438
Chris Wilson1233e2d2016-10-28 13:58:37 +01002439unlock:
2440 mutex_unlock(&obj->mm.lock);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002441 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07002442}
2443
Dave Gordondd6034c2016-05-20 11:54:04 +01002444/* The 'mapping' part of i915_gem_object_pin_map() below */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002445static void *i915_gem_object_map(const struct drm_i915_gem_object *obj,
2446 enum i915_map_type type)
Dave Gordondd6034c2016-05-20 11:54:04 +01002447{
2448 unsigned long n_pages = obj->base.size >> PAGE_SHIFT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002449 struct sg_table *sgt = obj->mm.pages;
Dave Gordon85d12252016-05-20 11:54:06 +01002450 struct sgt_iter sgt_iter;
2451 struct page *page;
Dave Gordonb338fa42016-05-20 11:54:05 +01002452 struct page *stack_pages[32];
2453 struct page **pages = stack_pages;
Dave Gordondd6034c2016-05-20 11:54:04 +01002454 unsigned long i = 0;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002455 pgprot_t pgprot;
Dave Gordondd6034c2016-05-20 11:54:04 +01002456 void *addr;
2457
2458 /* A single page can always be kmapped */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002459 if (n_pages == 1 && type == I915_MAP_WB)
Dave Gordondd6034c2016-05-20 11:54:04 +01002460 return kmap(sg_page(sgt->sgl));
2461
Dave Gordonb338fa42016-05-20 11:54:05 +01002462 if (n_pages > ARRAY_SIZE(stack_pages)) {
2463 /* Too big for stack -- allocate temporary array instead */
2464 pages = drm_malloc_gfp(n_pages, sizeof(*pages), GFP_TEMPORARY);
2465 if (!pages)
2466 return NULL;
2467 }
Dave Gordondd6034c2016-05-20 11:54:04 +01002468
Dave Gordon85d12252016-05-20 11:54:06 +01002469 for_each_sgt_page(page, sgt_iter, sgt)
2470 pages[i++] = page;
Dave Gordondd6034c2016-05-20 11:54:04 +01002471
2472 /* Check that we have the expected number of pages */
2473 GEM_BUG_ON(i != n_pages);
2474
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002475 switch (type) {
2476 case I915_MAP_WB:
2477 pgprot = PAGE_KERNEL;
2478 break;
2479 case I915_MAP_WC:
2480 pgprot = pgprot_writecombine(PAGE_KERNEL_IO);
2481 break;
2482 }
2483 addr = vmap(pages, n_pages, 0, pgprot);
Dave Gordondd6034c2016-05-20 11:54:04 +01002484
Dave Gordonb338fa42016-05-20 11:54:05 +01002485 if (pages != stack_pages)
2486 drm_free_large(pages);
Dave Gordondd6034c2016-05-20 11:54:04 +01002487
2488 return addr;
2489}
2490
2491/* get, pin, and map the pages of the object into kernel space */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002492void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj,
2493 enum i915_map_type type)
Chris Wilson0a798eb2016-04-08 12:11:11 +01002494{
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002495 enum i915_map_type has_type;
2496 bool pinned;
2497 void *ptr;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002498 int ret;
2499
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002500 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002501
Chris Wilson1233e2d2016-10-28 13:58:37 +01002502 ret = mutex_lock_interruptible(&obj->mm.lock);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002503 if (ret)
2504 return ERR_PTR(ret);
2505
Chris Wilson1233e2d2016-10-28 13:58:37 +01002506 pinned = true;
2507 if (!atomic_inc_not_zero(&obj->mm.pages_pin_count)) {
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002508 if (unlikely(!obj->mm.pages)) {
2509 ret = ____i915_gem_object_get_pages(obj);
2510 if (ret)
2511 goto err_unlock;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002512
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002513 smp_mb__before_atomic();
2514 }
2515 atomic_inc(&obj->mm.pages_pin_count);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002516 pinned = false;
2517 }
2518 GEM_BUG_ON(!obj->mm.pages);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002519
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002520 ptr = ptr_unpack_bits(obj->mm.mapping, has_type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002521 if (ptr && has_type != type) {
2522 if (pinned) {
2523 ret = -EBUSY;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002524 goto err_unpin;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002525 }
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002526
2527 if (is_vmalloc_addr(ptr))
2528 vunmap(ptr);
2529 else
2530 kunmap(kmap_to_page(ptr));
2531
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002532 ptr = obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002533 }
2534
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002535 if (!ptr) {
2536 ptr = i915_gem_object_map(obj, type);
2537 if (!ptr) {
2538 ret = -ENOMEM;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002539 goto err_unpin;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002540 }
2541
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002542 obj->mm.mapping = ptr_pack_bits(ptr, type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002543 }
2544
Chris Wilson1233e2d2016-10-28 13:58:37 +01002545out_unlock:
2546 mutex_unlock(&obj->mm.lock);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002547 return ptr;
2548
Chris Wilson1233e2d2016-10-28 13:58:37 +01002549err_unpin:
2550 atomic_dec(&obj->mm.pages_pin_count);
2551err_unlock:
2552 ptr = ERR_PTR(ret);
2553 goto out_unlock;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002554}
2555
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002556static bool i915_context_is_banned(const struct i915_gem_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002557{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002558 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002559
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002560 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002561 return true;
2562
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002563 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
Chris Wilson676fa572014-12-24 08:13:39 -08002564 if (ctx->hang_stats.ban_period_seconds &&
2565 elapsed <= ctx->hang_stats.ban_period_seconds) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002566 DRM_DEBUG("context hanging too fast, banning!\n");
2567 return true;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002568 }
2569
2570 return false;
2571}
2572
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002573static void i915_set_reset_status(struct i915_gem_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002574 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002575{
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002576 struct i915_ctx_hang_stats *hs = &ctx->hang_stats;
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002577
2578 if (guilty) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002579 hs->banned = i915_context_is_banned(ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002580 hs->batch_active++;
2581 hs->guilty_ts = get_seconds();
2582 } else {
2583 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002584 }
2585}
2586
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002587struct drm_i915_gem_request *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002588i915_gem_find_active_request(struct intel_engine_cs *engine)
Chris Wilson9375e442010-09-19 12:21:28 +01002589{
Chris Wilson4db080f2013-12-04 11:37:09 +00002590 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002591
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002592 /* We are called by the error capture and reset at a random
2593 * point in time. In particular, note that neither is crucially
2594 * ordered with an interrupt. After a hang, the GPU is dead and we
2595 * assume that no more writes can happen (we waited long enough for
2596 * all writes that were in transaction to be flushed) - adding an
2597 * extra delay for a recent interrupt is pointless. Hence, we do
2598 * not need an engine->irq_seqno_barrier() before the seqno reads.
2599 */
Chris Wilson73cb9702016-10-28 13:58:46 +01002600 list_for_each_entry(request, &engine->timeline->requests, link) {
Chris Wilson80b204b2016-10-28 13:58:58 +01002601 if (__i915_gem_request_completed(request))
Chris Wilson4db080f2013-12-04 11:37:09 +00002602 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002603
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002604 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002605 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002606
2607 return NULL;
2608}
2609
Chris Wilson821ed7d2016-09-09 14:11:53 +01002610static void reset_request(struct drm_i915_gem_request *request)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002611{
Chris Wilson821ed7d2016-09-09 14:11:53 +01002612 void *vaddr = request->ring->vaddr;
2613 u32 head;
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002614
Chris Wilson821ed7d2016-09-09 14:11:53 +01002615 /* As this request likely depends on state from the lost
2616 * context, clear out all the user operations leaving the
2617 * breadcrumb at the end (so we get the fence notifications).
2618 */
2619 head = request->head;
2620 if (request->postfix < head) {
2621 memset(vaddr + head, 0, request->ring->size - head);
2622 head = 0;
2623 }
2624 memset(vaddr + head, 0, request->postfix - head);
Chris Wilson4db080f2013-12-04 11:37:09 +00002625}
2626
Chris Wilson821ed7d2016-09-09 14:11:53 +01002627static void i915_gem_reset_engine(struct intel_engine_cs *engine)
Chris Wilson4db080f2013-12-04 11:37:09 +00002628{
Chris Wilsondcff85c2016-08-05 10:14:11 +01002629 struct drm_i915_gem_request *request;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002630 struct i915_gem_context *incomplete_ctx;
Chris Wilson80b204b2016-10-28 13:58:58 +01002631 struct intel_timeline *timeline;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002632 bool ring_hung;
Chris Wilson608c1a52015-09-03 13:01:40 +01002633
Chris Wilson821ed7d2016-09-09 14:11:53 +01002634 if (engine->irq_seqno_barrier)
2635 engine->irq_seqno_barrier(engine);
2636
2637 request = i915_gem_find_active_request(engine);
2638 if (!request)
2639 return;
2640
2641 ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
Chris Wilson77c60702016-10-04 21:11:29 +01002642 if (engine->hangcheck.seqno != intel_engine_get_seqno(engine))
2643 ring_hung = false;
2644
Chris Wilson821ed7d2016-09-09 14:11:53 +01002645 i915_set_reset_status(request->ctx, ring_hung);
2646 if (!ring_hung)
2647 return;
2648
2649 DRM_DEBUG_DRIVER("resetting %s to restart from tail of request 0x%x\n",
Chris Wilson65e47602016-10-28 13:58:49 +01002650 engine->name, request->global_seqno);
Chris Wilson821ed7d2016-09-09 14:11:53 +01002651
2652 /* Setup the CS to resume from the breadcrumb of the hung request */
2653 engine->reset_hw(engine, request);
2654
2655 /* Users of the default context do not rely on logical state
2656 * preserved between batches. They have to emit full state on
2657 * every batch and so it is safe to execute queued requests following
2658 * the hang.
2659 *
2660 * Other contexts preserve state, now corrupt. We want to skip all
2661 * queued requests that reference the corrupt context.
2662 */
2663 incomplete_ctx = request->ctx;
2664 if (i915_gem_context_is_default(incomplete_ctx))
2665 return;
2666
Chris Wilson73cb9702016-10-28 13:58:46 +01002667 list_for_each_entry_continue(request, &engine->timeline->requests, link)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002668 if (request->ctx == incomplete_ctx)
2669 reset_request(request);
Chris Wilson80b204b2016-10-28 13:58:58 +01002670
2671 timeline = i915_gem_context_lookup_timeline(incomplete_ctx, engine);
2672 list_for_each_entry(request, &timeline->requests, link)
2673 reset_request(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01002674}
2675
2676void i915_gem_reset(struct drm_i915_private *dev_priv)
2677{
2678 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302679 enum intel_engine_id id;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002680
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002681 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2682
Chris Wilson821ed7d2016-09-09 14:11:53 +01002683 i915_gem_retire_requests(dev_priv);
2684
Akash Goel3b3f1652016-10-13 22:44:48 +05302685 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002686 i915_gem_reset_engine(engine);
2687
2688 i915_gem_restore_fences(&dev_priv->drm);
Chris Wilsonf2a91d12016-09-21 14:51:06 +01002689
2690 if (dev_priv->gt.awake) {
2691 intel_sanitize_gt_powersave(dev_priv);
2692 intel_enable_gt_powersave(dev_priv);
2693 if (INTEL_GEN(dev_priv) >= 6)
2694 gen6_rps_busy(dev_priv);
2695 }
Chris Wilson821ed7d2016-09-09 14:11:53 +01002696}
2697
2698static void nop_submit_request(struct drm_i915_gem_request *request)
2699{
2700}
2701
2702static void i915_gem_cleanup_engine(struct intel_engine_cs *engine)
2703{
2704 engine->submit_request = nop_submit_request;
Chris Wilson70c2a242016-09-09 14:11:46 +01002705
Chris Wilsonc4b09302016-07-20 09:21:10 +01002706 /* Mark all pending requests as complete so that any concurrent
2707 * (lockless) lookup doesn't try and wait upon the request as we
2708 * reset it.
2709 */
Chris Wilson73cb9702016-10-28 13:58:46 +01002710 intel_engine_init_global_seqno(engine,
Chris Wilsoncb399ea2016-11-01 10:03:16 +00002711 intel_engine_last_submit(engine));
Chris Wilsonc4b09302016-07-20 09:21:10 +01002712
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002713 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002714 * Clear the execlists queue up before freeing the requests, as those
2715 * are the ones that keep the context and ringbuffer backing objects
2716 * pinned in place.
2717 */
Oscar Mateodcb4c122014-11-13 10:28:10 +00002718
Tomas Elf7de1691a2015-10-19 16:32:32 +01002719 if (i915.enable_execlists) {
Chris Wilson70c2a242016-09-09 14:11:46 +01002720 spin_lock(&engine->execlist_lock);
2721 INIT_LIST_HEAD(&engine->execlist_queue);
2722 i915_gem_request_put(engine->execlist_port[0].request);
2723 i915_gem_request_put(engine->execlist_port[1].request);
2724 memset(engine->execlist_port, 0, sizeof(engine->execlist_port));
2725 spin_unlock(&engine->execlist_lock);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002726 }
Eric Anholt673a3942008-07-30 12:06:12 -07002727}
2728
Chris Wilson821ed7d2016-09-09 14:11:53 +01002729void i915_gem_set_wedged(struct drm_i915_private *dev_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002730{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002731 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302732 enum intel_engine_id id;
Eric Anholt673a3942008-07-30 12:06:12 -07002733
Chris Wilson821ed7d2016-09-09 14:11:53 +01002734 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2735 set_bit(I915_WEDGED, &dev_priv->gpu_error.flags);
Chris Wilson4db080f2013-12-04 11:37:09 +00002736
Chris Wilson821ed7d2016-09-09 14:11:53 +01002737 i915_gem_context_lost(dev_priv);
Akash Goel3b3f1652016-10-13 22:44:48 +05302738 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002739 i915_gem_cleanup_engine(engine);
Chris Wilsonb913b332016-07-13 09:10:31 +01002740 mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0);
Chris Wilsondfaae392010-09-22 10:31:52 +01002741
Chris Wilson821ed7d2016-09-09 14:11:53 +01002742 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002743}
2744
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002745static void
Eric Anholt673a3942008-07-30 12:06:12 -07002746i915_gem_retire_work_handler(struct work_struct *work)
2747{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002748 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002749 container_of(work, typeof(*dev_priv), gt.retire_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002750 struct drm_device *dev = &dev_priv->drm;
Eric Anholt673a3942008-07-30 12:06:12 -07002751
Chris Wilson891b48c2010-09-29 12:26:37 +01002752 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002753 if (mutex_trylock(&dev->struct_mutex)) {
Chris Wilson67d97da2016-07-04 08:08:31 +01002754 i915_gem_retire_requests(dev_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002755 mutex_unlock(&dev->struct_mutex);
2756 }
Chris Wilson67d97da2016-07-04 08:08:31 +01002757
2758 /* Keep the retire handler running until we are finally idle.
2759 * We do not need to do this test under locking as in the worst-case
2760 * we queue the retire worker once too often.
2761 */
Chris Wilsonc9615612016-07-09 10:12:06 +01002762 if (READ_ONCE(dev_priv->gt.awake)) {
2763 i915_queue_hangcheck(dev_priv);
Chris Wilson67d97da2016-07-04 08:08:31 +01002764 queue_delayed_work(dev_priv->wq,
2765 &dev_priv->gt.retire_work,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002766 round_jiffies_up_relative(HZ));
Chris Wilsonc9615612016-07-09 10:12:06 +01002767 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002768}
Chris Wilson891b48c2010-09-29 12:26:37 +01002769
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002770static void
2771i915_gem_idle_work_handler(struct work_struct *work)
2772{
2773 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002774 container_of(work, typeof(*dev_priv), gt.idle_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002775 struct drm_device *dev = &dev_priv->drm;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002776 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302777 enum intel_engine_id id;
Chris Wilson67d97da2016-07-04 08:08:31 +01002778 bool rearm_hangcheck;
2779
2780 if (!READ_ONCE(dev_priv->gt.awake))
2781 return;
2782
Imre Deak0cb56702016-11-07 11:20:04 +02002783 /*
2784 * Wait for last execlists context complete, but bail out in case a
2785 * new request is submitted.
2786 */
2787 wait_for(READ_ONCE(dev_priv->gt.active_requests) ||
2788 intel_execlists_idle(dev_priv), 10);
2789
Chris Wilson28176ef2016-10-28 13:58:56 +01002790 if (READ_ONCE(dev_priv->gt.active_requests))
Chris Wilson67d97da2016-07-04 08:08:31 +01002791 return;
2792
2793 rearm_hangcheck =
2794 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
2795
2796 if (!mutex_trylock(&dev->struct_mutex)) {
2797 /* Currently busy, come back later */
2798 mod_delayed_work(dev_priv->wq,
2799 &dev_priv->gt.idle_work,
2800 msecs_to_jiffies(50));
2801 goto out_rearm;
2802 }
2803
Imre Deak93c97dc2016-11-07 11:20:03 +02002804 /*
2805 * New request retired after this work handler started, extend active
2806 * period until next instance of the work.
2807 */
2808 if (work_pending(work))
2809 goto out_unlock;
2810
Chris Wilson28176ef2016-10-28 13:58:56 +01002811 if (dev_priv->gt.active_requests)
Chris Wilson67d97da2016-07-04 08:08:31 +01002812 goto out_unlock;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002813
Imre Deak0cb56702016-11-07 11:20:04 +02002814 if (wait_for(intel_execlists_idle(dev_priv), 10))
2815 DRM_ERROR("Timeout waiting for engines to idle\n");
2816
Akash Goel3b3f1652016-10-13 22:44:48 +05302817 for_each_engine(engine, dev_priv, id)
Chris Wilson67d97da2016-07-04 08:08:31 +01002818 i915_gem_batch_pool_fini(&engine->batch_pool);
Zou Nan hai852835f2010-05-21 09:08:56 +08002819
Chris Wilson67d97da2016-07-04 08:08:31 +01002820 GEM_BUG_ON(!dev_priv->gt.awake);
2821 dev_priv->gt.awake = false;
2822 rearm_hangcheck = false;
Daniel Vetter30ecad72015-12-09 09:29:36 +01002823
Chris Wilson67d97da2016-07-04 08:08:31 +01002824 if (INTEL_GEN(dev_priv) >= 6)
2825 gen6_rps_idle(dev_priv);
2826 intel_runtime_pm_put(dev_priv);
2827out_unlock:
2828 mutex_unlock(&dev->struct_mutex);
Chris Wilson35c94182015-04-07 16:20:37 +01002829
Chris Wilson67d97da2016-07-04 08:08:31 +01002830out_rearm:
2831 if (rearm_hangcheck) {
2832 GEM_BUG_ON(!dev_priv->gt.awake);
2833 i915_queue_hangcheck(dev_priv);
Chris Wilson35c94182015-04-07 16:20:37 +01002834 }
Eric Anholt673a3942008-07-30 12:06:12 -07002835}
2836
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002837void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
2838{
2839 struct drm_i915_gem_object *obj = to_intel_bo(gem);
2840 struct drm_i915_file_private *fpriv = file->driver_priv;
2841 struct i915_vma *vma, *vn;
2842
2843 mutex_lock(&obj->base.dev->struct_mutex);
2844 list_for_each_entry_safe(vma, vn, &obj->vma_list, obj_link)
2845 if (vma->vm->file == fpriv)
2846 i915_vma_close(vma);
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002847
2848 if (i915_gem_object_is_active(obj) &&
2849 !i915_gem_object_has_active_reference(obj)) {
2850 i915_gem_object_set_active_reference(obj);
2851 i915_gem_object_get(obj);
2852 }
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002853 mutex_unlock(&obj->base.dev->struct_mutex);
2854}
2855
Chris Wilsone95433c2016-10-28 13:58:27 +01002856static unsigned long to_wait_timeout(s64 timeout_ns)
2857{
2858 if (timeout_ns < 0)
2859 return MAX_SCHEDULE_TIMEOUT;
2860
2861 if (timeout_ns == 0)
2862 return 0;
2863
2864 return nsecs_to_jiffies_timeout(timeout_ns);
2865}
2866
Ben Widawsky5816d642012-04-11 11:18:19 -07002867/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002868 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002869 * @dev: drm device pointer
2870 * @data: ioctl data blob
2871 * @file: drm file pointer
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002872 *
2873 * Returns 0 if successful, else an error is returned with the remaining time in
2874 * the timeout parameter.
2875 * -ETIME: object is still busy after timeout
2876 * -ERESTARTSYS: signal interrupted the wait
2877 * -ENONENT: object doesn't exist
2878 * Also possible, but rare:
2879 * -EAGAIN: GPU wedged
2880 * -ENOMEM: damn
2881 * -ENODEV: Internal IRQ fail
2882 * -E?: The add request failed
2883 *
2884 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2885 * non-zero timeout parameter the wait ioctl will wait for the given number of
2886 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2887 * without holding struct_mutex the object may become re-busied before this
2888 * function completes. A similar but shorter * race condition exists in the busy
2889 * ioctl
2890 */
2891int
2892i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2893{
2894 struct drm_i915_gem_wait *args = data;
2895 struct drm_i915_gem_object *obj;
Chris Wilsone95433c2016-10-28 13:58:27 +01002896 ktime_t start;
2897 long ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002898
Daniel Vetter11b5d512014-09-29 15:31:26 +02002899 if (args->flags != 0)
2900 return -EINVAL;
2901
Chris Wilson03ac0642016-07-20 13:31:51 +01002902 obj = i915_gem_object_lookup(file, args->bo_handle);
Chris Wilson033d5492016-08-05 10:14:17 +01002903 if (!obj)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002904 return -ENOENT;
Chris Wilson033d5492016-08-05 10:14:17 +01002905
Chris Wilsone95433c2016-10-28 13:58:27 +01002906 start = ktime_get();
2907
2908 ret = i915_gem_object_wait(obj,
2909 I915_WAIT_INTERRUPTIBLE | I915_WAIT_ALL,
2910 to_wait_timeout(args->timeout_ns),
2911 to_rps_client(file));
2912
2913 if (args->timeout_ns > 0) {
2914 args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start));
2915 if (args->timeout_ns < 0)
2916 args->timeout_ns = 0;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002917 }
2918
Chris Wilsonf0cd5182016-10-28 13:58:43 +01002919 i915_gem_object_put(obj);
John Harrisonff865882014-11-24 18:49:28 +00002920 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002921}
2922
Chris Wilson73cb9702016-10-28 13:58:46 +01002923static int wait_for_timeline(struct i915_gem_timeline *tl, unsigned int flags)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002924{
Chris Wilson73cb9702016-10-28 13:58:46 +01002925 int ret, i;
2926
2927 for (i = 0; i < ARRAY_SIZE(tl->engine); i++) {
2928 ret = i915_gem_active_wait(&tl->engine[i].last_request, flags);
2929 if (ret)
2930 return ret;
2931 }
2932
2933 return 0;
2934}
2935
2936int i915_gem_wait_for_idle(struct drm_i915_private *i915, unsigned int flags)
2937{
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002938 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002939
Chris Wilson9caa34a2016-11-11 14:58:08 +00002940 if (flags & I915_WAIT_LOCKED) {
2941 struct i915_gem_timeline *tl;
2942
2943 lockdep_assert_held(&i915->drm.struct_mutex);
2944
2945 list_for_each_entry(tl, &i915->gt.timelines, link) {
2946 ret = wait_for_timeline(tl, flags);
2947 if (ret)
2948 return ret;
2949 }
2950 } else {
2951 ret = wait_for_timeline(&i915->gt.global_timeline, flags);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002952 if (ret)
2953 return ret;
2954 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002955
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002956 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002957}
2958
Chris Wilsond0da48c2016-11-06 12:59:59 +00002959void i915_gem_clflush_object(struct drm_i915_gem_object *obj,
2960 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07002961{
Eric Anholt673a3942008-07-30 12:06:12 -07002962 /* If we don't have a page list set up, then we're not pinned
2963 * to GPU, and we can ignore the cache flush because it'll happen
2964 * again at bind time.
2965 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002966 if (!obj->mm.pages)
Chris Wilsond0da48c2016-11-06 12:59:59 +00002967 return;
Eric Anholt673a3942008-07-30 12:06:12 -07002968
Imre Deak769ce462013-02-13 21:56:05 +02002969 /*
2970 * Stolen memory is always coherent with the GPU as it is explicitly
2971 * marked as wc by the system, or the system is cache-coherent.
2972 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08002973 if (obj->stolen || obj->phys_handle)
Chris Wilsond0da48c2016-11-06 12:59:59 +00002974 return;
Imre Deak769ce462013-02-13 21:56:05 +02002975
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002976 /* If the GPU is snooping the contents of the CPU cache,
2977 * we do not need to manually clear the CPU cache lines. However,
2978 * the caches are only snooped when the render cache is
2979 * flushed/invalidated. As we always have to emit invalidations
2980 * and flushes when moving into and out of the RENDER domain, correct
2981 * snooping behaviour occurs naturally as the result of our domain
2982 * tracking.
2983 */
Chris Wilson0f719792015-01-13 13:32:52 +00002984 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
2985 obj->cache_dirty = true;
Chris Wilsond0da48c2016-11-06 12:59:59 +00002986 return;
Chris Wilson0f719792015-01-13 13:32:52 +00002987 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002988
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002989 trace_i915_gem_object_clflush(obj);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002990 drm_clflush_sg(obj->mm.pages);
Chris Wilson0f719792015-01-13 13:32:52 +00002991 obj->cache_dirty = false;
Eric Anholte47c68e2008-11-14 13:35:19 -08002992}
2993
2994/** Flushes the GTT write domain for the object if it's dirty. */
2995static void
Chris Wilson05394f32010-11-08 19:18:58 +00002996i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002997{
Chris Wilson3b5724d2016-08-18 17:16:49 +01002998 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002999
Chris Wilson05394f32010-11-08 19:18:58 +00003000 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003001 return;
3002
Chris Wilson63256ec2011-01-04 18:42:07 +00003003 /* No actual flushing is required for the GTT write domain. Writes
Chris Wilson3b5724d2016-08-18 17:16:49 +01003004 * to it "immediately" go to main memory as far as we know, so there's
Eric Anholte47c68e2008-11-14 13:35:19 -08003005 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003006 *
3007 * However, we do have to enforce the order so that all writes through
3008 * the GTT land before any writes to the device, such as updates to
3009 * the GATT itself.
Chris Wilson3b5724d2016-08-18 17:16:49 +01003010 *
3011 * We also have to wait a bit for the writes to land from the GTT.
3012 * An uncached read (i.e. mmio) seems to be ideal for the round-trip
3013 * timing. This issue has only been observed when switching quickly
3014 * between GTT writes and CPU reads from inside the kernel on recent hw,
3015 * and it appears to only affect discrete GTT blocks (i.e. on LLC
3016 * system agents we cannot reproduce this behaviour).
Eric Anholte47c68e2008-11-14 13:35:19 -08003017 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003018 wmb();
Chris Wilson3b5724d2016-08-18 17:16:49 +01003019 if (INTEL_GEN(dev_priv) >= 6 && !HAS_LLC(dev_priv))
Akash Goel3b3f1652016-10-13 22:44:48 +05303020 POSTING_READ(RING_ACTHD(dev_priv->engine[RCS]->mmio_base));
Chris Wilson63256ec2011-01-04 18:42:07 +00003021
Chris Wilsond243ad82016-08-18 17:16:44 +01003022 intel_fb_obj_flush(obj, false, write_origin(obj, I915_GEM_DOMAIN_GTT));
Daniel Vetterf99d7062014-06-19 16:01:59 +02003023
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003024 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003025 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003026 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003027 I915_GEM_DOMAIN_GTT);
Eric Anholte47c68e2008-11-14 13:35:19 -08003028}
3029
3030/** Flushes the CPU write domain for the object if it's dirty. */
3031static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003032i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003033{
Chris Wilson05394f32010-11-08 19:18:58 +00003034 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003035 return;
3036
Chris Wilsond0da48c2016-11-06 12:59:59 +00003037 i915_gem_clflush_object(obj, obj->pin_display);
Rodrigo Vivide152b62015-07-07 16:28:51 -07003038 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003039
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003040 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003041 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003042 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003043 I915_GEM_DOMAIN_CPU);
Eric Anholte47c68e2008-11-14 13:35:19 -08003044}
3045
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003046/**
3047 * Moves a single object to the GTT read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003048 * @obj: object to act on
3049 * @write: ask for write access or read only
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003050 *
3051 * This function returns when the move is complete, including waiting on
3052 * flushes to occur.
3053 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003054int
Chris Wilson20217462010-11-23 15:26:33 +00003055i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003056{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003057 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003058 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003059
Chris Wilsone95433c2016-10-28 13:58:27 +01003060 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003061
Chris Wilsone95433c2016-10-28 13:58:27 +01003062 ret = i915_gem_object_wait(obj,
3063 I915_WAIT_INTERRUPTIBLE |
3064 I915_WAIT_LOCKED |
3065 (write ? I915_WAIT_ALL : 0),
3066 MAX_SCHEDULE_TIMEOUT,
3067 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003068 if (ret)
3069 return ret;
3070
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003071 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3072 return 0;
3073
Chris Wilson43566de2015-01-02 16:29:29 +05303074 /* Flush and acquire obj->pages so that we are coherent through
3075 * direct access in memory with previous cached writes through
3076 * shmemfs and that our cache domain tracking remains valid.
3077 * For example, if the obj->filp was moved to swap without us
3078 * being notified and releasing the pages, we would mistakenly
3079 * continue to assume that the obj remained out of the CPU cached
3080 * domain.
3081 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003082 ret = i915_gem_object_pin_pages(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303083 if (ret)
3084 return ret;
3085
Daniel Vettere62b59e2015-01-21 14:53:48 +01003086 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003087
Chris Wilsond0a57782012-10-09 19:24:37 +01003088 /* Serialise direct access to this object with the barriers for
3089 * coherent writes from the GPU, by effectively invalidating the
3090 * GTT domain upon first access.
3091 */
3092 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3093 mb();
3094
Chris Wilson05394f32010-11-08 19:18:58 +00003095 old_write_domain = obj->base.write_domain;
3096 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003097
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003098 /* It should now be out of any other write domains, and we can update
3099 * the domain values for our changes.
3100 */
Chris Wilson40e62d52016-10-28 13:58:41 +01003101 GEM_BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003102 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003103 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003104 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3105 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003106 obj->mm.dirty = true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003107 }
3108
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003109 trace_i915_gem_object_change_domain(obj,
3110 old_read_domains,
3111 old_write_domain);
3112
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003113 i915_gem_object_unpin_pages(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003114 return 0;
3115}
3116
Chris Wilsonef55f922015-10-09 14:11:27 +01003117/**
3118 * Changes the cache-level of an object across all VMA.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003119 * @obj: object to act on
3120 * @cache_level: new cache level to set for the object
Chris Wilsonef55f922015-10-09 14:11:27 +01003121 *
3122 * After this function returns, the object will be in the new cache-level
3123 * across all GTT and the contents of the backing storage will be coherent,
3124 * with respect to the new cache-level. In order to keep the backing storage
3125 * coherent for all users, we only allow a single cache level to be set
3126 * globally on the object and prevent it from being changed whilst the
3127 * hardware is reading from the object. That is if the object is currently
3128 * on the scanout it will be set to uncached (or equivalent display
3129 * cache coherency) and all non-MOCS GPU access will also be uncached so
3130 * that all direct access to the scanout remains coherent.
3131 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003132int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3133 enum i915_cache_level cache_level)
3134{
Chris Wilsonaa653a62016-08-04 07:52:27 +01003135 struct i915_vma *vma;
Ville Syrjäläed75a552015-08-11 19:47:10 +03003136 int ret = 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003137
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003138 lockdep_assert_held(&obj->base.dev->struct_mutex);
3139
Chris Wilsone4ffd172011-04-04 09:44:39 +01003140 if (obj->cache_level == cache_level)
Ville Syrjäläed75a552015-08-11 19:47:10 +03003141 goto out;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003142
Chris Wilsonef55f922015-10-09 14:11:27 +01003143 /* Inspect the list of currently bound VMA and unbind any that would
3144 * be invalid given the new cache-level. This is principally to
3145 * catch the issue of the CS prefetch crossing page boundaries and
3146 * reading an invalid PTE on older architectures.
3147 */
Chris Wilsonaa653a62016-08-04 07:52:27 +01003148restart:
3149 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003150 if (!drm_mm_node_allocated(&vma->node))
3151 continue;
3152
Chris Wilson20dfbde2016-08-04 16:32:30 +01003153 if (i915_vma_is_pinned(vma)) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003154 DRM_DEBUG("can not change the cache level of pinned objects\n");
3155 return -EBUSY;
3156 }
3157
Chris Wilsonaa653a62016-08-04 07:52:27 +01003158 if (i915_gem_valid_gtt_space(vma, cache_level))
3159 continue;
3160
3161 ret = i915_vma_unbind(vma);
3162 if (ret)
3163 return ret;
3164
3165 /* As unbinding may affect other elements in the
3166 * obj->vma_list (due to side-effects from retiring
3167 * an active vma), play safe and restart the iterator.
3168 */
3169 goto restart;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003170 }
3171
Chris Wilsonef55f922015-10-09 14:11:27 +01003172 /* We can reuse the existing drm_mm nodes but need to change the
3173 * cache-level on the PTE. We could simply unbind them all and
3174 * rebind with the correct cache-level on next use. However since
3175 * we already have a valid slot, dma mapping, pages etc, we may as
3176 * rewrite the PTE in the belief that doing so tramples upon less
3177 * state and so involves less work.
3178 */
Chris Wilson15717de2016-08-04 07:52:26 +01003179 if (obj->bind_count) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003180 /* Before we change the PTE, the GPU must not be accessing it.
3181 * If we wait upon the object, we know that all the bound
3182 * VMA are no longer active.
3183 */
Chris Wilsone95433c2016-10-28 13:58:27 +01003184 ret = i915_gem_object_wait(obj,
3185 I915_WAIT_INTERRUPTIBLE |
3186 I915_WAIT_LOCKED |
3187 I915_WAIT_ALL,
3188 MAX_SCHEDULE_TIMEOUT,
3189 NULL);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003190 if (ret)
3191 return ret;
3192
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00003193 if (!HAS_LLC(to_i915(obj->base.dev)) &&
3194 cache_level != I915_CACHE_NONE) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003195 /* Access to snoopable pages through the GTT is
3196 * incoherent and on some machines causes a hard
3197 * lockup. Relinquish the CPU mmaping to force
3198 * userspace to refault in the pages and we can
3199 * then double check if the GTT mapping is still
3200 * valid for that pointer access.
3201 */
3202 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003203
Chris Wilsonef55f922015-10-09 14:11:27 +01003204 /* As we no longer need a fence for GTT access,
3205 * we can relinquish it now (and so prevent having
3206 * to steal a fence from someone else on the next
3207 * fence request). Note GPU activity would have
3208 * dropped the fence as all snoopable access is
3209 * supposed to be linear.
3210 */
Chris Wilson49ef5292016-08-18 17:17:00 +01003211 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3212 ret = i915_vma_put_fence(vma);
3213 if (ret)
3214 return ret;
3215 }
Chris Wilsonef55f922015-10-09 14:11:27 +01003216 } else {
3217 /* We either have incoherent backing store and
3218 * so no GTT access or the architecture is fully
3219 * coherent. In such cases, existing GTT mmaps
3220 * ignore the cache bit in the PTE and we can
3221 * rewrite it without confusing the GPU or having
3222 * to force userspace to fault back in its mmaps.
3223 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003224 }
3225
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003226 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003227 if (!drm_mm_node_allocated(&vma->node))
3228 continue;
3229
3230 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3231 if (ret)
3232 return ret;
3233 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003234 }
3235
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003236 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003237 vma->node.color = cache_level;
3238 obj->cache_level = cache_level;
3239
Ville Syrjäläed75a552015-08-11 19:47:10 +03003240out:
Chris Wilsonef55f922015-10-09 14:11:27 +01003241 /* Flush the dirty CPU caches to the backing storage so that the
3242 * object is now coherent at its new cache level (with respect
3243 * to the access domain).
3244 */
Chris Wilsond0da48c2016-11-06 12:59:59 +00003245 if (obj->cache_dirty && cpu_write_needs_clflush(obj))
3246 i915_gem_clflush_object(obj, true);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003247
Chris Wilsone4ffd172011-04-04 09:44:39 +01003248 return 0;
3249}
3250
Ben Widawsky199adf42012-09-21 17:01:20 -07003251int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3252 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003253{
Ben Widawsky199adf42012-09-21 17:01:20 -07003254 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003255 struct drm_i915_gem_object *obj;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003256 int err = 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003257
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003258 rcu_read_lock();
3259 obj = i915_gem_object_lookup_rcu(file, args->handle);
3260 if (!obj) {
3261 err = -ENOENT;
3262 goto out;
3263 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003264
Chris Wilson651d7942013-08-08 14:41:10 +01003265 switch (obj->cache_level) {
3266 case I915_CACHE_LLC:
3267 case I915_CACHE_L3_LLC:
3268 args->caching = I915_CACHING_CACHED;
3269 break;
3270
Chris Wilson4257d3b2013-08-08 14:41:11 +01003271 case I915_CACHE_WT:
3272 args->caching = I915_CACHING_DISPLAY;
3273 break;
3274
Chris Wilson651d7942013-08-08 14:41:10 +01003275 default:
3276 args->caching = I915_CACHING_NONE;
3277 break;
3278 }
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003279out:
3280 rcu_read_unlock();
3281 return err;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003282}
3283
Ben Widawsky199adf42012-09-21 17:01:20 -07003284int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3285 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003286{
Chris Wilson9c870d02016-10-24 13:42:15 +01003287 struct drm_i915_private *i915 = to_i915(dev);
Ben Widawsky199adf42012-09-21 17:01:20 -07003288 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003289 struct drm_i915_gem_object *obj;
3290 enum i915_cache_level level;
3291 int ret;
3292
Ben Widawsky199adf42012-09-21 17:01:20 -07003293 switch (args->caching) {
3294 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003295 level = I915_CACHE_NONE;
3296 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003297 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003298 /*
3299 * Due to a HW issue on BXT A stepping, GPU stores via a
3300 * snooped mapping may leave stale data in a corresponding CPU
3301 * cacheline, whereas normally such cachelines would get
3302 * invalidated.
3303 */
Chris Wilson9c870d02016-10-24 13:42:15 +01003304 if (!HAS_LLC(i915) && !HAS_SNOOP(i915))
Imre Deake5756c12015-08-14 18:43:30 +03003305 return -ENODEV;
3306
Chris Wilsone6994ae2012-07-10 10:27:08 +01003307 level = I915_CACHE_LLC;
3308 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003309 case I915_CACHING_DISPLAY:
Chris Wilson9c870d02016-10-24 13:42:15 +01003310 level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003311 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003312 default:
3313 return -EINVAL;
3314 }
3315
Ben Widawsky3bc29132012-09-26 16:15:20 -07003316 ret = i915_mutex_lock_interruptible(dev);
3317 if (ret)
Chris Wilson9c870d02016-10-24 13:42:15 +01003318 return ret;
Ben Widawsky3bc29132012-09-26 16:15:20 -07003319
Chris Wilson03ac0642016-07-20 13:31:51 +01003320 obj = i915_gem_object_lookup(file, args->handle);
3321 if (!obj) {
Chris Wilsone6994ae2012-07-10 10:27:08 +01003322 ret = -ENOENT;
3323 goto unlock;
3324 }
3325
3326 ret = i915_gem_object_set_cache_level(obj, level);
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003327 i915_gem_object_put(obj);
Chris Wilsone6994ae2012-07-10 10:27:08 +01003328unlock:
3329 mutex_unlock(&dev->struct_mutex);
3330 return ret;
3331}
3332
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003333/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003334 * Prepare buffer for display plane (scanout, cursors, etc).
3335 * Can be called from an uninterruptible phase (modesetting) and allows
3336 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003337 */
Chris Wilson058d88c2016-08-15 10:49:06 +01003338struct i915_vma *
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003339i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3340 u32 alignment,
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003341 const struct i915_ggtt_view *view)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003342{
Chris Wilson058d88c2016-08-15 10:49:06 +01003343 struct i915_vma *vma;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003344 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003345 int ret;
3346
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003347 lockdep_assert_held(&obj->base.dev->struct_mutex);
3348
Chris Wilsoncc98b412013-08-09 12:25:09 +01003349 /* Mark the pin_display early so that we account for the
3350 * display coherency whilst setting up the cache domains.
3351 */
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003352 obj->pin_display++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003353
Eric Anholta7ef0642011-03-29 16:59:54 -07003354 /* The display engine is not coherent with the LLC cache on gen6. As
3355 * a result, we make sure that the pinning that is about to occur is
3356 * done with uncached PTEs. This is lowest common denominator for all
3357 * chipsets.
3358 *
3359 * However for gen6+, we could do better by using the GFDT bit instead
3360 * of uncaching, which would allow us to flush all the LLC-cached data
3361 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3362 */
Chris Wilson651d7942013-08-08 14:41:10 +01003363 ret = i915_gem_object_set_cache_level(obj,
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003364 HAS_WT(to_i915(obj->base.dev)) ?
3365 I915_CACHE_WT : I915_CACHE_NONE);
Chris Wilson058d88c2016-08-15 10:49:06 +01003366 if (ret) {
3367 vma = ERR_PTR(ret);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003368 goto err_unpin_display;
Chris Wilson058d88c2016-08-15 10:49:06 +01003369 }
Eric Anholta7ef0642011-03-29 16:59:54 -07003370
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003371 /* As the user may map the buffer once pinned in the display plane
3372 * (e.g. libkms for the bootup splash), we have to ensure that we
Chris Wilson2efb8132016-08-18 17:17:06 +01003373 * always use map_and_fenceable for all scanout buffers. However,
3374 * it may simply be too big to fit into mappable, in which case
3375 * put it anyway and hope that userspace can cope (but always first
3376 * try to preserve the existing ABI).
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003377 */
Chris Wilson2efb8132016-08-18 17:17:06 +01003378 vma = ERR_PTR(-ENOSPC);
3379 if (view->type == I915_GGTT_VIEW_NORMAL)
3380 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment,
3381 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson767a2222016-11-07 11:01:28 +00003382 if (IS_ERR(vma)) {
3383 struct drm_i915_private *i915 = to_i915(obj->base.dev);
3384 unsigned int flags;
3385
3386 /* Valleyview is definitely limited to scanning out the first
3387 * 512MiB. Lets presume this behaviour was inherited from the
3388 * g4x display engine and that all earlier gen are similarly
3389 * limited. Testing suggests that it is a little more
3390 * complicated than this. For example, Cherryview appears quite
3391 * happy to scanout from anywhere within its global aperture.
3392 */
3393 flags = 0;
3394 if (HAS_GMCH_DISPLAY(i915))
3395 flags = PIN_MAPPABLE;
3396 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, flags);
3397 }
Chris Wilson058d88c2016-08-15 10:49:06 +01003398 if (IS_ERR(vma))
Chris Wilsoncc98b412013-08-09 12:25:09 +01003399 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003400
Chris Wilsond8923dc2016-08-18 17:17:07 +01003401 vma->display_alignment = max_t(u64, vma->display_alignment, alignment);
3402
Daniel Vettere62b59e2015-01-21 14:53:48 +01003403 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003404
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003405 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003406 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003407
3408 /* It should now be out of any other write domains, and we can update
3409 * the domain values for our changes.
3410 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003411 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003412 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003413
3414 trace_i915_gem_object_change_domain(obj,
3415 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003416 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003417
Chris Wilson058d88c2016-08-15 10:49:06 +01003418 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003419
3420err_unpin_display:
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003421 obj->pin_display--;
Chris Wilson058d88c2016-08-15 10:49:06 +01003422 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003423}
3424
3425void
Chris Wilson058d88c2016-08-15 10:49:06 +01003426i915_gem_object_unpin_from_display_plane(struct i915_vma *vma)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003427{
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003428 lockdep_assert_held(&vma->vm->dev->struct_mutex);
3429
Chris Wilson058d88c2016-08-15 10:49:06 +01003430 if (WARN_ON(vma->obj->pin_display == 0))
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003431 return;
3432
Chris Wilsond8923dc2016-08-18 17:17:07 +01003433 if (--vma->obj->pin_display == 0)
3434 vma->display_alignment = 0;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003435
Chris Wilson383d5822016-08-18 17:17:08 +01003436 /* Bump the LRU to try and avoid premature eviction whilst flipping */
3437 if (!i915_vma_is_active(vma))
3438 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3439
Chris Wilson058d88c2016-08-15 10:49:06 +01003440 i915_vma_unpin(vma);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003441}
3442
Eric Anholte47c68e2008-11-14 13:35:19 -08003443/**
3444 * Moves a single object to the CPU read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003445 * @obj: object to act on
3446 * @write: requesting write or read-only access
Eric Anholte47c68e2008-11-14 13:35:19 -08003447 *
3448 * This function returns when the move is complete, including waiting on
3449 * flushes to occur.
3450 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003451int
Chris Wilson919926a2010-11-12 13:42:53 +00003452i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003453{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003454 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003455 int ret;
3456
Chris Wilsone95433c2016-10-28 13:58:27 +01003457 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003458
Chris Wilsone95433c2016-10-28 13:58:27 +01003459 ret = i915_gem_object_wait(obj,
3460 I915_WAIT_INTERRUPTIBLE |
3461 I915_WAIT_LOCKED |
3462 (write ? I915_WAIT_ALL : 0),
3463 MAX_SCHEDULE_TIMEOUT,
3464 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003465 if (ret)
3466 return ret;
3467
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003468 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3469 return 0;
3470
Eric Anholte47c68e2008-11-14 13:35:19 -08003471 i915_gem_object_flush_gtt_write_domain(obj);
3472
Chris Wilson05394f32010-11-08 19:18:58 +00003473 old_write_domain = obj->base.write_domain;
3474 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003475
Eric Anholte47c68e2008-11-14 13:35:19 -08003476 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003477 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003478 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003479
Chris Wilson05394f32010-11-08 19:18:58 +00003480 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003481 }
3482
3483 /* It should now be out of any other write domains, and we can update
3484 * the domain values for our changes.
3485 */
Chris Wilson40e62d52016-10-28 13:58:41 +01003486 GEM_BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003487
3488 /* If we're writing through the CPU, then the GPU read domains will
3489 * need to be invalidated at next use.
3490 */
3491 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003492 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3493 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003494 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003495
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003496 trace_i915_gem_object_change_domain(obj,
3497 old_read_domains,
3498 old_write_domain);
3499
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003500 return 0;
3501}
3502
Eric Anholt673a3942008-07-30 12:06:12 -07003503/* Throttle our rendering by waiting until the ring has completed our requests
3504 * emitted over 20 msec ago.
3505 *
Eric Anholtb9624422009-06-03 07:27:35 +00003506 * Note that if we were to use the current jiffies each time around the loop,
3507 * we wouldn't escape the function with any frames outstanding if the time to
3508 * render a frame was over 20ms.
3509 *
Eric Anholt673a3942008-07-30 12:06:12 -07003510 * This should get us reasonable parallelism between CPU and GPU but also
3511 * relatively low latency when blocking on a particular request to finish.
3512 */
3513static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003514i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003515{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003516 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003517 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01003518 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
John Harrison54fb2412014-11-24 18:49:27 +00003519 struct drm_i915_gem_request *request, *target = NULL;
Chris Wilsone95433c2016-10-28 13:58:27 +01003520 long ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003521
Chris Wilsonf4457ae2016-04-13 17:35:08 +01003522 /* ABI: return -EIO if already wedged */
3523 if (i915_terminally_wedged(&dev_priv->gpu_error))
3524 return -EIO;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003525
Chris Wilson1c255952010-09-26 11:03:27 +01003526 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003527 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003528 if (time_after_eq(request->emitted_jiffies, recent_enough))
3529 break;
3530
John Harrisonfcfa423c2015-05-29 17:44:12 +01003531 /*
3532 * Note that the request might not have been submitted yet.
3533 * In which case emitted_jiffies will be zero.
3534 */
3535 if (!request->emitted_jiffies)
3536 continue;
3537
John Harrison54fb2412014-11-24 18:49:27 +00003538 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00003539 }
John Harrisonff865882014-11-24 18:49:28 +00003540 if (target)
Chris Wilsone8a261e2016-07-20 13:31:49 +01003541 i915_gem_request_get(target);
Chris Wilson1c255952010-09-26 11:03:27 +01003542 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003543
John Harrison54fb2412014-11-24 18:49:27 +00003544 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003545 return 0;
3546
Chris Wilsone95433c2016-10-28 13:58:27 +01003547 ret = i915_wait_request(target,
3548 I915_WAIT_INTERRUPTIBLE,
3549 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone8a261e2016-07-20 13:31:49 +01003550 i915_gem_request_put(target);
John Harrisonff865882014-11-24 18:49:28 +00003551
Chris Wilsone95433c2016-10-28 13:58:27 +01003552 return ret < 0 ? ret : 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003553}
3554
Chris Wilson058d88c2016-08-15 10:49:06 +01003555struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003556i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
3557 const struct i915_ggtt_view *view,
Chris Wilson91b2db62016-08-04 16:32:23 +01003558 u64 size,
Chris Wilson2ffffd02016-08-04 16:32:22 +01003559 u64 alignment,
3560 u64 flags)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003561{
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003562 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
3563 struct i915_address_space *vm = &dev_priv->ggtt.base;
Chris Wilson59bfa122016-08-04 16:32:31 +01003564 struct i915_vma *vma;
3565 int ret;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003566
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003567 lockdep_assert_held(&obj->base.dev->struct_mutex);
3568
Chris Wilson058d88c2016-08-15 10:49:06 +01003569 vma = i915_gem_obj_lookup_or_create_vma(obj, vm, view);
Chris Wilson59bfa122016-08-04 16:32:31 +01003570 if (IS_ERR(vma))
Chris Wilson058d88c2016-08-15 10:49:06 +01003571 return vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01003572
3573 if (i915_vma_misplaced(vma, size, alignment, flags)) {
3574 if (flags & PIN_NONBLOCK &&
3575 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma)))
Chris Wilson058d88c2016-08-15 10:49:06 +01003576 return ERR_PTR(-ENOSPC);
Chris Wilson59bfa122016-08-04 16:32:31 +01003577
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003578 if (flags & PIN_MAPPABLE) {
3579 u32 fence_size;
3580
3581 fence_size = i915_gem_get_ggtt_size(dev_priv, vma->size,
3582 i915_gem_object_get_tiling(obj));
3583 /* If the required space is larger than the available
3584 * aperture, we will not able to find a slot for the
3585 * object and unbinding the object now will be in
3586 * vain. Worse, doing so may cause us to ping-pong
3587 * the object in and out of the Global GTT and
3588 * waste a lot of cycles under the mutex.
3589 */
3590 if (fence_size > dev_priv->ggtt.mappable_end)
3591 return ERR_PTR(-E2BIG);
3592
3593 /* If NONBLOCK is set the caller is optimistically
3594 * trying to cache the full object within the mappable
3595 * aperture, and *must* have a fallback in place for
3596 * situations where we cannot bind the object. We
3597 * can be a little more lax here and use the fallback
3598 * more often to avoid costly migrations of ourselves
3599 * and other objects within the aperture.
3600 *
3601 * Half-the-aperture is used as a simple heuristic.
3602 * More interesting would to do search for a free
3603 * block prior to making the commitment to unbind.
3604 * That caters for the self-harm case, and with a
3605 * little more heuristics (e.g. NOFAULT, NOEVICT)
3606 * we could try to minimise harm to others.
3607 */
3608 if (flags & PIN_NONBLOCK &&
3609 fence_size > dev_priv->ggtt.mappable_end / 2)
3610 return ERR_PTR(-ENOSPC);
3611 }
3612
Chris Wilson59bfa122016-08-04 16:32:31 +01003613 WARN(i915_vma_is_pinned(vma),
3614 "bo is already pinned in ggtt with incorrect alignment:"
Chris Wilson05a20d02016-08-18 17:16:55 +01003615 " offset=%08x, req.alignment=%llx,"
3616 " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n",
3617 i915_ggtt_offset(vma), alignment,
Chris Wilson59bfa122016-08-04 16:32:31 +01003618 !!(flags & PIN_MAPPABLE),
Chris Wilson05a20d02016-08-18 17:16:55 +01003619 i915_vma_is_map_and_fenceable(vma));
Chris Wilson59bfa122016-08-04 16:32:31 +01003620 ret = i915_vma_unbind(vma);
3621 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +01003622 return ERR_PTR(ret);
Chris Wilson59bfa122016-08-04 16:32:31 +01003623 }
3624
Chris Wilson058d88c2016-08-15 10:49:06 +01003625 ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL);
3626 if (ret)
3627 return ERR_PTR(ret);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003628
Chris Wilson058d88c2016-08-15 10:49:06 +01003629 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003630}
3631
Chris Wilsonedf6b762016-08-09 09:23:33 +01003632static __always_inline unsigned int __busy_read_flag(unsigned int id)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003633{
3634 /* Note that we could alias engines in the execbuf API, but
3635 * that would be very unwise as it prevents userspace from
3636 * fine control over engine selection. Ahem.
3637 *
3638 * This should be something like EXEC_MAX_ENGINE instead of
3639 * I915_NUM_ENGINES.
3640 */
3641 BUILD_BUG_ON(I915_NUM_ENGINES > 16);
3642 return 0x10000 << id;
3643}
3644
3645static __always_inline unsigned int __busy_write_id(unsigned int id)
3646{
Chris Wilson70cb4722016-08-09 18:08:25 +01003647 /* The uABI guarantees an active writer is also amongst the read
3648 * engines. This would be true if we accessed the activity tracking
3649 * under the lock, but as we perform the lookup of the object and
3650 * its activity locklessly we can not guarantee that the last_write
3651 * being active implies that we have set the same engine flag from
3652 * last_read - hence we always set both read and write busy for
3653 * last_write.
3654 */
3655 return id | __busy_read_flag(id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003656}
3657
Chris Wilsonedf6b762016-08-09 09:23:33 +01003658static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003659__busy_set_if_active(const struct dma_fence *fence,
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003660 unsigned int (*flag)(unsigned int id))
3661{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003662 struct drm_i915_gem_request *rq;
Chris Wilson12555012016-08-16 09:50:40 +01003663
Chris Wilsond07f0e52016-10-28 13:58:44 +01003664 /* We have to check the current hw status of the fence as the uABI
3665 * guarantees forward progress. We could rely on the idle worker
3666 * to eventually flush us, but to minimise latency just ask the
3667 * hardware.
3668 *
3669 * Note we only report on the status of native fences.
3670 */
3671 if (!dma_fence_is_i915(fence))
Chris Wilson12555012016-08-16 09:50:40 +01003672 return 0;
3673
Chris Wilsond07f0e52016-10-28 13:58:44 +01003674 /* opencode to_request() in order to avoid const warnings */
3675 rq = container_of(fence, struct drm_i915_gem_request, fence);
3676 if (i915_gem_request_completed(rq))
3677 return 0;
3678
3679 return flag(rq->engine->exec_id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003680}
3681
Chris Wilsonedf6b762016-08-09 09:23:33 +01003682static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003683busy_check_reader(const struct dma_fence *fence)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003684{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003685 return __busy_set_if_active(fence, __busy_read_flag);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003686}
3687
Chris Wilsonedf6b762016-08-09 09:23:33 +01003688static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003689busy_check_writer(const struct dma_fence *fence)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003690{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003691 if (!fence)
3692 return 0;
3693
3694 return __busy_set_if_active(fence, __busy_write_id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003695}
3696
Eric Anholt673a3942008-07-30 12:06:12 -07003697int
Eric Anholt673a3942008-07-30 12:06:12 -07003698i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003699 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003700{
3701 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003702 struct drm_i915_gem_object *obj;
Chris Wilsond07f0e52016-10-28 13:58:44 +01003703 struct reservation_object_list *list;
3704 unsigned int seq;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003705 int err;
Eric Anholt673a3942008-07-30 12:06:12 -07003706
Chris Wilsond07f0e52016-10-28 13:58:44 +01003707 err = -ENOENT;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003708 rcu_read_lock();
3709 obj = i915_gem_object_lookup_rcu(file, args->handle);
Chris Wilsond07f0e52016-10-28 13:58:44 +01003710 if (!obj)
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003711 goto out;
Chris Wilsond07f0e52016-10-28 13:58:44 +01003712
3713 /* A discrepancy here is that we do not report the status of
3714 * non-i915 fences, i.e. even though we may report the object as idle,
3715 * a call to set-domain may still stall waiting for foreign rendering.
3716 * This also means that wait-ioctl may report an object as busy,
3717 * where busy-ioctl considers it idle.
3718 *
3719 * We trade the ability to warn of foreign fences to report on which
3720 * i915 engines are active for the object.
3721 *
3722 * Alternatively, we can trade that extra information on read/write
3723 * activity with
3724 * args->busy =
3725 * !reservation_object_test_signaled_rcu(obj->resv, true);
3726 * to report the overall busyness. This is what the wait-ioctl does.
3727 *
3728 */
3729retry:
3730 seq = raw_read_seqcount(&obj->resv->seq);
3731
3732 /* Translate the exclusive fence to the READ *and* WRITE engine */
3733 args->busy = busy_check_writer(rcu_dereference(obj->resv->fence_excl));
3734
3735 /* Translate shared fences to READ set of engines */
3736 list = rcu_dereference(obj->resv->fence);
3737 if (list) {
3738 unsigned int shared_count = list->shared_count, i;
3739
3740 for (i = 0; i < shared_count; ++i) {
3741 struct dma_fence *fence =
3742 rcu_dereference(list->shared[i]);
3743
3744 args->busy |= busy_check_reader(fence);
3745 }
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003746 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003747
Chris Wilsond07f0e52016-10-28 13:58:44 +01003748 if (args->busy && read_seqcount_retry(&obj->resv->seq, seq))
3749 goto retry;
Chris Wilson426960b2016-01-15 16:51:46 +00003750
Chris Wilsond07f0e52016-10-28 13:58:44 +01003751 err = 0;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003752out:
3753 rcu_read_unlock();
3754 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07003755}
3756
3757int
3758i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3759 struct drm_file *file_priv)
3760{
Akshay Joshi0206e352011-08-16 15:34:10 -04003761 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003762}
3763
Chris Wilson3ef94da2009-09-14 16:50:29 +01003764int
3765i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3766 struct drm_file *file_priv)
3767{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003768 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson3ef94da2009-09-14 16:50:29 +01003769 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003770 struct drm_i915_gem_object *obj;
Chris Wilson1233e2d2016-10-28 13:58:37 +01003771 int err;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003772
3773 switch (args->madv) {
3774 case I915_MADV_DONTNEED:
3775 case I915_MADV_WILLNEED:
3776 break;
3777 default:
3778 return -EINVAL;
3779 }
3780
Chris Wilson03ac0642016-07-20 13:31:51 +01003781 obj = i915_gem_object_lookup(file_priv, args->handle);
Chris Wilson1233e2d2016-10-28 13:58:37 +01003782 if (!obj)
3783 return -ENOENT;
3784
3785 err = mutex_lock_interruptible(&obj->mm.lock);
3786 if (err)
3787 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003788
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003789 if (obj->mm.pages &&
Chris Wilson3e510a82016-08-05 10:14:23 +01003790 i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01003791 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003792 if (obj->mm.madv == I915_MADV_WILLNEED) {
3793 GEM_BUG_ON(!obj->mm.quirked);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003794 __i915_gem_object_unpin_pages(obj);
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003795 obj->mm.quirked = false;
3796 }
3797 if (args->madv == I915_MADV_WILLNEED) {
Chris Wilson2c3a3f42016-11-04 10:30:01 +00003798 GEM_BUG_ON(obj->mm.quirked);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003799 __i915_gem_object_pin_pages(obj);
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003800 obj->mm.quirked = true;
3801 }
Daniel Vetter656bfa32014-11-20 09:26:30 +01003802 }
3803
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003804 if (obj->mm.madv != __I915_MADV_PURGED)
3805 obj->mm.madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003806
Chris Wilson6c085a72012-08-20 11:40:46 +02003807 /* if the object is no longer attached, discard its backing storage */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003808 if (obj->mm.madv == I915_MADV_DONTNEED && !obj->mm.pages)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003809 i915_gem_object_truncate(obj);
3810
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003811 args->retained = obj->mm.madv != __I915_MADV_PURGED;
Chris Wilson1233e2d2016-10-28 13:58:37 +01003812 mutex_unlock(&obj->mm.lock);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003813
Chris Wilson1233e2d2016-10-28 13:58:37 +01003814out:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003815 i915_gem_object_put(obj);
Chris Wilson1233e2d2016-10-28 13:58:37 +01003816 return err;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003817}
3818
Chris Wilson37e680a2012-06-07 15:38:42 +01003819void i915_gem_object_init(struct drm_i915_gem_object *obj,
3820 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003821{
Chris Wilson1233e2d2016-10-28 13:58:37 +01003822 mutex_init(&obj->mm.lock);
3823
Joonas Lahtinen56cea322016-11-02 12:16:04 +02003824 INIT_LIST_HEAD(&obj->global_link);
Chris Wilson275f0392016-10-24 13:42:14 +01003825 INIT_LIST_HEAD(&obj->userfault_link);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02003826 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07003827 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01003828 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003829
Chris Wilson37e680a2012-06-07 15:38:42 +01003830 obj->ops = ops;
3831
Chris Wilsond07f0e52016-10-28 13:58:44 +01003832 reservation_object_init(&obj->__builtin_resv);
3833 obj->resv = &obj->__builtin_resv;
3834
Chris Wilson50349242016-08-18 17:17:04 +01003835 obj->frontbuffer_ggtt_origin = ORIGIN_GTT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003836
3837 obj->mm.madv = I915_MADV_WILLNEED;
3838 INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN);
3839 mutex_init(&obj->mm.get_page.lock);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003840
Dave Gordonf19ec8c2016-07-04 11:34:37 +01003841 i915_gem_info_add_obj(to_i915(obj->base.dev), obj->base.size);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003842}
3843
Chris Wilson37e680a2012-06-07 15:38:42 +01003844static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Tvrtko Ursulin3599a912016-11-01 14:44:10 +00003845 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE |
3846 I915_GEM_OBJECT_IS_SHRINKABLE,
Chris Wilson37e680a2012-06-07 15:38:42 +01003847 .get_pages = i915_gem_object_get_pages_gtt,
3848 .put_pages = i915_gem_object_put_pages_gtt,
3849};
3850
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01003851/* Note we don't consider signbits :| */
3852#define overflows_type(x, T) \
3853 (sizeof(x) > sizeof(T) && (x) >> (sizeof(T) * BITS_PER_BYTE))
3854
3855struct drm_i915_gem_object *
3856i915_gem_object_create(struct drm_device *dev, u64 size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003857{
Ville Syrjäläa26e5232016-10-31 22:37:19 +02003858 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00003859 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003860 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01003861 gfp_t mask;
Chris Wilsonfe3db792016-04-25 13:32:13 +01003862 int ret;
Daniel Vetterc397b902010-04-09 19:05:07 +00003863
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01003864 /* There is a prevalence of the assumption that we fit the object's
3865 * page count inside a 32bit _signed_ variable. Let's document this and
3866 * catch if we ever need to fix it. In the meantime, if you do spot
3867 * such a local variable, please consider fixing!
3868 */
3869 if (WARN_ON(size >> PAGE_SHIFT > INT_MAX))
3870 return ERR_PTR(-E2BIG);
3871
3872 if (overflows_type(size, obj->base.size))
3873 return ERR_PTR(-E2BIG);
3874
Chris Wilson42dcedd2012-11-15 11:32:30 +00003875 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00003876 if (obj == NULL)
Chris Wilsonfe3db792016-04-25 13:32:13 +01003877 return ERR_PTR(-ENOMEM);
Daniel Vetterc397b902010-04-09 19:05:07 +00003878
Chris Wilsonfe3db792016-04-25 13:32:13 +01003879 ret = drm_gem_object_init(dev, &obj->base, size);
3880 if (ret)
3881 goto fail;
Daniel Vetterc397b902010-04-09 19:05:07 +00003882
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003883 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
Ville Syrjäläa26e5232016-10-31 22:37:19 +02003884 if (IS_CRESTLINE(dev_priv) || IS_BROADWATER(dev_priv)) {
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003885 /* 965gm cannot relocate objects above 4GiB. */
3886 mask &= ~__GFP_HIGHMEM;
3887 mask |= __GFP_DMA32;
3888 }
3889
Al Viro93c76a32015-12-04 23:45:44 -05003890 mapping = obj->base.filp->f_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003891 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07003892
Chris Wilson37e680a2012-06-07 15:38:42 +01003893 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01003894
Daniel Vetterc397b902010-04-09 19:05:07 +00003895 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3896 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3897
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00003898 if (HAS_LLC(dev_priv)) {
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003899 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003900 * cache) for about a 10% performance improvement
3901 * compared to uncached. Graphics requests other than
3902 * display scanout are coherent with the CPU in
3903 * accessing this cache. This means in this mode we
3904 * don't need to clflush on the CPU side, and on the
3905 * GPU side we only need to flush internal caches to
3906 * get data visible to the CPU.
3907 *
3908 * However, we maintain the display planes as UC, and so
3909 * need to rebind when first used as such.
3910 */
3911 obj->cache_level = I915_CACHE_LLC;
3912 } else
3913 obj->cache_level = I915_CACHE_NONE;
3914
Daniel Vetterd861e332013-07-24 23:25:03 +02003915 trace_i915_gem_object_create(obj);
3916
Chris Wilson05394f32010-11-08 19:18:58 +00003917 return obj;
Chris Wilsonfe3db792016-04-25 13:32:13 +01003918
3919fail:
3920 i915_gem_object_free(obj);
Chris Wilsonfe3db792016-04-25 13:32:13 +01003921 return ERR_PTR(ret);
Daniel Vetterac52bc52010-04-09 19:05:06 +00003922}
3923
Chris Wilson340fbd82014-05-22 09:16:52 +01003924static bool discard_backing_storage(struct drm_i915_gem_object *obj)
3925{
3926 /* If we are the last user of the backing storage (be it shmemfs
3927 * pages or stolen etc), we know that the pages are going to be
3928 * immediately released. In this case, we can then skip copying
3929 * back the contents from the GPU.
3930 */
3931
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003932 if (obj->mm.madv != I915_MADV_WILLNEED)
Chris Wilson340fbd82014-05-22 09:16:52 +01003933 return false;
3934
3935 if (obj->base.filp == NULL)
3936 return true;
3937
3938 /* At first glance, this looks racy, but then again so would be
3939 * userspace racing mmap against close. However, the first external
3940 * reference to the filp can only be obtained through the
3941 * i915_gem_mmap_ioctl() which safeguards us against the user
3942 * acquiring such a reference whilst we are in the middle of
3943 * freeing the object.
3944 */
3945 return atomic_long_read(&obj->base.filp->f_count) == 1;
3946}
3947
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003948static void __i915_gem_free_objects(struct drm_i915_private *i915,
3949 struct llist_node *freed)
Chris Wilsonbe726152010-07-23 23:18:50 +01003950{
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003951 struct drm_i915_gem_object *obj, *on;
Chris Wilsonbe726152010-07-23 23:18:50 +01003952
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003953 mutex_lock(&i915->drm.struct_mutex);
3954 intel_runtime_pm_get(i915);
3955 llist_for_each_entry(obj, freed, freed) {
3956 struct i915_vma *vma, *vn;
Paulo Zanonif65c9162013-11-27 18:20:34 -02003957
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003958 trace_i915_gem_object_destroy(obj);
3959
3960 GEM_BUG_ON(i915_gem_object_is_active(obj));
3961 list_for_each_entry_safe(vma, vn,
3962 &obj->vma_list, obj_link) {
3963 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
3964 GEM_BUG_ON(i915_vma_is_active(vma));
3965 vma->flags &= ~I915_VMA_PIN_MASK;
3966 i915_vma_close(vma);
3967 }
Chris Wilsondb6c2b42016-11-01 11:54:00 +00003968 GEM_BUG_ON(!list_empty(&obj->vma_list));
3969 GEM_BUG_ON(!RB_EMPTY_ROOT(&obj->vma_tree));
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003970
Joonas Lahtinen56cea322016-11-02 12:16:04 +02003971 list_del(&obj->global_link);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003972 }
3973 intel_runtime_pm_put(i915);
3974 mutex_unlock(&i915->drm.struct_mutex);
3975
3976 llist_for_each_entry_safe(obj, on, freed, freed) {
3977 GEM_BUG_ON(obj->bind_count);
3978 GEM_BUG_ON(atomic_read(&obj->frontbuffer_bits));
3979
3980 if (obj->ops->release)
3981 obj->ops->release(obj);
3982
3983 if (WARN_ON(i915_gem_object_has_pinned_pages(obj)))
3984 atomic_set(&obj->mm.pages_pin_count, 0);
Chris Wilson548625e2016-11-01 12:11:34 +00003985 __i915_gem_object_put_pages(obj, I915_MM_NORMAL);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003986 GEM_BUG_ON(obj->mm.pages);
3987
3988 if (obj->base.import_attach)
3989 drm_prime_gem_destroy(&obj->base, NULL);
3990
Chris Wilsond07f0e52016-10-28 13:58:44 +01003991 reservation_object_fini(&obj->__builtin_resv);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003992 drm_gem_object_release(&obj->base);
3993 i915_gem_info_remove_obj(i915, obj->base.size);
3994
3995 kfree(obj->bit_17);
3996 i915_gem_object_free(obj);
3997 }
3998}
3999
4000static void i915_gem_flush_free_objects(struct drm_i915_private *i915)
4001{
4002 struct llist_node *freed;
4003
4004 freed = llist_del_all(&i915->mm.free_list);
4005 if (unlikely(freed))
4006 __i915_gem_free_objects(i915, freed);
4007}
4008
4009static void __i915_gem_free_work(struct work_struct *work)
4010{
4011 struct drm_i915_private *i915 =
4012 container_of(work, struct drm_i915_private, mm.free_work);
4013 struct llist_node *freed;
Chris Wilson26e12f82011-03-20 11:20:19 +00004014
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004015 /* All file-owned VMA should have been released by this point through
4016 * i915_gem_close_object(), or earlier by i915_gem_context_close().
4017 * However, the object may also be bound into the global GTT (e.g.
4018 * older GPUs without per-process support, or for direct access through
4019 * the GTT either for the user or for scanout). Those VMA still need to
4020 * unbound now.
4021 */
Chris Wilson1488fc02012-04-24 15:47:31 +01004022
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004023 while ((freed = llist_del_all(&i915->mm.free_list)))
4024 __i915_gem_free_objects(i915, freed);
4025}
4026
4027static void __i915_gem_free_object_rcu(struct rcu_head *head)
4028{
4029 struct drm_i915_gem_object *obj =
4030 container_of(head, typeof(*obj), rcu);
4031 struct drm_i915_private *i915 = to_i915(obj->base.dev);
4032
4033 /* We can't simply use call_rcu() from i915_gem_free_object()
4034 * as we need to block whilst unbinding, and the call_rcu
4035 * task may be called from softirq context. So we take a
4036 * detour through a worker.
4037 */
4038 if (llist_add(&obj->freed, &i915->mm.free_list))
4039 schedule_work(&i915->mm.free_work);
4040}
4041
4042void i915_gem_free_object(struct drm_gem_object *gem_obj)
4043{
4044 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
4045
Chris Wilsonbc0629a2016-11-01 10:03:17 +00004046 if (obj->mm.quirked)
4047 __i915_gem_object_unpin_pages(obj);
4048
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004049 if (discard_backing_storage(obj))
4050 obj->mm.madv = I915_MADV_DONTNEED;
Daniel Vettera071fa02014-06-18 23:28:09 +02004051
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004052 /* Before we free the object, make sure any pure RCU-only
4053 * read-side critical sections are complete, e.g.
4054 * i915_gem_busy_ioctl(). For the corresponding synchronized
4055 * lookup see i915_gem_object_lookup_rcu().
4056 */
4057 call_rcu(&obj->rcu, __i915_gem_free_object_rcu);
Chris Wilsonbe726152010-07-23 23:18:50 +01004058}
4059
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01004060void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj)
4061{
4062 lockdep_assert_held(&obj->base.dev->struct_mutex);
4063
4064 GEM_BUG_ON(i915_gem_object_has_active_reference(obj));
4065 if (i915_gem_object_is_active(obj))
4066 i915_gem_object_set_active_reference(obj);
4067 else
4068 i915_gem_object_put(obj);
4069}
4070
Chris Wilson3033aca2016-10-28 13:58:47 +01004071static void assert_kernel_context_is_current(struct drm_i915_private *dev_priv)
4072{
4073 struct intel_engine_cs *engine;
4074 enum intel_engine_id id;
4075
4076 for_each_engine(engine, dev_priv, id)
4077 GEM_BUG_ON(engine->last_context != dev_priv->kernel_context);
4078}
4079
Chris Wilsondcff85c2016-08-05 10:14:11 +01004080int i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004081{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004082 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsondcff85c2016-08-05 10:14:11 +01004083 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004084
Chris Wilson54b4f682016-07-21 21:16:19 +01004085 intel_suspend_gt_powersave(dev_priv);
4086
Chris Wilson45c5f202013-10-16 11:50:01 +01004087 mutex_lock(&dev->struct_mutex);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004088
4089 /* We have to flush all the executing contexts to main memory so
4090 * that they can saved in the hibernation image. To ensure the last
4091 * context image is coherent, we have to switch away from it. That
4092 * leaves the dev_priv->kernel_context still active when
4093 * we actually suspend, and its image in memory may not match the GPU
4094 * state. Fortunately, the kernel_context is disposable and we do
4095 * not rely on its state.
4096 */
4097 ret = i915_gem_switch_to_kernel_context(dev_priv);
4098 if (ret)
4099 goto err;
4100
Chris Wilson22dd3bb2016-09-09 14:11:50 +01004101 ret = i915_gem_wait_for_idle(dev_priv,
4102 I915_WAIT_INTERRUPTIBLE |
4103 I915_WAIT_LOCKED);
Chris Wilsonf7403342013-09-13 23:57:04 +01004104 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004105 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004106
Chris Wilsonc0336662016-05-06 15:40:21 +01004107 i915_gem_retire_requests(dev_priv);
Chris Wilson28176ef2016-10-28 13:58:56 +01004108 GEM_BUG_ON(dev_priv->gt.active_requests);
Eric Anholt673a3942008-07-30 12:06:12 -07004109
Chris Wilson3033aca2016-10-28 13:58:47 +01004110 assert_kernel_context_is_current(dev_priv);
Chris Wilsonb2e862d2016-04-28 09:56:41 +01004111 i915_gem_context_lost(dev_priv);
Chris Wilson45c5f202013-10-16 11:50:01 +01004112 mutex_unlock(&dev->struct_mutex);
4113
Chris Wilson737b1502015-01-26 18:03:03 +02004114 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson67d97da2016-07-04 08:08:31 +01004115 cancel_delayed_work_sync(&dev_priv->gt.retire_work);
4116 flush_delayed_work(&dev_priv->gt.idle_work);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004117 flush_work(&dev_priv->mm.free_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004118
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004119 /* Assert that we sucessfully flushed all the work and
4120 * reset the GPU back to its idle, low power state.
4121 */
Chris Wilson67d97da2016-07-04 08:08:31 +01004122 WARN_ON(dev_priv->gt.awake);
Imre Deak31ab49a2016-11-07 11:20:05 +02004123 WARN_ON(!intel_execlists_idle(dev_priv));
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004124
Imre Deak1c777c52016-10-12 17:46:37 +03004125 /*
4126 * Neither the BIOS, ourselves or any other kernel
4127 * expects the system to be in execlists mode on startup,
4128 * so we need to reset the GPU back to legacy mode. And the only
4129 * known way to disable logical contexts is through a GPU reset.
4130 *
4131 * So in order to leave the system in a known default configuration,
4132 * always reset the GPU upon unload and suspend. Afterwards we then
4133 * clean up the GEM state tracking, flushing off the requests and
4134 * leaving the system in a known idle state.
4135 *
4136 * Note that is of the upmost importance that the GPU is idle and
4137 * all stray writes are flushed *before* we dismantle the backing
4138 * storage for the pinned objects.
4139 *
4140 * However, since we are uncertain that resetting the GPU on older
4141 * machines is a good idea, we don't - just in case it leaves the
4142 * machine in an unusable condition.
4143 */
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00004144 if (HAS_HW_CONTEXTS(dev_priv)) {
Imre Deak1c777c52016-10-12 17:46:37 +03004145 int reset = intel_gpu_reset(dev_priv, ALL_ENGINES);
4146 WARN_ON(reset && reset != -ENODEV);
4147 }
4148
Eric Anholt673a3942008-07-30 12:06:12 -07004149 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004150
4151err:
4152 mutex_unlock(&dev->struct_mutex);
4153 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004154}
4155
Chris Wilson5ab57c72016-07-15 14:56:20 +01004156void i915_gem_resume(struct drm_device *dev)
4157{
4158 struct drm_i915_private *dev_priv = to_i915(dev);
4159
Imre Deak31ab49a2016-11-07 11:20:05 +02004160 WARN_ON(dev_priv->gt.awake);
4161
Chris Wilson5ab57c72016-07-15 14:56:20 +01004162 mutex_lock(&dev->struct_mutex);
4163 i915_gem_restore_gtt_mappings(dev);
4164
4165 /* As we didn't flush the kernel context before suspend, we cannot
4166 * guarantee that the context image is complete. So let's just reset
4167 * it and start again.
4168 */
Chris Wilson821ed7d2016-09-09 14:11:53 +01004169 dev_priv->gt.resume(dev_priv);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004170
4171 mutex_unlock(&dev->struct_mutex);
4172}
4173
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004174void i915_gem_init_swizzling(struct drm_device *dev)
4175{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004176 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004177
Daniel Vetter11782b02012-01-31 16:47:55 +01004178 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004179 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4180 return;
4181
4182 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4183 DISP_TILE_SURFACE_SWIZZLING);
4184
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004185 if (IS_GEN5(dev_priv))
Daniel Vetter11782b02012-01-31 16:47:55 +01004186 return;
4187
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004188 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004189 if (IS_GEN6(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004190 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004191 else if (IS_GEN7(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004192 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004193 else if (IS_GEN8(dev_priv))
Ben Widawsky31a53362013-11-02 21:07:04 -07004194 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004195 else
4196 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004197}
Daniel Vettere21af882012-02-09 20:53:27 +01004198
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004199static void init_unused_ring(struct drm_i915_private *dev_priv, u32 base)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004200{
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004201 I915_WRITE(RING_CTL(base), 0);
4202 I915_WRITE(RING_HEAD(base), 0);
4203 I915_WRITE(RING_TAIL(base), 0);
4204 I915_WRITE(RING_START(base), 0);
4205}
4206
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004207static void init_unused_rings(struct drm_i915_private *dev_priv)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004208{
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004209 if (IS_I830(dev_priv)) {
4210 init_unused_ring(dev_priv, PRB1_BASE);
4211 init_unused_ring(dev_priv, SRB0_BASE);
4212 init_unused_ring(dev_priv, SRB1_BASE);
4213 init_unused_ring(dev_priv, SRB2_BASE);
4214 init_unused_ring(dev_priv, SRB3_BASE);
4215 } else if (IS_GEN2(dev_priv)) {
4216 init_unused_ring(dev_priv, SRB0_BASE);
4217 init_unused_ring(dev_priv, SRB1_BASE);
4218 } else if (IS_GEN3(dev_priv)) {
4219 init_unused_ring(dev_priv, PRB1_BASE);
4220 init_unused_ring(dev_priv, PRB2_BASE);
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004221 }
4222}
4223
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004224int
4225i915_gem_init_hw(struct drm_device *dev)
4226{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004227 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004228 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304229 enum intel_engine_id id;
Chris Wilsond200cda2016-04-28 09:56:44 +01004230 int ret;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004231
Chris Wilsonde867c22016-10-25 13:16:02 +01004232 dev_priv->gt.last_init_time = ktime_get();
4233
Chris Wilson5e4f5182015-02-13 14:35:59 +00004234 /* Double layer security blanket, see i915_gem_init() */
4235 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4236
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00004237 if (HAS_EDRAM(dev_priv) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004238 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004239
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01004240 if (IS_HASWELL(dev_priv))
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004241 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ?
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004242 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004243
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004244 if (HAS_PCH_NOP(dev_priv)) {
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004245 if (IS_IVYBRIDGE(dev_priv)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004246 u32 temp = I915_READ(GEN7_MSG_CTL);
4247 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4248 I915_WRITE(GEN7_MSG_CTL, temp);
4249 } else if (INTEL_INFO(dev)->gen >= 7) {
4250 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4251 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4252 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4253 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004254 }
4255
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004256 i915_gem_init_swizzling(dev);
4257
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004258 /*
4259 * At least 830 can leave some of the unused rings
4260 * "active" (ie. head != tail) after resume which
4261 * will prevent c3 entry. Makes sure all unused rings
4262 * are totally idle.
4263 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004264 init_unused_rings(dev_priv);
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004265
Dave Gordoned54c1a2016-01-19 19:02:54 +00004266 BUG_ON(!dev_priv->kernel_context);
John Harrison90638cc2015-05-29 17:43:37 +01004267
John Harrison4ad2fd82015-06-18 13:11:20 +01004268 ret = i915_ppgtt_init_hw(dev);
4269 if (ret) {
4270 DRM_ERROR("PPGTT enable HW failed %d\n", ret);
4271 goto out;
4272 }
4273
4274 /* Need to do basic initialisation of all rings first: */
Akash Goel3b3f1652016-10-13 22:44:48 +05304275 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004276 ret = engine->init_hw(engine);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004277 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004278 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004279 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004280
Peter Antoine0ccdacf2016-04-13 15:03:25 +01004281 intel_mocs_init_l3cc_table(dev);
4282
Alex Dai33a732f2015-08-12 15:43:36 +01004283 /* We can't enable contexts until all firmware is loaded */
Dave Gordone556f7c2016-06-07 09:14:49 +01004284 ret = intel_guc_setup(dev);
4285 if (ret)
4286 goto out;
Alex Dai33a732f2015-08-12 15:43:36 +01004287
Chris Wilson5e4f5182015-02-13 14:35:59 +00004288out:
4289 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004290 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004291}
4292
Chris Wilson39df9192016-07-20 13:31:57 +01004293bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value)
4294{
4295 if (INTEL_INFO(dev_priv)->gen < 6)
4296 return false;
4297
4298 /* TODO: make semaphores and Execlists play nicely together */
4299 if (i915.enable_execlists)
4300 return false;
4301
4302 if (value >= 0)
4303 return value;
4304
4305#ifdef CONFIG_INTEL_IOMMU
4306 /* Enable semaphores on SNB when IO remapping is off */
4307 if (INTEL_INFO(dev_priv)->gen == 6 && intel_iommu_gfx_mapped)
4308 return false;
4309#endif
4310
4311 return true;
4312}
4313
Chris Wilson1070a422012-04-24 15:47:41 +01004314int i915_gem_init(struct drm_device *dev)
4315{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004316 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson1070a422012-04-24 15:47:41 +01004317 int ret;
4318
Chris Wilson1070a422012-04-24 15:47:41 +01004319 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004320
Oscar Mateoa83014d2014-07-24 17:04:21 +01004321 if (!i915.enable_execlists) {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004322 dev_priv->gt.resume = intel_legacy_submission_resume;
Chris Wilson7e37f882016-08-02 22:50:21 +01004323 dev_priv->gt.cleanup_engine = intel_engine_cleanup;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004324 } else {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004325 dev_priv->gt.resume = intel_lr_context_resume;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004326 dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004327 }
4328
Chris Wilson5e4f5182015-02-13 14:35:59 +00004329 /* This is just a security blanket to placate dragons.
4330 * On some systems, we very sporadically observe that the first TLBs
4331 * used by the CS may be stale, despite us poking the TLB reset. If
4332 * we hold the forcewake during initialisation these problems
4333 * just magically go away.
4334 */
4335 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4336
Chris Wilson72778cb2016-05-19 16:17:16 +01004337 i915_gem_init_userptr(dev_priv);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01004338
4339 ret = i915_gem_init_ggtt(dev_priv);
4340 if (ret)
4341 goto out_unlock;
Jesse Barnesd62b4892013-03-08 10:45:53 -08004342
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004343 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004344 if (ret)
4345 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004346
Tvrtko Ursulin8b3e2d32016-07-13 16:03:37 +01004347 ret = intel_engines_init(dev);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004348 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004349 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004350
4351 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004352 if (ret == -EIO) {
Chris Wilson7e21d642016-07-27 09:07:29 +01004353 /* Allow engine initialisation to fail by marking the GPU as
Chris Wilson60990322014-04-09 09:19:42 +01004354 * wedged. But we only want to do this where the GPU is angry,
4355 * for all other failure, such as an allocation failure, bail.
4356 */
4357 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
Chris Wilson821ed7d2016-09-09 14:11:53 +01004358 i915_gem_set_wedged(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004359 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004360 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004361
4362out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00004363 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01004364 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004365
Chris Wilson60990322014-04-09 09:19:42 +01004366 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004367}
4368
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004369void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004370i915_gem_cleanup_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004371{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004372 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004373 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304374 enum intel_engine_id id;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004375
Akash Goel3b3f1652016-10-13 22:44:48 +05304376 for_each_engine(engine, dev_priv, id)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004377 dev_priv->gt.cleanup_engine(engine);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004378}
4379
Eric Anholt673a3942008-07-30 12:06:12 -07004380void
Imre Deak40ae4e12016-03-16 14:54:03 +02004381i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
4382{
Chris Wilson91c8a322016-07-05 10:40:23 +01004383 struct drm_device *dev = &dev_priv->drm;
Chris Wilson49ef5292016-08-18 17:17:00 +01004384 int i;
Imre Deak40ae4e12016-03-16 14:54:03 +02004385
4386 if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) &&
4387 !IS_CHERRYVIEW(dev_priv))
4388 dev_priv->num_fence_regs = 32;
4389 else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) ||
4390 IS_I945GM(dev_priv) || IS_G33(dev_priv))
4391 dev_priv->num_fence_regs = 16;
4392 else
4393 dev_priv->num_fence_regs = 8;
4394
Chris Wilsonc0336662016-05-06 15:40:21 +01004395 if (intel_vgpu_active(dev_priv))
Imre Deak40ae4e12016-03-16 14:54:03 +02004396 dev_priv->num_fence_regs =
4397 I915_READ(vgtif_reg(avail_rs.fence_num));
4398
4399 /* Initialize fence registers to zero */
Chris Wilson49ef5292016-08-18 17:17:00 +01004400 for (i = 0; i < dev_priv->num_fence_regs; i++) {
4401 struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i];
4402
4403 fence->i915 = dev_priv;
4404 fence->id = i;
4405 list_add_tail(&fence->link, &dev_priv->mm.fence_list);
4406 }
Imre Deak40ae4e12016-03-16 14:54:03 +02004407 i915_gem_restore_fences(dev);
4408
4409 i915_gem_detect_bit_6_swizzle(dev);
4410}
4411
Chris Wilson73cb9702016-10-28 13:58:46 +01004412int
Imre Deakd64aa092016-01-19 15:26:29 +02004413i915_gem_load_init(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004414{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004415 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004416 int err = -ENOMEM;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004417
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004418 dev_priv->objects = KMEM_CACHE(drm_i915_gem_object, SLAB_HWCACHE_ALIGN);
4419 if (!dev_priv->objects)
Chris Wilson73cb9702016-10-28 13:58:46 +01004420 goto err_out;
Chris Wilson73cb9702016-10-28 13:58:46 +01004421
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004422 dev_priv->vmas = KMEM_CACHE(i915_vma, SLAB_HWCACHE_ALIGN);
4423 if (!dev_priv->vmas)
Chris Wilson73cb9702016-10-28 13:58:46 +01004424 goto err_objects;
Chris Wilson73cb9702016-10-28 13:58:46 +01004425
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004426 dev_priv->requests = KMEM_CACHE(drm_i915_gem_request,
4427 SLAB_HWCACHE_ALIGN |
4428 SLAB_RECLAIM_ACCOUNT |
4429 SLAB_DESTROY_BY_RCU);
4430 if (!dev_priv->requests)
Chris Wilson73cb9702016-10-28 13:58:46 +01004431 goto err_vmas;
Chris Wilson73cb9702016-10-28 13:58:46 +01004432
4433 mutex_lock(&dev_priv->drm.struct_mutex);
4434 INIT_LIST_HEAD(&dev_priv->gt.timelines);
4435 err = i915_gem_timeline_init(dev_priv,
4436 &dev_priv->gt.global_timeline,
4437 "[execution]");
4438 mutex_unlock(&dev_priv->drm.struct_mutex);
4439 if (err)
4440 goto err_requests;
Eric Anholt673a3942008-07-30 12:06:12 -07004441
Ben Widawskya33afea2013-09-17 21:12:45 -07004442 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004443 INIT_WORK(&dev_priv->mm.free_work, __i915_gem_free_work);
4444 init_llist_head(&dev_priv->mm.free_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004445 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4446 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004447 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004448 INIT_LIST_HEAD(&dev_priv->mm.userfault_list);
Chris Wilson67d97da2016-07-04 08:08:31 +01004449 INIT_DELAYED_WORK(&dev_priv->gt.retire_work,
Eric Anholt673a3942008-07-30 12:06:12 -07004450 i915_gem_retire_work_handler);
Chris Wilson67d97da2016-07-04 08:08:31 +01004451 INIT_DELAYED_WORK(&dev_priv->gt.idle_work,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004452 i915_gem_idle_work_handler);
Chris Wilson1f15b762016-07-01 17:23:14 +01004453 init_waitqueue_head(&dev_priv->gpu_error.wait_queue);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004454 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004455
Chris Wilson72bfa192010-12-19 11:42:05 +00004456 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4457
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004458 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004459
Chris Wilsonce453d82011-02-21 14:43:56 +00004460 dev_priv->mm.interruptible = true;
4461
Joonas Lahtinen6f633402016-09-01 14:58:21 +03004462 atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0);
4463
Chris Wilsonb5add952016-08-04 16:32:36 +01004464 spin_lock_init(&dev_priv->fb_tracking.lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01004465
4466 return 0;
4467
4468err_requests:
4469 kmem_cache_destroy(dev_priv->requests);
4470err_vmas:
4471 kmem_cache_destroy(dev_priv->vmas);
4472err_objects:
4473 kmem_cache_destroy(dev_priv->objects);
4474err_out:
4475 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07004476}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004477
Imre Deakd64aa092016-01-19 15:26:29 +02004478void i915_gem_load_cleanup(struct drm_device *dev)
4479{
4480 struct drm_i915_private *dev_priv = to_i915(dev);
4481
Chris Wilson7d5d59e2016-11-01 08:48:41 +00004482 WARN_ON(!llist_empty(&dev_priv->mm.free_list));
4483
Imre Deakd64aa092016-01-19 15:26:29 +02004484 kmem_cache_destroy(dev_priv->requests);
4485 kmem_cache_destroy(dev_priv->vmas);
4486 kmem_cache_destroy(dev_priv->objects);
Chris Wilson0eafec62016-08-04 16:32:41 +01004487
4488 /* And ensure that our DESTROY_BY_RCU slabs are truly destroyed */
4489 rcu_barrier();
Imre Deakd64aa092016-01-19 15:26:29 +02004490}
4491
Chris Wilson6a800ea2016-09-21 14:51:07 +01004492int i915_gem_freeze(struct drm_i915_private *dev_priv)
4493{
4494 intel_runtime_pm_get(dev_priv);
4495
4496 mutex_lock(&dev_priv->drm.struct_mutex);
4497 i915_gem_shrink_all(dev_priv);
4498 mutex_unlock(&dev_priv->drm.struct_mutex);
4499
4500 intel_runtime_pm_put(dev_priv);
4501
4502 return 0;
4503}
4504
Chris Wilson461fb992016-05-14 07:26:33 +01004505int i915_gem_freeze_late(struct drm_i915_private *dev_priv)
4506{
4507 struct drm_i915_gem_object *obj;
Chris Wilson7aab2d52016-09-09 20:02:18 +01004508 struct list_head *phases[] = {
4509 &dev_priv->mm.unbound_list,
4510 &dev_priv->mm.bound_list,
4511 NULL
4512 }, **p;
Chris Wilson461fb992016-05-14 07:26:33 +01004513
4514 /* Called just before we write the hibernation image.
4515 *
4516 * We need to update the domain tracking to reflect that the CPU
4517 * will be accessing all the pages to create and restore from the
4518 * hibernation, and so upon restoration those pages will be in the
4519 * CPU domain.
4520 *
4521 * To make sure the hibernation image contains the latest state,
4522 * we update that state just before writing out the image.
Chris Wilson7aab2d52016-09-09 20:02:18 +01004523 *
4524 * To try and reduce the hibernation image, we manually shrink
4525 * the objects as well.
Chris Wilson461fb992016-05-14 07:26:33 +01004526 */
4527
Chris Wilson6a800ea2016-09-21 14:51:07 +01004528 mutex_lock(&dev_priv->drm.struct_mutex);
4529 i915_gem_shrink(dev_priv, -1UL, I915_SHRINK_UNBOUND);
Chris Wilson461fb992016-05-14 07:26:33 +01004530
Chris Wilson7aab2d52016-09-09 20:02:18 +01004531 for (p = phases; *p; p++) {
Joonas Lahtinen56cea322016-11-02 12:16:04 +02004532 list_for_each_entry(obj, *p, global_link) {
Chris Wilson7aab2d52016-09-09 20:02:18 +01004533 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4534 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4535 }
Chris Wilson461fb992016-05-14 07:26:33 +01004536 }
Chris Wilson6a800ea2016-09-21 14:51:07 +01004537 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson461fb992016-05-14 07:26:33 +01004538
4539 return 0;
4540}
4541
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004542void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004543{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004544 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004545 struct drm_i915_gem_request *request;
Eric Anholtb9624422009-06-03 07:27:35 +00004546
4547 /* Clean up our request list when the client is going away, so that
4548 * later retire_requests won't dereference our soon-to-be-gone
4549 * file_priv.
4550 */
Chris Wilson1c255952010-09-26 11:03:27 +01004551 spin_lock(&file_priv->mm.lock);
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004552 list_for_each_entry(request, &file_priv->mm.request_list, client_list)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004553 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01004554 spin_unlock(&file_priv->mm.lock);
Chris Wilson31169712009-09-14 16:50:28 +01004555
Chris Wilson2e1b8732015-04-27 13:41:22 +01004556 if (!list_empty(&file_priv->rps.link)) {
Chris Wilson8d3afd72015-05-21 21:01:47 +01004557 spin_lock(&to_i915(dev)->rps.client_lock);
Chris Wilson2e1b8732015-04-27 13:41:22 +01004558 list_del(&file_priv->rps.link);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004559 spin_unlock(&to_i915(dev)->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004560 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004561}
4562
4563int i915_gem_open(struct drm_device *dev, struct drm_file *file)
4564{
4565 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08004566 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004567
4568 DRM_DEBUG_DRIVER("\n");
4569
4570 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
4571 if (!file_priv)
4572 return -ENOMEM;
4573
4574 file->driver_priv = file_priv;
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004575 file_priv->dev_priv = to_i915(dev);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02004576 file_priv->file = file;
Chris Wilson2e1b8732015-04-27 13:41:22 +01004577 INIT_LIST_HEAD(&file_priv->rps.link);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004578
4579 spin_lock_init(&file_priv->mm.lock);
4580 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004581
Chris Wilsonc80ff162016-07-27 09:07:27 +01004582 file_priv->bsd_engine = -1;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00004583
Ben Widawskye422b882013-12-06 14:10:58 -08004584 ret = i915_gem_context_open(dev, file);
4585 if (ret)
4586 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004587
Ben Widawskye422b882013-12-06 14:10:58 -08004588 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004589}
4590
Daniel Vetterb680c372014-09-19 18:27:27 +02004591/**
4592 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07004593 * @old: current GEM buffer for the frontbuffer slots
4594 * @new: new GEM buffer for the frontbuffer slots
4595 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02004596 *
4597 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
4598 * from @old and setting them in @new. Both @old and @new can be NULL.
4599 */
Daniel Vettera071fa02014-06-18 23:28:09 +02004600void i915_gem_track_fb(struct drm_i915_gem_object *old,
4601 struct drm_i915_gem_object *new,
4602 unsigned frontbuffer_bits)
4603{
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004604 /* Control of individual bits within the mask are guarded by
4605 * the owning plane->mutex, i.e. we can never see concurrent
4606 * manipulation of individual bits. But since the bitfield as a whole
4607 * is updated using RMW, we need to use atomics in order to update
4608 * the bits.
4609 */
4610 BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES >
4611 sizeof(atomic_t) * BITS_PER_BYTE);
4612
Daniel Vettera071fa02014-06-18 23:28:09 +02004613 if (old) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004614 WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits));
4615 atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02004616 }
4617
4618 if (new) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004619 WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits);
4620 atomic_or(frontbuffer_bits, &new->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02004621 }
4622}
4623
Dave Gordonea702992015-07-09 19:29:02 +01004624/* Allocate a new GEM object and fill it with the supplied data */
4625struct drm_i915_gem_object *
4626i915_gem_object_create_from_data(struct drm_device *dev,
4627 const void *data, size_t size)
4628{
4629 struct drm_i915_gem_object *obj;
4630 struct sg_table *sg;
4631 size_t bytes;
4632 int ret;
4633
Dave Gordond37cd8a2016-04-22 19:14:32 +01004634 obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE));
Chris Wilsonfe3db792016-04-25 13:32:13 +01004635 if (IS_ERR(obj))
Dave Gordonea702992015-07-09 19:29:02 +01004636 return obj;
4637
4638 ret = i915_gem_object_set_to_cpu_domain(obj, true);
4639 if (ret)
4640 goto fail;
4641
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004642 ret = i915_gem_object_pin_pages(obj);
Dave Gordonea702992015-07-09 19:29:02 +01004643 if (ret)
4644 goto fail;
4645
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004646 sg = obj->mm.pages;
Dave Gordonea702992015-07-09 19:29:02 +01004647 bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004648 obj->mm.dirty = true; /* Backing store is now out of date */
Dave Gordonea702992015-07-09 19:29:02 +01004649 i915_gem_object_unpin_pages(obj);
4650
4651 if (WARN_ON(bytes != size)) {
4652 DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size);
4653 ret = -EFAULT;
4654 goto fail;
4655 }
4656
4657 return obj;
4658
4659fail:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01004660 i915_gem_object_put(obj);
Dave Gordonea702992015-07-09 19:29:02 +01004661 return ERR_PTR(ret);
4662}
Chris Wilson96d77632016-10-28 13:58:33 +01004663
4664struct scatterlist *
4665i915_gem_object_get_sg(struct drm_i915_gem_object *obj,
4666 unsigned int n,
4667 unsigned int *offset)
4668{
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004669 struct i915_gem_object_page_iter *iter = &obj->mm.get_page;
Chris Wilson96d77632016-10-28 13:58:33 +01004670 struct scatterlist *sg;
4671 unsigned int idx, count;
4672
4673 might_sleep();
4674 GEM_BUG_ON(n >= obj->base.size >> PAGE_SHIFT);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004675 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
Chris Wilson96d77632016-10-28 13:58:33 +01004676
4677 /* As we iterate forward through the sg, we record each entry in a
4678 * radixtree for quick repeated (backwards) lookups. If we have seen
4679 * this index previously, we will have an entry for it.
4680 *
4681 * Initial lookup is O(N), but this is amortized to O(1) for
4682 * sequential page access (where each new request is consecutive
4683 * to the previous one). Repeated lookups are O(lg(obj->base.size)),
4684 * i.e. O(1) with a large constant!
4685 */
4686 if (n < READ_ONCE(iter->sg_idx))
4687 goto lookup;
4688
4689 mutex_lock(&iter->lock);
4690
4691 /* We prefer to reuse the last sg so that repeated lookup of this
4692 * (or the subsequent) sg are fast - comparing against the last
4693 * sg is faster than going through the radixtree.
4694 */
4695
4696 sg = iter->sg_pos;
4697 idx = iter->sg_idx;
4698 count = __sg_page_count(sg);
4699
4700 while (idx + count <= n) {
4701 unsigned long exception, i;
4702 int ret;
4703
4704 /* If we cannot allocate and insert this entry, or the
4705 * individual pages from this range, cancel updating the
4706 * sg_idx so that on this lookup we are forced to linearly
4707 * scan onwards, but on future lookups we will try the
4708 * insertion again (in which case we need to be careful of
4709 * the error return reporting that we have already inserted
4710 * this index).
4711 */
4712 ret = radix_tree_insert(&iter->radix, idx, sg);
4713 if (ret && ret != -EEXIST)
4714 goto scan;
4715
4716 exception =
4717 RADIX_TREE_EXCEPTIONAL_ENTRY |
4718 idx << RADIX_TREE_EXCEPTIONAL_SHIFT;
4719 for (i = 1; i < count; i++) {
4720 ret = radix_tree_insert(&iter->radix, idx + i,
4721 (void *)exception);
4722 if (ret && ret != -EEXIST)
4723 goto scan;
4724 }
4725
4726 idx += count;
4727 sg = ____sg_next(sg);
4728 count = __sg_page_count(sg);
4729 }
4730
4731scan:
4732 iter->sg_pos = sg;
4733 iter->sg_idx = idx;
4734
4735 mutex_unlock(&iter->lock);
4736
4737 if (unlikely(n < idx)) /* insertion completed by another thread */
4738 goto lookup;
4739
4740 /* In case we failed to insert the entry into the radixtree, we need
4741 * to look beyond the current sg.
4742 */
4743 while (idx + count <= n) {
4744 idx += count;
4745 sg = ____sg_next(sg);
4746 count = __sg_page_count(sg);
4747 }
4748
4749 *offset = n - idx;
4750 return sg;
4751
4752lookup:
4753 rcu_read_lock();
4754
4755 sg = radix_tree_lookup(&iter->radix, n);
4756 GEM_BUG_ON(!sg);
4757
4758 /* If this index is in the middle of multi-page sg entry,
4759 * the radixtree will contain an exceptional entry that points
4760 * to the start of that range. We will return the pointer to
4761 * the base page and the offset of this page within the
4762 * sg entry's range.
4763 */
4764 *offset = 0;
4765 if (unlikely(radix_tree_exception(sg))) {
4766 unsigned long base =
4767 (unsigned long)sg >> RADIX_TREE_EXCEPTIONAL_SHIFT;
4768
4769 sg = radix_tree_lookup(&iter->radix, base);
4770 GEM_BUG_ON(!sg);
4771
4772 *offset = n - base;
4773 }
4774
4775 rcu_read_unlock();
4776
4777 return sg;
4778}
4779
4780struct page *
4781i915_gem_object_get_page(struct drm_i915_gem_object *obj, unsigned int n)
4782{
4783 struct scatterlist *sg;
4784 unsigned int offset;
4785
4786 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
4787
4788 sg = i915_gem_object_get_sg(obj, n, &offset);
4789 return nth_page(sg_page(sg), offset);
4790}
4791
4792/* Like i915_gem_object_get_page(), but mark the returned page dirty */
4793struct page *
4794i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj,
4795 unsigned int n)
4796{
4797 struct page *page;
4798
4799 page = i915_gem_object_get_page(obj, n);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004800 if (!obj->mm.dirty)
Chris Wilson96d77632016-10-28 13:58:33 +01004801 set_page_dirty(page);
4802
4803 return page;
4804}
4805
4806dma_addr_t
4807i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj,
4808 unsigned long n)
4809{
4810 struct scatterlist *sg;
4811 unsigned int offset;
4812
4813 sg = i915_gem_object_get_sg(obj, n, &offset);
4814 return sg_dma_address(sg) + (offset << PAGE_SHIFT);
4815}