blob: 4d827300d1a8f7f9807b2b8def235a674263aefa [file] [log] [blame]
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +02001/*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
25#ifndef __I915_VMA_H__
26#define __I915_VMA_H__
27
28#include <linux/io-mapping.h>
29
30#include <drm/drm_mm.h>
31
32#include "i915_gem_gtt.h"
33#include "i915_gem_fence_reg.h"
34#include "i915_gem_object.h"
35#include "i915_gem_request.h"
36
37
38enum i915_cache_level;
39
40/**
41 * A VMA represents a GEM BO that is bound into an address space. Therefore, a
42 * VMA's presence cannot be guaranteed before binding, or after unbinding the
43 * object into/from the address space.
44 *
45 * To make things as simple as possible (ie. no refcounting), a VMA's lifetime
46 * will always be <= an objects lifetime. So object refcounting should cover us.
47 */
48struct i915_vma {
49 struct drm_mm_node node;
50 struct drm_i915_gem_object *obj;
51 struct i915_address_space *vm;
52 struct drm_i915_fence_reg *fence;
53 struct sg_table *pages;
54 void __iomem *iomap;
55 u64 size;
56 u64 display_alignment;
57
Chris Wilson944397f2017-01-09 16:16:11 +000058 u32 fence_size;
59 u32 fence_alignment;
60
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020061 unsigned int flags;
62 /**
63 * How many users have pinned this object in GTT space. The following
64 * users can each hold at most one reference: pwrite/pread, execbuffer
65 * (objects are not allowed multiple times for the same batchbuffer),
66 * and the framebuffer code. When switching/pageflipping, the
67 * framebuffer code has at most two buffers pinned per crtc.
68 *
69 * In the worst case this is 1 + 1 + 1 + 2*2 = 7. That would fit into 3
70 * bits with absolutely no headroom. So use 4 bits.
71 */
72#define I915_VMA_PIN_MASK 0xf
73#define I915_VMA_PIN_OVERFLOW BIT(5)
74
75 /** Flags and address space this VMA is bound to */
76#define I915_VMA_GLOBAL_BIND BIT(6)
77#define I915_VMA_LOCAL_BIND BIT(7)
78#define I915_VMA_BIND_MASK (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND | I915_VMA_PIN_OVERFLOW)
79
80#define I915_VMA_GGTT BIT(8)
81#define I915_VMA_CAN_FENCE BIT(9)
82#define I915_VMA_CLOSED BIT(10)
83
84 unsigned int active;
85 struct i915_gem_active last_read[I915_NUM_ENGINES];
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +020086 struct i915_gem_active last_fence;
87
88 /**
89 * Support different GGTT views into the same object.
90 * This means there can be multiple VMA mappings per object and per VM.
91 * i915_ggtt_view_type is used to distinguish between those entries.
92 * The default one of zero (I915_GGTT_VIEW_NORMAL) is default and also
93 * assumed in GEM functions which take no ggtt view parameter.
94 */
95 struct i915_ggtt_view ggtt_view;
96
97 /** This object's place on the active/inactive lists */
98 struct list_head vm_link;
99
100 struct list_head obj_link; /* Link in the object's VMA list */
101 struct rb_node obj_node;
102
Chris Wilson8c45cec2017-06-15 09:14:35 +0100103 /** This vma's place in the execbuf reservation list */
104 struct list_head exec_link;
105
106 /** This vma's place in the eviction list */
107 struct list_head evict_link;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200108
109 /**
110 * Used for performing relocations during execbuffer insertion.
111 */
112 struct hlist_node exec_node;
113 unsigned long exec_handle;
114 struct drm_i915_gem_exec_object2 *exec_entry;
115};
116
117struct i915_vma *
Chris Wilson718659a2017-01-16 15:21:28 +0000118i915_vma_instance(struct drm_i915_gem_object *obj,
119 struct i915_address_space *vm,
120 const struct i915_ggtt_view *view);
121
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200122void i915_vma_unpin_and_release(struct i915_vma **p_vma);
123
124static inline bool i915_vma_is_ggtt(const struct i915_vma *vma)
125{
126 return vma->flags & I915_VMA_GGTT;
127}
128
129static inline bool i915_vma_is_map_and_fenceable(const struct i915_vma *vma)
130{
131 return vma->flags & I915_VMA_CAN_FENCE;
132}
133
134static inline bool i915_vma_is_closed(const struct i915_vma *vma)
135{
136 return vma->flags & I915_VMA_CLOSED;
137}
138
139static inline unsigned int i915_vma_get_active(const struct i915_vma *vma)
140{
141 return vma->active;
142}
143
144static inline bool i915_vma_is_active(const struct i915_vma *vma)
145{
146 return i915_vma_get_active(vma);
147}
148
149static inline void i915_vma_set_active(struct i915_vma *vma,
150 unsigned int engine)
151{
152 vma->active |= BIT(engine);
153}
154
155static inline void i915_vma_clear_active(struct i915_vma *vma,
156 unsigned int engine)
157{
158 vma->active &= ~BIT(engine);
159}
160
161static inline bool i915_vma_has_active_engine(const struct i915_vma *vma,
162 unsigned int engine)
163{
164 return vma->active & BIT(engine);
165}
166
167static inline u32 i915_ggtt_offset(const struct i915_vma *vma)
168{
169 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
170 GEM_BUG_ON(!vma->node.allocated);
171 GEM_BUG_ON(upper_32_bits(vma->node.start));
172 GEM_BUG_ON(upper_32_bits(vma->node.start + vma->node.size - 1));
173 return lower_32_bits(vma->node.start);
174}
175
176static inline struct i915_vma *i915_vma_get(struct i915_vma *vma)
177{
178 i915_gem_object_get(vma->obj);
179 return vma;
180}
181
182static inline void i915_vma_put(struct i915_vma *vma)
183{
184 i915_gem_object_put(vma->obj);
185}
186
Tvrtko Ursulin2bf0d262016-12-13 14:37:27 +0000187static __always_inline ptrdiff_t ptrdiff(const void *a, const void *b)
188{
189 return a - b;
190}
191
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200192static inline long
193i915_vma_compare(struct i915_vma *vma,
194 struct i915_address_space *vm,
195 const struct i915_ggtt_view *view)
196{
Tvrtko Ursulin2bf0d262016-12-13 14:37:27 +0000197 ptrdiff_t cmp;
198
Chris Wilson4d1368f2016-11-03 20:08:52 +0000199 GEM_BUG_ON(view && !i915_is_ggtt(vm));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200200
Tvrtko Ursulin2bf0d262016-12-13 14:37:27 +0000201 cmp = ptrdiff(vma->vm, vm);
202 if (cmp)
203 return cmp;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200204
Chris Wilson992e4182017-01-14 00:28:23 +0000205 BUILD_BUG_ON(I915_GGTT_VIEW_NORMAL != 0);
206 cmp = vma->ggtt_view.type;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200207 if (!view)
Chris Wilson992e4182017-01-14 00:28:23 +0000208 return cmp;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200209
Chris Wilson992e4182017-01-14 00:28:23 +0000210 cmp -= view->type;
211 if (cmp)
212 return cmp;
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200213
Chris Wilson992e4182017-01-14 00:28:23 +0000214 /* ggtt_view.type also encodes its size so that we both distinguish
215 * different views using it as a "type" and also use a compact (no
216 * accessing of uninitialised padding bytes) memcmp without storing
217 * an extra parameter or adding more code.
Chris Wilson8bab11932017-01-14 00:28:25 +0000218 *
219 * To ensure that the memcmp is valid for all branches of the union,
220 * even though the code looks like it is just comparing one branch,
221 * we assert above that all branches have the same address, and that
222 * each branch has a unique type/size.
Chris Wilson992e4182017-01-14 00:28:23 +0000223 */
224 BUILD_BUG_ON(I915_GGTT_VIEW_NORMAL >= I915_GGTT_VIEW_PARTIAL);
225 BUILD_BUG_ON(I915_GGTT_VIEW_PARTIAL >= I915_GGTT_VIEW_ROTATED);
Chris Wilson8bab11932017-01-14 00:28:25 +0000226 BUILD_BUG_ON(offsetof(typeof(*view), rotated) !=
227 offsetof(typeof(*view), partial));
228 return memcmp(&vma->ggtt_view.partial, &view->partial, view->type);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200229}
230
231int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
232 u32 flags);
233bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long cache_level);
Chris Wilson782a3e92017-02-13 17:15:46 +0000234bool i915_vma_misplaced(const struct i915_vma *vma,
235 u64 size, u64 alignment, u64 flags);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200236void __i915_vma_set_map_and_fenceable(struct i915_vma *vma);
237int __must_check i915_vma_unbind(struct i915_vma *vma);
238void i915_vma_close(struct i915_vma *vma);
239void i915_vma_destroy(struct i915_vma *vma);
240
241int __i915_vma_do_pin(struct i915_vma *vma,
242 u64 size, u64 alignment, u64 flags);
243static inline int __must_check
244i915_vma_pin(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
245{
246 BUILD_BUG_ON(PIN_MBZ != I915_VMA_PIN_OVERFLOW);
247 BUILD_BUG_ON(PIN_GLOBAL != I915_VMA_GLOBAL_BIND);
248 BUILD_BUG_ON(PIN_USER != I915_VMA_LOCAL_BIND);
249
250 /* Pin early to prevent the shrinker/eviction logic from destroying
251 * our vma as we insert and bind.
252 */
Chris Wilson03257012017-01-11 21:09:26 +0000253 if (likely(((++vma->flags ^ flags) & I915_VMA_BIND_MASK) == 0)) {
254 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
255 GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200256 return 0;
Chris Wilson03257012017-01-11 21:09:26 +0000257 }
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200258
259 return __i915_vma_do_pin(vma, size, alignment, flags);
260}
261
262static inline int i915_vma_pin_count(const struct i915_vma *vma)
263{
264 return vma->flags & I915_VMA_PIN_MASK;
265}
266
267static inline bool i915_vma_is_pinned(const struct i915_vma *vma)
268{
269 return i915_vma_pin_count(vma);
270}
271
272static inline void __i915_vma_pin(struct i915_vma *vma)
273{
274 vma->flags++;
275 GEM_BUG_ON(vma->flags & I915_VMA_PIN_OVERFLOW);
276}
277
278static inline void __i915_vma_unpin(struct i915_vma *vma)
279{
280 GEM_BUG_ON(!i915_vma_is_pinned(vma));
281 vma->flags--;
282}
283
284static inline void i915_vma_unpin(struct i915_vma *vma)
285{
286 GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
287 __i915_vma_unpin(vma);
288}
289
290/**
291 * i915_vma_pin_iomap - calls ioremap_wc to map the GGTT VMA via the aperture
292 * @vma: VMA to iomap
293 *
294 * The passed in VMA has to be pinned in the global GTT mappable region.
295 * An extra pinning of the VMA is acquired for the return iomapping,
296 * the caller must call i915_vma_unpin_iomap to relinquish the pinning
297 * after the iomapping is no longer required.
298 *
299 * Callers must hold the struct_mutex.
300 *
301 * Returns a valid iomapped pointer or ERR_PTR.
302 */
303void __iomem *i915_vma_pin_iomap(struct i915_vma *vma);
304#define IO_ERR_PTR(x) ((void __iomem *)ERR_PTR(x))
305
306/**
307 * i915_vma_unpin_iomap - unpins the mapping returned from i915_vma_iomap
308 * @vma: VMA to unpin
309 *
310 * Unpins the previously iomapped VMA from i915_vma_pin_iomap().
311 *
312 * Callers must hold the struct_mutex. This function is only valid to be
313 * called on a VMA previously iomapped by the caller with i915_vma_pin_iomap().
314 */
315static inline void i915_vma_unpin_iomap(struct i915_vma *vma)
316{
Chris Wilson49d73912016-11-29 09:50:08 +0000317 lockdep_assert_held(&vma->obj->base.dev->struct_mutex);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200318 GEM_BUG_ON(vma->iomap == NULL);
319 i915_vma_unpin(vma);
320}
321
322static inline struct page *i915_vma_first_page(struct i915_vma *vma)
323{
324 GEM_BUG_ON(!vma->pages);
325 return sg_page(vma->pages->sgl);
326}
327
328/**
329 * i915_vma_pin_fence - pin fencing state
330 * @vma: vma to pin fencing for
331 *
332 * This pins the fencing state (whether tiled or untiled) to make sure the
333 * vma (and its object) is ready to be used as a scanout target. Fencing
334 * status must be synchronize first by calling i915_vma_get_fence():
335 *
336 * The resulting fence pin reference must be released again with
337 * i915_vma_unpin_fence().
338 *
339 * Returns:
340 *
341 * True if the vma has a fence, false otherwise.
342 */
343static inline bool
344i915_vma_pin_fence(struct i915_vma *vma)
345{
Chris Wilson49d73912016-11-29 09:50:08 +0000346 lockdep_assert_held(&vma->obj->base.dev->struct_mutex);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200347 if (vma->fence) {
348 vma->fence->pin_count++;
349 return true;
350 } else
351 return false;
352}
353
354/**
355 * i915_vma_unpin_fence - unpin fencing state
356 * @vma: vma to unpin fencing for
357 *
358 * This releases the fence pin reference acquired through
359 * i915_vma_pin_fence. It will handle both objects with and without an
360 * attached fence correctly, callers do not need to distinguish this.
361 */
362static inline void
363i915_vma_unpin_fence(struct i915_vma *vma)
364{
Chris Wilson49d73912016-11-29 09:50:08 +0000365 lockdep_assert_held(&vma->obj->base.dev->struct_mutex);
Joonas Lahtinenb42fe9c2016-11-11 12:43:54 +0200366 if (vma->fence) {
367 GEM_BUG_ON(vma->fence->pin_count <= 0);
368 vma->fence->pin_count--;
369 }
370}
371
372#endif
373