xref: /dragonfly/sys/dev/drm/i915/i915_vma.h (revision 9317c2d0)
1 /*
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 
38 enum 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  */
48 struct 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 
58 	unsigned int flags;
59 	/**
60 	 * How many users have pinned this object in GTT space. The following
61 	 * users can each hold at most one reference: pwrite/pread, execbuffer
62 	 * (objects are not allowed multiple times for the same batchbuffer),
63 	 * and the framebuffer code. When switching/pageflipping, the
64 	 * framebuffer code has at most two buffers pinned per crtc.
65 	 *
66 	 * In the worst case this is 1 + 1 + 1 + 2*2 = 7. That would fit into 3
67 	 * bits with absolutely no headroom. So use 4 bits.
68 	 */
69 #define I915_VMA_PIN_MASK 0xf
70 #define I915_VMA_PIN_OVERFLOW	BIT(5)
71 
72 	/** Flags and address space this VMA is bound to */
73 #define I915_VMA_GLOBAL_BIND	BIT(6)
74 #define I915_VMA_LOCAL_BIND	BIT(7)
75 #define I915_VMA_BIND_MASK (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND | I915_VMA_PIN_OVERFLOW)
76 
77 #define I915_VMA_GGTT		BIT(8)
78 #define I915_VMA_CAN_FENCE	BIT(9)
79 #define I915_VMA_CLOSED		BIT(10)
80 
81 	unsigned int active;
82 	struct i915_gem_active last_read[I915_NUM_ENGINES];
83 	struct i915_gem_active last_fence;
84 
85 	/**
86 	 * Support different GGTT views into the same object.
87 	 * This means there can be multiple VMA mappings per object and per VM.
88 	 * i915_ggtt_view_type is used to distinguish between those entries.
89 	 * The default one of zero (I915_GGTT_VIEW_NORMAL) is default and also
90 	 * assumed in GEM functions which take no ggtt view parameter.
91 	 */
92 	struct i915_ggtt_view ggtt_view;
93 
94 	/** This object's place on the active/inactive lists */
95 	struct list_head vm_link;
96 
97 	struct list_head obj_link; /* Link in the object's VMA list */
98 	struct rb_node obj_node;
99 
100 	/** This vma's place in the batchbuffer or on the eviction list */
101 	struct list_head exec_list;
102 
103 	/**
104 	 * Used for performing relocations during execbuffer insertion.
105 	 */
106 	struct hlist_node exec_node;
107 	unsigned long exec_handle;
108 	struct drm_i915_gem_exec_object2 *exec_entry;
109 };
110 
111 struct i915_vma *
112 i915_vma_create(struct drm_i915_gem_object *obj,
113 		struct i915_address_space *vm,
114 		const struct i915_ggtt_view *view);
115 
116 void i915_vma_unpin_and_release(struct i915_vma **p_vma);
117 
118 static inline bool i915_vma_is_ggtt(const struct i915_vma *vma)
119 {
120 	return vma->flags & I915_VMA_GGTT;
121 }
122 
123 static inline bool i915_vma_is_map_and_fenceable(const struct i915_vma *vma)
124 {
125 	return vma->flags & I915_VMA_CAN_FENCE;
126 }
127 
128 static inline bool i915_vma_is_closed(const struct i915_vma *vma)
129 {
130 	return vma->flags & I915_VMA_CLOSED;
131 }
132 
133 static inline unsigned int i915_vma_get_active(const struct i915_vma *vma)
134 {
135 	return vma->active;
136 }
137 
138 static inline bool i915_vma_is_active(const struct i915_vma *vma)
139 {
140 	return i915_vma_get_active(vma);
141 }
142 
143 static inline void i915_vma_set_active(struct i915_vma *vma,
144 				       unsigned int engine)
145 {
146 	vma->active |= BIT(engine);
147 }
148 
149 static inline void i915_vma_clear_active(struct i915_vma *vma,
150 					 unsigned int engine)
151 {
152 	vma->active &= ~BIT(engine);
153 }
154 
155 static inline bool i915_vma_has_active_engine(const struct i915_vma *vma,
156 					      unsigned int engine)
157 {
158 	return vma->active & BIT(engine);
159 }
160 
161 static inline u32 i915_ggtt_offset(const struct i915_vma *vma)
162 {
163 	GEM_BUG_ON(!i915_vma_is_ggtt(vma));
164 	GEM_BUG_ON(!vma->node.allocated);
165 	GEM_BUG_ON(upper_32_bits(vma->node.start));
166 	GEM_BUG_ON(upper_32_bits(vma->node.start + vma->node.size - 1));
167 	return lower_32_bits(vma->node.start);
168 }
169 
170 static inline struct i915_vma *i915_vma_get(struct i915_vma *vma)
171 {
172 	i915_gem_object_get(vma->obj);
173 	return vma;
174 }
175 
176 static inline void i915_vma_put(struct i915_vma *vma)
177 {
178 	i915_gem_object_put(vma->obj);
179 }
180 
181 static inline long
182 i915_vma_compare(struct i915_vma *vma,
183 		 struct i915_address_space *vm,
184 		 const struct i915_ggtt_view *view)
185 {
186 	GEM_BUG_ON(view && !i915_is_ggtt(vm));
187 
188 	if (vma->vm != vm)
189 		return vma->vm - vm;
190 
191 	if (!view)
192 		return vma->ggtt_view.type;
193 
194 	if (vma->ggtt_view.type != view->type)
195 		return vma->ggtt_view.type - view->type;
196 
197 	return memcmp(&vma->ggtt_view.params,
198 		      &view->params,
199 		      sizeof(view->params));
200 }
201 
202 int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
203 		  u32 flags);
204 bool i915_gem_valid_gtt_space(struct i915_vma *vma, unsigned long cache_level);
205 bool
206 i915_vma_misplaced(struct i915_vma *vma, u64 size, u64 alignment, u64 flags);
207 void __i915_vma_set_map_and_fenceable(struct i915_vma *vma);
208 int __must_check i915_vma_unbind(struct i915_vma *vma);
209 void i915_vma_close(struct i915_vma *vma);
210 void i915_vma_destroy(struct i915_vma *vma);
211 
212 int __i915_vma_do_pin(struct i915_vma *vma,
213 		      u64 size, u64 alignment, u64 flags);
214 static inline int __must_check
215 i915_vma_pin(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
216 {
217 	BUILD_BUG_ON(PIN_MBZ != I915_VMA_PIN_OVERFLOW);
218 	BUILD_BUG_ON(PIN_GLOBAL != I915_VMA_GLOBAL_BIND);
219 	BUILD_BUG_ON(PIN_USER != I915_VMA_LOCAL_BIND);
220 
221 	/* Pin early to prevent the shrinker/eviction logic from destroying
222 	 * our vma as we insert and bind.
223 	 */
224 	if (likely(((++vma->flags ^ flags) & I915_VMA_BIND_MASK) == 0))
225 		return 0;
226 
227 	return __i915_vma_do_pin(vma, size, alignment, flags);
228 }
229 
230 static inline int i915_vma_pin_count(const struct i915_vma *vma)
231 {
232 	return vma->flags & I915_VMA_PIN_MASK;
233 }
234 
235 static inline bool i915_vma_is_pinned(const struct i915_vma *vma)
236 {
237 	return i915_vma_pin_count(vma);
238 }
239 
240 static inline void __i915_vma_pin(struct i915_vma *vma)
241 {
242 	vma->flags++;
243 	GEM_BUG_ON(vma->flags & I915_VMA_PIN_OVERFLOW);
244 }
245 
246 static inline void __i915_vma_unpin(struct i915_vma *vma)
247 {
248 	GEM_BUG_ON(!i915_vma_is_pinned(vma));
249 	vma->flags--;
250 }
251 
252 static inline void i915_vma_unpin(struct i915_vma *vma)
253 {
254 	GEM_BUG_ON(!drm_mm_node_allocated(&vma->node));
255 	__i915_vma_unpin(vma);
256 }
257 
258 /**
259  * i915_vma_pin_iomap - calls ioremap_wc to map the GGTT VMA via the aperture
260  * @vma: VMA to iomap
261  *
262  * The passed in VMA has to be pinned in the global GTT mappable region.
263  * An extra pinning of the VMA is acquired for the return iomapping,
264  * the caller must call i915_vma_unpin_iomap to relinquish the pinning
265  * after the iomapping is no longer required.
266  *
267  * Callers must hold the struct_mutex.
268  *
269  * Returns a valid iomapped pointer or ERR_PTR.
270  */
271 void __iomem *i915_vma_pin_iomap(struct i915_vma *vma);
272 #define IO_ERR_PTR(x) ((void __iomem *)ERR_PTR(x))
273 
274 /**
275  * i915_vma_unpin_iomap - unpins the mapping returned from i915_vma_iomap
276  * @vma: VMA to unpin
277  *
278  * Unpins the previously iomapped VMA from i915_vma_pin_iomap().
279  *
280  * Callers must hold the struct_mutex. This function is only valid to be
281  * called on a VMA previously iomapped by the caller with i915_vma_pin_iomap().
282  */
283 static inline void i915_vma_unpin_iomap(struct i915_vma *vma)
284 {
285 	lockdep_assert_held(&vma->vm->dev->struct_mutex);
286 	GEM_BUG_ON(vma->iomap == NULL);
287 	i915_vma_unpin(vma);
288 }
289 
290 static inline struct page *i915_vma_first_page(struct i915_vma *vma)
291 {
292 	GEM_BUG_ON(!vma->pages);
293 	return sg_page(vma->pages->sgl);
294 }
295 
296 /**
297  * i915_vma_pin_fence - pin fencing state
298  * @vma: vma to pin fencing for
299  *
300  * This pins the fencing state (whether tiled or untiled) to make sure the
301  * vma (and its object) is ready to be used as a scanout target. Fencing
302  * status must be synchronize first by calling i915_vma_get_fence():
303  *
304  * The resulting fence pin reference must be released again with
305  * i915_vma_unpin_fence().
306  *
307  * Returns:
308  *
309  * True if the vma has a fence, false otherwise.
310  */
311 static inline bool
312 i915_vma_pin_fence(struct i915_vma *vma)
313 {
314 	lockdep_assert_held(&vma->vm->dev->struct_mutex);
315 	if (vma->fence) {
316 		vma->fence->pin_count++;
317 		return true;
318 	} else
319 		return false;
320 }
321 
322 /**
323  * i915_vma_unpin_fence - unpin fencing state
324  * @vma: vma to unpin fencing for
325  *
326  * This releases the fence pin reference acquired through
327  * i915_vma_pin_fence. It will handle both objects with and without an
328  * attached fence correctly, callers do not need to distinguish this.
329  */
330 static inline void
331 i915_vma_unpin_fence(struct i915_vma *vma)
332 {
333 	lockdep_assert_held(&vma->vm->dev->struct_mutex);
334 	if (vma->fence) {
335 		GEM_BUG_ON(vma->fence->pin_count <= 0);
336 		vma->fence->pin_count--;
337 	}
338 }
339 
340 #endif
341 
342