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