1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6 #ifndef __INTEL_CONTEXT_H__ 7 #define __INTEL_CONTEXT_H__ 8 9 #include <linux/bitops.h> 10 #include <linux/lockdep.h> 11 #include <linux/types.h> 12 13 #include "i915_active.h" 14 #include "i915_drv.h" 15 #include "intel_context_types.h" 16 #include "intel_engine_types.h" 17 #include "intel_ring_types.h" 18 #include "intel_timeline_types.h" 19 #include "i915_trace.h" 20 21 #define CE_TRACE(ce, fmt, ...) do { \ 22 const struct intel_context *ce__ = (ce); \ 23 ENGINE_TRACE(ce__->engine, "context:%llx " fmt, \ 24 ce__->timeline->fence_context, \ 25 ##__VA_ARGS__); \ 26 } while (0) 27 28 struct i915_gem_ww_ctx; 29 30 void intel_context_init(struct intel_context *ce, 31 struct intel_engine_cs *engine); 32 void intel_context_fini(struct intel_context *ce); 33 34 void i915_context_module_exit(void); 35 int i915_context_module_init(void); 36 37 struct intel_context * 38 intel_context_create(struct intel_engine_cs *engine); 39 40 int intel_context_alloc_state(struct intel_context *ce); 41 42 void intel_context_free(struct intel_context *ce); 43 44 int intel_context_reconfigure_sseu(struct intel_context *ce, 45 const struct intel_sseu sseu); 46 47 #define PARENT_SCRATCH_SIZE PAGE_SIZE 48 49 static inline bool intel_context_is_child(struct intel_context *ce) 50 { 51 return !!ce->parallel.parent; 52 } 53 54 static inline bool intel_context_is_parent(struct intel_context *ce) 55 { 56 return !!ce->parallel.number_children; 57 } 58 59 static inline bool intel_context_is_pinned(struct intel_context *ce); 60 61 static inline struct intel_context * 62 intel_context_to_parent(struct intel_context *ce) 63 { 64 if (intel_context_is_child(ce)) { 65 /* 66 * The parent holds ref count to the child so it is always safe 67 * for the parent to access the child, but the child has a 68 * pointer to the parent without a ref. To ensure this is safe 69 * the child should only access the parent pointer while the 70 * parent is pinned. 71 */ 72 GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent)); 73 74 return ce->parallel.parent; 75 } else { 76 return ce; 77 } 78 } 79 80 static inline bool intel_context_is_parallel(struct intel_context *ce) 81 { 82 return intel_context_is_child(ce) || intel_context_is_parent(ce); 83 } 84 85 void intel_context_bind_parent_child(struct intel_context *parent, 86 struct intel_context *child); 87 88 #define for_each_child(parent, ce)\ 89 list_for_each_entry(ce, &(parent)->parallel.child_list,\ 90 parallel.child_link) 91 #define for_each_child_safe(parent, ce, cn)\ 92 list_for_each_entry_safe(ce, cn, &(parent)->parallel.child_list,\ 93 parallel.child_link) 94 95 /** 96 * intel_context_lock_pinned - Stablises the 'pinned' status of the HW context 97 * @ce - the context 98 * 99 * Acquire a lock on the pinned status of the HW context, such that the context 100 * can neither be bound to the GPU or unbound whilst the lock is held, i.e. 101 * intel_context_is_pinned() remains stable. 102 */ 103 static inline int intel_context_lock_pinned(struct intel_context *ce) 104 __acquires(ce->pin_mutex) 105 { 106 return mutex_lock_interruptible(&ce->pin_mutex); 107 } 108 109 /** 110 * intel_context_is_pinned - Reports the 'pinned' status 111 * @ce - the context 112 * 113 * While in use by the GPU, the context, along with its ring and page 114 * tables is pinned into memory and the GTT. 115 * 116 * Returns: true if the context is currently pinned for use by the GPU. 117 */ 118 static inline bool 119 intel_context_is_pinned(struct intel_context *ce) 120 { 121 return atomic_read(&ce->pin_count); 122 } 123 124 static inline void intel_context_cancel_request(struct intel_context *ce, 125 struct i915_request *rq) 126 { 127 GEM_BUG_ON(!ce->ops->cancel_request); 128 return ce->ops->cancel_request(ce, rq); 129 } 130 131 /** 132 * intel_context_unlock_pinned - Releases the earlier locking of 'pinned' status 133 * @ce - the context 134 * 135 * Releases the lock earlier acquired by intel_context_unlock_pinned(). 136 */ 137 static inline void intel_context_unlock_pinned(struct intel_context *ce) 138 __releases(ce->pin_mutex) 139 { 140 mutex_unlock(&ce->pin_mutex); 141 } 142 143 int __intel_context_do_pin(struct intel_context *ce); 144 int __intel_context_do_pin_ww(struct intel_context *ce, 145 struct i915_gem_ww_ctx *ww); 146 147 static inline bool intel_context_pin_if_active(struct intel_context *ce) 148 { 149 return atomic_inc_not_zero(&ce->pin_count); 150 } 151 152 static inline int intel_context_pin(struct intel_context *ce) 153 { 154 if (likely(intel_context_pin_if_active(ce))) 155 return 0; 156 157 return __intel_context_do_pin(ce); 158 } 159 160 static inline int intel_context_pin_ww(struct intel_context *ce, 161 struct i915_gem_ww_ctx *ww) 162 { 163 if (likely(intel_context_pin_if_active(ce))) 164 return 0; 165 166 return __intel_context_do_pin_ww(ce, ww); 167 } 168 169 static inline void __intel_context_pin(struct intel_context *ce) 170 { 171 GEM_BUG_ON(!intel_context_is_pinned(ce)); 172 atomic_inc(&ce->pin_count); 173 } 174 175 void __intel_context_do_unpin(struct intel_context *ce, int sub); 176 177 static inline void intel_context_sched_disable_unpin(struct intel_context *ce) 178 { 179 __intel_context_do_unpin(ce, 2); 180 } 181 182 static inline void intel_context_unpin(struct intel_context *ce) 183 { 184 if (!ce->ops->sched_disable) { 185 __intel_context_do_unpin(ce, 1); 186 } else { 187 /* 188 * Move ownership of this pin to the scheduling disable which is 189 * an async operation. When that operation completes the above 190 * intel_context_sched_disable_unpin is called potentially 191 * unpinning the context. 192 */ 193 while (!atomic_add_unless(&ce->pin_count, -1, 1)) { 194 if (atomic_cmpxchg(&ce->pin_count, 1, 2) == 1) { 195 ce->ops->sched_disable(ce); 196 break; 197 } 198 } 199 } 200 } 201 202 void intel_context_enter_engine(struct intel_context *ce); 203 void intel_context_exit_engine(struct intel_context *ce); 204 205 static inline void intel_context_enter(struct intel_context *ce) 206 { 207 lockdep_assert_held(&ce->timeline->mutex); 208 if (!ce->active_count++) 209 ce->ops->enter(ce); 210 } 211 212 static inline void intel_context_mark_active(struct intel_context *ce) 213 { 214 lockdep_assert_held(&ce->timeline->mutex); 215 ++ce->active_count; 216 } 217 218 static inline void intel_context_exit(struct intel_context *ce) 219 { 220 lockdep_assert_held(&ce->timeline->mutex); 221 GEM_BUG_ON(!ce->active_count); 222 if (!--ce->active_count) 223 ce->ops->exit(ce); 224 } 225 226 static inline struct intel_context *intel_context_get(struct intel_context *ce) 227 { 228 kref_get(&ce->ref); 229 return ce; 230 } 231 232 static inline void intel_context_put(struct intel_context *ce) 233 { 234 kref_put(&ce->ref, ce->ops->destroy); 235 } 236 237 static inline struct intel_timeline *__must_check 238 intel_context_timeline_lock(struct intel_context *ce) 239 __acquires(&ce->timeline->mutex) 240 { 241 struct intel_timeline *tl = ce->timeline; 242 int err; 243 244 if (intel_context_is_parent(ce)) 245 err = mutex_lock_interruptible_nested(&tl->mutex, 0); 246 else if (intel_context_is_child(ce)) 247 err = mutex_lock_interruptible_nested(&tl->mutex, 248 ce->parallel.child_index + 1); 249 else 250 err = mutex_lock_interruptible(&tl->mutex); 251 if (err) 252 return ERR_PTR(err); 253 254 return tl; 255 } 256 257 static inline void intel_context_timeline_unlock(struct intel_timeline *tl) 258 __releases(&tl->mutex) 259 { 260 mutex_unlock(&tl->mutex); 261 } 262 263 int intel_context_prepare_remote_request(struct intel_context *ce, 264 struct i915_request *rq); 265 266 struct i915_request *intel_context_create_request(struct intel_context *ce); 267 268 struct i915_request * 269 intel_context_find_active_request(struct intel_context *ce); 270 271 static inline bool intel_context_is_barrier(const struct intel_context *ce) 272 { 273 return test_bit(CONTEXT_BARRIER_BIT, &ce->flags); 274 } 275 276 static inline bool intel_context_is_closed(const struct intel_context *ce) 277 { 278 return test_bit(CONTEXT_CLOSED_BIT, &ce->flags); 279 } 280 281 static inline bool intel_context_has_inflight(const struct intel_context *ce) 282 { 283 return test_bit(COPS_HAS_INFLIGHT_BIT, &ce->ops->flags); 284 } 285 286 static inline bool intel_context_use_semaphores(const struct intel_context *ce) 287 { 288 return test_bit(CONTEXT_USE_SEMAPHORES, &ce->flags); 289 } 290 291 static inline void intel_context_set_use_semaphores(struct intel_context *ce) 292 { 293 set_bit(CONTEXT_USE_SEMAPHORES, &ce->flags); 294 } 295 296 static inline void intel_context_clear_use_semaphores(struct intel_context *ce) 297 { 298 clear_bit(CONTEXT_USE_SEMAPHORES, &ce->flags); 299 } 300 301 static inline bool intel_context_is_banned(const struct intel_context *ce) 302 { 303 return test_bit(CONTEXT_BANNED, &ce->flags); 304 } 305 306 static inline bool intel_context_set_banned(struct intel_context *ce) 307 { 308 return test_and_set_bit(CONTEXT_BANNED, &ce->flags); 309 } 310 311 static inline bool intel_context_ban(struct intel_context *ce, 312 struct i915_request *rq) 313 { 314 bool ret = intel_context_set_banned(ce); 315 316 trace_intel_context_ban(ce); 317 if (ce->ops->ban) 318 ce->ops->ban(ce, rq); 319 320 return ret; 321 } 322 323 static inline bool 324 intel_context_force_single_submission(const struct intel_context *ce) 325 { 326 return test_bit(CONTEXT_FORCE_SINGLE_SUBMISSION, &ce->flags); 327 } 328 329 static inline void 330 intel_context_set_single_submission(struct intel_context *ce) 331 { 332 __set_bit(CONTEXT_FORCE_SINGLE_SUBMISSION, &ce->flags); 333 } 334 335 static inline bool 336 intel_context_nopreempt(const struct intel_context *ce) 337 { 338 return test_bit(CONTEXT_NOPREEMPT, &ce->flags); 339 } 340 341 static inline void 342 intel_context_set_nopreempt(struct intel_context *ce) 343 { 344 set_bit(CONTEXT_NOPREEMPT, &ce->flags); 345 } 346 347 static inline void 348 intel_context_clear_nopreempt(struct intel_context *ce) 349 { 350 clear_bit(CONTEXT_NOPREEMPT, &ce->flags); 351 } 352 353 static inline u64 intel_context_get_total_runtime_ns(struct intel_context *ce) 354 { 355 const u32 period = ce->engine->gt->clock_period_ns; 356 357 return READ_ONCE(ce->runtime.total) * period; 358 } 359 360 static inline u64 intel_context_get_avg_runtime_ns(struct intel_context *ce) 361 { 362 const u32 period = ce->engine->gt->clock_period_ns; 363 364 return mul_u32_u32(ewma_runtime_read(&ce->runtime.avg), period); 365 } 366 367 #endif /* __INTEL_CONTEXT_H__ */ 368